2018-09-16 18:05:51 +00:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QtConcurrent/QtConcurrentRun>
|
|
|
|
#include "core/settings.h"
|
|
|
|
#include "core/telemetry_session.h"
|
|
|
|
#include "ui_configure_web.h"
|
|
|
|
#include "yuzu/configuration/configure_web.h"
|
|
|
|
#include "yuzu/ui_settings.h"
|
|
|
|
|
|
|
|
ConfigureWeb::ConfigureWeb(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(std::make_unique<Ui::ConfigureWeb>()) {
|
|
|
|
ui->setupUi(this);
|
|
|
|
connect(ui->button_regenerate_telemetry_id, &QPushButton::clicked, this,
|
|
|
|
&ConfigureWeb::RefreshTelemetryID);
|
|
|
|
connect(ui->button_verify_login, &QPushButton::clicked, this, &ConfigureWeb::VerifyLogin);
|
|
|
|
connect(&verify_watcher, &QFutureWatcher<bool>::finished, this, &ConfigureWeb::OnLoginVerified);
|
|
|
|
|
|
|
|
#ifndef USE_DISCORD_PRESENCE
|
|
|
|
ui->discord_group->setVisible(false);
|
|
|
|
#endif
|
|
|
|
this->setConfiguration();
|
|
|
|
}
|
|
|
|
|
2018-09-17 15:16:01 +00:00
|
|
|
ConfigureWeb::~ConfigureWeb() = default;
|
2018-09-16 18:05:51 +00:00
|
|
|
|
|
|
|
void ConfigureWeb::setConfiguration() {
|
|
|
|
ui->web_credentials_disclaimer->setWordWrap(true);
|
|
|
|
ui->telemetry_learn_more->setOpenExternalLinks(true);
|
2018-10-02 14:04:10 +00:00
|
|
|
ui->telemetry_learn_more->setText(
|
2018-10-06 07:15:27 +00:00
|
|
|
tr("<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style=\"text-decoration: "
|
2018-10-02 14:04:10 +00:00
|
|
|
"underline; color:#039be5;\">Learn more</span></a>"));
|
2018-09-16 18:05:51 +00:00
|
|
|
|
|
|
|
ui->web_signup_link->setOpenExternalLinks(true);
|
|
|
|
ui->web_signup_link->setText(
|
2018-09-19 18:04:45 +00:00
|
|
|
tr("<a href='https://profile.yuzu-emu.org/'><span style=\"text-decoration: underline; "
|
2018-09-16 18:05:51 +00:00
|
|
|
"color:#039be5;\">Sign up</span></a>"));
|
|
|
|
ui->web_token_info_link->setOpenExternalLinks(true);
|
|
|
|
ui->web_token_info_link->setText(
|
2018-09-19 18:04:45 +00:00
|
|
|
tr("<a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style=\"text-decoration: "
|
2018-09-16 18:05:51 +00:00
|
|
|
"underline; color:#039be5;\">What is my token?</span></a>"));
|
|
|
|
|
|
|
|
ui->toggle_telemetry->setChecked(Settings::values.enable_telemetry);
|
|
|
|
ui->edit_username->setText(QString::fromStdString(Settings::values.yuzu_username));
|
|
|
|
ui->edit_token->setText(QString::fromStdString(Settings::values.yuzu_token));
|
|
|
|
// Connect after setting the values, to avoid calling OnLoginChanged now
|
|
|
|
connect(ui->edit_token, &QLineEdit::textChanged, this, &ConfigureWeb::OnLoginChanged);
|
|
|
|
connect(ui->edit_username, &QLineEdit::textChanged, this, &ConfigureWeb::OnLoginChanged);
|
|
|
|
ui->label_telemetry_id->setText(
|
|
|
|
tr("Telemetry ID: 0x%1").arg(QString::number(Core::GetTelemetryId(), 16).toUpper()));
|
|
|
|
user_verified = true;
|
|
|
|
|
|
|
|
ui->toggle_discordrpc->setChecked(UISettings::values.enable_discord_presence);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureWeb::applyConfiguration() {
|
|
|
|
Settings::values.enable_telemetry = ui->toggle_telemetry->isChecked();
|
|
|
|
UISettings::values.enable_discord_presence = ui->toggle_discordrpc->isChecked();
|
|
|
|
if (user_verified) {
|
|
|
|
Settings::values.yuzu_username = ui->edit_username->text().toStdString();
|
|
|
|
Settings::values.yuzu_token = ui->edit_token->text().toStdString();
|
|
|
|
} else {
|
|
|
|
QMessageBox::warning(this, tr("Username and token not verified"),
|
|
|
|
tr("Username and token were not verified. The changes to your "
|
|
|
|
"username and/or token have not been saved."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureWeb::RefreshTelemetryID() {
|
|
|
|
const u64 new_telemetry_id{Core::RegenerateTelemetryId()};
|
|
|
|
ui->label_telemetry_id->setText(
|
|
|
|
tr("Telemetry ID: 0x%1").arg(QString::number(new_telemetry_id, 16).toUpper()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureWeb::OnLoginChanged() {
|
|
|
|
if (ui->edit_username->text().isEmpty() && ui->edit_token->text().isEmpty()) {
|
|
|
|
user_verified = true;
|
2019-05-19 17:05:06 +00:00
|
|
|
|
|
|
|
const QPixmap pixmap = QIcon::fromTheme(QStringLiteral("checked")).pixmap(16);
|
|
|
|
ui->label_username_verified->setPixmap(pixmap);
|
|
|
|
ui->label_token_verified->setPixmap(pixmap);
|
2018-09-16 18:05:51 +00:00
|
|
|
} else {
|
|
|
|
user_verified = false;
|
2019-05-19 17:05:06 +00:00
|
|
|
|
|
|
|
const QPixmap pixmap = QIcon::fromTheme(QStringLiteral("failed")).pixmap(16);
|
|
|
|
ui->label_username_verified->setPixmap(pixmap);
|
|
|
|
ui->label_token_verified->setPixmap(pixmap);
|
2018-09-16 18:05:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureWeb::VerifyLogin() {
|
|
|
|
ui->button_verify_login->setDisabled(true);
|
2019-01-17 16:35:55 +00:00
|
|
|
ui->button_verify_login->setText(tr("Verifying..."));
|
2019-01-17 16:39:46 +00:00
|
|
|
verify_watcher.setFuture(QtConcurrent::run([username = ui->edit_username->text().toStdString(),
|
|
|
|
token = ui->edit_token->text().toStdString()] {
|
|
|
|
return Core::VerifyLogin(username, token);
|
|
|
|
}));
|
2018-09-16 18:05:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureWeb::OnLoginVerified() {
|
|
|
|
ui->button_verify_login->setEnabled(true);
|
|
|
|
ui->button_verify_login->setText(tr("Verify"));
|
|
|
|
if (verify_watcher.result()) {
|
|
|
|
user_verified = true;
|
2019-05-19 17:05:06 +00:00
|
|
|
|
|
|
|
const QPixmap pixmap = QIcon::fromTheme(QStringLiteral("checked")).pixmap(16);
|
|
|
|
ui->label_username_verified->setPixmap(pixmap);
|
|
|
|
ui->label_token_verified->setPixmap(pixmap);
|
2018-09-16 18:05:51 +00:00
|
|
|
} else {
|
2019-05-19 17:05:06 +00:00
|
|
|
const QPixmap pixmap = QIcon::fromTheme(QStringLiteral("failed")).pixmap(16);
|
|
|
|
ui->label_username_verified->setPixmap(pixmap);
|
|
|
|
ui->label_token_verified->setPixmap(pixmap);
|
|
|
|
|
2018-09-16 18:05:51 +00:00
|
|
|
QMessageBox::critical(
|
|
|
|
this, tr("Verification failed"),
|
|
|
|
tr("Verification failed. Check that you have entered your username and token "
|
|
|
|
"correctly, and that your internet connection is working."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureWeb::retranslateUi() {
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|