2017-06-12 15:17:05 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-12 15:17:05 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-06-18 19:36:39 +00:00
|
|
|
#include <chrono>
|
2018-03-27 22:28:26 +00:00
|
|
|
#include <functional>
|
2017-06-13 10:52:10 +00:00
|
|
|
#include <map>
|
2017-06-12 15:17:05 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <optional>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
|
|
|
class HttpRequest final
|
|
|
|
{
|
|
|
|
public:
|
2019-04-12 20:10:24 +00:00
|
|
|
enum class AllowedReturnCodes : u8
|
|
|
|
{
|
|
|
|
Ok_Only,
|
|
|
|
All
|
|
|
|
};
|
|
|
|
|
2018-03-27 22:28:26 +00:00
|
|
|
// Return false to abort the request
|
|
|
|
using ProgressCallback =
|
|
|
|
std::function<bool(double dlnow, double dltotal, double ulnow, double ultotal)>;
|
|
|
|
|
|
|
|
explicit HttpRequest(std::chrono::milliseconds timeout_ms = std::chrono::milliseconds{3000},
|
|
|
|
ProgressCallback callback = nullptr);
|
2017-06-12 15:17:05 +00:00
|
|
|
~HttpRequest();
|
|
|
|
bool IsValid() const;
|
|
|
|
|
|
|
|
using Response = std::optional<std::vector<u8>>;
|
2017-06-13 10:52:10 +00:00
|
|
|
using Headers = std::map<std::string, std::optional<std::string>>;
|
2018-05-29 01:55:52 +00:00
|
|
|
|
|
|
|
void SetCookies(const std::string& cookies);
|
2018-08-06 21:56:40 +00:00
|
|
|
void UseIPv4();
|
2019-02-01 13:41:28 +00:00
|
|
|
void FollowRedirects(long max = 1);
|
2019-03-30 13:50:57 +00:00
|
|
|
std::string EscapeComponent(const std::string& string);
|
2019-04-12 20:10:24 +00:00
|
|
|
Response Get(const std::string& url, const Headers& headers = {},
|
|
|
|
AllowedReturnCodes codes = AllowedReturnCodes::Ok_Only);
|
|
|
|
Response Post(const std::string& url, const std::vector<u8>& payload, const Headers& headers = {},
|
|
|
|
AllowedReturnCodes codes = AllowedReturnCodes::Ok_Only);
|
|
|
|
Response Post(const std::string& url, const std::string& payload, const Headers& headers = {},
|
|
|
|
AllowedReturnCodes codes = AllowedReturnCodes::Ok_Only);
|
2017-06-12 15:17:05 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
class Impl;
|
|
|
|
std::unique_ptr<Impl> m_impl;
|
|
|
|
};
|
|
|
|
} // namespace Common
|