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-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-25 01:27:13 +02:00
|
|
|
static void PostJsonAuthenticated(const std::string& url, const std::string& data,
|
|
|
|
const std::string& username, const std::string& token) {
|
|
|
|
cpr::Post(cpr::Url{url}, cpr::Body{data}, cpr::Header{{"Content-Type", "application/json"},
|
|
|
|
{"x-username", username},
|
|
|
|
{"x-token", token},
|
|
|
|
{"api-version", API_VERSION}});
|
|
|
|
}
|
|
|
|
|
|
|
|
static void PostJsonAnonymous(const std::string& url, const std::string& data) {
|
|
|
|
cpr::Post(cpr::Url{url}, cpr::Body{data},
|
|
|
|
cpr::Header{{"Content-Type", "application/json"}, {"api-version", API_VERSION}});
|
|
|
|
}
|
|
|
|
|
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-08-25 01:27:13 +02:00
|
|
|
// Post JSON asynchronously by spawning a new thread
|
2017-08-24 03:09:34 +02:00
|
|
|
if (are_credentials_provided) {
|
|
|
|
// Authenticated request if credentials are provided
|
2017-08-25 01:27:13 +02:00
|
|
|
std::thread{PostJsonAuthenticated, url, data, username, token}.detach();
|
2017-08-24 03:09:34 +02:00
|
|
|
} else {
|
|
|
|
// Otherwise, anonymous request
|
2017-08-25 01:27:13 +02:00
|
|
|
std::thread{PostJsonAnonymous, url, data}.detach();
|
2017-06-28 05:18:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-28 05:01:49 +02:00
|
|
|
} // namespace WebService
|