mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2024-12-27 02:21:20 -08:00
52 lines
1.9 KiB
C++
52 lines
1.9 KiB
C++
// Copyright 2017 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <cstdlib>
|
|
#include <thread>
|
|
#include <cpr/cpr.h>
|
|
#include "common/logging/log.h"
|
|
#include "web_service/web_backend.h"
|
|
|
|
namespace WebService {
|
|
|
|
static constexpr char API_VERSION[]{"1"};
|
|
|
|
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}});
|
|
}
|
|
|
|
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");
|
|
return;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
// Post JSON asynchronously by spawning a new thread
|
|
if (are_credentials_provided) {
|
|
// Authenticated request if credentials are provided
|
|
std::thread{PostJsonAuthenticated, url, data, username, token}.detach();
|
|
} else {
|
|
// Otherwise, anonymous request
|
|
std::thread{PostJsonAnonymous, url, data}.detach();
|
|
}
|
|
}
|
|
|
|
} // namespace WebService
|