2018-12-31 20:04:05 +01:00
|
|
|
//
|
2021-01-01 13:57:46 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
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)
|
|
|
|
//
|
|
|
|
#include "td/telegram/SecretChatsManager.h"
|
|
|
|
|
|
|
|
#include "td/telegram/ConfigShared.h"
|
|
|
|
#include "td/telegram/ContactsManager.h"
|
|
|
|
#include "td/telegram/DhCache.h"
|
2021-08-01 05:17:51 +02:00
|
|
|
#include "td/telegram/EncryptedFile.h"
|
2020-06-30 11:11:22 +02:00
|
|
|
#include "td/telegram/FolderId.h"
|
2019-01-06 20:59:17 +01:00
|
|
|
#include "td/telegram/Global.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/logevent/SecretChatEvent.h"
|
|
|
|
#include "td/telegram/MessageId.h"
|
|
|
|
#include "td/telegram/MessagesManager.h"
|
|
|
|
#include "td/telegram/net/NetQueryDispatcher.h"
|
|
|
|
#include "td/telegram/SequenceDispatcher.h"
|
2018-10-28 18:30:47 +01:00
|
|
|
#include "td/telegram/StateManager.h"
|
2019-01-06 20:59:17 +01:00
|
|
|
#include "td/telegram/TdDb.h"
|
2021-09-18 23:47:05 +02:00
|
|
|
#include "td/telegram/TdParameters.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/telegram_api.hpp"
|
|
|
|
|
2021-07-05 20:20:07 +02:00
|
|
|
#include "td/mtproto/DhCallback.h"
|
2019-01-31 03:05:40 +01:00
|
|
|
|
2019-01-06 20:11:02 +01:00
|
|
|
#include "td/db/binlog/BinlogEvent.h"
|
2019-04-21 19:57:49 +02:00
|
|
|
#include "td/db/binlog/BinlogHelper.h"
|
2019-01-06 20:59:17 +01:00
|
|
|
#include "td/db/binlog/BinlogInterface.h"
|
2019-01-06 20:11:02 +01:00
|
|
|
|
2021-09-18 23:47:05 +02:00
|
|
|
#include "td/actor/PromiseFuture.h"
|
|
|
|
|
2019-02-12 22:26:36 +01:00
|
|
|
#include "td/utils/common.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/format.h"
|
|
|
|
#include "td/utils/logging.h"
|
|
|
|
#include "td/utils/Random.h"
|
2021-05-17 14:21:11 +02:00
|
|
|
#include "td/utils/SliceBuilder.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Status.h"
|
|
|
|
#include "td/utils/Time.h"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace td {
|
2018-12-13 23:48:36 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
// seq_no
|
|
|
|
// 1.
|
|
|
|
// x_in = 0 if we initiated secret chat.
|
|
|
|
// x_in = 1 if other client initiated secret chat
|
|
|
|
// x_out = 1 - x_in
|
|
|
|
// 2. Send:
|
|
|
|
// in_seq_no = my_in_seq_no * 2 + x_in
|
|
|
|
// out_seq_no = my_out_seq_no * 2 + x_out
|
|
|
|
// my_out_seq_no++;
|
|
|
|
//
|
|
|
|
// 3. Receive
|
|
|
|
// fail_if (in_seq_no % 2 != (1 - x_in)), in_seq_no /= 2.
|
|
|
|
// fail_if (out_seq_no % 2 != x_out), out_seq_no /= 2.
|
|
|
|
// drop_if (out_seq_no < my_in_seq_no)
|
|
|
|
// handle_gap_if(out_seq_no > my_in_seq_no)
|
|
|
|
// my_in_seq_no++;
|
|
|
|
//
|
|
|
|
// fail_if(in_seq_no < his_in_seq_no)
|
|
|
|
// his_in_seq_no = in_seq_no
|
|
|
|
// fail_if(my_out_seq_no < his_in_seq_no)
|
|
|
|
//
|
|
|
|
// 4. Preventing gaps.
|
|
|
|
// All messages must be sent in order of out_seq_no
|
|
|
|
// Messages of older layer have imaginary seq_no = -1
|
|
|
|
// a. TODO use invokeAfter.
|
|
|
|
// b. Just don't send next message before server accepted previous one.
|
|
|
|
//
|
|
|
|
// 5. Handling gaps.
|
|
|
|
// TODO
|
|
|
|
// Just fail chat.
|
|
|
|
|
|
|
|
SecretChatsManager::SecretChatsManager(ActorShared<> parent) : parent_(std::move(parent)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::start_up() {
|
|
|
|
if (!G()->parameters().use_secret_chats) {
|
|
|
|
dummy_mode_ = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-04 04:58:54 +02:00
|
|
|
class StateCallback final : public StateManager::Callback {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
|
|
|
explicit StateCallback(ActorId<SecretChatsManager> parent) : parent_(std::move(parent)) {
|
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
bool on_online(bool online_flag) final {
|
2018-12-31 20:04:05 +01:00
|
|
|
send_closure(parent_, &SecretChatsManager::on_online, online_flag);
|
|
|
|
return parent_.is_alive();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ActorId<SecretChatsManager> parent_;
|
|
|
|
};
|
|
|
|
send_closure(G()->state_manager(), &StateManager::add_callback, make_unique<StateCallback>(actor_id(this)));
|
|
|
|
}
|
|
|
|
|
2021-03-29 10:57:26 +02:00
|
|
|
void SecretChatsManager::create_chat(UserId user_id, int64 user_access_hash, Promise<SecretChatId> promise) {
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 random_id;
|
|
|
|
ActorId<SecretChatActor> actor;
|
|
|
|
do {
|
|
|
|
random_id = Random::secure_int32() & 0x7fffffff;
|
|
|
|
actor = create_chat_actor(random_id);
|
|
|
|
} while (actor.empty());
|
|
|
|
send_closure(actor, &SecretChatActor::create_chat, user_id, user_access_hash, random_id, std::move(promise));
|
|
|
|
}
|
|
|
|
|
2021-01-18 13:04:31 +01:00
|
|
|
void SecretChatsManager::cancel_chat(SecretChatId secret_chat_id, bool delete_history, Promise<> promise) {
|
2018-12-31 20:04:05 +01:00
|
|
|
auto actor = get_chat_actor(secret_chat_id.get());
|
|
|
|
auto safe_promise = SafePromise<>(std::move(promise), Unit());
|
2021-01-18 17:02:24 +01:00
|
|
|
send_closure(actor, &SecretChatActor::cancel_chat, delete_history, false, std::move(safe_promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::send_message(SecretChatId secret_chat_id, tl_object_ptr<secret_api::decryptedMessage> message,
|
|
|
|
tl_object_ptr<telegram_api::InputEncryptedFile> file, Promise<> promise) {
|
2020-10-08 11:56:08 +02:00
|
|
|
// message->message_ = Random::fast_bool() ? string(1, static_cast<char>(0x80)) : "a";
|
2018-12-31 20:04:05 +01:00
|
|
|
auto actor = get_chat_actor(secret_chat_id.get());
|
|
|
|
auto safe_promise = SafePromise<>(std::move(promise), Status::Error(400, "Can't find secret chat"));
|
|
|
|
send_closure(actor, &SecretChatActor::send_message, std::move(message), std::move(file), std::move(safe_promise));
|
|
|
|
}
|
|
|
|
void SecretChatsManager::send_message_action(SecretChatId secret_chat_id,
|
|
|
|
tl_object_ptr<secret_api::SendMessageAction> action) {
|
|
|
|
auto actor = get_chat_actor(secret_chat_id.get());
|
|
|
|
if (actor.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
send_closure(actor, &SecretChatActor::send_message_action, std::move(action));
|
|
|
|
}
|
|
|
|
void SecretChatsManager::send_read_history(SecretChatId secret_chat_id, int32 date, Promise<> promise) {
|
|
|
|
auto actor = get_chat_actor(secret_chat_id.get());
|
|
|
|
auto safe_promise = SafePromise<>(std::move(promise), Status::Error(400, "Can't find secret chat"));
|
|
|
|
send_closure(actor, &SecretChatActor::send_read_history, date, std::move(safe_promise));
|
|
|
|
}
|
|
|
|
void SecretChatsManager::send_open_message(SecretChatId secret_chat_id, int64 random_id, Promise<> promise) {
|
|
|
|
auto actor = get_chat_actor(secret_chat_id.get());
|
|
|
|
auto safe_promise = SafePromise<>(std::move(promise), Status::Error(400, "Can't find secret chat"));
|
|
|
|
send_closure(actor, &SecretChatActor::send_open_message, random_id, std::move(safe_promise));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::delete_messages(SecretChatId secret_chat_id, vector<int64> random_ids, Promise<> promise) {
|
|
|
|
auto actor = get_chat_actor(secret_chat_id.get());
|
2018-07-25 01:52:31 +02:00
|
|
|
auto safe_promise = SafePromise<>(std::move(promise), Unit());
|
2018-12-31 20:04:05 +01:00
|
|
|
send_closure(actor, &SecretChatActor::delete_messages, std::move(random_ids), std::move(safe_promise));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::delete_all_messages(SecretChatId secret_chat_id, Promise<> promise) {
|
|
|
|
auto actor = get_chat_actor(secret_chat_id.get());
|
2018-07-25 01:52:31 +02:00
|
|
|
auto safe_promise = SafePromise<>(std::move(promise), Unit());
|
2018-12-31 20:04:05 +01:00
|
|
|
send_closure(actor, &SecretChatActor::delete_all_messages, std::move(safe_promise));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::notify_screenshot_taken(SecretChatId secret_chat_id, Promise<> promise) {
|
|
|
|
auto actor = get_chat_actor(secret_chat_id.get());
|
|
|
|
auto safe_promise = SafePromise<>(std::move(promise), Status::Error(400, "Can't find secret chat"));
|
|
|
|
send_closure(actor, &SecretChatActor::notify_screenshot_taken, std::move(safe_promise));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::send_set_ttl_message(SecretChatId secret_chat_id, int32 ttl, int64 random_id,
|
|
|
|
Promise<> promise) {
|
|
|
|
auto actor = get_chat_actor(secret_chat_id.get());
|
|
|
|
auto safe_promise = SafePromise<>(std::move(promise), Status::Error(400, "Can't find secret chat"));
|
|
|
|
send_closure(actor, &SecretChatActor::send_set_ttl_message, ttl, random_id, std::move(safe_promise));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::on_update_chat(tl_object_ptr<telegram_api::updateEncryption> update) {
|
|
|
|
if (dummy_mode_ || close_flag_) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bool chat_requested = update->chat_->get_id() == telegram_api::encryptedChatRequested::ID;
|
2021-10-19 17:11:16 +02:00
|
|
|
pending_chat_updates_.emplace_back(Timestamp::in(chat_requested ? 1 : 0), std::move(update));
|
2018-12-31 20:04:05 +01:00
|
|
|
flush_pending_chat_updates();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::do_update_chat(tl_object_ptr<telegram_api::updateEncryption> update) {
|
|
|
|
int32 id = 0;
|
|
|
|
downcast_call(*update->chat_, [&](auto &x) { id = x.id_; });
|
|
|
|
|
|
|
|
send_closure(
|
|
|
|
update->chat_->get_id() == telegram_api::encryptedChatDiscarded::ID ? get_chat_actor(id) : create_chat_actor(id),
|
|
|
|
&SecretChatActor::update_chat, std::move(update->chat_));
|
|
|
|
}
|
|
|
|
|
2020-08-02 21:07:22 +02:00
|
|
|
void SecretChatsManager::on_new_message(tl_object_ptr<telegram_api::EncryptedMessage> &&message_ptr,
|
|
|
|
Promise<Unit> &&promise) {
|
2018-12-31 20:04:05 +01:00
|
|
|
if (dummy_mode_ || close_flag_) {
|
|
|
|
return;
|
|
|
|
}
|
2020-08-02 21:07:22 +02:00
|
|
|
CHECK(message_ptr != nullptr);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
auto event = make_unique<log_event::InboundSecretMessage>();
|
2020-08-02 21:07:22 +02:00
|
|
|
event->promise = std::move(promise);
|
|
|
|
downcast_call(*message_ptr, [&](auto &x) {
|
2018-12-31 20:04:05 +01:00
|
|
|
event->chat_id = x.chat_id_;
|
|
|
|
event->date = x.date_;
|
|
|
|
event->encrypted_message = std::move(x.bytes_);
|
|
|
|
});
|
2020-08-02 21:07:22 +02:00
|
|
|
if (message_ptr->get_id() == telegram_api::encryptedMessage::ID) {
|
|
|
|
auto message = move_tl_object_as<telegram_api::encryptedMessage>(message_ptr);
|
2021-08-01 05:17:51 +02:00
|
|
|
event->file = EncryptedFile::get_encrypted_file(std::move(message->file_));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
add_inbound_message(std::move(event));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::replay_binlog_event(BinlogEvent &&binlog_event) {
|
2019-04-21 19:57:49 +02:00
|
|
|
if (dummy_mode_) {
|
|
|
|
binlog_erase(G()->td_db()->get_binlog(), binlog_event.id_);
|
|
|
|
return;
|
|
|
|
}
|
2020-09-22 01:15:09 +02:00
|
|
|
auto r_message = log_event::SecretChatEvent::from_buffer_slice(binlog_event.data_as_buffer_slice());
|
2018-12-31 20:04:05 +01:00
|
|
|
LOG_IF(FATAL, r_message.is_error()) << "Failed to deserialize event: " << r_message.error();
|
|
|
|
auto message = r_message.move_as_ok();
|
2020-09-22 01:15:09 +02:00
|
|
|
message->set_log_event_id(binlog_event.id_);
|
2018-12-31 20:04:05 +01:00
|
|
|
LOG(INFO) << "Process binlog event " << *message;
|
|
|
|
switch (message->get_type()) {
|
2020-09-22 01:15:09 +02:00
|
|
|
case log_event::SecretChatEvent::Type::InboundSecretMessage:
|
|
|
|
return replay_inbound_message(unique_ptr<log_event::InboundSecretMessage>(
|
|
|
|
static_cast<log_event::InboundSecretMessage *>(message.release())));
|
|
|
|
case log_event::SecretChatEvent::Type::OutboundSecretMessage:
|
|
|
|
return replay_outbound_message(unique_ptr<log_event::OutboundSecretMessage>(
|
|
|
|
static_cast<log_event::OutboundSecretMessage *>(message.release())));
|
|
|
|
case log_event::SecretChatEvent::Type::CloseSecretChat:
|
2018-12-31 20:04:05 +01:00
|
|
|
return replay_close_chat(
|
2020-09-22 01:15:09 +02:00
|
|
|
unique_ptr<log_event::CloseSecretChat>(static_cast<log_event::CloseSecretChat *>(message.release())));
|
|
|
|
case log_event::SecretChatEvent::Type::CreateSecretChat:
|
2018-12-31 20:04:05 +01:00
|
|
|
return replay_create_chat(
|
2020-09-22 01:15:09 +02:00
|
|
|
unique_ptr<log_event::CreateSecretChat>(static_cast<log_event::CreateSecretChat *>(message.release())));
|
2021-01-18 13:04:31 +01:00
|
|
|
default:
|
|
|
|
LOG(FATAL) << "Unknown log event type " << tag("type", format::as_hex(static_cast<int32>(message->get_type())));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::binlog_replay_finish() {
|
|
|
|
binlog_replay_finish_flag_ = true;
|
|
|
|
for (auto &it : id_to_actor_) {
|
|
|
|
send_closure(it.second, &SecretChatActor::binlog_replay_finish);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void SecretChatsManager::replay_inbound_message(unique_ptr<log_event::InboundSecretMessage> message) {
|
2020-08-02 00:21:43 +02:00
|
|
|
LOG(INFO) << "Replay inbound secret message in chat " << message->chat_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
auto actor = get_chat_actor(message->chat_id);
|
|
|
|
send_closure_later(actor, &SecretChatActor::replay_inbound_message, std::move(message));
|
|
|
|
}
|
2018-07-24 01:23:59 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void SecretChatsManager::add_inbound_message(unique_ptr<log_event::InboundSecretMessage> message) {
|
2020-08-02 00:21:43 +02:00
|
|
|
LOG(INFO) << "Process inbound secret message in chat " << message->chat_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
auto actor = get_chat_actor(message->chat_id);
|
|
|
|
send_closure(actor, &SecretChatActor::add_inbound_message, std::move(message));
|
|
|
|
}
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void SecretChatsManager::replay_close_chat(unique_ptr<log_event::CloseSecretChat> message) {
|
2018-07-24 01:23:59 +02:00
|
|
|
LOG(INFO) << "Replay close secret chat " << message->chat_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
auto actor = get_chat_actor(message->chat_id);
|
|
|
|
send_closure_later(actor, &SecretChatActor::replay_close_chat, std::move(message));
|
|
|
|
}
|
2018-07-24 01:23:59 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void SecretChatsManager::replay_create_chat(unique_ptr<log_event::CreateSecretChat> message) {
|
2018-07-24 01:23:59 +02:00
|
|
|
LOG(INFO) << "Replay create secret chat " << message->random_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
auto actor = create_chat_actor(message->random_id);
|
|
|
|
send_closure_later(actor, &SecretChatActor::replay_create_chat, std::move(message));
|
|
|
|
}
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void SecretChatsManager::replay_outbound_message(unique_ptr<log_event::OutboundSecretMessage> message) {
|
2019-09-04 20:30:27 +02:00
|
|
|
LOG(INFO) << "Replay outbound secret message in chat " << message->chat_id;
|
2018-07-24 01:23:59 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
auto actor = get_chat_actor(message->chat_id);
|
|
|
|
send_closure_later(actor, &SecretChatActor::replay_outbound_message, std::move(message));
|
|
|
|
}
|
|
|
|
|
|
|
|
ActorId<SecretChatActor> SecretChatsManager::get_chat_actor(int32 id) {
|
|
|
|
return create_chat_actor_impl(id, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
ActorId<SecretChatActor> SecretChatsManager::create_chat_actor(int32 id) {
|
|
|
|
return create_chat_actor_impl(id, true);
|
|
|
|
}
|
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
unique_ptr<SecretChatActor::Context> SecretChatsManager::make_secret_chat_context(int32 id) {
|
2021-07-04 04:58:54 +02:00
|
|
|
class Context final : public SecretChatActor::Context {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
2018-09-27 03:19:03 +02:00
|
|
|
Context(int32 id, ActorShared<SecretChatsManager> parent, unique_ptr<SecretChatDb> secret_chat_db)
|
2018-12-31 20:04:05 +01:00
|
|
|
: secret_chat_id_(SecretChatId(id)), parent_(std::move(parent)), secret_chat_db_(std::move(secret_chat_db)) {
|
|
|
|
sequence_dispatcher_ = create_actor<SequenceDispatcher>("SecretChat SequenceDispatcher");
|
|
|
|
}
|
|
|
|
Context(const Context &other) = delete;
|
|
|
|
Context &operator=(const Context &other) = delete;
|
|
|
|
Context(Context &&other) = delete;
|
|
|
|
Context &operator=(Context &&other) = delete;
|
2021-07-03 22:51:36 +02:00
|
|
|
~Context() final {
|
2018-12-31 20:04:05 +01:00
|
|
|
send_closure(std::move(sequence_dispatcher_), &SequenceDispatcher::close_silent);
|
|
|
|
}
|
|
|
|
|
2021-07-05 20:04:23 +02:00
|
|
|
mtproto::DhCallback *dh_callback() final {
|
2018-12-31 20:04:05 +01:00
|
|
|
return DhCache::instance();
|
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
NetQueryCreator &net_query_creator() final {
|
2018-12-31 20:04:05 +01:00
|
|
|
return G()->net_query_creator();
|
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
BinlogInterface *binlog() final {
|
2018-12-31 20:04:05 +01:00
|
|
|
return G()->td_db()->get_binlog();
|
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
SecretChatDb *secret_chat_db() final {
|
2018-12-31 20:04:05 +01:00
|
|
|
return secret_chat_db_.get();
|
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
std::shared_ptr<DhConfig> dh_config() final {
|
2018-12-31 20:04:05 +01:00
|
|
|
return G()->get_dh_config();
|
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
void set_dh_config(std::shared_ptr<DhConfig> dh_config) final {
|
2018-12-31 20:04:05 +01:00
|
|
|
G()->set_dh_config(std::move(dh_config));
|
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
void send_net_query(NetQueryPtr query, ActorShared<NetQueryCallback> callback, bool ordered) final {
|
2018-12-31 20:04:05 +01:00
|
|
|
if (ordered) {
|
|
|
|
send_closure(sequence_dispatcher_, &SequenceDispatcher::send_with_callback, std::move(query),
|
|
|
|
std::move(callback));
|
|
|
|
} else {
|
|
|
|
G()->net_query_dispatcher().dispatch_with_callback(std::move(query), std::move(callback));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-03 22:51:36 +02:00
|
|
|
bool get_config_option_boolean(const string &name) const final {
|
2018-12-31 20:04:05 +01:00
|
|
|
return G()->shared_config().get_option_boolean(name);
|
|
|
|
}
|
|
|
|
|
2021-07-03 22:51:36 +02:00
|
|
|
int32 unix_time() final {
|
2018-12-31 20:04:05 +01:00
|
|
|
return G()->unix_time();
|
|
|
|
}
|
|
|
|
|
2021-07-03 22:51:36 +02:00
|
|
|
bool close_flag() final {
|
2018-12-31 20:04:05 +01:00
|
|
|
return G()->close_flag();
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_update_secret_chat(int64 access_hash, UserId user_id, SecretChatState state, bool is_outbound, int32 ttl,
|
2021-07-03 22:51:36 +02:00
|
|
|
int32 date, string key_hash, int32 layer, FolderId initial_folder_id) final {
|
2018-12-31 20:04:05 +01:00
|
|
|
send_closure(G()->contacts_manager(), &ContactsManager::on_update_secret_chat, secret_chat_id_, access_hash,
|
2020-06-30 11:11:22 +02:00
|
|
|
user_id, state, is_outbound, ttl, date, key_hash, layer, initial_folder_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2021-08-01 05:17:51 +02:00
|
|
|
void on_inbound_message(UserId user_id, MessageId message_id, int32 date, unique_ptr<EncryptedFile> file,
|
2021-07-03 22:51:36 +02:00
|
|
|
tl_object_ptr<secret_api::decryptedMessage> message, Promise<> promise) final {
|
2021-05-16 01:11:37 +02:00
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::on_get_secret_message, secret_chat_id_, user_id,
|
|
|
|
message_id, date, std::move(file), std::move(message), std::move(promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2021-07-03 22:51:36 +02:00
|
|
|
void on_send_message_error(int64 random_id, Status error, Promise<> promise) final {
|
2021-05-16 01:11:37 +02:00
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::on_send_secret_message_error, random_id,
|
|
|
|
std::move(error), std::move(promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2021-07-03 22:51:36 +02:00
|
|
|
void on_send_message_ack(int64 random_id) final {
|
2021-05-16 01:11:37 +02:00
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::on_send_message_get_quick_ack, random_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2021-08-01 05:17:51 +02:00
|
|
|
void on_send_message_ok(int64 random_id, MessageId message_id, int32 date, unique_ptr<EncryptedFile> file,
|
|
|
|
Promise<> promise) final {
|
2021-05-16 01:11:37 +02:00
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::on_send_secret_message_success, random_id,
|
|
|
|
message_id, date, std::move(file), std::move(promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
void on_delete_messages(std::vector<int64> random_ids, Promise<> promise) final {
|
2021-05-16 01:11:37 +02:00
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::delete_secret_messages, secret_chat_id_,
|
|
|
|
std::move(random_ids), std::move(promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
void on_flush_history(bool remove_from_dialog_list, MessageId message_id, Promise<> promise) final {
|
2021-05-16 01:11:37 +02:00
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::delete_secret_chat_history, secret_chat_id_,
|
|
|
|
remove_from_dialog_list, message_id, std::move(promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2021-07-03 22:51:36 +02:00
|
|
|
void on_read_message(int64 random_id, Promise<> promise) final {
|
2021-05-16 01:11:37 +02:00
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::open_secret_message, secret_chat_id_, random_id,
|
|
|
|
std::move(promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
void on_screenshot_taken(UserId user_id, MessageId message_id, int32 date, int64 random_id,
|
2021-07-03 22:51:36 +02:00
|
|
|
Promise<> promise) final {
|
2021-05-16 01:11:37 +02:00
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::on_secret_chat_screenshot_taken, secret_chat_id_,
|
|
|
|
user_id, message_id, date, random_id, std::move(promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
void on_set_ttl(UserId user_id, MessageId message_id, int32 date, int32 ttl, int64 random_id,
|
2021-07-03 22:51:36 +02:00
|
|
|
Promise<> promise) final {
|
2021-05-16 01:11:37 +02:00
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::on_secret_chat_ttl_changed, secret_chat_id_,
|
|
|
|
user_id, message_id, date, ttl, random_id, std::move(promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SecretChatId secret_chat_id_;
|
|
|
|
ActorOwn<SequenceDispatcher> sequence_dispatcher_;
|
|
|
|
ActorShared<SecretChatsManager> parent_;
|
2018-09-27 03:19:03 +02:00
|
|
|
unique_ptr<SecretChatDb> secret_chat_db_;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
2018-09-27 03:19:03 +02:00
|
|
|
return make_unique<Context>(id, actor_shared(this, id),
|
|
|
|
td::make_unique<SecretChatDb>(G()->td_db()->get_binlog_pmc_shared(), id));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ActorId<SecretChatActor> SecretChatsManager::create_chat_actor_impl(int32 id, bool can_be_empty) {
|
|
|
|
if (id == 0) {
|
|
|
|
return Auto();
|
|
|
|
}
|
|
|
|
auto it_flag = id_to_actor_.emplace(id, ActorOwn<SecretChatActor>());
|
|
|
|
if (it_flag.second) {
|
|
|
|
LOG(INFO) << "Create SecretChatActor: " << tag("id", id);
|
|
|
|
it_flag.first->second =
|
|
|
|
create_actor<SecretChatActor>(PSLICE() << "SecretChat " << id, id, make_secret_chat_context(id), can_be_empty);
|
|
|
|
if (binlog_replay_finish_flag_) {
|
|
|
|
send_closure(it_flag.first->second, &SecretChatActor::binlog_replay_finish);
|
|
|
|
}
|
|
|
|
}
|
2021-08-30 18:28:54 +02:00
|
|
|
return it_flag.first->second.get();
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2019-09-05 17:32:45 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void SecretChatsManager::hangup() {
|
|
|
|
close_flag_ = true;
|
|
|
|
if (dummy_mode_) {
|
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
for (auto &it : id_to_actor_) {
|
2021-08-30 18:28:54 +02:00
|
|
|
LOG(INFO) << "Ask to close SecretChatActor " << tag("id", it.first);
|
2018-12-31 20:04:05 +01:00
|
|
|
it.second.reset();
|
|
|
|
}
|
|
|
|
if (id_to_actor_.empty()) {
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::hangup_shared() {
|
|
|
|
CHECK(!dummy_mode_);
|
|
|
|
auto token = get_link_token();
|
|
|
|
auto it = id_to_actor_.find(static_cast<int32>(token));
|
2021-08-30 18:28:54 +02:00
|
|
|
CHECK(it != id_to_actor_.end());
|
|
|
|
LOG(INFO) << "Close SecretChatActor " << tag("id", it->first);
|
|
|
|
it->second.release();
|
|
|
|
id_to_actor_.erase(it);
|
2018-12-31 20:04:05 +01:00
|
|
|
if (close_flag_ && id_to_actor_.empty()) {
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::timeout_expired() {
|
|
|
|
flush_pending_chat_updates();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::flush_pending_chat_updates() {
|
|
|
|
if (close_flag_ || dummy_mode_) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto it = pending_chat_updates_.begin();
|
|
|
|
while (it != pending_chat_updates_.end() && (it->first.is_in_past() || is_online_)) {
|
|
|
|
do_update_chat(std::move(it->second));
|
2018-04-23 00:14:49 +02:00
|
|
|
++it;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
if (it != pending_chat_updates_.end()) {
|
|
|
|
set_timeout_at(it->first.at());
|
|
|
|
}
|
|
|
|
pending_chat_updates_.erase(pending_chat_updates_.begin(), it);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SecretChatsManager::on_online(bool is_online) {
|
2019-03-31 21:29:34 +02:00
|
|
|
if (is_online_ == is_online) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
is_online_ = is_online;
|
|
|
|
flush_pending_chat_updates();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|