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