tdesktop/Telegram/SourceFiles/intro/intro_signup.cpp

216 lines
5.4 KiB
C++
Raw Normal View History

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
2019-11-27 09:45:23 +00:00
#include "intro/intro_signup.h"
2019-11-27 09:45:23 +00:00
#include "intro/intro_widget.h"
#include "core/file_utilities.h"
2017-04-06 14:38:10 +00:00
#include "boxes/photo_crop_box.h"
#include "boxes/confirm_box.h"
2017-04-13 08:27:10 +00:00
#include "lang/lang_keys.h"
#include "ui/widgets/buttons.h"
#include "ui/widgets/input_fields.h"
2016-11-24 19:28:23 +00:00
#include "ui/widgets/labels.h"
#include "ui/special_buttons.h"
2019-11-26 11:10:44 +00:00
#include "styles/style_intro.h"
#include "styles/style_boxes.h"
2016-11-24 19:28:23 +00:00
namespace Intro {
2019-11-26 11:10:44 +00:00
namespace details {
2016-11-24 19:28:23 +00:00
2019-07-24 08:46:23 +00:00
SignupWidget::SignupWidget(
QWidget *parent,
not_null<Main::Account*> account,
2019-11-26 11:10:44 +00:00
not_null<Data*> data)
2019-11-27 08:33:18 +00:00
: Step(parent, account, data)
, _photo(
this,
tr::lng_settings_crop_profile(tr::now),
Ui::UserpicButton::Role::ChangePhoto,
st::defaultUserpicButton)
, _first(this, st::introName, tr::lng_signup_firstname())
, _last(this, st::introName, tr::lng_signup_lastname())
, _invertOrder(langFirstNameGoesSecond()) {
subscribe(Lang::Current().updated(), [this] { refreshLang(); });
if (_invertOrder) {
setTabOrder(_last, _first);
} else {
setTabOrder(_first, _last);
}
2016-11-24 19:28:23 +00:00
setErrorCentered(true);
setTitleText(tr::lng_signup_title());
setDescriptionText(tr::lng_signup_desc());
setMouseTracking(true);
}
2018-06-01 07:00:18 +00:00
void SignupWidget::finishInit() {
showTerms();
}
void SignupWidget::refreshLang() {
_invertOrder = langFirstNameGoesSecond();
if (_invertOrder) {
setTabOrder(_last, _first);
} else {
setTabOrder(_first, _last);
}
updateControlsGeometry();
}
2016-11-24 19:28:23 +00:00
void SignupWidget::resizeEvent(QResizeEvent *e) {
Step::resizeEvent(e);
updateControlsGeometry();
}
2015-12-08 12:33:37 +00:00
void SignupWidget::updateControlsGeometry() {
2016-11-24 19:28:23 +00:00
auto photoRight = contentLeft() + st::introNextButton.width;
auto photoTop = contentTop() + st::introPhotoTop;
_photo->moveToLeft(photoRight - _photo->width(), photoTop);
2015-12-08 12:33:37 +00:00
2016-11-24 19:28:23 +00:00
auto firstTop = contentTop() + st::introStepFieldTop;
auto secondTop = firstTop + st::introName.heightMin + st::introPhoneTop;
2016-11-24 19:28:23 +00:00
if (_invertOrder) {
_last->moveToLeft(contentLeft(), firstTop);
_first->moveToLeft(contentLeft(), secondTop);
2015-12-08 12:33:37 +00:00
} else {
2016-11-24 19:28:23 +00:00
_first->moveToLeft(contentLeft(), firstTop);
_last->moveToLeft(contentLeft(), secondTop);
2015-12-08 12:33:37 +00:00
}
}
2016-11-24 19:28:23 +00:00
void SignupWidget::setInnerFocus() {
if (_invertOrder || _last->hasFocus()) {
_last->setFocusFast();
} else {
_first->setFocusFast();
}
}
2016-11-24 19:28:23 +00:00
void SignupWidget::activate() {
Step::activate();
_first->show();
_last->show();
_photo->show();
setInnerFocus();
}
2016-11-24 19:28:23 +00:00
void SignupWidget::cancelled() {
MTP::cancel(base::take(_sentRequest));
}
void SignupWidget::nameSubmitDone(const MTPauth_Authorization &result) {
auto &d = result.c_auth_authorization();
2019-07-05 13:38:38 +00:00
if (d.vuser().type() != mtpc_user || !d.vuser().c_user().is_self()) { // wtf?
showError(rpl::single(Lang::Hard::ServerError()));
return;
}
2019-07-05 13:38:38 +00:00
finish(d.vuser(), _photo->takeResultImage());
}
2016-11-24 19:28:23 +00:00
bool SignupWidget::nameSubmitFail(const RPCError &error) {
if (MTP::isFloodError(error)) {
showError(tr::lng_flood_error());
if (_invertOrder) {
_first->setFocus();
} else {
_last->setFocus();
}
return true;
}
if (MTP::isDefaultHandledError(error)) return false;
auto &err = error.type();
if (err == qstr("PHONE_NUMBER_FLOOD")) {
2019-06-19 15:09:03 +00:00
Ui::show(Box<InformBox>(tr::lng_error_phone_flood(tr::now)));
return true;
} else if (err == qstr("PHONE_NUMBER_INVALID")
|| err == qstr("PHONE_NUMBER_BANNED")
|| err == qstr("PHONE_CODE_EXPIRED")
|| err == qstr("PHONE_CODE_EMPTY")
|| err == qstr("PHONE_CODE_INVALID")
|| err == qstr("PHONE_NUMBER_OCCUPIED")) {
2016-11-24 19:28:23 +00:00
goBack();
return true;
} else if (err == "FIRSTNAME_INVALID") {
showError(tr::lng_bad_name());
_first->setFocus();
return true;
} else if (err == "LASTNAME_INVALID") {
showError(tr::lng_bad_name());
_last->setFocus();
return true;
}
if (Logs::DebugEnabled()) { // internal server error
showError(rpl::single(err + ": " + error.description()));
} else {
showError(rpl::single(Lang::Hard::ServerError()));
}
if (_invertOrder) {
_last->setFocus();
} else {
_first->setFocus();
}
return false;
}
2016-11-24 19:28:23 +00:00
void SignupWidget::submit() {
2018-06-01 07:00:18 +00:00
if (_sentRequest) {
return;
}
if (_invertOrder) {
2016-11-24 19:28:23 +00:00
if ((_last->hasFocus() || _last->getLastText().trimmed().length()) && !_first->getLastText().trimmed().length()) {
_first->setFocus();
return;
2016-11-24 19:28:23 +00:00
} else if (!_last->getLastText().trimmed().length()) {
_last->setFocus();
return;
}
} else {
2016-11-24 19:28:23 +00:00
if ((_first->hasFocus() || _first->getLastText().trimmed().length()) && !_last->getLastText().trimmed().length()) {
_last->setFocus();
return;
2016-11-24 19:28:23 +00:00
} else if (!_first->getLastText().trimmed().length()) {
_first->setFocus();
return;
}
}
2018-06-01 07:00:18 +00:00
const auto send = [&] {
hideError();
_firstName = _first->getLastText().trimmed();
_lastName = _last->getLastText().trimmed();
_sentRequest = MTP::send(
MTPauth_SignUp(
MTP_string(getData()->phone),
MTP_bytes(getData()->phoneHash),
MTP_string(_firstName),
MTP_string(_lastName)),
rpcDone(&SignupWidget::nameSubmitDone),
rpcFail(&SignupWidget::nameSubmitFail));
};
if (_termsAccepted
|| getData()->termsLock.text.text.isEmpty()
|| !getData()->termsLock.popup) {
2018-06-01 07:00:18 +00:00
send();
} else {
acceptTerms(crl::guard(this, [=] {
2018-06-01 07:00:18 +00:00
_termsAccepted = true;
send();
}));
}
}
rpl::producer<QString> SignupWidget::nextButtonText() const {
return tr::lng_intro_finish();
}
2016-11-24 19:28:23 +00:00
2019-11-26 11:10:44 +00:00
} // namespace details
2016-11-24 19:28:23 +00:00
} // namespace Intro