2018-09-16 18:05:51 +00:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-10-11 01:23:41 +00:00
|
|
|
#include <memory>
|
2018-09-16 18:05:51 +00:00
|
|
|
#include <string>
|
|
|
|
|
2018-10-11 01:23:41 +00:00
|
|
|
namespace Common {
|
|
|
|
struct WebResult;
|
2018-09-16 18:05:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace WebService {
|
|
|
|
|
|
|
|
class Client {
|
|
|
|
public:
|
2018-10-11 01:23:41 +00:00
|
|
|
Client(std::string host, std::string username, std::string token);
|
|
|
|
~Client();
|
2018-09-16 18:05:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Posts JSON to the specified path.
|
|
|
|
* @param path the URL segment after the host address.
|
|
|
|
* @param data String of JSON data to use for the body of the POST request.
|
|
|
|
* @param allow_anonymous If true, allow anonymous unauthenticated requests.
|
|
|
|
* @return the result of the request.
|
|
|
|
*/
|
|
|
|
Common::WebResult PostJson(const std::string& path, const std::string& data,
|
2018-10-11 01:23:41 +00:00
|
|
|
bool allow_anonymous);
|
2018-09-16 18:05:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets JSON from the specified path.
|
|
|
|
* @param path the URL segment after the host address.
|
|
|
|
* @param allow_anonymous If true, allow anonymous unauthenticated requests.
|
|
|
|
* @return the result of the request.
|
|
|
|
*/
|
2018-10-11 01:23:41 +00:00
|
|
|
Common::WebResult GetJson(const std::string& path, bool allow_anonymous);
|
2018-09-16 18:05:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes JSON to the specified path.
|
|
|
|
* @param path the URL segment after the host address.
|
|
|
|
* @param data String of JSON data to use for the body of the DELETE request.
|
|
|
|
* @param allow_anonymous If true, allow anonymous unauthenticated requests.
|
|
|
|
* @return the result of the request.
|
|
|
|
*/
|
|
|
|
Common::WebResult DeleteJson(const std::string& path, const std::string& data,
|
2018-10-11 01:23:41 +00:00
|
|
|
bool allow_anonymous);
|
2018-09-16 18:05:51 +00:00
|
|
|
|
|
|
|
private:
|
2018-10-11 01:23:41 +00:00
|
|
|
struct Impl;
|
|
|
|
std::unique_ptr<Impl> impl;
|
2018-09-16 18:05:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace WebService
|