2019-02-16 16:49:39 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2019-02-16 16:49:39 +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
|
|
|
|
|
2022-09-21 13:25:31 +02:00
|
|
|
#include "td/telegram/logevent/LogEventHelper.h"
|
2019-02-16 16:49:39 +01:00
|
|
|
#include "td/telegram/SendCodeHelper.h"
|
|
|
|
|
|
|
|
#include "td/utils/tl_helpers.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class StorerT>
|
|
|
|
void SendCodeHelper::AuthenticationCodeInfo::store(StorerT &storer) const {
|
2019-02-16 16:49:39 +01:00
|
|
|
using td::store;
|
|
|
|
store(type, storer);
|
|
|
|
store(length, storer);
|
|
|
|
store(pattern, storer);
|
|
|
|
}
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class ParserT>
|
|
|
|
void SendCodeHelper::AuthenticationCodeInfo::parse(ParserT &parser) {
|
2019-02-16 16:49:39 +01:00
|
|
|
using td::parse;
|
|
|
|
parse(type, parser);
|
|
|
|
parse(length, parser);
|
|
|
|
parse(pattern, parser);
|
|
|
|
}
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class StorerT>
|
|
|
|
void SendCodeHelper::store(StorerT &storer) const {
|
2019-02-16 16:49:39 +01:00
|
|
|
using td::store;
|
|
|
|
store(phone_number_, storer);
|
2019-07-16 21:08:34 +02:00
|
|
|
store(true, storer);
|
2019-02-16 16:49:39 +01:00
|
|
|
store(phone_code_hash_, storer);
|
|
|
|
store(sent_code_info_, storer);
|
|
|
|
store(next_code_info_, storer);
|
2022-09-21 13:25:31 +02:00
|
|
|
store_time(next_code_timestamp_, storer);
|
2019-02-16 16:49:39 +01:00
|
|
|
}
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class ParserT>
|
|
|
|
void SendCodeHelper::parse(ParserT &parser) {
|
2019-02-16 16:49:39 +01:00
|
|
|
using td::parse;
|
|
|
|
parse(phone_number_, parser);
|
2022-04-24 21:43:43 +02:00
|
|
|
bool legacy_is_registered;
|
2019-07-16 21:08:34 +02:00
|
|
|
parse(legacy_is_registered, parser);
|
2019-02-16 16:49:39 +01:00
|
|
|
parse(phone_code_hash_, parser);
|
|
|
|
parse(sent_code_info_, parser);
|
|
|
|
parse(next_code_info_, parser);
|
2022-09-21 13:25:31 +02:00
|
|
|
parse_time(next_code_timestamp_, parser);
|
2019-02-16 16:49:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|