2017-06-28 05:01:49 +02:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-08-27 01:02:03 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <winsock.h>
|
|
|
|
#endif
|
|
|
|
|
2017-08-25 01:27:13 +02:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <thread>
|
2017-06-28 05:18:52 +02:00
|
|
|
#include <cpr/cpr.h>
|
|
|
|
#include "common/logging/log.h"
|
2017-06-28 05:01:49 +02:00
|
|
|
#include "web_service/web_backend.h"
|
|
|
|
|
|
|
|
namespace WebService {
|
|
|
|
|
2017-07-10 00:37:14 +02:00
|
|
|
static constexpr char API_VERSION[]{"1"};
|
2017-06-28 05:18:52 +02:00
|
|
|
|
2017-08-27 01:02:03 +02:00
|
|
|
static std::unique_ptr<cpr::Session> g_session;
|
2017-08-25 01:27:13 +02:00
|
|
|
|
2017-09-19 03:18:26 +02:00
|
|
|
void Win32WSAStartup() {
|
|
|
|
#ifdef _WIN32
|
|
|
|
// On Windows, CPR/libcurl does not properly initialize Winsock. The below code is used to
|
|
|
|
// initialize Winsock globally, which fixes this problem. Without this, only the first CPR
|
|
|
|
// session will properly be created, and subsequent ones will fail.
|
|
|
|
WSADATA wsa_data;
|
|
|
|
const int wsa_result{WSAStartup(MAKEWORD(2, 2), &wsa_data)};
|
|
|
|
if (wsa_result) {
|
|
|
|
LOG_CRITICAL(WebService, "WSAStartup failed: %d", wsa_result);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-08-24 03:09:34 +02:00
|
|
|
void PostJson(const std::string& url, const std::string& data, bool allow_anonymous,
|
|
|
|
const std::string& username, const std::string& token) {
|
|
|
|
if (url.empty()) {
|
|
|
|
LOG_ERROR(WebService, "URL is invalid");
|
2017-08-23 05:06:56 +02:00
|
|
|
return;
|
2017-06-28 05:18:52 +02:00
|
|
|
}
|
|
|
|
|
2017-08-24 03:09:34 +02:00
|
|
|
const bool are_credentials_provided{!token.empty() && !username.empty()};
|
|
|
|
if (!allow_anonymous && !are_credentials_provided) {
|
|
|
|
LOG_ERROR(WebService, "Credentials must be provided for authenticated requests");
|
2017-06-28 05:18:52 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-19 03:18:26 +02:00
|
|
|
Win32WSAStartup();
|
2017-08-27 01:02:03 +02:00
|
|
|
|
|
|
|
// Built request header
|
|
|
|
cpr::Header header;
|
2017-08-24 03:09:34 +02:00
|
|
|
if (are_credentials_provided) {
|
|
|
|
// Authenticated request if credentials are provided
|
2017-08-27 01:02:03 +02:00
|
|
|
header = {{"Content-Type", "application/json"},
|
|
|
|
{"x-username", username.c_str()},
|
|
|
|
{"x-token", token.c_str()},
|
|
|
|
{"api-version", API_VERSION}};
|
2017-08-24 03:09:34 +02:00
|
|
|
} else {
|
|
|
|
// Otherwise, anonymous request
|
2017-08-27 01:02:03 +02:00
|
|
|
header = cpr::Header{{"Content-Type", "application/json"}, {"api-version", API_VERSION}};
|
2017-06-28 05:18:52 +02:00
|
|
|
}
|
2017-08-27 01:02:03 +02:00
|
|
|
|
|
|
|
// Post JSON asynchronously
|
2017-09-19 03:18:26 +02:00
|
|
|
static std::future<void> future;
|
|
|
|
future = cpr::PostCallback(
|
|
|
|
[](cpr::Response r) {
|
|
|
|
if (r.error) {
|
|
|
|
LOG_ERROR(WebService, "POST returned cpr error: %u:%s",
|
|
|
|
static_cast<u32>(r.error.code), r.error.message.c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (r.status_code >= 400) {
|
|
|
|
LOG_ERROR(WebService, "POST returned error status code: %u", r.status_code);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (r.header["content-type"].find("application/json") == std::string::npos) {
|
|
|
|
LOG_ERROR(WebService, "POST returned wrong content: %s",
|
|
|
|
r.header["content-type"].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
cpr::Url{url}, cpr::Body{data}, header);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
std::future<T> GetJson(std::function<T(const std::string&)> func, const std::string& url,
|
|
|
|
bool allow_anonymous, const std::string& username,
|
|
|
|
const std::string& token) {
|
|
|
|
if (url.empty()) {
|
|
|
|
LOG_ERROR(WebService, "URL is invalid");
|
|
|
|
return std::async(std::launch::async, [func{std::move(func)}]() { return func(""); });
|
|
|
|
}
|
|
|
|
|
|
|
|
const bool are_credentials_provided{!token.empty() && !username.empty()};
|
|
|
|
if (!allow_anonymous && !are_credentials_provided) {
|
|
|
|
LOG_ERROR(WebService, "Credentials must be provided for authenticated requests");
|
|
|
|
return std::async(std::launch::async, [func{std::move(func)}]() { return func(""); });
|
|
|
|
}
|
|
|
|
|
|
|
|
Win32WSAStartup();
|
|
|
|
|
|
|
|
// Built request header
|
|
|
|
cpr::Header header;
|
|
|
|
if (are_credentials_provided) {
|
|
|
|
// Authenticated request if credentials are provided
|
|
|
|
header = {{"Content-Type", "application/json"},
|
|
|
|
{"x-username", username.c_str()},
|
|
|
|
{"x-token", token.c_str()},
|
|
|
|
{"api-version", API_VERSION}};
|
|
|
|
} else {
|
|
|
|
// Otherwise, anonymous request
|
|
|
|
header = cpr::Header{{"Content-Type", "application/json"}, {"api-version", API_VERSION}};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get JSON asynchronously
|
|
|
|
return cpr::GetCallback(
|
|
|
|
[func{std::move(func)}](cpr::Response r) {
|
|
|
|
if (r.error) {
|
|
|
|
LOG_ERROR(WebService, "GET returned cpr error: %u:%s",
|
|
|
|
static_cast<u32>(r.error.code), r.error.message.c_str());
|
|
|
|
return func("");
|
|
|
|
}
|
|
|
|
if (r.status_code >= 400) {
|
|
|
|
LOG_ERROR(WebService, "GET returned error code: %u", r.status_code);
|
|
|
|
return func("");
|
|
|
|
}
|
|
|
|
if (r.header["content-type"].find("application/json") == std::string::npos) {
|
|
|
|
LOG_ERROR(WebService, "GET returned wrong content: %s",
|
|
|
|
r.header["content-type"].c_str());
|
|
|
|
return func("");
|
|
|
|
}
|
|
|
|
return func(r.text);
|
|
|
|
},
|
|
|
|
cpr::Url{url}, header);
|
2017-06-28 05:18:52 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 03:18:26 +02:00
|
|
|
template std::future<bool> GetJson(std::function<bool(const std::string&)> func,
|
|
|
|
const std::string& url, bool allow_anonymous,
|
|
|
|
const std::string& username, const std::string& token);
|
|
|
|
|
2017-06-28 05:01:49 +02:00
|
|
|
} // namespace WebService
|