2015-04-02 10:33:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2015-04-02 10:33:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2019-11-26 11:10:44 +00:00
|
|
|
#include "intro/intro_step.h"
|
|
|
|
#include "core/core_cloud_password.h"
|
2018-08-10 19:19:46 +00:00
|
|
|
#include "mtproto/sender.h"
|
2019-11-27 08:33:18 +00:00
|
|
|
#include "base/timer.h"
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2016-11-04 19:50:35 +00:00
|
|
|
namespace Ui {
|
2016-11-24 19:28:23 +00:00
|
|
|
class InputField;
|
|
|
|
class PasswordInput;
|
2016-11-04 19:50:35 +00:00
|
|
|
class RoundButton;
|
2016-11-11 13:46:04 +00:00
|
|
|
class LinkButton;
|
2016-11-04 19:50:35 +00:00
|
|
|
} // namespace Ui
|
|
|
|
|
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-11-27 09:45:23 +00:00
|
|
|
class PasswordCheckWidget final : public Step {
|
2015-04-02 10:33:19 +00:00
|
|
|
public:
|
2019-11-27 09:45:23 +00:00
|
|
|
PasswordCheckWidget(
|
2019-07-24 08:46:23 +00:00
|
|
|
QWidget *parent,
|
|
|
|
not_null<Main::Account*> account,
|
2019-11-26 11:10:44 +00:00
|
|
|
not_null<Data*> data);
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2016-11-24 19:28:23 +00:00
|
|
|
void setInnerFocus() override;
|
2016-03-14 16:59:18 +00:00
|
|
|
void activate() override;
|
|
|
|
void cancelled() override;
|
2016-11-24 19:28:23 +00:00
|
|
|
void submit() override;
|
2019-06-18 16:53:27 +00:00
|
|
|
rpl::producer<QString> nextButtonText() const override;
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2016-11-24 19:28:23 +00:00
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
2015-04-02 10:33:19 +00:00
|
|
|
|
|
|
|
private:
|
2019-11-27 08:33:18 +00:00
|
|
|
void toRecover();
|
|
|
|
void toPassword();
|
|
|
|
|
2019-11-26 14:27:09 +00:00
|
|
|
int errorTop() const override;
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
void showReset();
|
2017-05-30 13:54:05 +00:00
|
|
|
void refreshLang();
|
|
|
|
void updateControlsGeometry();
|
2016-12-13 17:07:56 +00:00
|
|
|
|
2016-11-24 19:28:23 +00:00
|
|
|
void pwdSubmitDone(bool recover, const MTPauth_Authorization &result);
|
2021-03-12 12:48:00 +00:00
|
|
|
void pwdSubmitFail(const MTP::Error &error);
|
|
|
|
void codeSubmitFail(const MTP::Error &error);
|
|
|
|
void recoverStartFail(const MTP::Error &error);
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2016-11-24 19:28:23 +00:00
|
|
|
void recoverStarted(const MTPauth_PasswordRecovery &result);
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2016-11-24 19:28:23 +00:00
|
|
|
void updateDescriptionText();
|
2018-08-10 19:19:46 +00:00
|
|
|
void handleSrpIdInvalid();
|
|
|
|
void requestPasswordData();
|
|
|
|
void checkPasswordHash();
|
|
|
|
void passwordChecked();
|
|
|
|
void serverError();
|
|
|
|
|
|
|
|
Core::CloudPasswordCheckRequest _request;
|
2019-02-19 06:57:53 +00:00
|
|
|
crl::time _lastSrpIdInvalidTime = 0;
|
2018-08-10 19:19:46 +00:00
|
|
|
bytes::vector _passwordHash;
|
2018-04-20 16:42:51 +00:00
|
|
|
bool _hasRecovery = false;
|
|
|
|
bool _notEmptyPassport = false;
|
2015-04-02 10:33:19 +00:00
|
|
|
QString _hint, _emailPattern;
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<Ui::PasswordInput> _pwdField;
|
|
|
|
object_ptr<Ui::FlatLabel> _pwdHint;
|
|
|
|
object_ptr<Ui::InputField> _codeField;
|
|
|
|
object_ptr<Ui::LinkButton> _toRecover;
|
|
|
|
object_ptr<Ui::LinkButton> _toPassword;
|
2016-11-04 19:50:35 +00:00
|
|
|
mtpRequestId _sentRequest = 0;
|
2015-04-02 10:33:19 +00:00
|
|
|
|
|
|
|
};
|
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
|