mirror of
https://github.com/xemu-project/xemu.git
synced 2025-02-17 10:38:52 +00:00
132 lines
3.2 KiB
C++
132 lines
3.2 KiB
C++
/*
|
|
* xemu Reporting
|
|
*
|
|
* Title compatibility and bug report submission.
|
|
*
|
|
* Copyright (C) 2020-2021 Matt Borgerson
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <glib.h>
|
|
#include <glib/gi18n.h>
|
|
#include <stdio.h>
|
|
#include "xemu-reporting.h"
|
|
#define CPPHTTPLIB_OPENSSL_SUPPORT 1
|
|
#include "httplib.h"
|
|
#include "json.hpp"
|
|
using json = nlohmann::json;
|
|
|
|
#define DEBUG_COMPAT_SERVICE 0
|
|
|
|
CompatibilityReport::CompatibilityReport()
|
|
{
|
|
}
|
|
|
|
CompatibilityReport::~CompatibilityReport()
|
|
{
|
|
}
|
|
|
|
const std::string &CompatibilityReport::GetSerializedReport()
|
|
{
|
|
json report = {
|
|
{"token", token},
|
|
{"xemu_version", xemu_version},
|
|
{"xemu_branch", xemu_branch},
|
|
{"xemu_commit", xemu_commit},
|
|
{"xemu_date", xemu_date},
|
|
{"os_platform", os_platform},
|
|
{"os_version", os_version},
|
|
{"cpu", cpu},
|
|
{"gl_vendor", gl_vendor},
|
|
{"gl_renderer", gl_renderer},
|
|
{"gl_version", gl_version},
|
|
{"gl_shading_language_version", gl_shading_language_version},
|
|
{"compat_rating", compat_rating},
|
|
{"compat_comments", compat_comments},
|
|
{"xbe_headers", xbe_headers},
|
|
};
|
|
serialized = report.dump(2);
|
|
return serialized;
|
|
}
|
|
|
|
bool CompatibilityReport::Send()
|
|
{
|
|
// Serialize the report
|
|
const std::string &s = GetSerializedReport();
|
|
|
|
#if DEBUG_COMPAT_SERVICE
|
|
httplib::SSLClient cli("127.0.0.1", 443);
|
|
#else
|
|
httplib::SSLClient cli("reports.xemu.app", 443);
|
|
#endif
|
|
|
|
cli.set_follow_location(true);
|
|
cli.set_timeout_sec(5);
|
|
// cli.enable_server_certificate_verification(true); // FIXME: Package cert bundle
|
|
|
|
auto res = cli.Post("/compatibility", s, "application/json");
|
|
|
|
if (!res) {
|
|
#if 0 // FIXME: Handle SSL certificate verification failure
|
|
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
|
auto result = cli.get_openssl_verify_result();
|
|
if (result) {
|
|
fprintf(stderr, "verify error: %s\n", X509_verify_cert_error_string(result));
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
result_code = -1;
|
|
result_msg = "Failed to connect";
|
|
return false;
|
|
}
|
|
|
|
result_code = res->status;
|
|
|
|
switch(res->status) {
|
|
case 200:
|
|
result_msg = "Ok";
|
|
return true;
|
|
case 400:
|
|
case 411:
|
|
result_msg = "Invalid request";
|
|
return false;
|
|
case 403:
|
|
result_msg = "Invalid token";
|
|
return false;
|
|
case 409:
|
|
result_msg = "Please upgrade to latest version";
|
|
return false;
|
|
case 413:
|
|
result_msg = "Report too long";
|
|
return false;
|
|
default:
|
|
result_msg = "Unknown error occured";
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void CompatibilityReport::SetXbeData(struct xbe *xbe)
|
|
{
|
|
assert(xbe != NULL);
|
|
assert(xbe->headers != NULL);
|
|
assert(xbe->headers_len > 0);
|
|
|
|
// base64 encode all XBE headers to be sent with the report
|
|
gchar *buf = g_base64_encode(xbe->headers, xbe->headers_len);
|
|
xbe_headers = buf;
|
|
g_free(buf);
|
|
}
|