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>
|
2023-11-11 14:51:46 +00:00
|
|
|
#include <span>
|
2017-06-12 15:17:05 +00:00
|
|
|
#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
|
2023-03-23 16:01:13 +00:00
|
|
|
using ProgressCallback = std::function<bool(s64 dltotal, s64 dlnow, s64 ultotal, s64 ulnow)>;
|
2018-03-27 22:28:26 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2023-11-11 14:51:46 +00:00
|
|
|
struct Multiform
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
std::string data;
|
|
|
|
};
|
|
|
|
|
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);
|
2023-04-07 02:10:05 +00:00
|
|
|
s32 GetLastResponseCode() const;
|
2019-03-30 13:50:57 +00:00
|
|
|
std::string EscapeComponent(const std::string& string);
|
2023-08-15 01:02:57 +00:00
|
|
|
std::string GetHeaderValue(std::string_view name) const;
|
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
|
|
|
|
2023-11-11 14:51:46 +00:00
|
|
|
Response PostMultiform(const std::string& url, std::span<Multiform> multiform,
|
|
|
|
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
|