Address a bunch of review comments
This commit is contained in:
parent
4d139943f2
commit
b4ace6ec6f
|
@ -21,4 +21,4 @@ struct WebResult {
|
||||||
std::string result_string;
|
std::string result_string;
|
||||||
std::string returned_data;
|
std::string returned_data;
|
||||||
};
|
};
|
||||||
} // namespace Commo
|
} // namespace Common
|
||||||
|
|
|
@ -28,11 +28,12 @@ static u64 GenerateTelemetryId() {
|
||||||
mbedtls_entropy_context entropy;
|
mbedtls_entropy_context entropy;
|
||||||
mbedtls_entropy_init(&entropy);
|
mbedtls_entropy_init(&entropy);
|
||||||
mbedtls_ctr_drbg_context ctr_drbg;
|
mbedtls_ctr_drbg_context ctr_drbg;
|
||||||
const char* personalization = "yuzu Telemetry ID";
|
std::string personalization = "yuzu Telemetry ID";
|
||||||
|
|
||||||
mbedtls_ctr_drbg_init(&ctr_drbg);
|
mbedtls_ctr_drbg_init(&ctr_drbg);
|
||||||
mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy,
|
ASSERT(mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy,
|
||||||
(const unsigned char*)personalization, strlen(personalization));
|
reinterpret_cast<const unsigned char*>(personalization.c_str()),
|
||||||
|
personalization.size()) == 0)
|
||||||
ASSERT(mbedtls_ctr_drbg_random(&ctr_drbg, reinterpret_cast<unsigned char*>(&telemetry_id),
|
ASSERT(mbedtls_ctr_drbg_random(&ctr_drbg, reinterpret_cast<unsigned char*>(&telemetry_id),
|
||||||
sizeof(u64)) == 0);
|
sizeof(u64)) == 0);
|
||||||
|
|
||||||
|
@ -88,7 +89,7 @@ u64 RegenerateTelemetryId() {
|
||||||
return new_telemetry_id;
|
return new_telemetry_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool VerifyLogin(std::string username, std::string token) {
|
bool VerifyLogin(const std::string& username, const std::string& token) {
|
||||||
#ifdef ENABLE_WEB_SERVICE
|
#ifdef ENABLE_WEB_SERVICE
|
||||||
return WebService::VerifyLogin(Settings::values.web_api_url, username, token);
|
return WebService::VerifyLogin(Settings::values.web_api_url, username, token);
|
||||||
#else
|
#else
|
||||||
|
@ -120,7 +121,7 @@ TelemetrySession::TelemetrySession() {
|
||||||
u64 program_id{};
|
u64 program_id{};
|
||||||
const Loader::ResultStatus res{System::GetInstance().GetAppLoader().ReadProgramId(program_id)};
|
const Loader::ResultStatus res{System::GetInstance().GetAppLoader().ReadProgramId(program_id)};
|
||||||
if (res == Loader::ResultStatus::Success) {
|
if (res == Loader::ResultStatus::Success) {
|
||||||
std::string formatted_program_id{fmt::format("{:016X}", program_id)};
|
const std::string formatted_program_id{fmt::format("{:016X}", program_id)};
|
||||||
AddField(Telemetry::FieldType::Session, "ProgramId", formatted_program_id);
|
AddField(Telemetry::FieldType::Session, "ProgramId", formatted_program_id);
|
||||||
|
|
||||||
std::string name;
|
std::string name;
|
||||||
|
|
|
@ -56,6 +56,6 @@ u64 RegenerateTelemetryId();
|
||||||
* @param func A function that gets exectued when the verification is finished
|
* @param func A function that gets exectued when the verification is finished
|
||||||
* @returns Future with bool indicating whether the verification succeeded
|
* @returns Future with bool indicating whether the verification succeeded
|
||||||
*/
|
*/
|
||||||
bool VerifyLogin(std::string username, std::string token);
|
bool VerifyLogin(const std::string& username, const std::string& token);
|
||||||
|
|
||||||
} // namespace Core
|
} // namespace Core
|
||||||
|
|
|
@ -10,6 +10,11 @@
|
||||||
|
|
||||||
namespace WebService {
|
namespace WebService {
|
||||||
|
|
||||||
|
TelemetryJson::TelemetryJson(const std::string& host, const std::string& username,
|
||||||
|
const std::string& token)
|
||||||
|
: host(std::move(host)), username(std::move(username)), token(std::move(token)) {}
|
||||||
|
TelemetryJson::~TelemetryJson() = default;
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
void TelemetryJson::Serialize(Telemetry::FieldType type, const std::string& name, T value) {
|
void TelemetryJson::Serialize(Telemetry::FieldType type, const std::string& name, T value) {
|
||||||
sections[static_cast<u8>(type)][name] = value;
|
sections[static_cast<u8>(type)][name] = value;
|
||||||
|
|
|
@ -18,9 +18,8 @@ namespace WebService {
|
||||||
*/
|
*/
|
||||||
class TelemetryJson : public Telemetry::VisitorInterface {
|
class TelemetryJson : public Telemetry::VisitorInterface {
|
||||||
public:
|
public:
|
||||||
TelemetryJson(const std::string& host, const std::string& username, const std::string& token)
|
TelemetryJson(const std::string& host, const std::string& username, const std::string& token);
|
||||||
: host(host), username(username), token(token) {}
|
~TelemetryJson();
|
||||||
~TelemetryJson() = default;
|
|
||||||
|
|
||||||
void Visit(const Telemetry::Field<bool>& field) override;
|
void Visit(const Telemetry::Field<bool>& field) override;
|
||||||
void Visit(const Telemetry::Field<double>& field) override;
|
void Visit(const Telemetry::Field<double>& field) override;
|
||||||
|
|
|
@ -13,12 +13,12 @@
|
||||||
|
|
||||||
namespace WebService {
|
namespace WebService {
|
||||||
|
|
||||||
static constexpr char API_VERSION[]{"1"};
|
constexpr char API_VERSION[]{"1"};
|
||||||
|
|
||||||
constexpr int HTTP_PORT = 80;
|
constexpr u32 HTTP_PORT = 80;
|
||||||
constexpr int HTTPS_PORT = 443;
|
constexpr u32 HTTPS_PORT = 443;
|
||||||
|
|
||||||
constexpr int TIMEOUT_SECONDS = 30;
|
constexpr u32 TIMEOUT_SECONDS = 30;
|
||||||
|
|
||||||
Client::JWTCache Client::jwt_cache{};
|
Client::JWTCache Client::jwt_cache{};
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,11 @@ CompatDB::CompatDB(QWidget* parent)
|
||||||
|
|
||||||
CompatDB::~CompatDB() = default;
|
CompatDB::~CompatDB() = default;
|
||||||
|
|
||||||
enum class CompatDBPage { Intro = 0, Selection = 1, Final = 2 };
|
enum class CompatDBPage {
|
||||||
|
Intro = 0,
|
||||||
|
Selection = 1,
|
||||||
|
Final = 2,
|
||||||
|
};
|
||||||
|
|
||||||
void CompatDB::Submit() {
|
void CompatDB::Submit() {
|
||||||
QButtonGroup* compatibility = new QButtonGroup(this);
|
QButtonGroup* compatibility = new QButtonGroup(this);
|
||||||
|
|
|
@ -21,7 +21,6 @@ public:
|
||||||
private:
|
private:
|
||||||
std::unique_ptr<Ui::CompatDB> ui;
|
std::unique_ptr<Ui::CompatDB> ui;
|
||||||
|
|
||||||
private slots:
|
|
||||||
void Submit();
|
void Submit();
|
||||||
void EnableNext();
|
void EnableNext();
|
||||||
};
|
};
|
||||||
|
|
|
@ -25,7 +25,7 @@ ConfigureWeb::ConfigureWeb(QWidget* parent)
|
||||||
this->setConfiguration();
|
this->setConfiguration();
|
||||||
}
|
}
|
||||||
|
|
||||||
ConfigureWeb::~ConfigureWeb() {}
|
ConfigureWeb::~ConfigureWeb() = default;
|
||||||
|
|
||||||
void ConfigureWeb::setConfiguration() {
|
void ConfigureWeb::setConfiguration() {
|
||||||
ui->web_credentials_disclaimer->setWordWrap(true);
|
ui->web_credentials_disclaimer->setWordWrap(true);
|
||||||
|
|
|
@ -11,7 +11,7 @@ namespace DiscordRPC {
|
||||||
class DiscordImpl : public DiscordInterface {
|
class DiscordImpl : public DiscordInterface {
|
||||||
public:
|
public:
|
||||||
DiscordImpl();
|
DiscordImpl();
|
||||||
~DiscordImpl();
|
~DiscordImpl() override;
|
||||||
|
|
||||||
void Pause() override;
|
void Pause() override;
|
||||||
void Update() override;
|
void Update() override;
|
||||||
|
|
|
@ -115,7 +115,7 @@ void GMainWindow::ShowTelemetryCallout() {
|
||||||
}
|
}
|
||||||
|
|
||||||
UISettings::values.callout_flags |= static_cast<uint32_t>(CalloutFlag::Telemetry);
|
UISettings::values.callout_flags |= static_cast<uint32_t>(CalloutFlag::Telemetry);
|
||||||
static const QString telemetry_message =
|
const QString telemetry_message =
|
||||||
tr("<a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous "
|
tr("<a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous "
|
||||||
"data is collected</a> to help improve yuzu. "
|
"data is collected</a> to help improve yuzu. "
|
||||||
"<br/><br/>Would you like to share your usage data with us?");
|
"<br/><br/>Would you like to share your usage data with us?");
|
||||||
|
|
Reference in New Issue