2018-12-31 20:04:05 +01:00
|
|
|
//
|
2018-12-31 23:02:34 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/telegram/net/NetActor.h"
|
|
|
|
#include "td/telegram/net/NetQuery.h"
|
2018-06-07 20:42:17 +02:00
|
|
|
#include "td/telegram/TermsOfService.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
|
2018-07-03 21:29:04 +02:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
#include "td/utils/Status.h"
|
2018-03-27 15:11:15 +02:00
|
|
|
#include "td/utils/Time.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
namespace td {
|
2018-04-11 23:18:03 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class SendCodeHelper {
|
|
|
|
public:
|
|
|
|
void on_sent_code(telegram_api::object_ptr<telegram_api::auth_sentCode> sent_code);
|
2018-06-07 20:42:17 +02:00
|
|
|
td_api::object_ptr<td_api::authorizationStateWaitCode> get_authorization_state_wait_code(
|
|
|
|
const TermsOfService &terms_of_service) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
td_api::object_ptr<td_api::authenticationCodeInfo> get_authentication_code_info_object() const;
|
|
|
|
Result<telegram_api::auth_resendCode> resend_code();
|
2018-04-09 16:20:12 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Result<telegram_api::auth_sendCode> send_code(Slice phone_number, bool allow_flash_call, bool is_current_phone_number,
|
|
|
|
int32 api_id, const string &api_hash);
|
2018-04-09 16:20:12 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Result<telegram_api::account_sendChangePhoneCode> send_change_phone_code(Slice phone_number, bool allow_flash_call,
|
|
|
|
bool is_current_phone_number);
|
|
|
|
|
2018-06-27 20:26:52 +02:00
|
|
|
Result<telegram_api::account_sendVerifyPhoneCode> send_verify_phone_code(const string &hash, Slice phone_number,
|
|
|
|
bool allow_flash_call,
|
2018-04-09 16:20:12 +02:00
|
|
|
bool is_current_phone_number);
|
|
|
|
|
|
|
|
Result<telegram_api::account_sendConfirmPhoneCode> send_confirm_phone_code(Slice phone_number, bool allow_flash_call,
|
|
|
|
bool is_current_phone_number);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Slice phone_number() const {
|
|
|
|
return phone_number_;
|
|
|
|
}
|
|
|
|
Slice phone_code_hash() const {
|
|
|
|
return phone_code_hash_;
|
|
|
|
}
|
|
|
|
bool phone_registered() const {
|
|
|
|
return phone_registered_;
|
|
|
|
}
|
|
|
|
|
2018-03-14 19:04:41 +01:00
|
|
|
template <class T>
|
|
|
|
void store(T &storer) const;
|
|
|
|
template <class T>
|
|
|
|
void parse(T &parser);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
private:
|
|
|
|
static constexpr int32 AUTH_SEND_CODE_FLAG_ALLOW_FLASH_CALL = 1 << 0;
|
|
|
|
|
|
|
|
static constexpr int32 SENT_CODE_FLAG_IS_USER_REGISTERED = 1 << 0;
|
|
|
|
static constexpr int32 SENT_CODE_FLAG_HAS_NEXT_TYPE = 1 << 1;
|
|
|
|
static constexpr int32 SENT_CODE_FLAG_HAS_TIMEOUT = 1 << 2;
|
|
|
|
|
|
|
|
struct AuthenticationCodeInfo {
|
2018-03-14 20:47:08 +01:00
|
|
|
enum class Type : int32 { None, Message, Sms, Call, FlashCall };
|
2018-12-31 20:04:05 +01:00
|
|
|
Type type = Type::None;
|
|
|
|
int32 length = 0;
|
|
|
|
string pattern;
|
|
|
|
|
|
|
|
AuthenticationCodeInfo() = default;
|
|
|
|
AuthenticationCodeInfo(Type type, int length, string pattern)
|
|
|
|
: type(type), length(length), pattern(std::move(pattern)) {
|
|
|
|
}
|
2018-03-14 19:04:41 +01:00
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void store(T &storer) const;
|
|
|
|
template <class T>
|
|
|
|
void parse(T &parser);
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
string phone_number_;
|
|
|
|
bool phone_registered_;
|
|
|
|
string phone_code_hash_;
|
|
|
|
|
|
|
|
SendCodeHelper::AuthenticationCodeInfo sent_code_info_;
|
|
|
|
SendCodeHelper::AuthenticationCodeInfo next_code_info_;
|
2018-03-14 19:04:41 +01:00
|
|
|
Timestamp next_code_timestamp_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static AuthenticationCodeInfo get_authentication_code_info(
|
|
|
|
tl_object_ptr<telegram_api::auth_CodeType> &&code_type_ptr);
|
|
|
|
static AuthenticationCodeInfo get_authentication_code_info(
|
|
|
|
tl_object_ptr<telegram_api::auth_SentCodeType> &&sent_code_type_ptr);
|
|
|
|
|
|
|
|
static tl_object_ptr<td_api::AuthenticationCodeType> get_authentication_code_type_object(
|
|
|
|
const AuthenticationCodeInfo &authentication_code_info);
|
|
|
|
};
|
|
|
|
|
2018-04-09 16:20:12 +02:00
|
|
|
class PhoneNumberManager : public NetActor {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
2018-04-19 15:08:30 +02:00
|
|
|
enum class Type : int32 { ChangePhone, VerifyPhone, ConfirmPhone };
|
2018-04-11 23:18:03 +02:00
|
|
|
PhoneNumberManager(Type type, ActorShared<> parent);
|
2018-12-31 20:04:05 +01:00
|
|
|
void get_state(uint64 query_id);
|
|
|
|
|
2018-04-09 16:20:12 +02:00
|
|
|
void set_phone_number(uint64 query_id, string phone_number, bool allow_flash_call, bool is_current_phone_number);
|
2018-06-27 20:26:52 +02:00
|
|
|
void set_phone_number_and_hash(uint64 query_id, string hash, string phone_number, bool allow_flash_call,
|
|
|
|
bool is_current_phone_number);
|
2018-04-09 16:20:12 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void resend_authentication_code(uint64 query_id);
|
|
|
|
void check_code(uint64 query_id, string code);
|
|
|
|
|
|
|
|
private:
|
2018-04-09 16:20:12 +02:00
|
|
|
Type type_;
|
|
|
|
|
2018-04-19 15:08:30 +02:00
|
|
|
enum class State : int32 { Ok, WaitCode } state_ = State::Ok;
|
|
|
|
enum class NetQueryType : int32 { None, SendCode, CheckCode };
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
ActorShared<> parent_;
|
|
|
|
uint64 query_id_ = 0;
|
|
|
|
uint64 net_query_id_ = 0;
|
|
|
|
NetQueryType net_query_type_;
|
|
|
|
|
|
|
|
SendCodeHelper send_code_helper_;
|
|
|
|
|
|
|
|
void on_new_query(uint64 query_id);
|
|
|
|
void on_query_error(Status status);
|
|
|
|
void on_query_error(uint64 id, Status status);
|
|
|
|
void on_query_ok();
|
|
|
|
void start_net_query(NetQueryType net_query_type, NetQueryPtr net_query);
|
|
|
|
|
2018-04-09 20:53:43 +02:00
|
|
|
template <class T>
|
|
|
|
void process_send_code_result(uint64 query_id, T r_send_code);
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void send_new_check_code_query(const T &query);
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void process_check_code_result(T result);
|
|
|
|
|
2018-04-09 16:20:12 +02:00
|
|
|
void on_check_code_result(NetQueryPtr &result);
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_send_code_result(NetQueryPtr &result);
|
|
|
|
void on_result(NetQueryPtr result) override;
|
|
|
|
void tear_down() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
class AuthManager : public NetActor {
|
|
|
|
public:
|
|
|
|
AuthManager(int32 api_id, const string &api_hash, ActorShared<> parent);
|
|
|
|
|
|
|
|
bool is_bot() const;
|
2018-03-08 18:35:23 +01:00
|
|
|
void set_is_bot(bool is_bot);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
bool is_authorized() const;
|
|
|
|
void get_state(uint64 query_id);
|
|
|
|
|
|
|
|
void set_phone_number(uint64 query_id, string phone_number, bool allow_flash_call, bool is_current_phone_number);
|
|
|
|
void resend_authentication_code(uint64 query_id);
|
|
|
|
void check_code(uint64 query_id, string code, string first_name, string last_name);
|
|
|
|
void check_bot_token(uint64 query_id, string bot_token);
|
|
|
|
void check_password(uint64 query_id, string password);
|
|
|
|
void request_password_recovery(uint64 query_id);
|
|
|
|
void recover_password(uint64 query_id, string code);
|
|
|
|
void logout(uint64 query_id);
|
|
|
|
void delete_account(uint64 query_id, const string &reason);
|
|
|
|
|
2017-12-29 21:34:39 +01:00
|
|
|
void on_authorization_lost();
|
2018-12-26 20:04:46 +01:00
|
|
|
void on_closing(bool destroy_flag);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-09-20 18:33:41 +02:00
|
|
|
// can return nullptr if state isn't initialized yet
|
|
|
|
tl_object_ptr<td_api::AuthorizationState> get_current_authorization_state_object() const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
private:
|
2018-09-17 06:00:19 +02:00
|
|
|
static constexpr size_t MAX_NAME_LENGTH = 64; // server side limit
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-03-15 11:06:26 +01:00
|
|
|
enum class State : int32 {
|
|
|
|
None,
|
|
|
|
WaitPhoneNumber,
|
|
|
|
WaitCode,
|
|
|
|
WaitPassword,
|
|
|
|
Ok,
|
|
|
|
LoggingOut,
|
2017-12-29 21:34:39 +01:00
|
|
|
DestroyingKeys,
|
2018-03-15 11:06:26 +01:00
|
|
|
Closing
|
|
|
|
} state_ = State::None;
|
2018-04-19 15:08:30 +02:00
|
|
|
enum class NetQueryType : int32 {
|
2018-12-31 20:04:05 +01:00
|
|
|
None,
|
|
|
|
SignIn,
|
|
|
|
SignUp,
|
|
|
|
SendCode,
|
|
|
|
GetPassword,
|
|
|
|
CheckPassword,
|
|
|
|
RequestPasswordRecovery,
|
|
|
|
RecoverPassword,
|
|
|
|
BotAuthentication,
|
|
|
|
Authentication,
|
|
|
|
LogOut,
|
|
|
|
DeleteAccount
|
|
|
|
};
|
|
|
|
|
2018-03-15 11:06:26 +01:00
|
|
|
struct WaitPasswordState {
|
2018-08-04 08:55:49 +02:00
|
|
|
string current_client_salt_;
|
|
|
|
string current_server_salt_;
|
2018-08-10 15:22:48 +02:00
|
|
|
int32 srp_g_ = 0;
|
|
|
|
string srp_p_;
|
|
|
|
string srp_B_;
|
|
|
|
int64 srp_id_ = 0;
|
2018-03-15 11:06:26 +01:00
|
|
|
string hint_;
|
2018-08-04 08:55:49 +02:00
|
|
|
bool has_recovery_ = false;
|
2018-03-15 11:06:26 +01:00
|
|
|
string email_address_pattern_;
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void store(T &storer) const;
|
|
|
|
template <class T>
|
|
|
|
void parse(T &parser);
|
|
|
|
};
|
|
|
|
|
2018-03-14 19:04:41 +01:00
|
|
|
struct DbState {
|
|
|
|
State state_;
|
|
|
|
int32 api_id_;
|
|
|
|
string api_hash_;
|
|
|
|
Timestamp state_timestamp_;
|
|
|
|
|
2018-03-15 11:06:26 +01:00
|
|
|
// WaitCode
|
|
|
|
SendCodeHelper send_code_helper_;
|
2018-06-07 20:42:17 +02:00
|
|
|
TermsOfService terms_of_service_;
|
2018-03-15 11:06:26 +01:00
|
|
|
|
2018-06-07 20:42:17 +02:00
|
|
|
// WaitPassword
|
2018-03-15 11:06:26 +01:00
|
|
|
WaitPasswordState wait_password_state_;
|
|
|
|
|
2018-06-07 20:42:17 +02:00
|
|
|
static DbState wait_code(int32 api_id, string api_hash, SendCodeHelper send_code_helper,
|
|
|
|
TermsOfService terms_of_service) {
|
2018-03-15 11:06:26 +01:00
|
|
|
DbState state;
|
|
|
|
state.state_ = State::WaitCode;
|
|
|
|
state.api_id_ = api_id;
|
|
|
|
state.api_hash_ = api_hash;
|
|
|
|
state.send_code_helper_ = std::move(send_code_helper);
|
2018-06-07 20:42:17 +02:00
|
|
|
state.terms_of_service_ = std::move(terms_of_service);
|
2018-03-15 11:06:26 +01:00
|
|
|
state.state_timestamp_ = Timestamp::now();
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DbState wait_password(int32 api_id, string api_hash, WaitPasswordState wait_password_state) {
|
|
|
|
DbState state;
|
|
|
|
state.state_ = State::WaitPassword;
|
|
|
|
state.api_id_ = api_id;
|
|
|
|
state.api_hash_ = api_hash;
|
|
|
|
state.wait_password_state_ = std::move(wait_password_state);
|
|
|
|
state.state_timestamp_ = Timestamp::now();
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2018-03-14 19:04:41 +01:00
|
|
|
template <class T>
|
|
|
|
void store(T &storer) const;
|
|
|
|
template <class T>
|
|
|
|
void parse(T &parser);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool load_state();
|
|
|
|
void save_state();
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
ActorShared<> parent_;
|
|
|
|
|
2018-03-14 19:04:41 +01:00
|
|
|
// STATE
|
|
|
|
// from contructor
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 api_id_;
|
|
|
|
string api_hash_;
|
|
|
|
|
2018-03-14 19:04:41 +01:00
|
|
|
// State::WaitCode
|
2018-12-31 20:04:05 +01:00
|
|
|
SendCodeHelper send_code_helper_;
|
2018-08-13 00:44:53 +02:00
|
|
|
string code_;
|
2018-08-13 11:24:37 +02:00
|
|
|
string password_;
|
2018-06-07 20:42:17 +02:00
|
|
|
TermsOfService terms_of_service_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-03-14 19:04:41 +01:00
|
|
|
// for bots
|
2018-12-31 20:04:05 +01:00
|
|
|
string bot_token_;
|
|
|
|
uint64 query_id_ = 0;
|
|
|
|
|
2018-03-15 11:06:26 +01:00
|
|
|
WaitPasswordState wait_password_state_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
bool was_check_bot_token_ = false;
|
|
|
|
bool is_bot_ = false;
|
|
|
|
uint64 net_query_id_ = 0;
|
|
|
|
NetQueryType net_query_type_;
|
|
|
|
|
2018-03-09 02:17:38 +01:00
|
|
|
vector<uint64> pending_get_authorization_state_requests_;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_new_query(uint64 query_id);
|
|
|
|
void on_query_error(Status status);
|
|
|
|
void on_query_error(uint64 id, Status status);
|
|
|
|
void on_query_ok();
|
|
|
|
void start_net_query(NetQueryType net_query_type, NetQueryPtr net_query);
|
|
|
|
|
2017-12-29 21:34:39 +01:00
|
|
|
void destroy_auth_keys();
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_send_code_result(NetQueryPtr &result);
|
|
|
|
void on_get_password_result(NetQueryPtr &result);
|
|
|
|
void on_request_password_recovery_result(NetQueryPtr &result);
|
|
|
|
void on_authentication_result(NetQueryPtr &result, bool expected_flag);
|
|
|
|
void on_log_out_result(NetQueryPtr &result);
|
|
|
|
void on_delete_account_result(NetQueryPtr &result);
|
|
|
|
void on_authorization(tl_object_ptr<telegram_api::auth_authorization> auth);
|
|
|
|
|
|
|
|
void on_result(NetQueryPtr result) override;
|
|
|
|
|
2018-03-14 19:04:41 +01:00
|
|
|
void update_state(State new_state, bool force = false, bool should_save_state = true);
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<td_api::AuthorizationState> get_authorization_state_object(State authorization_state) const;
|
|
|
|
void send_ok(uint64 query_id);
|
|
|
|
|
|
|
|
void start_up() override;
|
|
|
|
void tear_down() override;
|
|
|
|
};
|
|
|
|
} // namespace td
|