2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2020-05-25 14:03:49 +03:00
|
|
|
#include <QLabel>
|
2020-02-23 13:42:29 +03:00
|
|
|
#include <QMetaType>
|
2020-01-31 08:12:02 +03:00
|
|
|
#include <QPainter>
|
2017-11-22 20:52:38 +03:00
|
|
|
#include <QStyleOption>
|
2018-03-12 23:23:26 +03:00
|
|
|
#include <QTimer>
|
2020-12-01 01:30:33 +03:00
|
|
|
#include <QtMath>
|
2017-11-22 20:52:38 +03:00
|
|
|
|
2020-01-31 18:08:30 +03:00
|
|
|
#include <mtx/responses/register.hpp>
|
2021-06-03 16:52:41 +03:00
|
|
|
#include <mtx/responses/well-known.hpp>
|
2020-01-31 18:08:30 +03:00
|
|
|
|
2017-07-15 17:11:46 +03:00
|
|
|
#include "Config.h"
|
2018-07-17 16:37:25 +03:00
|
|
|
#include "Logging.h"
|
2018-03-12 23:23:26 +03:00
|
|
|
#include "MainWindow.h"
|
2017-10-28 15:46:39 +03:00
|
|
|
#include "MatrixClient.h"
|
2017-11-22 22:13:22 +03:00
|
|
|
#include "RegisterPage.h"
|
2018-07-17 16:37:25 +03:00
|
|
|
#include "ui/FlatButton.h"
|
|
|
|
#include "ui/RaisedButton.h"
|
|
|
|
#include "ui/TextField.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2020-02-23 13:42:29 +03:00
|
|
|
#include "dialogs/FallbackAuth.h"
|
2018-07-17 16:37:25 +03:00
|
|
|
#include "dialogs/ReCaptcha.h"
|
2018-03-12 23:23:26 +03:00
|
|
|
|
2020-02-23 13:42:29 +03:00
|
|
|
Q_DECLARE_METATYPE(mtx::user_interactive::Unauthorized)
|
|
|
|
Q_DECLARE_METATYPE(mtx::user_interactive::Auth)
|
|
|
|
|
2018-05-08 18:43:56 +03:00
|
|
|
RegisterPage::RegisterPage(QWidget *parent)
|
2017-08-20 13:47:22 +03:00
|
|
|
: QWidget(parent)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2020-02-23 13:42:29 +03:00
|
|
|
qRegisterMetaType<mtx::user_interactive::Unauthorized>();
|
|
|
|
qRegisterMetaType<mtx::user_interactive::Auth>();
|
2017-09-10 12:59:21 +03:00
|
|
|
top_layout_ = new QVBoxLayout();
|
|
|
|
|
|
|
|
back_layout_ = new QHBoxLayout();
|
|
|
|
back_layout_->setSpacing(0);
|
|
|
|
back_layout_->setContentsMargins(5, 5, -1, -1);
|
|
|
|
|
|
|
|
back_button_ = new FlatButton(this);
|
|
|
|
back_button_->setMinimumSize(QSize(30, 30));
|
|
|
|
|
|
|
|
QIcon icon;
|
2017-10-15 22:08:51 +03:00
|
|
|
icon.addFile(":/icons/icons/ui/angle-pointing-to-left.png");
|
2017-09-10 12:59:21 +03:00
|
|
|
|
|
|
|
back_button_->setIcon(icon);
|
2017-10-15 22:08:51 +03:00
|
|
|
back_button_->setIconSize(QSize(32, 32));
|
2017-09-10 12:59:21 +03:00
|
|
|
|
|
|
|
back_layout_->addWidget(back_button_, 0, Qt::AlignLeft | Qt::AlignVCenter);
|
|
|
|
back_layout_->addStretch(1);
|
|
|
|
|
2017-10-15 22:08:51 +03:00
|
|
|
QIcon logo;
|
|
|
|
logo.addFile(":/logos/register.png");
|
|
|
|
|
2017-11-25 16:14:37 +03:00
|
|
|
logo_ = new QLabel(this);
|
|
|
|
logo_->setPixmap(logo.pixmap(128));
|
2017-09-10 12:59:21 +03:00
|
|
|
|
|
|
|
logo_layout_ = new QHBoxLayout();
|
|
|
|
logo_layout_->setMargin(0);
|
|
|
|
logo_layout_->addWidget(logo_, 0, Qt::AlignHCenter);
|
|
|
|
|
|
|
|
form_wrapper_ = new QHBoxLayout();
|
|
|
|
form_widget_ = new QWidget();
|
|
|
|
form_widget_->setMinimumSize(QSize(350, 300));
|
|
|
|
|
|
|
|
form_layout_ = new QVBoxLayout();
|
|
|
|
form_layout_->setSpacing(20);
|
|
|
|
form_layout_->setContentsMargins(0, 0, 0, 40);
|
|
|
|
form_widget_->setLayout(form_layout_);
|
|
|
|
|
|
|
|
form_wrapper_->addStretch(1);
|
|
|
|
form_wrapper_->addWidget(form_widget_);
|
|
|
|
form_wrapper_->addStretch(1);
|
|
|
|
|
|
|
|
username_input_ = new TextField();
|
|
|
|
username_input_->setLabel(tr("Username"));
|
2020-12-01 01:30:33 +03:00
|
|
|
username_input_->setRegexp(QRegularExpression("[a-z0-9._=/-]+"));
|
2020-05-09 14:06:47 +03:00
|
|
|
username_input_->setToolTip(tr("The username must not be empty, and must contain only the "
|
|
|
|
"characters a-z, 0-9, ., _, =, -, and /."));
|
2017-09-10 12:59:21 +03:00
|
|
|
|
|
|
|
password_input_ = new TextField();
|
|
|
|
password_input_->setLabel(tr("Password"));
|
2020-12-01 01:30:33 +03:00
|
|
|
password_input_->setRegexp(QRegularExpression("^.{8,}$"));
|
2017-09-10 12:59:21 +03:00
|
|
|
password_input_->setEchoMode(QLineEdit::Password);
|
2020-05-09 14:06:47 +03:00
|
|
|
password_input_->setToolTip(tr("Please choose a secure password. The exact requirements "
|
2020-05-10 02:38:40 +03:00
|
|
|
"for password strength may depend on your server."));
|
2017-09-10 12:59:21 +03:00
|
|
|
|
|
|
|
password_confirmation_ = new TextField();
|
|
|
|
password_confirmation_->setLabel(tr("Password confirmation"));
|
|
|
|
password_confirmation_->setEchoMode(QLineEdit::Password);
|
|
|
|
|
|
|
|
server_input_ = new TextField();
|
2020-05-09 14:06:47 +03:00
|
|
|
server_input_->setLabel(tr("Homeserver"));
|
|
|
|
server_input_->setToolTip(
|
|
|
|
tr("A server that allows registration. Since matrix is decentralized, you need to first "
|
|
|
|
"find a server you can register on or host your own."));
|
2017-09-10 12:59:21 +03:00
|
|
|
|
2020-12-01 01:30:33 +03:00
|
|
|
error_username_label_ = new QLabel(this);
|
|
|
|
error_username_label_->setWordWrap(true);
|
|
|
|
error_username_label_->hide();
|
|
|
|
|
|
|
|
error_password_label_ = new QLabel(this);
|
|
|
|
error_password_label_->setWordWrap(true);
|
|
|
|
error_password_label_->hide();
|
|
|
|
|
|
|
|
error_password_confirmation_label_ = new QLabel(this);
|
|
|
|
error_password_confirmation_label_->setWordWrap(true);
|
|
|
|
error_password_confirmation_label_->hide();
|
|
|
|
|
2021-06-03 15:56:43 +03:00
|
|
|
error_server_label_ = new QLabel(this);
|
|
|
|
error_server_label_->setWordWrap(true);
|
|
|
|
error_server_label_->hide();
|
|
|
|
|
2020-06-06 00:34:00 +03:00
|
|
|
form_layout_->addWidget(username_input_, Qt::AlignHCenter);
|
2020-12-01 01:30:33 +03:00
|
|
|
form_layout_->addWidget(error_username_label_, Qt::AlignHCenter);
|
2020-06-06 00:34:00 +03:00
|
|
|
form_layout_->addWidget(password_input_, Qt::AlignHCenter);
|
2020-12-01 01:30:33 +03:00
|
|
|
form_layout_->addWidget(error_password_label_, Qt::AlignHCenter);
|
2020-06-06 00:34:00 +03:00
|
|
|
form_layout_->addWidget(password_confirmation_, Qt::AlignHCenter);
|
2020-12-01 01:30:33 +03:00
|
|
|
form_layout_->addWidget(error_password_confirmation_label_, Qt::AlignHCenter);
|
2020-06-06 00:34:00 +03:00
|
|
|
form_layout_->addWidget(server_input_, Qt::AlignHCenter);
|
2021-06-03 15:56:43 +03:00
|
|
|
form_layout_->addWidget(error_server_label_, Qt::AlignHCenter);
|
2017-09-10 12:59:21 +03:00
|
|
|
|
|
|
|
button_layout_ = new QHBoxLayout();
|
|
|
|
button_layout_->setSpacing(0);
|
|
|
|
button_layout_->setMargin(0);
|
|
|
|
|
|
|
|
error_label_ = new QLabel(this);
|
2020-12-01 01:30:33 +03:00
|
|
|
error_label_->setWordWrap(true);
|
2017-09-10 12:59:21 +03:00
|
|
|
|
|
|
|
register_button_ = new RaisedButton(tr("REGISTER"), this);
|
|
|
|
register_button_->setMinimumSize(350, 65);
|
|
|
|
register_button_->setFontSize(conf::btn::fontSize);
|
|
|
|
register_button_->setCornerRadius(conf::btn::cornerRadius);
|
|
|
|
|
|
|
|
button_layout_->addStretch(1);
|
|
|
|
button_layout_->addWidget(register_button_);
|
|
|
|
button_layout_->addStretch(1);
|
|
|
|
|
|
|
|
top_layout_->addLayout(back_layout_);
|
|
|
|
top_layout_->addLayout(logo_layout_);
|
|
|
|
top_layout_->addLayout(form_wrapper_);
|
|
|
|
top_layout_->addStretch(1);
|
|
|
|
top_layout_->addLayout(button_layout_);
|
|
|
|
top_layout_->addWidget(error_label_, 0, Qt::AlignHCenter);
|
2020-12-01 01:30:33 +03:00
|
|
|
top_layout_->addStretch(1);
|
2017-09-10 12:59:21 +03:00
|
|
|
|
2021-06-03 16:52:41 +03:00
|
|
|
connect(
|
|
|
|
this,
|
|
|
|
&RegisterPage::versionErrorCb,
|
|
|
|
this,
|
|
|
|
[this](const QString &msg) {
|
|
|
|
error_server_label_->show();
|
|
|
|
server_input_->setValid(false);
|
|
|
|
showError(error_server_label_, msg);
|
|
|
|
},
|
|
|
|
Qt::QueuedConnection);
|
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
connect(back_button_, SIGNAL(clicked()), this, SLOT(onBackButtonClicked()));
|
|
|
|
connect(register_button_, SIGNAL(clicked()), this, SLOT(onRegisterButtonClicked()));
|
|
|
|
|
|
|
|
connect(username_input_, SIGNAL(returnPressed()), register_button_, SLOT(click()));
|
2020-12-01 01:30:33 +03:00
|
|
|
connect(username_input_, &TextField::editingFinished, this, &RegisterPage::checkFields);
|
2017-09-10 12:59:21 +03:00
|
|
|
connect(password_input_, SIGNAL(returnPressed()), register_button_, SLOT(click()));
|
2020-12-01 01:30:33 +03:00
|
|
|
connect(password_input_, &TextField::editingFinished, this, &RegisterPage::checkFields);
|
2017-09-10 12:59:21 +03:00
|
|
|
connect(password_confirmation_, SIGNAL(returnPressed()), register_button_, SLOT(click()));
|
2020-12-01 01:30:33 +03:00
|
|
|
connect(
|
|
|
|
password_confirmation_, &TextField::editingFinished, this, &RegisterPage::checkFields);
|
2017-09-10 12:59:21 +03:00
|
|
|
connect(server_input_, SIGNAL(returnPressed()), register_button_, SLOT(click()));
|
2020-12-01 01:30:33 +03:00
|
|
|
connect(server_input_, &TextField::editingFinished, this, &RegisterPage::checkFields);
|
|
|
|
connect(this, &RegisterPage::registerErrorCb, this, [this](const QString &msg) {
|
|
|
|
showError(msg);
|
|
|
|
});
|
2018-06-09 16:03:14 +03:00
|
|
|
connect(
|
|
|
|
this,
|
|
|
|
&RegisterPage::registrationFlow,
|
|
|
|
this,
|
2020-02-23 13:42:29 +03:00
|
|
|
[this](const std::string &user,
|
|
|
|
const std::string &pass,
|
|
|
|
const mtx::user_interactive::Unauthorized &unauthorized) {
|
|
|
|
auto completed_stages = unauthorized.completed;
|
|
|
|
auto flows = unauthorized.flows;
|
2020-04-17 01:27:43 +03:00
|
|
|
auto session = unauthorized.session.empty() ? http::client()->generate_txn_id()
|
|
|
|
: unauthorized.session;
|
2020-02-23 13:42:29 +03:00
|
|
|
|
|
|
|
nhlog::ui()->info("Completed stages: {}", completed_stages.size());
|
|
|
|
|
|
|
|
if (!completed_stages.empty())
|
|
|
|
flows.erase(std::remove_if(
|
|
|
|
flows.begin(),
|
|
|
|
flows.end(),
|
|
|
|
[completed_stages](auto flow) {
|
|
|
|
if (completed_stages.size() > flow.stages.size())
|
|
|
|
return true;
|
|
|
|
for (size_t f = 0; f < completed_stages.size(); f++)
|
|
|
|
if (completed_stages[f] != flow.stages[f])
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}),
|
|
|
|
flows.end());
|
|
|
|
|
|
|
|
if (flows.empty()) {
|
|
|
|
nhlog::net()->error("No available registration flows!");
|
|
|
|
emit registerErrorCb(tr("No supported registration flows!"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto current_stage = flows.front().stages.at(completed_stages.size());
|
|
|
|
|
|
|
|
if (current_stage == mtx::user_interactive::auth_types::recaptcha) {
|
|
|
|
auto captchaDialog =
|
|
|
|
new dialogs::ReCaptcha(QString::fromStdString(session), this);
|
|
|
|
|
|
|
|
connect(captchaDialog,
|
|
|
|
&dialogs::ReCaptcha::confirmation,
|
|
|
|
this,
|
|
|
|
[this, user, pass, session, captchaDialog]() {
|
|
|
|
captchaDialog->close();
|
|
|
|
captchaDialog->deleteLater();
|
|
|
|
|
|
|
|
emit registerAuth(
|
|
|
|
user,
|
|
|
|
pass,
|
|
|
|
mtx::user_interactive::Auth{
|
|
|
|
session, mtx::user_interactive::auth::Fallback{}});
|
|
|
|
});
|
|
|
|
connect(captchaDialog,
|
|
|
|
&dialogs::ReCaptcha::cancel,
|
|
|
|
this,
|
|
|
|
&RegisterPage::errorOccurred);
|
|
|
|
|
|
|
|
QTimer::singleShot(
|
|
|
|
1000, this, [captchaDialog]() { captchaDialog->show(); });
|
|
|
|
} else if (current_stage == mtx::user_interactive::auth_types::dummy) {
|
|
|
|
emit registerAuth(user,
|
|
|
|
pass,
|
|
|
|
mtx::user_interactive::Auth{
|
|
|
|
session, mtx::user_interactive::auth::Dummy{}});
|
|
|
|
} else {
|
|
|
|
// use fallback
|
|
|
|
auto dialog =
|
|
|
|
new dialogs::FallbackAuth(QString::fromStdString(current_stage),
|
|
|
|
QString::fromStdString(session),
|
|
|
|
this);
|
|
|
|
|
|
|
|
connect(dialog,
|
|
|
|
&dialogs::FallbackAuth::confirmation,
|
|
|
|
this,
|
|
|
|
[this, user, pass, session, dialog]() {
|
|
|
|
dialog->close();
|
|
|
|
dialog->deleteLater();
|
|
|
|
|
|
|
|
emit registerAuth(
|
|
|
|
user,
|
|
|
|
pass,
|
|
|
|
mtx::user_interactive::Auth{
|
|
|
|
session, mtx::user_interactive::auth::Fallback{}});
|
|
|
|
});
|
|
|
|
connect(dialog,
|
|
|
|
&dialogs::FallbackAuth::cancel,
|
|
|
|
this,
|
|
|
|
&RegisterPage::errorOccurred);
|
|
|
|
|
|
|
|
dialog->show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(
|
|
|
|
this,
|
|
|
|
&RegisterPage::registerAuth,
|
|
|
|
this,
|
|
|
|
[this](const std::string &user,
|
|
|
|
const std::string &pass,
|
|
|
|
const mtx::user_interactive::Auth &auth) {
|
|
|
|
http::client()->registration(
|
|
|
|
user,
|
|
|
|
pass,
|
|
|
|
auth,
|
|
|
|
[this, user, pass](const mtx::responses::Register &res,
|
|
|
|
mtx::http::RequestErr err) {
|
|
|
|
if (!err) {
|
|
|
|
http::client()->set_user(res.user_id);
|
|
|
|
http::client()->set_access_token(res.access_token);
|
2021-02-25 15:40:06 +03:00
|
|
|
http::client()->set_device_id(res.device_id);
|
2020-02-23 13:42:29 +03:00
|
|
|
|
|
|
|
emit registerOk();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The server requires registration flows.
|
2021-06-30 03:43:36 +03:00
|
|
|
if (err->status_code == 401) {
|
2020-04-17 01:27:43 +03:00
|
|
|
if (err->matrix_error.unauthorized.flows.empty()) {
|
2020-02-23 13:42:29 +03:00
|
|
|
nhlog::net()->warn(
|
|
|
|
"failed to retrieve registration flows: ({}) "
|
|
|
|
"{}",
|
|
|
|
static_cast<int>(err->status_code),
|
|
|
|
err->matrix_error.error);
|
|
|
|
emit registerErrorCb(
|
|
|
|
QString::fromStdString(err->matrix_error.error));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit registrationFlow(
|
|
|
|
user, pass, err->matrix_error.unauthorized);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-17 01:27:43 +03:00
|
|
|
nhlog::net()->warn("failed to register: status_code ({}), "
|
|
|
|
"matrix_error: ({}), parser error ({})",
|
|
|
|
static_cast<int>(err->status_code),
|
|
|
|
err->matrix_error.error,
|
|
|
|
err->parse_error);
|
2020-02-23 13:42:29 +03:00
|
|
|
|
|
|
|
emit registerErrorCb(QString::fromStdString(err->matrix_error.error));
|
|
|
|
});
|
2018-06-09 16:03:14 +03:00
|
|
|
});
|
2017-09-10 12:59:21 +03:00
|
|
|
|
|
|
|
setLayout(top_layout_);
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
RegisterPage::onBackButtonClicked()
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-09-10 12:59:21 +03:00
|
|
|
emit backButtonClicked();
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2020-12-01 01:30:33 +03:00
|
|
|
RegisterPage::showError(const QString &msg)
|
2017-04-07 19:25:06 +03:00
|
|
|
{
|
2018-03-12 23:23:26 +03:00
|
|
|
emit errorOccurred();
|
2020-12-01 01:30:33 +03:00
|
|
|
auto rect = QFontMetrics(font()).boundingRect(msg);
|
|
|
|
int width = rect.width();
|
|
|
|
int height = rect.height();
|
|
|
|
error_label_->setFixedHeight(qCeil(width / 200.0) * height);
|
2017-09-10 12:59:21 +03:00
|
|
|
error_label_->setText(msg);
|
2017-04-07 19:25:06 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2020-12-01 01:30:33 +03:00
|
|
|
RegisterPage::showError(QLabel *label, const QString &msg)
|
|
|
|
{
|
|
|
|
emit errorOccurred();
|
|
|
|
auto rect = QFontMetrics(font()).boundingRect(msg);
|
|
|
|
int width = rect.width();
|
|
|
|
int height = rect.height();
|
|
|
|
label->setFixedHeight((int)qCeil(width / 200.0) * height);
|
|
|
|
label->setText(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
RegisterPage::checkOneField(QLabel *label, const TextField *t_field, const QString &msg)
|
|
|
|
{
|
|
|
|
if (t_field->isValid()) {
|
|
|
|
label->setText("");
|
|
|
|
label->hide();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
label->show();
|
|
|
|
showError(label, msg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
RegisterPage::checkFields()
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-09-10 12:59:21 +03:00
|
|
|
error_label_->setText("");
|
2020-12-01 01:30:33 +03:00
|
|
|
error_username_label_->setText("");
|
|
|
|
error_password_label_->setText("");
|
|
|
|
error_password_confirmation_label_->setText("");
|
2021-06-03 15:56:43 +03:00
|
|
|
error_server_label_->setText("");
|
2020-12-01 01:30:33 +03:00
|
|
|
|
|
|
|
error_username_label_->hide();
|
|
|
|
error_password_label_->hide();
|
|
|
|
error_password_confirmation_label_->hide();
|
2021-06-03 15:56:43 +03:00
|
|
|
error_server_label_->hide();
|
2020-12-01 01:30:33 +03:00
|
|
|
|
|
|
|
password_confirmation_->setValid(true);
|
|
|
|
server_input_->setValid(true);
|
|
|
|
|
|
|
|
bool all_fields_good = true;
|
|
|
|
if (username_input_->isModified() &&
|
|
|
|
!checkOneField(error_username_label_,
|
|
|
|
username_input_,
|
|
|
|
tr("The username must not be empty, and must contain only the "
|
|
|
|
"characters a-z, 0-9, ., _, =, -, and /."))) {
|
|
|
|
all_fields_good = false;
|
|
|
|
} else if (password_input_->isModified() &&
|
|
|
|
!checkOneField(error_password_label_,
|
|
|
|
password_input_,
|
|
|
|
tr("Password is not long enough (min 8 chars)"))) {
|
|
|
|
all_fields_good = false;
|
|
|
|
} else if (password_confirmation_->isModified() &&
|
|
|
|
password_input_->text() != password_confirmation_->text()) {
|
|
|
|
error_password_confirmation_label_->show();
|
|
|
|
showError(error_password_confirmation_label_, tr("Passwords don't match"));
|
|
|
|
password_confirmation_->setValid(false);
|
|
|
|
all_fields_good = false;
|
|
|
|
} else if (server_input_->isModified() &&
|
|
|
|
(!server_input_->hasAcceptableInput() || server_input_->text().isEmpty())) {
|
2021-06-03 15:56:43 +03:00
|
|
|
error_server_label_->show();
|
|
|
|
showError(error_server_label_, tr("Invalid server name"));
|
2020-12-01 01:30:33 +03:00
|
|
|
server_input_->setValid(false);
|
|
|
|
all_fields_good = false;
|
|
|
|
}
|
|
|
|
if (!username_input_->isModified() || !password_input_->isModified() ||
|
|
|
|
!password_confirmation_->isModified() || !server_input_->isModified()) {
|
|
|
|
all_fields_good = false;
|
|
|
|
}
|
|
|
|
return all_fields_good;
|
|
|
|
}
|
2017-09-10 12:59:21 +03:00
|
|
|
|
2020-12-01 01:30:33 +03:00
|
|
|
void
|
|
|
|
RegisterPage::onRegisterButtonClicked()
|
|
|
|
{
|
|
|
|
if (!checkFields()) {
|
2020-12-08 22:52:57 +03:00
|
|
|
showError(error_label_,
|
|
|
|
tr("One or more fields have invalid inputs. Please correct those issues "
|
|
|
|
"and try again."));
|
2020-12-01 01:30:33 +03:00
|
|
|
return;
|
2017-09-10 12:59:21 +03:00
|
|
|
} else {
|
2018-06-09 16:03:14 +03:00
|
|
|
auto username = username_input_->text().toStdString();
|
|
|
|
auto password = password_input_->text().toStdString();
|
|
|
|
auto server = server_input_->text().toStdString();
|
|
|
|
|
2018-07-15 19:09:08 +03:00
|
|
|
http::client()->set_server(server);
|
2021-03-06 22:52:08 +03:00
|
|
|
http::client()->verify_certificates(
|
|
|
|
!UserSettings::instance()->disableCertificateValidation());
|
2021-06-03 16:52:41 +03:00
|
|
|
|
|
|
|
http::client()->well_known(
|
|
|
|
[this, username, password](const mtx::responses::WellKnown &res,
|
2018-06-09 16:03:14 +03:00
|
|
|
mtx::http::RequestErr err) {
|
2021-06-03 16:52:41 +03:00
|
|
|
if (err) {
|
2021-06-30 03:43:36 +03:00
|
|
|
if (err->status_code == 404) {
|
2021-06-03 16:52:41 +03:00
|
|
|
nhlog::net()->info("Autodiscovery: No .well-known.");
|
|
|
|
checkVersionAndRegister(username, password);
|
|
|
|
return;
|
|
|
|
}
|
2018-06-09 16:03:14 +03:00
|
|
|
|
2021-06-03 16:52:41 +03:00
|
|
|
if (!err->parse_error.empty()) {
|
|
|
|
emit versionErrorCb(tr(
|
|
|
|
"Autodiscovery failed. Received malformed response."));
|
|
|
|
nhlog::net()->error(
|
|
|
|
"Autodiscovery failed. Received malformed response.");
|
2020-02-23 13:42:29 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-03 16:52:41 +03:00
|
|
|
emit versionErrorCb(tr("Autodiscovery failed. Unknown error when "
|
|
|
|
"requesting .well-known."));
|
|
|
|
nhlog::net()->error("Autodiscovery failed. Unknown error when "
|
2021-06-30 03:43:36 +03:00
|
|
|
"requesting .well-known. {} {}",
|
|
|
|
err->status_code,
|
|
|
|
err->error_code);
|
2018-06-09 16:03:14 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-03 16:52:41 +03:00
|
|
|
nhlog::net()->info("Autodiscovery: Discovered '" +
|
|
|
|
res.homeserver.base_url + "'");
|
|
|
|
http::client()->set_server(res.homeserver.base_url);
|
|
|
|
checkVersionAndRegister(username, password);
|
2018-06-09 16:03:14 +03:00
|
|
|
});
|
2017-09-10 12:59:21 +03:00
|
|
|
|
2018-03-12 23:23:26 +03:00
|
|
|
emit registering();
|
2017-09-10 12:59:21 +03:00
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2021-06-03 16:52:41 +03:00
|
|
|
void
|
|
|
|
RegisterPage::checkVersionAndRegister(const std::string &username, const std::string &password)
|
|
|
|
{
|
|
|
|
http::client()->versions(
|
|
|
|
[this, username, password](const mtx::responses::Versions &, mtx::http::RequestErr err) {
|
|
|
|
if (err) {
|
2021-06-30 03:43:36 +03:00
|
|
|
if (err->status_code == 404) {
|
2021-06-03 16:52:41 +03:00
|
|
|
emit versionErrorCb(tr("The required endpoints were not found. "
|
|
|
|
"Possibly not a Matrix server."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!err->parse_error.empty()) {
|
|
|
|
emit versionErrorCb(tr("Received malformed response. Make sure "
|
|
|
|
"the homeserver domain is valid."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit versionErrorCb(tr(
|
|
|
|
"An unknown error occured. Make sure the homeserver domain is valid."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
http::client()->registration(
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
[this, username, password](const mtx::responses::Register &res,
|
|
|
|
mtx::http::RequestErr err) {
|
|
|
|
if (!err) {
|
|
|
|
http::client()->set_user(res.user_id);
|
|
|
|
http::client()->set_access_token(res.access_token);
|
|
|
|
|
|
|
|
emit registerOk();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The server requires registration flows.
|
2021-06-30 03:43:36 +03:00
|
|
|
if (err->status_code == 401) {
|
2021-06-03 16:52:41 +03:00
|
|
|
if (err->matrix_error.unauthorized.flows.empty()) {
|
|
|
|
nhlog::net()->warn(
|
|
|
|
"failed to retrieve registration flows1: ({}) "
|
|
|
|
"{}",
|
|
|
|
static_cast<int>(err->status_code),
|
|
|
|
err->matrix_error.error);
|
|
|
|
emit errorOccurred();
|
|
|
|
emit registerErrorCb(
|
|
|
|
QString::fromStdString(err->matrix_error.error));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit registrationFlow(
|
|
|
|
username, password, err->matrix_error.unauthorized);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nhlog::net()->error(
|
|
|
|
"failed to register: status_code ({}), matrix_error({})",
|
|
|
|
static_cast<int>(err->status_code),
|
|
|
|
err->matrix_error.error);
|
|
|
|
|
|
|
|
emit registerErrorCb(QString::fromStdString(err->matrix_error.error));
|
|
|
|
emit errorOccurred();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-11-22 20:52:38 +03:00
|
|
|
void
|
|
|
|
RegisterPage::paintEvent(QPaintEvent *)
|
|
|
|
{
|
|
|
|
QStyleOption opt;
|
|
|
|
opt.init(this);
|
|
|
|
QPainter p(this);
|
|
|
|
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
|
|
|
|
}
|