// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022 // // 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) // #include "td/telegram/TermsOfService.h" #include "td/telegram/Global.h" #include "td/telegram/misc.h" #include "td/telegram/net/NetQueryCreator.h" #include "td/telegram/Td.h" #include "td/utils/buffer.h" #include "td/utils/logging.h" #include "td/utils/Status.h" namespace td { class GetTermsOfServiceUpdateQuery final : public Td::ResultHandler { Promise> promise_; public: explicit GetTermsOfServiceUpdateQuery(Promise> &&promise) : promise_(std::move(promise)) { } void send() { // we don't poll terms of service before authorization send_query(G()->net_query_creator().create(telegram_api::help_getTermsOfServiceUpdate())); } void on_result(BufferSlice packet) final { auto result_ptr = fetch_result(packet); if (result_ptr.is_error()) { return on_error(result_ptr.move_as_error()); } auto result = result_ptr.move_as_ok(); switch (result->get_id()) { case telegram_api::help_termsOfServiceUpdateEmpty::ID: { auto update = move_tl_object_as(result); promise_.set_value(std::make_pair(update->expires_, TermsOfService())); break; } case telegram_api::help_termsOfServiceUpdate::ID: { auto update = move_tl_object_as(result); promise_.set_value(std::make_pair(update->expires_, TermsOfService(std::move(update->terms_of_service_)))); break; } default: UNREACHABLE(); } } void on_error(Status status) final { promise_.set_error(std::move(status)); } }; class AcceptTermsOfServiceQuery final : public Td::ResultHandler { Promise promise_; public: explicit AcceptTermsOfServiceQuery(Promise &&promise) : promise_(std::move(promise)) { } void send(const string &terms_of_service_id) { send_query(G()->net_query_creator().create(telegram_api::help_acceptTermsOfService( telegram_api::make_object(terms_of_service_id)))); } void on_result(BufferSlice packet) final { auto result_ptr = fetch_result(packet); if (result_ptr.is_error()) { return on_error(result_ptr.move_as_error()); } auto result = result_ptr.ok(); if (!result) { LOG(ERROR) << "Failed to accept terms of service"; } promise_.set_value(Unit()); } void on_error(Status status) final { promise_.set_error(std::move(status)); } }; TermsOfService::TermsOfService(telegram_api::object_ptr terms) { if (terms == nullptr) { return; } id_ = std::move(terms->id_->data_); auto entities = get_message_entities(nullptr, std::move(terms->entities_), "TermsOfService"); auto status = fix_formatted_text(terms->text_, entities, true, true, true, true, false); if (status.is_error()) { if (!clean_input_string(terms->text_)) { terms->text_.clear(); } entities = find_entities(terms->text_, true, true); } if (terms->text_.empty()) { id_.clear(); } text_ = FormattedText{std::move(terms->text_), std::move(entities)}; min_user_age_ = terms->min_age_confirm_; show_popup_ = terms->popup_; } void get_terms_of_service(Td *td, Promise> promise) { td->create_handler(std::move(promise))->send(); } void accept_terms_of_service(Td *td, string &&terms_of_service_id, Promise &&promise) { td->create_handler(std::move(promise))->send(terms_of_service_id); } } // namespace td