2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
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/AccessRights.h"
|
|
|
|
#include "td/telegram/ChannelId.h"
|
2018-09-28 03:21:20 +02:00
|
|
|
#include "td/telegram/Dependencies.h"
|
2020-10-01 18:28:10 +02:00
|
|
|
#include "td/telegram/DialogAction.h"
|
2019-11-11 17:14:32 +01:00
|
|
|
#include "td/telegram/DialogAdministrator.h"
|
2018-09-29 02:39:27 +02:00
|
|
|
#include "td/telegram/DialogDate.h"
|
2019-09-15 03:15:46 +02:00
|
|
|
#include "td/telegram/DialogDb.h"
|
2020-05-12 02:14:20 +02:00
|
|
|
#include "td/telegram/DialogFilterId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/DialogId.h"
|
2020-05-21 18:39:34 +02:00
|
|
|
#include "td/telegram/DialogListId.h"
|
2019-10-14 16:51:12 +02:00
|
|
|
#include "td/telegram/DialogLocation.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/DialogParticipant.h"
|
2020-04-28 15:25:56 +02:00
|
|
|
#include "td/telegram/DialogSource.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/files/FileId.h"
|
2019-01-19 03:44:31 +01:00
|
|
|
#include "td/telegram/files/FileSourceId.h"
|
2019-08-19 03:51:03 +02:00
|
|
|
#include "td/telegram/FolderId.h"
|
2019-11-26 17:53:10 +01:00
|
|
|
#include "td/telegram/FullMessageId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/Global.h"
|
2020-05-27 01:29:40 +02:00
|
|
|
#include "td/telegram/InputDialogId.h"
|
2020-09-21 14:21:41 +02:00
|
|
|
#include "td/telegram/logevent/LogEventHelper.h"
|
2020-01-27 14:06:00 +01:00
|
|
|
#include "td/telegram/MessageContentType.h"
|
2020-08-09 13:18:08 +02:00
|
|
|
#include "td/telegram/MessageCopyOptions.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/MessageId.h"
|
2020-09-07 13:07:40 +02:00
|
|
|
#include "td/telegram/MessageReplyInfo.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/MessagesDb.h"
|
2020-08-22 09:27:13 +02:00
|
|
|
#include "td/telegram/MessageSearchFilter.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/net/NetQuery.h"
|
2018-11-26 18:05:06 +01:00
|
|
|
#include "td/telegram/Notification.h"
|
2018-11-11 13:58:52 +01:00
|
|
|
#include "td/telegram/NotificationGroupId.h"
|
2018-11-28 22:51:25 +01:00
|
|
|
#include "td/telegram/NotificationGroupKey.h"
|
2018-12-23 22:34:40 +01:00
|
|
|
#include "td/telegram/NotificationGroupType.h"
|
2018-11-11 13:58:52 +01:00
|
|
|
#include "td/telegram/NotificationId.h"
|
2018-09-29 02:29:57 +02:00
|
|
|
#include "td/telegram/NotificationSettings.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/ReplyMarkup.h"
|
2019-11-24 00:28:48 +01:00
|
|
|
#include "td/telegram/RestrictionReason.h"
|
2019-12-02 17:20:54 +01:00
|
|
|
#include "td/telegram/ScheduledServerMessageId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/SecretChatId.h"
|
|
|
|
#include "td/telegram/SecretInputMedia.h"
|
2019-11-26 17:33:18 +01:00
|
|
|
#include "td/telegram/ServerMessageId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/UserId.h"
|
|
|
|
|
2020-08-22 09:27:13 +02:00
|
|
|
#include "td/telegram/secret_api.h"
|
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
|
2018-11-11 13:58:52 +01:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
#include "td/actor/MultiPromise.h"
|
|
|
|
#include "td/actor/PromiseFuture.h"
|
|
|
|
#include "td/actor/SignalSlot.h"
|
|
|
|
#include "td/actor/Timeout.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/buffer.h"
|
|
|
|
#include "td/utils/ChangesProcessor.h"
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Heap.h"
|
|
|
|
#include "td/utils/Hints.h"
|
|
|
|
#include "td/utils/logging.h"
|
2019-01-31 03:05:40 +01:00
|
|
|
#include "td/utils/Slice.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Status.h"
|
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
#include "td/utils/tl_storers.h"
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <functional>
|
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
|
|
|
#include <set>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2019-01-06 20:11:02 +01:00
|
|
|
struct BinlogEvent;
|
|
|
|
|
2020-06-02 12:58:53 +02:00
|
|
|
class DialogFilter;
|
|
|
|
|
2020-01-27 14:10:59 +01:00
|
|
|
class DraftMessage;
|
|
|
|
|
|
|
|
struct InputMessageContent;
|
|
|
|
|
|
|
|
class MessageContent;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
class MultiSequenceDispatcher;
|
|
|
|
|
2020-01-27 14:10:59 +01:00
|
|
|
class Td;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
class dummyUpdate : public telegram_api::Update {
|
|
|
|
public:
|
|
|
|
static constexpr int32 ID = 1234567891;
|
|
|
|
int32 get_id() const override {
|
|
|
|
return ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
void store(TlStorerUnsafe &s) const override {
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
void store(TlStorerCalcLength &s) const override {
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
void store(TlStorerToString &s, const char *field_name) const override;
|
|
|
|
};
|
|
|
|
|
2018-10-01 23:24:45 +02:00
|
|
|
class updateSentMessage : public telegram_api::Update {
|
|
|
|
public:
|
|
|
|
int64 random_id_;
|
|
|
|
MessageId message_id_;
|
|
|
|
int32 date_;
|
|
|
|
|
|
|
|
updateSentMessage(int64 random_id, MessageId message_id, int32 date)
|
|
|
|
: random_id_(random_id), message_id_(message_id), date_(date) {
|
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr int32 ID = 1234567890;
|
|
|
|
int32 get_id() const override {
|
|
|
|
return ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
void store(TlStorerUnsafe &s) const override {
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
void store(TlStorerCalcLength &s) const override {
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
void store(TlStorerToString &s, const char *field_name) const override {
|
|
|
|
s.store_class_begin(field_name, "updateSentMessage");
|
|
|
|
s.store_field("random_id", random_id_);
|
|
|
|
s.store_field("message_id", message_id_.get());
|
|
|
|
s.store_field("date", date_);
|
|
|
|
s.store_class_end();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class MessagesManager : public Actor {
|
|
|
|
public:
|
|
|
|
// static constexpr int32 MESSAGE_FLAG_IS_UNREAD = 1 << 0;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_OUT = 1 << 1;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_FORWARDED = 1 << 2;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_REPLY = 1 << 3;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_MENTION = 1 << 4;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_UNREAD_CONTENT = 1 << 5;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_REPLY_MARKUP = 1 << 6;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_ENTITIES = 1 << 7;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_FROM_ID = 1 << 8;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_MEDIA = 1 << 9;
|
2020-07-31 04:50:11 +02:00
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_INTERACTION_INFO = 1 << 10;
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_SENT_VIA_BOT = 1 << 11;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_SILENT = 1 << 13;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_POST = 1 << 14;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_EDIT_DATE = 1 << 15;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_AUTHOR_SIGNATURE = 1 << 16;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_MEDIA_ALBUM_ID = 1 << 17;
|
2019-11-22 12:02:18 +01:00
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_FROM_SCHEDULED = 1 << 18;
|
2019-08-15 17:16:09 +02:00
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_LEGACY = 1 << 19;
|
2019-11-22 12:02:18 +01:00
|
|
|
static constexpr int32 MESSAGE_FLAG_HIDE_EDIT_DATE = 1 << 21;
|
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_RESTRICTED = 1 << 22;
|
2020-08-30 21:12:43 +02:00
|
|
|
static constexpr int32 MESSAGE_FLAG_HAS_REPLY_INFO = 1 << 23;
|
2020-10-20 01:08:56 +02:00
|
|
|
static constexpr int32 MESSAGE_FLAG_IS_PINNED = 1 << 24;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_IS_REPLY = 1 << 0;
|
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_DISABLE_WEB_PAGE_PREVIEW = 1 << 1;
|
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_HAS_REPLY_MARKUP = 1 << 2;
|
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_HAS_ENTITIES = 1 << 3;
|
|
|
|
// static constexpr int32 SEND_MESSAGE_FLAG_IS_POST = 1 << 4;
|
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_DISABLE_NOTIFICATION = 1 << 5;
|
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_FROM_BACKGROUND = 1 << 6;
|
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_CLEAR_DRAFT = 1 << 7;
|
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_WITH_MY_SCORE = 1 << 8;
|
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_GROUP_MEDIA = 1 << 9;
|
2019-12-05 18:34:19 +01:00
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_HAS_SCHEDULE_DATE = 1 << 10;
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr int32 SEND_MESSAGE_FLAG_HAS_MESSAGE = 1 << 11;
|
|
|
|
|
2019-03-05 13:49:10 +01:00
|
|
|
static constexpr int32 ONLINE_MEMBER_COUNT_CACHE_EXPIRE_TIME = 30 * 60;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
MessagesManager(Td *td, ActorShared<> parent);
|
|
|
|
MessagesManager(const MessagesManager &) = delete;
|
|
|
|
MessagesManager &operator=(const MessagesManager &) = delete;
|
|
|
|
MessagesManager(MessagesManager &&) = delete;
|
|
|
|
MessagesManager &operator=(MessagesManager &&) = delete;
|
|
|
|
~MessagesManager() override;
|
|
|
|
|
2020-10-20 23:16:24 +02:00
|
|
|
void memory_cleanup();
|
|
|
|
|
2020-10-25 02:20:24 +01:00
|
|
|
void memory_stats(vector<string> &output);
|
|
|
|
|
2020-10-19 19:44:09 +02:00
|
|
|
td_api::object_ptr<td_api::MessageSender> get_message_sender_object_const(UserId user_id, DialogId dialog_id) const;
|
2020-10-13 18:40:22 +02:00
|
|
|
|
2020-10-19 19:44:09 +02:00
|
|
|
td_api::object_ptr<td_api::MessageSender> get_message_sender_object(UserId user_id, DialogId dialog_id);
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::MessageSender> get_message_sender_object(DialogId dialog_id);
|
2020-10-18 01:10:58 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static vector<MessageId> get_message_ids(const vector<int64> &input_message_ids);
|
|
|
|
|
|
|
|
static vector<int32> get_server_message_ids(const vector<MessageId> &message_ids);
|
|
|
|
|
2019-11-30 20:13:41 +01:00
|
|
|
static vector<int32> get_scheduled_server_message_ids(const vector<MessageId> &message_ids);
|
|
|
|
|
2020-09-14 01:23:02 +02:00
|
|
|
static MessageId get_message_id(const tl_object_ptr<telegram_api::Message> &message_ptr, bool is_scheduled);
|
|
|
|
|
2020-09-14 01:32:37 +02:00
|
|
|
static DialogId get_message_dialog_id(const tl_object_ptr<telegram_api::Message> &message_ptr);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
tl_object_ptr<telegram_api::InputPeer> get_input_peer(DialogId dialog_id, AccessRights access_rights) const;
|
|
|
|
|
2020-06-20 02:45:25 +02:00
|
|
|
static tl_object_ptr<telegram_api::InputPeer> get_input_peer_force(DialogId dialog_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
vector<tl_object_ptr<telegram_api::InputPeer>> get_input_peers(const vector<DialogId> &dialog_ids,
|
|
|
|
AccessRights access_rights) const;
|
|
|
|
|
2019-08-19 03:51:03 +02:00
|
|
|
tl_object_ptr<telegram_api::InputDialogPeer> get_input_dialog_peer(DialogId dialog_id,
|
2018-02-22 01:36:40 +01:00
|
|
|
AccessRights access_rights) const;
|
|
|
|
|
2019-08-19 03:51:03 +02:00
|
|
|
vector<tl_object_ptr<telegram_api::InputDialogPeer>> get_input_dialog_peers(const vector<DialogId> &dialog_ids,
|
2018-02-22 01:36:40 +01:00
|
|
|
AccessRights access_rights) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<telegram_api::inputEncryptedChat> get_input_encrypted_chat(DialogId dialog_id,
|
|
|
|
AccessRights access_rights) const;
|
|
|
|
|
|
|
|
bool have_input_peer(DialogId dialog_id, AccessRights access_rights) const;
|
|
|
|
|
2020-09-14 01:23:02 +02:00
|
|
|
void on_get_empty_messages(DialogId dialog_id, vector<MessageId> empty_message_ids);
|
|
|
|
|
2019-01-12 03:38:17 +01:00
|
|
|
struct MessagesInfo {
|
|
|
|
vector<tl_object_ptr<telegram_api::Message>> messages;
|
|
|
|
int32 total_count = 0;
|
|
|
|
bool is_channel_messages = false;
|
|
|
|
};
|
|
|
|
MessagesInfo on_get_messages(tl_object_ptr<telegram_api::messages_Messages> &&messages_ptr, const char *source);
|
|
|
|
|
2020-11-07 20:28:45 +01:00
|
|
|
void get_channel_difference_if_needed(DialogId dialog_id, MessagesInfo &&messages_info,
|
|
|
|
Promise<MessagesInfo> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_get_messages(vector<tl_object_ptr<telegram_api::Message>> &&messages, bool is_channel_message,
|
2019-12-01 22:11:15 +01:00
|
|
|
bool is_scheduled, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_get_history(DialogId dialog_id, MessageId from_message_id, int32 offset, int32 limit, bool from_the_end,
|
|
|
|
vector<tl_object_ptr<telegram_api::Message>> &&messages);
|
|
|
|
|
2018-01-16 19:56:59 +01:00
|
|
|
void on_get_public_dialogs_search_result(const string &query, vector<tl_object_ptr<telegram_api::Peer>> &&my_peers,
|
|
|
|
vector<tl_object_ptr<telegram_api::Peer>> &&peers);
|
2018-01-16 17:04:36 +01:00
|
|
|
void on_failed_public_dialogs_search(const string &query, Status &&error);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-10-14 13:41:04 +02:00
|
|
|
void on_get_dialog_messages_search_result(DialogId dialog_id, const string &query, DialogId sender_dialog_id,
|
2018-12-31 20:04:05 +01:00
|
|
|
MessageId from_message_id, int32 offset, int32 limit,
|
2020-09-08 21:08:10 +02:00
|
|
|
MessageSearchFilter filter, MessageId top_thread_message_id,
|
|
|
|
int64 random_id, int32 total_count,
|
2018-12-31 20:04:05 +01:00
|
|
|
vector<tl_object_ptr<telegram_api::Message>> &&messages);
|
2018-01-31 12:59:14 +01:00
|
|
|
void on_failed_dialog_messages_search(DialogId dialog_id, int64 random_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_get_messages_search_result(const string &query, int32 offset_date, DialogId offset_dialog_id,
|
2020-08-22 09:05:51 +02:00
|
|
|
MessageId offset_message_id, int32 limit, MessageSearchFilter filter,
|
2020-09-08 13:58:02 +02:00
|
|
|
int32 min_date, int32 max_date, int64 random_id, int32 total_count,
|
2018-12-31 20:04:05 +01:00
|
|
|
vector<tl_object_ptr<telegram_api::Message>> &&messages);
|
|
|
|
void on_failed_messages_search(int64 random_id);
|
|
|
|
|
2019-12-04 22:24:48 +01:00
|
|
|
void on_get_scheduled_server_messages(DialogId dialog_id, uint32 generation,
|
|
|
|
vector<tl_object_ptr<telegram_api::Message>> &&messages, bool is_not_modified);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_get_recent_locations(DialogId dialog_id, int32 limit, int64 random_id, int32 total_count,
|
|
|
|
vector<tl_object_ptr<telegram_api::Message>> &&messages);
|
|
|
|
void on_get_recent_locations_failed(int64 random_id);
|
|
|
|
|
2020-08-21 13:47:43 +02:00
|
|
|
void on_get_message_public_forwards_result(int64 random_id, int32 total_count,
|
|
|
|
vector<tl_object_ptr<telegram_api::Message>> &&messages);
|
|
|
|
void on_failed_get_message_public_forwards(int64 random_id);
|
|
|
|
|
2020-09-15 16:07:34 +02:00
|
|
|
// if message is from_update, flags have_previous and have_next are ignored and must be both true
|
2018-12-31 20:04:05 +01:00
|
|
|
FullMessageId on_get_message(tl_object_ptr<telegram_api::Message> message_ptr, bool from_update,
|
2019-12-01 22:11:15 +01:00
|
|
|
bool is_channel_message, bool is_scheduled, bool have_previous, bool have_next,
|
|
|
|
const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void open_secret_message(SecretChatId secret_chat_id, int64 random_id, Promise<>);
|
|
|
|
|
|
|
|
void on_send_secret_message_success(int64 random_id, MessageId message_id, int32 date,
|
|
|
|
tl_object_ptr<telegram_api::EncryptedFile> file_ptr, Promise<> promise);
|
|
|
|
void on_send_secret_message_error(int64 random_id, Status error, Promise<> promise);
|
|
|
|
|
|
|
|
void delete_secret_messages(SecretChatId secret_chat_id, std::vector<int64> random_ids, Promise<> promise);
|
|
|
|
|
|
|
|
void delete_secret_chat_history(SecretChatId secret_chat_id, MessageId last_message_id, Promise<> promise);
|
|
|
|
|
|
|
|
void read_secret_chat_outbox(SecretChatId secret_chat_id, int32 up_to_date, int32 read_date);
|
|
|
|
|
2018-12-04 17:40:12 +01:00
|
|
|
void on_update_secret_chat_state(SecretChatId secret_chat_id, SecretChatState state);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_get_secret_message(SecretChatId secret_chat_id, UserId user_id, MessageId message_id, int32 date,
|
|
|
|
tl_object_ptr<telegram_api::encryptedFile> file,
|
|
|
|
tl_object_ptr<secret_api::decryptedMessage> message, Promise<> promise);
|
|
|
|
|
|
|
|
void on_secret_chat_screenshot_taken(SecretChatId secret_chat_id, UserId user_id, MessageId message_id, int32 date,
|
|
|
|
int64 random_id, Promise<> promise);
|
|
|
|
|
|
|
|
void on_secret_chat_ttl_changed(SecretChatId secret_chat_id, UserId user_id, MessageId message_id, int32 date,
|
|
|
|
int32 ttl, int64 random_id, Promise<> promise);
|
|
|
|
|
|
|
|
void on_update_sent_text_message(int64 random_id, tl_object_ptr<telegram_api::MessageMedia> message_media,
|
|
|
|
vector<tl_object_ptr<telegram_api::MessageEntity>> &&entities);
|
|
|
|
|
2020-01-27 00:55:18 +01:00
|
|
|
void delete_pending_message_web_page(FullMessageId full_message_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-22 17:24:02 +02:00
|
|
|
void on_get_dialogs(FolderId folder_id, vector<tl_object_ptr<telegram_api::Dialog>> &&dialog_folders,
|
|
|
|
int32 total_count, vector<tl_object_ptr<telegram_api::Message>> &&messages,
|
|
|
|
Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-04-01 21:38:17 +02:00
|
|
|
void on_get_common_dialogs(UserId user_id, int32 offset_chat_id, vector<tl_object_ptr<telegram_api::Chat>> &&chats,
|
|
|
|
int32 total_count);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
bool on_update_message_id(int64 random_id, MessageId new_message_id, const string &source);
|
|
|
|
|
2019-12-05 18:34:19 +01:00
|
|
|
bool on_update_scheduled_message_id(int64 random_id, ScheduledServerMessageId new_message_id, const string &source);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_update_dialog_draft_message(DialogId dialog_id, tl_object_ptr<telegram_api::DraftMessage> &&draft_message);
|
|
|
|
|
2019-08-22 17:24:02 +02:00
|
|
|
void on_update_dialog_is_pinned(FolderId folder_id, DialogId dialog_id, bool is_pinned);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-22 17:24:02 +02:00
|
|
|
void on_update_pinned_dialogs(FolderId folder_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-06-25 23:10:53 +02:00
|
|
|
void on_update_dialog_is_marked_as_unread(DialogId dialog_id, bool is_marked_as_unread);
|
|
|
|
|
2020-09-20 00:54:40 +02:00
|
|
|
void on_update_dialog_is_blocked(DialogId dialog_id, bool is_blocked);
|
|
|
|
|
2020-10-20 19:28:37 +02:00
|
|
|
void on_update_dialog_last_pinned_message_id(DialogId dialog_id, MessageId last_pinned_message_id);
|
2019-02-01 13:19:32 +01:00
|
|
|
|
2019-12-04 18:51:52 +01:00
|
|
|
void on_update_dialog_has_scheduled_server_messages(DialogId dialog_id, bool has_scheduled_server_messages);
|
2019-11-25 17:11:24 +01:00
|
|
|
|
2019-08-19 03:51:03 +02:00
|
|
|
void on_update_dialog_folder_id(DialogId dialog_id, FolderId folder_id);
|
|
|
|
|
2020-05-15 00:44:52 +02:00
|
|
|
void on_update_dialog_filters();
|
|
|
|
|
2019-03-25 23:24:23 +01:00
|
|
|
void on_update_service_notification(tl_object_ptr<telegram_api::updateServiceNotification> &&update,
|
2019-04-02 21:24:54 +02:00
|
|
|
bool skip_new_entities, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_update_new_channel_message(tl_object_ptr<telegram_api::updateNewChannelMessage> &&update);
|
|
|
|
|
|
|
|
void on_update_edit_channel_message(tl_object_ptr<telegram_api::updateEditChannelMessage> &&update);
|
|
|
|
|
|
|
|
void on_update_read_channel_inbox(tl_object_ptr<telegram_api::updateReadChannelInbox> &&update);
|
|
|
|
|
|
|
|
void on_update_read_channel_outbox(tl_object_ptr<telegram_api::updateReadChannelOutbox> &&update);
|
|
|
|
|
|
|
|
void on_update_read_channel_messages_contents(
|
|
|
|
tl_object_ptr<telegram_api::updateChannelReadMessagesContents> &&update);
|
|
|
|
|
2020-09-16 15:41:08 +02:00
|
|
|
void on_update_read_message_comments(DialogId dialog_id, MessageId message_id, MessageId max_message_id,
|
2020-09-18 17:32:59 +02:00
|
|
|
MessageId last_read_inbox_message_id, MessageId last_read_outbox_message_id);
|
2020-09-16 15:41:08 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_update_channel_too_long(tl_object_ptr<telegram_api::updateChannelTooLong> &&update, bool force_apply);
|
|
|
|
|
2020-07-31 04:50:11 +02:00
|
|
|
void on_update_message_view_count(FullMessageId full_message_id, int32 view_count);
|
|
|
|
|
|
|
|
void on_update_message_forward_count(FullMessageId full_message_id, int32 forward_count);
|
|
|
|
|
2020-08-31 12:42:27 +02:00
|
|
|
void on_update_message_interaction_info(FullMessageId full_message_id, int32 view_count, int32 forward_count,
|
|
|
|
bool has_reply_info,
|
|
|
|
tl_object_ptr<telegram_api::messageReplies> &&reply_info);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-12-13 19:05:10 +01:00
|
|
|
void on_update_live_location_viewed(FullMessageId full_message_id);
|
|
|
|
|
2019-12-13 23:57:17 +01:00
|
|
|
void on_update_some_live_location_viewed(Promise<Unit> &&promise);
|
|
|
|
|
2020-01-25 01:50:23 +01:00
|
|
|
void on_external_update_message_content(FullMessageId full_message_id);
|
2019-02-20 23:54:31 +01:00
|
|
|
|
2019-08-27 17:32:39 +02:00
|
|
|
void on_read_channel_inbox(ChannelId channel_id, MessageId max_message_id, int32 server_unread_count, int32 pts,
|
|
|
|
const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_read_channel_outbox(ChannelId channel_id, MessageId max_message_id);
|
|
|
|
|
|
|
|
void on_update_channel_max_unavailable_message_id(ChannelId channel_id, MessageId max_unavailable_message_id);
|
|
|
|
|
2019-03-05 03:18:31 +01:00
|
|
|
void on_update_dialog_online_member_count(DialogId dialog_id, int32 online_member_count, bool is_from_server);
|
2019-02-26 01:24:33 +01:00
|
|
|
|
2019-12-02 17:20:54 +01:00
|
|
|
void on_update_delete_scheduled_messages(DialogId dialog_id, vector<ScheduledServerMessageId> &&server_message_ids);
|
|
|
|
|
2020-10-01 18:28:10 +02:00
|
|
|
void on_user_dialog_action(DialogId dialog_id, MessageId top_thread_message_id, UserId user_id, DialogAction action,
|
|
|
|
int32 date, MessageContentType message_content_type = MessageContentType::None);
|
2018-03-13 09:57:58 +01:00
|
|
|
|
2019-03-25 17:01:33 +01:00
|
|
|
void read_history_inbox(DialogId dialog_id, MessageId max_message_id, int32 unread_count, const char *source);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void delete_messages(DialogId dialog_id, const vector<MessageId> &message_ids, bool revoke, Promise<Unit> &&promise);
|
|
|
|
|
2019-03-27 21:17:41 +01:00
|
|
|
void delete_dialog_history(DialogId dialog_id, bool remove_from_dialog_list, bool revoke, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void delete_dialog_messages_from_user(DialogId dialog_id, UserId user_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void delete_dialog(DialogId dialog_id);
|
|
|
|
|
|
|
|
void read_all_dialog_mentions(DialogId dialog_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
Status add_recently_found_dialog(DialogId dialog_id) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
Status remove_recently_found_dialog(DialogId dialog_id) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
void clear_recently_found_dialogs();
|
|
|
|
|
2019-08-05 11:12:59 +02:00
|
|
|
DialogId resolve_dialog_username(const string &username) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
DialogId search_public_dialog(const string &username_to_search, bool force, Promise<Unit> &&promise);
|
|
|
|
|
2019-12-06 00:32:23 +01:00
|
|
|
Result<MessageId> send_message(
|
2020-09-23 00:52:16 +02:00
|
|
|
DialogId dialog_id, MessageId top_thread_message_id, MessageId reply_to_message_id,
|
|
|
|
tl_object_ptr<td_api::messageSendOptions> &&options, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
2019-12-06 00:32:23 +01:00
|
|
|
tl_object_ptr<td_api::InputMessageContent> &&input_message_content) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Result<vector<MessageId>> send_message_group(
|
2020-09-23 00:52:16 +02:00
|
|
|
DialogId dialog_id, MessageId top_thread_message_id, MessageId reply_to_message_id,
|
|
|
|
tl_object_ptr<td_api::messageSendOptions> &&options,
|
2018-12-31 20:04:05 +01:00
|
|
|
vector<tl_object_ptr<td_api::InputMessageContent>> &&input_message_contents) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
Result<MessageId> send_bot_start_message(UserId bot_user_id, DialogId dialog_id,
|
|
|
|
const string ¶meter) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2020-09-23 00:52:16 +02:00
|
|
|
Result<MessageId> send_inline_query_result_message(DialogId dialog_id, MessageId top_thread_message_id,
|
|
|
|
MessageId reply_to_message_id,
|
2020-08-09 14:14:30 +02:00
|
|
|
tl_object_ptr<td_api::messageSendOptions> &&options,
|
2019-12-06 00:32:23 +01:00
|
|
|
int64 query_id, const string &result_id,
|
|
|
|
bool hide_via_bot) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Result<vector<MessageId>> forward_messages(DialogId to_dialog_id, DialogId from_dialog_id,
|
2019-12-06 00:32:23 +01:00
|
|
|
vector<MessageId> message_ids,
|
2020-08-09 14:14:30 +02:00
|
|
|
tl_object_ptr<td_api::messageSendOptions> &&options, bool in_game_share,
|
2020-08-09 13:18:08 +02:00
|
|
|
vector<MessageCopyOptions> &©_options) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-11 03:05:00 +02:00
|
|
|
Result<vector<MessageId>> resend_messages(DialogId dialog_id, vector<MessageId> message_ids) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Result<MessageId> send_dialog_set_ttl_message(DialogId dialog_id, int32 ttl);
|
|
|
|
|
|
|
|
Status send_screenshot_taken_notification_message(DialogId dialog_id);
|
|
|
|
|
2020-10-14 20:47:20 +02:00
|
|
|
Result<MessageId> add_local_message(DialogId dialog_id, td_api::object_ptr<td_api::MessageSender> &&sender,
|
|
|
|
MessageId reply_to_message_id, bool disable_notification,
|
|
|
|
tl_object_ptr<td_api::InputMessageContent> &&input_message_content)
|
|
|
|
TD_WARN_UNUSED_RESULT;
|
2018-03-26 22:20:56 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void edit_message_text(FullMessageId full_message_id, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
|
|
|
tl_object_ptr<td_api::InputMessageContent> &&input_message_content, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void edit_message_live_location(FullMessageId full_message_id, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
2020-10-16 22:08:28 +02:00
|
|
|
tl_object_ptr<td_api::location> &&input_location, int32 heading,
|
2020-10-30 13:51:20 +01:00
|
|
|
int32 proximity_alert_radius, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-06-19 01:31:34 +02:00
|
|
|
void edit_message_media(FullMessageId full_message_id, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
|
|
|
tl_object_ptr<td_api::InputMessageContent> &&input_message_content, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void edit_message_caption(FullMessageId full_message_id, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
2018-01-30 18:06:54 +01:00
|
|
|
tl_object_ptr<td_api::formattedText> &&input_caption, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void edit_message_reply_markup(FullMessageId full_message_id, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void edit_inline_message_text(const string &inline_message_id, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
|
|
|
tl_object_ptr<td_api::InputMessageContent> &&input_message_content,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void edit_inline_message_live_location(const string &inline_message_id,
|
|
|
|
tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
2020-10-16 22:08:28 +02:00
|
|
|
tl_object_ptr<td_api::location> &&input_location, int32 heading,
|
2020-10-30 13:51:20 +01:00
|
|
|
int32 proximity_alert_radius, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-06-19 01:31:34 +02:00
|
|
|
void edit_inline_message_media(const string &inline_message_id, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
|
|
|
tl_object_ptr<td_api::InputMessageContent> &&input_message_content,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void edit_inline_message_caption(const string &inline_message_id, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
2018-01-30 18:06:54 +01:00
|
|
|
tl_object_ptr<td_api::formattedText> &&input_caption, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void edit_inline_message_reply_markup(const string &inline_message_id,
|
|
|
|
tl_object_ptr<td_api::ReplyMarkup> &&reply_markup, Promise<Unit> &&promise);
|
|
|
|
|
2019-12-03 02:36:23 +01:00
|
|
|
void edit_message_scheduling_state(FullMessageId full_message_id,
|
|
|
|
td_api::object_ptr<td_api::MessageSchedulingState> &&scheduling_state,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void set_game_score(FullMessageId full_message_id, bool edit_message, UserId user_id, int32 score, bool force,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void set_inline_game_score(const string &inline_message_id, bool edit_message, UserId user_id, int32 score,
|
|
|
|
bool force, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
int64 get_game_high_scores(FullMessageId full_message_id, UserId user_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
int64 get_inline_game_high_scores(const string &inline_message_id, UserId user_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void on_get_game_high_scores(int64 random_id, tl_object_ptr<telegram_api::messages_highScores> &&high_scores);
|
|
|
|
|
|
|
|
tl_object_ptr<td_api::gameHighScores> get_game_high_scores_object(int64 random_id);
|
|
|
|
|
2020-10-01 18:28:10 +02:00
|
|
|
void send_dialog_action(DialogId dialog_id, MessageId top_thread_message_id, DialogAction action,
|
|
|
|
Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-31 02:50:52 +02:00
|
|
|
vector<DialogListId> get_dialog_lists_to_add_dialog(DialogId dialog_id);
|
|
|
|
|
2020-05-30 23:48:33 +02:00
|
|
|
void add_dialog_to_list(DialogId dialog_id, DialogListId dialog_list_id, Promise<Unit> &&promise);
|
2019-08-27 16:23:01 +02:00
|
|
|
|
2020-07-08 18:40:23 +02:00
|
|
|
void set_dialog_photo(DialogId dialog_id, const tl_object_ptr<td_api::InputChatPhoto> &input_photo,
|
|
|
|
Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void set_dialog_title(DialogId dialog_id, const string &title, Promise<Unit> &&promise);
|
|
|
|
|
2019-03-18 03:24:25 +01:00
|
|
|
void set_dialog_description(DialogId dialog_id, const string &description, Promise<Unit> &&promise);
|
|
|
|
|
2019-03-20 18:58:13 +01:00
|
|
|
void set_dialog_permissions(DialogId dialog_id, const td_api::object_ptr<td_api::chatPermissions> &permissions,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2020-10-23 01:12:32 +02:00
|
|
|
void pin_dialog_message(DialogId dialog_id, MessageId message_id, bool disable_notification, bool only_for_self,
|
|
|
|
bool is_unpin, Promise<Unit> &&promise);
|
2019-02-01 13:19:32 +01:00
|
|
|
|
2020-10-23 00:56:06 +02:00
|
|
|
void unpin_all_dialog_messages(DialogId dialog_id, Promise<Unit> &&promise);
|
2019-02-01 13:19:32 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void add_dialog_participant(DialogId dialog_id, UserId user_id, int32 forward_limit, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void add_dialog_participants(DialogId dialog_id, const vector<UserId> &user_ids, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void set_dialog_participant_status(DialogId dialog_id, UserId user_id,
|
|
|
|
const tl_object_ptr<td_api::ChatMemberStatus> &chat_member_status,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
DialogParticipant get_dialog_participant(DialogId dialog_id, UserId user_id, int64 &random_id, bool force,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
std::pair<int32, vector<DialogParticipant>> search_dialog_participants(DialogId dialog_id, const string &query,
|
2018-07-20 02:00:17 +02:00
|
|
|
int32 limit, DialogParticipantsFilter filter,
|
|
|
|
int64 &random_id, bool force,
|
2018-12-31 20:04:05 +01:00
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2019-11-11 17:14:32 +01:00
|
|
|
vector<DialogAdministrator> get_dialog_administrators(DialogId dialog_id, int left_tries, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void export_dialog_invite_link(DialogId dialog_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
string get_dialog_invite_link(DialogId dialog_id);
|
|
|
|
|
2019-08-27 16:23:01 +02:00
|
|
|
void get_dialog_info_full(DialogId dialog_id, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
int64 get_dialog_event_log(DialogId dialog_id, const string &query, int64 from_event_id, int32 limit,
|
|
|
|
const tl_object_ptr<td_api::chatEventLogFilters> &filters, const vector<UserId> &user_ids,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2019-06-17 18:46:07 +02:00
|
|
|
void on_get_event_log(ChannelId channel_id, int64 random_id,
|
|
|
|
tl_object_ptr<telegram_api::channels_adminLogResults> &&events);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
tl_object_ptr<td_api::chatEvents> get_chat_events_object(int64 random_id);
|
|
|
|
|
|
|
|
bool have_dialog(DialogId dialog_id) const;
|
|
|
|
bool have_dialog_force(DialogId dialog_id);
|
|
|
|
|
|
|
|
bool load_dialog(DialogId dialog_id, int left_tries, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void load_dialogs(vector<DialogId> dialog_ids, Promise<Unit> &&promise);
|
|
|
|
|
2020-05-18 01:29:28 +02:00
|
|
|
void load_dialog_filter(DialogFilterId dialog_id, bool force, Promise<Unit> &&promise);
|
|
|
|
|
2020-05-19 03:03:15 +02:00
|
|
|
void get_recommended_dialog_filters(Promise<td_api::object_ptr<td_api::recommendedChatFilters>> &&promise);
|
|
|
|
|
2020-09-19 23:28:26 +02:00
|
|
|
std::pair<int32, vector<DialogId>> get_dialogs(DialogListId dialog_list_id, DialogDate offset, int32 limit,
|
|
|
|
bool force, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
vector<DialogId> search_public_dialogs(const string &query, Promise<Unit> &&promise);
|
|
|
|
|
2020-09-19 23:28:26 +02:00
|
|
|
std::pair<int32, vector<DialogId>> search_dialogs(const string &query, int32 limit, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-01-16 19:56:59 +01:00
|
|
|
vector<DialogId> search_dialogs_on_server(const string &query, int32 limit, Promise<Unit> &&promise);
|
|
|
|
|
2019-04-01 21:38:17 +02:00
|
|
|
void drop_common_dialogs_cache(UserId user_id);
|
|
|
|
|
2020-09-19 23:28:26 +02:00
|
|
|
std::pair<int32, vector<DialogId>> get_common_dialogs(UserId user_id, DialogId offset_dialog_id, int32 limit,
|
|
|
|
bool force, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-10-18 00:26:36 +02:00
|
|
|
void block_message_sender_from_replies(MessageId message_id, bool delete_message, bool delete_all_messages,
|
|
|
|
bool report_spam, Promise<Unit> &&promise);
|
2020-09-24 14:29:34 +02:00
|
|
|
|
2020-09-20 02:29:00 +02:00
|
|
|
std::pair<int32, vector<DialogId>> get_blocked_dialogs(int32 offset, int32 limit, int64 &random_id,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void on_get_blocked_dialogs(int32 offset, int32 limit, int64 random_id, int32 total_count,
|
|
|
|
vector<tl_object_ptr<telegram_api::peerBlocked>> &&blocked_peers);
|
|
|
|
|
|
|
|
void on_failed_get_blocked_dialogs(int64 random_id);
|
|
|
|
|
2020-08-01 04:19:54 +02:00
|
|
|
bool can_get_message_statistics(FullMessageId full_message_id);
|
|
|
|
|
2019-12-06 03:02:02 +01:00
|
|
|
bool have_message_force(FullMessageId full_message_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-02-07 00:31:38 +01:00
|
|
|
void get_message(FullMessageId full_message_id, Promise<Unit> &&promise);
|
|
|
|
|
2020-09-10 15:29:10 +02:00
|
|
|
FullMessageId get_replied_message(DialogId dialog_id, MessageId message_id, bool force, Promise<Unit> &&promise);
|
2018-02-07 00:31:38 +01:00
|
|
|
|
2020-10-28 23:06:07 +01:00
|
|
|
MessageId get_dialog_pinned_message(DialogId dialog_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void get_callback_query_message(DialogId dialog_id, MessageId message_id, int64 callback_query_id,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
bool get_messages(DialogId dialog_id, const vector<MessageId> &message_ids, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void get_message_from_server(FullMessageId full_message_id, Promise<Unit> &&promise,
|
|
|
|
tl_object_ptr<telegram_api::InputMessage> input_message = nullptr);
|
|
|
|
|
|
|
|
void get_messages_from_server(vector<FullMessageId> &&message_ids, Promise<Unit> &&promise,
|
|
|
|
tl_object_ptr<telegram_api::InputMessage> input_message = nullptr);
|
|
|
|
|
2020-09-22 16:27:35 +02:00
|
|
|
struct MessageThreadInfo {
|
|
|
|
DialogId dialog_id;
|
|
|
|
vector<MessageId> message_ids;
|
|
|
|
};
|
|
|
|
void get_message_thread(DialogId dialog_id, MessageId message_id, Promise<MessageThreadInfo> &&promise);
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::messageThreadInfo> get_message_thread_info_object(const MessageThreadInfo &info);
|
2020-09-15 16:07:34 +02:00
|
|
|
|
2020-11-07 12:35:33 +01:00
|
|
|
void process_discussion_message(telegram_api::object_ptr<telegram_api::messages_discussionMessage> &&result,
|
|
|
|
DialogId dialog_id, MessageId message_id, DialogId expected_dialog_id,
|
|
|
|
MessageId expected_message_id, Promise<vector<FullMessageId>> promise);
|
2020-09-15 16:07:34 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool is_message_edited_recently(FullMessageId full_message_id, int32 seconds);
|
|
|
|
|
2020-09-20 21:07:27 +02:00
|
|
|
Result<std::pair<string, bool>> get_message_link(FullMessageId full_message_id, bool for_group, bool for_comment);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-20 17:17:47 +02:00
|
|
|
string get_message_embedding_code(FullMessageId full_message_id, bool for_group, Promise<Unit> &&promise);
|
|
|
|
|
2018-01-16 22:27:16 +01:00
|
|
|
void on_get_public_message_link(FullMessageId full_message_id, bool for_group, string url, string html);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-05 11:12:59 +02:00
|
|
|
struct MessageLinkInfo {
|
|
|
|
string username;
|
|
|
|
// or
|
|
|
|
ChannelId channel_id;
|
|
|
|
|
|
|
|
MessageId message_id;
|
|
|
|
bool is_single = false;
|
2020-09-18 03:14:59 +02:00
|
|
|
|
|
|
|
DialogId comment_dialog_id;
|
|
|
|
MessageId comment_message_id;
|
|
|
|
bool for_comment = false;
|
2019-08-05 11:12:59 +02:00
|
|
|
};
|
|
|
|
void get_message_link_info(Slice url, Promise<MessageLinkInfo> &&promise);
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::messageLinkInfo> get_message_link_info_object(const MessageLinkInfo &info) const;
|
|
|
|
|
2020-06-07 21:16:30 +02:00
|
|
|
void create_dialog_filter(td_api::object_ptr<td_api::chatFilter> filter,
|
|
|
|
Promise<td_api::object_ptr<td_api::chatFilterInfo>> &&promise);
|
2020-05-18 21:26:44 +02:00
|
|
|
|
2020-05-18 23:47:34 +02:00
|
|
|
void edit_dialog_filter(DialogFilterId dialog_filter_id, td_api::object_ptr<td_api::chatFilter> filter,
|
2020-06-07 21:16:30 +02:00
|
|
|
Promise<td_api::object_ptr<td_api::chatFilterInfo>> &&promise);
|
2020-05-18 23:47:34 +02:00
|
|
|
|
2020-05-19 00:06:24 +02:00
|
|
|
void delete_dialog_filter(DialogFilterId dialog_filter_id, Promise<Unit> &&promise);
|
|
|
|
|
2020-05-19 01:41:07 +02:00
|
|
|
void reorder_dialog_filters(vector<DialogFilterId> dialog_filter_ids, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Status delete_dialog_reply_markup(DialogId dialog_id, MessageId message_id) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2020-09-22 18:45:27 +02:00
|
|
|
Status set_dialog_draft_message(DialogId dialog_id, MessageId top_thread_message_id,
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<td_api::draftMessage> &&draft_message) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-07-19 16:23:18 +02:00
|
|
|
void clear_all_draft_messages(bool exclude_secret_chats, Promise<Unit> &&promise);
|
2018-07-17 05:46:27 +02:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
Status toggle_dialog_is_pinned(DialogListId dialog_list_id, DialogId dialog_id, bool is_pinned) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-06-27 23:08:44 +02:00
|
|
|
Status toggle_dialog_is_marked_as_unread(DialogId dialog_id, bool is_marked_as_unread) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2020-10-18 00:54:32 +02:00
|
|
|
Status toggle_message_sender_is_blocked(const td_api::object_ptr<td_api::MessageSender> &sender,
|
|
|
|
bool is_blocked) TD_WARN_UNUSED_RESULT;
|
2020-09-20 02:00:01 +02:00
|
|
|
|
2018-04-28 20:05:04 +02:00
|
|
|
Status toggle_dialog_silent_send_message(DialogId dialog_id, bool silent_send_message) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
Status set_pinned_dialogs(DialogListId dialog_list_id, vector<DialogId> dialog_ids) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Status set_dialog_client_data(DialogId dialog_id, string &&client_data) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-01-23 22:45:26 +01:00
|
|
|
void create_dialog(DialogId dialog_id, bool force, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
DialogId create_new_group_chat(const vector<UserId> &user_ids, const string &title, int64 &random_id,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2019-10-14 16:51:12 +02:00
|
|
|
DialogId create_new_channel_chat(const string &title, bool is_megagroup, const string &description,
|
|
|
|
const DialogLocation &location, int64 &random_id, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void create_new_secret_chat(UserId user_id, Promise<SecretChatId> &&promise);
|
|
|
|
|
|
|
|
DialogId migrate_dialog_to_megagroup(DialogId dialog_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
Status open_dialog(DialogId dialog_id) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
Status close_dialog(DialogId dialog_id) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2020-09-22 00:13:06 +02:00
|
|
|
Status view_messages(DialogId dialog_id, MessageId top_thread_message_id, const vector<MessageId> &message_ids,
|
|
|
|
bool force_read) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Status open_message_content(FullMessageId full_message_id) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-09-21 09:15:07 +02:00
|
|
|
td_api::object_ptr<td_api::updateScopeNotificationSettings> get_update_scope_notification_settings_object(
|
|
|
|
NotificationSettingsScope scope) const;
|
|
|
|
|
2019-03-05 15:15:17 +01:00
|
|
|
vector<DialogId> get_dialog_notification_settings_exceptions(NotificationSettingsScope scope, bool filter_scope,
|
|
|
|
bool compare_sound, bool force, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
const ScopeNotificationSettings *get_scope_notification_settings(NotificationSettingsScope scope,
|
|
|
|
Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
Status set_dialog_notification_settings(DialogId dialog_id,
|
|
|
|
tl_object_ptr<td_api::chatNotificationSettings> &¬ification_settings)
|
|
|
|
TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
Status set_scope_notification_settings(NotificationSettingsScope scope,
|
|
|
|
tl_object_ptr<td_api::scopeNotificationSettings> &¬ification_settings)
|
2018-12-31 20:04:05 +01:00
|
|
|
TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
void reset_all_notification_settings();
|
|
|
|
|
2018-09-21 09:15:07 +02:00
|
|
|
tl_object_ptr<td_api::chat> get_chat_object(DialogId dialog_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-19 23:28:26 +02:00
|
|
|
static tl_object_ptr<td_api::chats> get_chats_object(int32 total_count, const vector<DialogId> &dialog_ids);
|
|
|
|
|
|
|
|
static tl_object_ptr<td_api::chats> get_chats_object(const std::pair<int32, vector<DialogId>> &dialog_ids);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-18 01:29:28 +02:00
|
|
|
tl_object_ptr<td_api::chatFilter> get_chat_filter_object(DialogFilterId dialog_filter_id) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<td_api::messages> get_dialog_history(DialogId dialog_id, MessageId from_message_id, int32 offset,
|
|
|
|
int32 limit, int left_tries, bool only_local,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2020-09-30 03:26:39 +02:00
|
|
|
std::pair<DialogId, vector<MessageId>> get_message_thread_history(DialogId dialog_id, MessageId message_id,
|
|
|
|
MessageId from_message_id, int32 offset,
|
|
|
|
int32 limit, int64 &random_id,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
std::pair<int32, vector<MessageId>> search_dialog_messages(DialogId dialog_id, const string &query,
|
2020-10-14 13:41:04 +02:00
|
|
|
const td_api::object_ptr<td_api::MessageSender> &sender,
|
|
|
|
MessageId from_message_id, int32 offset, int32 limit,
|
|
|
|
MessageSearchFilter filter,
|
2020-09-08 13:17:56 +02:00
|
|
|
MessageId top_thread_message_id, int64 &random_id,
|
|
|
|
bool use_db, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-08-21 13:47:43 +02:00
|
|
|
struct FoundMessages {
|
|
|
|
vector<FullMessageId> full_message_ids;
|
|
|
|
string next_offset;
|
2020-08-21 14:08:47 +02:00
|
|
|
int32 total_count = 0;
|
2020-08-21 13:47:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::foundMessages> get_found_messages_object(const FoundMessages &found_messages);
|
|
|
|
|
|
|
|
FoundMessages offline_search_messages(DialogId dialog_id, const string &query, const string &offset, int32 limit,
|
2020-08-22 09:48:36 +02:00
|
|
|
MessageSearchFilter filter, int64 &random_id, Promise<> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-22 14:06:11 +02:00
|
|
|
std::pair<int32, vector<FullMessageId>> search_messages(FolderId folder_id, bool ignore_folder_id,
|
|
|
|
const string &query, int32 offset_date,
|
2018-12-31 20:04:05 +01:00
|
|
|
DialogId offset_dialog_id, MessageId offset_message_id,
|
2020-09-08 13:58:02 +02:00
|
|
|
int32 limit, MessageSearchFilter filter, int32 min_date,
|
|
|
|
int32 max_date, int64 &random_id, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
std::pair<int32, vector<FullMessageId>> search_call_messages(MessageId from_message_id, int32 limit, bool only_missed,
|
|
|
|
int64 &random_id, bool use_db, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
std::pair<int32, vector<MessageId>> search_dialog_recent_location_messages(DialogId dialog_id, int32 limit,
|
|
|
|
int64 &random_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
vector<FullMessageId> get_active_live_location_messages(Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
int64 get_dialog_message_by_date(DialogId dialog_id, int32 date, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void on_get_dialog_message_by_date_success(DialogId dialog_id, int32 date, int64 random_id,
|
|
|
|
vector<tl_object_ptr<telegram_api::Message>> &&messages);
|
|
|
|
|
|
|
|
void on_get_dialog_message_by_date_fail(int64 random_id);
|
|
|
|
|
2020-08-22 09:48:36 +02:00
|
|
|
int32 get_dialog_message_count(DialogId dialog_id, MessageSearchFilter filter, bool return_local, int64 &random_id,
|
|
|
|
Promise<Unit> &&promise);
|
2018-07-19 15:58:09 +02:00
|
|
|
|
2020-02-28 21:01:30 +01:00
|
|
|
vector<MessageId> get_dialog_scheduled_messages(DialogId dialog_id, bool force, bool ignore_result,
|
|
|
|
Promise<Unit> &&promise);
|
2019-12-04 18:06:39 +01:00
|
|
|
|
2020-08-21 13:47:43 +02:00
|
|
|
FoundMessages get_message_public_forwards(FullMessageId full_message_id, const string &offset, int32 limit,
|
|
|
|
int64 &random_id, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<td_api::message> get_dialog_message_by_date_object(int64 random_id);
|
|
|
|
|
|
|
|
tl_object_ptr<td_api::message> get_message_object(FullMessageId full_message_id);
|
|
|
|
|
|
|
|
tl_object_ptr<td_api::messages> get_messages_object(int32 total_count, DialogId dialog_id,
|
|
|
|
const vector<MessageId> &message_ids);
|
|
|
|
|
|
|
|
tl_object_ptr<td_api::messages> get_messages_object(int32 total_count, const vector<FullMessageId> &full_message_ids);
|
|
|
|
|
|
|
|
void add_pending_update(tl_object_ptr<telegram_api::Update> &&update, int32 new_pts, int32 pts_count,
|
|
|
|
bool force_apply, const char *source);
|
|
|
|
|
|
|
|
void add_pending_channel_update(DialogId dialog_id, tl_object_ptr<telegram_api::Update> &&update, int32 new_pts,
|
|
|
|
int32 pts_count, const char *source, bool is_postponed_update = false);
|
|
|
|
|
2020-02-04 02:06:20 +01:00
|
|
|
bool is_old_channel_update(DialogId dialog_id, int32 new_pts);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool is_update_about_username_change_received(DialogId dialog_id) const;
|
|
|
|
|
2019-01-07 17:30:09 +01:00
|
|
|
void on_dialog_bots_updated(DialogId dialog_id, vector<UserId> bot_user_ids);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_dialog_photo_updated(DialogId dialog_id);
|
|
|
|
void on_dialog_title_updated(DialogId dialog_id);
|
|
|
|
void on_dialog_username_updated(DialogId dialog_id, const string &old_username, const string &new_username);
|
2019-03-20 13:28:06 +01:00
|
|
|
void on_dialog_permissions_updated(DialogId dialog_id);
|
2019-10-11 01:59:40 +02:00
|
|
|
|
|
|
|
void on_dialog_user_is_contact_updated(DialogId dialog_id, bool is_contact);
|
2019-10-11 02:11:22 +02:00
|
|
|
void on_dialog_user_is_deleted_updated(DialogId dialog_id, bool is_deleted);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-13 16:52:39 +02:00
|
|
|
void on_dialog_linked_channel_updated(DialogId dialog_id, ChannelId old_linked_channel_id,
|
|
|
|
ChannelId new_linked_channel_id) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_resolved_username(const string &username, DialogId dialog_id);
|
|
|
|
void drop_username(const string &username);
|
|
|
|
|
2020-11-07 20:28:45 +01:00
|
|
|
tl_object_ptr<telegram_api::InputNotifyPeer> get_input_notify_peer(DialogId dialog_id) const;
|
2018-04-09 18:30:27 +02:00
|
|
|
|
|
|
|
void on_update_dialog_notify_settings(DialogId dialog_id,
|
2019-02-20 02:30:22 +01:00
|
|
|
tl_object_ptr<telegram_api::peerNotifySettings> &&peer_notify_settings,
|
|
|
|
const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
void on_update_scope_notify_settings(NotificationSettingsScope scope,
|
|
|
|
tl_object_ptr<telegram_api::peerNotifySettings> &&peer_notify_settings);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-11 16:59:04 +02:00
|
|
|
void hide_dialog_action_bar(DialogId dialog_id);
|
|
|
|
|
2019-10-11 02:28:41 +02:00
|
|
|
void remove_dialog_action_bar(DialogId dialog_id, Promise<Unit> &&promise);
|
|
|
|
|
2020-03-24 01:47:33 +01:00
|
|
|
void reget_dialog_action_bar(DialogId dialog_id, const char *source);
|
2019-10-11 16:59:04 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void report_dialog(DialogId dialog_id, const tl_object_ptr<td_api::ChatReportReason> &reason,
|
2018-03-02 17:21:43 +01:00
|
|
|
const vector<MessageId> &message_ids, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-17 19:55:55 +02:00
|
|
|
void on_get_peer_settings(DialogId dialog_id, tl_object_ptr<telegram_api::peerSettings> &&peer_settings,
|
|
|
|
bool ignore_privacy_exception = false);
|
2019-09-07 01:07:56 +02:00
|
|
|
|
2019-04-20 19:49:21 +02:00
|
|
|
void get_dialog_statistics_url(DialogId dialog_id, const string ¶meters, bool is_dark,
|
2019-04-08 01:42:16 +02:00
|
|
|
Promise<td_api::object_ptr<td_api::httpUrl>> &&promise);
|
2019-02-26 21:37:59 +01:00
|
|
|
|
2019-09-07 01:07:56 +02:00
|
|
|
void get_login_url_info(DialogId dialog_id, MessageId message_id, int32 button_id,
|
|
|
|
Promise<td_api::object_ptr<td_api::LoginUrlInfo>> &&promise);
|
|
|
|
|
|
|
|
void get_login_url(DialogId dialog_id, MessageId message_id, int32 button_id, bool allow_write_access,
|
|
|
|
Promise<td_api::object_ptr<td_api::httpUrl>> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-06-04 01:02:17 +02:00
|
|
|
void on_authorization_success();
|
2020-06-03 18:21:59 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void before_get_difference();
|
|
|
|
|
|
|
|
void after_get_difference();
|
|
|
|
|
|
|
|
bool on_get_dialog_error(DialogId dialog_id, const Status &status, const string &source);
|
|
|
|
|
|
|
|
void on_send_message_get_quick_ack(int64 random_id);
|
|
|
|
|
|
|
|
void check_send_message_result(int64 random_id, DialogId dialog_id, const telegram_api::Updates *updates_ptr,
|
|
|
|
const char *source);
|
|
|
|
|
|
|
|
FullMessageId on_send_message_success(int64 random_id, MessageId new_message_id, int32 date, FileId new_file_id,
|
|
|
|
const char *source);
|
|
|
|
|
|
|
|
void on_send_message_file_part_missing(int64 random_id, int bad_part);
|
|
|
|
|
2019-01-28 16:21:48 +01:00
|
|
|
void on_send_message_file_reference_error(int64 random_id);
|
|
|
|
|
2019-02-08 15:54:23 +01:00
|
|
|
void on_send_media_group_file_reference_error(DialogId dialog_id, vector<int64> random_ids);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_send_message_fail(int64 random_id, Status error);
|
|
|
|
|
|
|
|
void on_upload_message_media_success(DialogId dialog_id, MessageId message_id,
|
|
|
|
tl_object_ptr<telegram_api::MessageMedia> &&media);
|
|
|
|
|
|
|
|
void on_upload_message_media_file_part_missing(DialogId dialog_id, MessageId message_id, int bad_part);
|
|
|
|
|
|
|
|
void on_upload_message_media_fail(DialogId dialog_id, MessageId message_id, Status error);
|
|
|
|
|
|
|
|
void on_create_new_dialog_success(int64 random_id, tl_object_ptr<telegram_api::Updates> &&updates,
|
|
|
|
DialogType expected_type, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void on_create_new_dialog_fail(int64 random_id, Status error, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void on_get_channel_difference(DialogId dialog_id, int32 request_pts, int32 request_limit,
|
|
|
|
tl_object_ptr<telegram_api::updates_ChannelDifference> &&difference_ptr);
|
|
|
|
|
2019-12-25 20:57:12 +01:00
|
|
|
void force_create_dialog(DialogId dialog_id, const char *source, bool expect_no_access = false,
|
|
|
|
bool force_update_dialog_pos = false);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-05-03 16:16:04 +02:00
|
|
|
void send_get_dialog_notification_settings_query(DialogId dialog_id, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-10-02 00:30:03 +02:00
|
|
|
void send_get_scope_notification_settings_query(NotificationSettingsScope scope, Promise<Unit> &&promise);
|
|
|
|
|
2018-05-03 16:16:04 +02:00
|
|
|
void on_get_dialog_notification_settings_query_finished(DialogId dialog_id, Status &&status);
|
|
|
|
|
|
|
|
void on_get_dialog_query_finished(DialogId dialog_id, Status &&status);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-04-28 11:03:00 +02:00
|
|
|
void remove_sponsored_dialog();
|
|
|
|
|
2020-04-28 15:25:56 +02:00
|
|
|
void on_get_sponsored_dialog(tl_object_ptr<telegram_api::Peer> peer, DialogSource source,
|
|
|
|
vector<tl_object_ptr<telegram_api::User>> users,
|
|
|
|
vector<tl_object_ptr<telegram_api::Chat>> chats);
|
2018-05-08 22:02:15 +02:00
|
|
|
|
2019-01-30 22:37:38 +01:00
|
|
|
FileSourceId get_message_file_source_id(FullMessageId full_message_id);
|
|
|
|
|
2019-03-28 22:08:57 +01:00
|
|
|
struct MessagePushNotificationInfo {
|
|
|
|
NotificationGroupId group_id;
|
|
|
|
NotificationGroupType group_type = NotificationGroupType::Calls;
|
|
|
|
DialogId settings_dialog_id;
|
|
|
|
};
|
2019-03-29 13:26:08 +01:00
|
|
|
Result<MessagePushNotificationInfo> get_message_push_notification_info(DialogId dialog_id, MessageId message_id,
|
|
|
|
int64 random_id, UserId sender_user_id,
|
2020-09-08 21:08:10 +02:00
|
|
|
DialogId sender_dialog_id, int32 date,
|
|
|
|
bool is_from_scheduled, bool contains_mention,
|
|
|
|
bool is_pinned, bool is_from_binlog);
|
2019-03-26 16:05:53 +01:00
|
|
|
|
2018-11-26 18:05:06 +01:00
|
|
|
struct MessageNotificationGroup {
|
|
|
|
DialogId dialog_id;
|
2018-12-23 22:34:40 +01:00
|
|
|
NotificationGroupType type = NotificationGroupType::Calls;
|
2018-11-26 18:05:06 +01:00
|
|
|
int32 total_count = 0;
|
|
|
|
vector<Notification> notifications;
|
|
|
|
};
|
|
|
|
MessageNotificationGroup get_message_notification_group_force(NotificationGroupId group_id);
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
vector<NotificationGroupKey> get_message_notification_group_keys_from_database(NotificationGroupKey from_group_key,
|
|
|
|
int32 limit);
|
2018-11-28 22:51:25 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
void get_message_notifications_from_database(DialogId dialog_id, NotificationGroupId group_id,
|
|
|
|
NotificationId from_notification_id, MessageId from_message_id,
|
|
|
|
int32 limit, Promise<vector<Notification>> promise);
|
2018-12-03 16:38:29 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
void remove_message_notification(DialogId dialog_id, NotificationGroupId group_id, NotificationId notification_id);
|
2018-11-29 00:48:47 +01:00
|
|
|
|
2019-04-07 17:48:09 +02:00
|
|
|
void remove_message_notifications_by_message_ids(DialogId dialog_id, const vector<MessageId> &message_ids);
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
void remove_message_notifications(DialogId dialog_id, NotificationGroupId group_id,
|
2019-04-02 00:05:31 +02:00
|
|
|
NotificationId max_notification_id, MessageId max_message_id);
|
2018-11-29 22:02:33 +01:00
|
|
|
|
2020-07-08 18:40:23 +02:00
|
|
|
void upload_dialog_photo(DialogId dialog_id, FileId file_id, bool is_animation, double main_frame_timestamp,
|
|
|
|
bool is_reupload, Promise<Unit> &&promise, vector<int> bad_parts = {});
|
2019-01-28 23:52:36 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_binlog_events(vector<BinlogEvent> &&events);
|
|
|
|
|
2019-02-21 13:23:05 +01:00
|
|
|
void set_poll_answer(FullMessageId full_message_id, vector<int32> &&option_ids, Promise<Unit> &&promise);
|
|
|
|
|
2020-01-18 05:01:05 +01:00
|
|
|
void get_poll_voters(FullMessageId full_message_id, int32 option_id, int32 offset, int32 limit,
|
2020-01-13 19:21:58 +01:00
|
|
|
Promise<std::pair<int32, vector<UserId>>> &&promise);
|
|
|
|
|
2019-04-12 01:10:33 +02:00
|
|
|
void stop_poll(FullMessageId full_message_id, td_api::object_ptr<td_api::ReplyMarkup> &&reply_markup,
|
|
|
|
Promise<Unit> &&promise);
|
2019-02-22 16:09:55 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void get_payment_form(FullMessageId full_message_id, Promise<tl_object_ptr<td_api::paymentForm>> &&promise);
|
|
|
|
|
|
|
|
void validate_order_info(FullMessageId full_message_id, tl_object_ptr<td_api::orderInfo> order_info, bool allow_save,
|
|
|
|
Promise<tl_object_ptr<td_api::validatedOrderInfo>> &&promise);
|
|
|
|
|
|
|
|
void send_payment_form(FullMessageId full_message_id, const string &order_info_id, const string &shipping_option_id,
|
|
|
|
const tl_object_ptr<td_api::InputCredentials> &credentials,
|
|
|
|
Promise<tl_object_ptr<td_api::paymentResult>> &&promise);
|
|
|
|
|
|
|
|
void get_payment_receipt(FullMessageId full_message_id, Promise<tl_object_ptr<td_api::paymentReceipt>> &&promise);
|
|
|
|
|
2018-09-21 09:15:07 +02:00
|
|
|
void get_current_state(vector<td_api::object_ptr<td_api::Update>> &updates) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
ActorOwn<MultiSequenceDispatcher> sequence_dispatcher_;
|
|
|
|
|
|
|
|
private:
|
|
|
|
class PendingPtsUpdate {
|
|
|
|
public:
|
|
|
|
tl_object_ptr<telegram_api::Update> update;
|
|
|
|
int32 pts;
|
|
|
|
int32 pts_count;
|
|
|
|
|
|
|
|
PendingPtsUpdate(tl_object_ptr<telegram_api::Update> &&update, int32 pts, int32 pts_count)
|
|
|
|
: update(std::move(update)), pts(pts), pts_count(pts_count) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MessageInfo {
|
|
|
|
DialogId dialog_id;
|
|
|
|
MessageId message_id;
|
|
|
|
UserId sender_user_id;
|
2020-09-08 21:08:10 +02:00
|
|
|
DialogId sender_dialog_id;
|
2018-09-19 18:18:10 +02:00
|
|
|
int32 date = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 ttl = 0;
|
|
|
|
int64 random_id = 0;
|
|
|
|
tl_object_ptr<telegram_api::messageFwdHeader> forward_header;
|
|
|
|
MessageId reply_to_message_id;
|
2020-09-08 21:08:10 +02:00
|
|
|
tl_object_ptr<telegram_api::messageReplyHeader> reply_header;
|
2018-12-31 20:04:05 +01:00
|
|
|
UserId via_bot_user_id;
|
2020-07-31 04:50:11 +02:00
|
|
|
int32 view_count = 0;
|
|
|
|
int32 forward_count = 0;
|
2020-08-31 12:42:27 +02:00
|
|
|
tl_object_ptr<telegram_api::messageReplies> reply_info;
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 flags = 0;
|
|
|
|
int32 edit_date = 0;
|
2019-11-24 00:28:48 +01:00
|
|
|
vector<RestrictionReason> restriction_reasons;
|
2018-12-31 20:04:05 +01:00
|
|
|
string author_signature;
|
|
|
|
int64 media_album_id = 0;
|
|
|
|
|
|
|
|
unique_ptr<MessageContent> content;
|
|
|
|
tl_object_ptr<telegram_api::ReplyMarkup> reply_markup;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MessageForwardInfo {
|
|
|
|
UserId sender_user_id;
|
|
|
|
int32 date = 0;
|
2020-09-08 21:08:10 +02:00
|
|
|
DialogId sender_dialog_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
MessageId message_id;
|
|
|
|
string author_signature;
|
2019-05-14 02:18:34 +02:00
|
|
|
string sender_name;
|
2018-12-31 20:04:05 +01:00
|
|
|
DialogId from_dialog_id;
|
|
|
|
MessageId from_message_id;
|
2020-04-28 16:25:24 +02:00
|
|
|
string psa_type;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
MessageForwardInfo() = default;
|
|
|
|
|
2020-09-08 21:08:10 +02:00
|
|
|
MessageForwardInfo(UserId sender_user_id, int32 date, DialogId sender_dialog_id, MessageId message_id,
|
2020-04-28 16:25:24 +02:00
|
|
|
string author_signature, string sender_name, DialogId from_dialog_id, MessageId from_message_id,
|
|
|
|
string psa_type)
|
2018-12-31 20:04:05 +01:00
|
|
|
: sender_user_id(sender_user_id)
|
|
|
|
, date(date)
|
2020-09-08 21:08:10 +02:00
|
|
|
, sender_dialog_id(sender_dialog_id)
|
2018-12-31 20:04:05 +01:00
|
|
|
, message_id(message_id)
|
|
|
|
, author_signature(std::move(author_signature))
|
2019-05-14 02:18:34 +02:00
|
|
|
, sender_name(std::move(sender_name))
|
2018-12-31 20:04:05 +01:00
|
|
|
, from_dialog_id(from_dialog_id)
|
2020-04-28 16:25:24 +02:00
|
|
|
, from_message_id(from_message_id)
|
|
|
|
, psa_type(psa_type) {
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const MessageForwardInfo &rhs) const {
|
2020-09-08 21:08:10 +02:00
|
|
|
return sender_user_id == rhs.sender_user_id && date == rhs.date && sender_dialog_id == rhs.sender_dialog_id &&
|
2018-12-31 20:04:05 +01:00
|
|
|
message_id == rhs.message_id && author_signature == rhs.author_signature &&
|
2019-05-14 02:18:34 +02:00
|
|
|
sender_name == rhs.sender_name && from_dialog_id == rhs.from_dialog_id &&
|
2020-04-28 16:25:24 +02:00
|
|
|
from_message_id == rhs.from_message_id && psa_type == rhs.psa_type;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const MessageForwardInfo &rhs) const {
|
|
|
|
return !(*this == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const MessageForwardInfo &forward_info) {
|
|
|
|
return string_builder << "MessageForwardInfo[sender " << forward_info.sender_user_id << "("
|
2020-04-28 16:25:24 +02:00
|
|
|
<< forward_info.author_signature << "/" << forward_info.sender_name << "), psa_type "
|
2020-09-08 21:08:10 +02:00
|
|
|
<< forward_info.psa_type << ", source " << forward_info.sender_dialog_id << ", source "
|
2020-04-28 16:25:24 +02:00
|
|
|
<< forward_info.message_id << ", from " << forward_info.from_dialog_id << ", from "
|
|
|
|
<< forward_info.from_message_id << " at " << forward_info.date << "]";
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-11-22 12:02:18 +01:00
|
|
|
// Do not forget to update MessagesManager::update_message and all make_unique<Message> when this class is changed
|
2018-12-31 20:04:05 +01:00
|
|
|
struct Message {
|
|
|
|
int32 random_y;
|
|
|
|
|
|
|
|
MessageId message_id;
|
|
|
|
UserId sender_user_id;
|
2020-09-08 21:08:10 +02:00
|
|
|
DialogId sender_dialog_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 date = 0;
|
|
|
|
int32 edit_date = 0;
|
2018-09-19 18:18:10 +02:00
|
|
|
int32 send_date = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
int64 random_id = 0;
|
|
|
|
|
|
|
|
unique_ptr<MessageForwardInfo> forward_info;
|
|
|
|
|
|
|
|
MessageId reply_to_message_id;
|
|
|
|
int64 reply_to_random_id = 0; // for send_message
|
2020-09-10 13:54:34 +02:00
|
|
|
DialogId reply_in_dialog_id;
|
2020-09-28 13:01:15 +02:00
|
|
|
MessageId top_thread_message_id;
|
2020-09-29 14:06:08 +02:00
|
|
|
MessageId linked_top_thread_message_id;
|
2020-09-28 23:22:35 +02:00
|
|
|
vector<MessageId> local_thread_message_ids;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
UserId via_bot_user_id;
|
|
|
|
|
2019-11-24 00:28:48 +01:00
|
|
|
vector<RestrictionReason> restriction_reasons;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
string author_signature;
|
|
|
|
|
|
|
|
bool is_channel_post = false;
|
|
|
|
bool is_outgoing = false;
|
2019-08-10 23:14:35 +02:00
|
|
|
bool is_failed_to_send = false;
|
2018-12-31 20:04:05 +01:00
|
|
|
bool disable_notification = false;
|
|
|
|
bool contains_mention = false;
|
|
|
|
bool contains_unread_mention = false;
|
2019-11-21 22:02:09 +01:00
|
|
|
bool hide_edit_date = false;
|
2019-03-14 20:00:31 +01:00
|
|
|
bool had_reply_markup = false; // had non-inline reply markup?
|
|
|
|
bool had_forward_info = false;
|
2020-10-20 01:08:56 +02:00
|
|
|
bool is_content_secret = false; // must be shown only while tapped
|
2019-01-10 18:54:46 +01:00
|
|
|
bool is_mention_notification_disabled = false;
|
2019-11-25 01:36:49 +01:00
|
|
|
bool is_from_scheduled = false;
|
2020-10-20 01:08:56 +02:00
|
|
|
bool is_pinned = false;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-12-12 22:46:38 +01:00
|
|
|
bool is_copy = false; // for send_message
|
2018-12-31 20:04:05 +01:00
|
|
|
bool from_background = false; // for send_message
|
|
|
|
bool disable_web_page_preview = false; // for send_message
|
|
|
|
bool clear_draft = false; // for send_message
|
|
|
|
bool in_game_share = false; // for send_message
|
2019-08-11 00:10:01 +02:00
|
|
|
bool hide_via_bot = false; // for resend_message
|
2019-08-11 00:23:34 +02:00
|
|
|
bool is_bot_start_message = false; // for resend_message
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
bool have_previous = false;
|
|
|
|
bool have_next = false;
|
|
|
|
bool from_database = false;
|
|
|
|
|
2019-08-16 01:50:22 +02:00
|
|
|
DialogId real_forward_from_dialog_id; // for resend_message
|
|
|
|
MessageId real_forward_from_message_id; // for resend_message
|
2019-08-11 02:20:16 +02:00
|
|
|
|
2018-11-11 13:58:52 +01:00
|
|
|
NotificationId notification_id;
|
2019-04-07 17:48:09 +02:00
|
|
|
NotificationId removed_notification_id;
|
2018-11-11 13:58:52 +01:00
|
|
|
|
2020-07-31 04:50:11 +02:00
|
|
|
int32 view_count = 0;
|
|
|
|
int32 forward_count = 0;
|
2020-08-31 12:42:27 +02:00
|
|
|
MessageReplyInfo reply_info;
|
2020-09-22 18:45:27 +02:00
|
|
|
unique_ptr<DraftMessage> thread_draft_message;
|
2020-08-31 12:42:27 +02:00
|
|
|
|
2019-08-15 17:16:09 +02:00
|
|
|
int32 legacy_layer = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-10 23:14:35 +02:00
|
|
|
int32 send_error_code = 0;
|
|
|
|
string send_error_message;
|
|
|
|
double try_resend_at = 0;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 ttl = 0;
|
|
|
|
double ttl_expires_at = 0;
|
|
|
|
|
|
|
|
int64 media_album_id = 0;
|
|
|
|
|
|
|
|
unique_ptr<MessageContent> content;
|
|
|
|
|
|
|
|
unique_ptr<ReplyMarkup> reply_markup;
|
|
|
|
|
2019-12-03 18:26:09 +01:00
|
|
|
int32 edited_schedule_date = 0;
|
2018-06-19 01:31:34 +02:00
|
|
|
unique_ptr<MessageContent> edited_content;
|
|
|
|
unique_ptr<ReplyMarkup> edited_reply_markup;
|
|
|
|
uint64 edit_generation = 0;
|
|
|
|
Promise<Unit> edit_promise;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
unique_ptr<Message> left;
|
|
|
|
unique_ptr<Message> right;
|
|
|
|
|
2018-09-27 18:51:45 +02:00
|
|
|
mutable int32 last_access_date = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
mutable uint64 send_message_log_event_id = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-11 03:05:00 +02:00
|
|
|
mutable NetQueryRef send_query_ref;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
struct NotificationGroupInfo {
|
|
|
|
NotificationGroupId group_id;
|
|
|
|
int32 last_notification_date = 0; // date of last notification in the group
|
|
|
|
NotificationId last_notification_id; // identifier of last notification in the group
|
|
|
|
NotificationId max_removed_notification_id; // notification identifier, up to which all notifications are removed
|
2019-04-02 00:05:31 +02:00
|
|
|
MessageId max_removed_message_id; // message identifier, up to which all notifications are removed
|
2018-12-22 21:24:18 +01:00
|
|
|
bool is_changed = false; // true, if the group needs to be saved to database
|
|
|
|
bool try_reuse = false; // true, if the group needs to be deleted from database and tried to be reused
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
struct Dialog {
|
|
|
|
DialogId dialog_id;
|
|
|
|
MessageId last_new_message_id; // identifier of the last known server message received from update, there should be
|
|
|
|
// no server messages after it
|
|
|
|
MessageId last_message_id; // identifier of the message after which currently there is no any message, i.e. a
|
|
|
|
// message without a gap after it, memory only
|
|
|
|
MessageId first_database_message_id; // identifier of the first message in the database, needed
|
|
|
|
// until there is no gaps in the database
|
|
|
|
MessageId last_database_message_id; // identifier of the last local or server message, if last_database_message_id
|
2019-10-19 20:20:16 +02:00
|
|
|
// is known and last_message_id is known, then last_database_message_id <=
|
2018-12-31 20:04:05 +01:00
|
|
|
// last_message_id
|
|
|
|
|
2020-08-22 09:05:51 +02:00
|
|
|
std::array<MessageId, message_search_filter_count()> first_database_message_id_by_index;
|
2018-12-31 20:04:05 +01:00
|
|
|
// use struct Count?
|
2020-08-22 09:05:51 +02:00
|
|
|
std::array<int32, message_search_filter_count()> message_count_by_index{{0}};
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
int32 server_unread_count = 0;
|
|
|
|
int32 local_unread_count = 0;
|
|
|
|
int32 unread_mention_count = 0;
|
|
|
|
MessageId last_read_inbox_message_id;
|
2018-06-20 03:02:02 +02:00
|
|
|
int32 last_read_inbox_message_date = 0; // secret chats only
|
2018-12-31 20:04:05 +01:00
|
|
|
MessageId last_read_outbox_message_id;
|
2020-10-20 19:28:37 +02:00
|
|
|
MessageId last_pinned_message_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
MessageId reply_markup_message_id;
|
2018-04-09 18:30:27 +02:00
|
|
|
DialogNotificationSettings notification_settings;
|
2018-12-31 20:04:05 +01:00
|
|
|
unique_ptr<DraftMessage> draft_message;
|
2020-09-24 18:15:42 +02:00
|
|
|
LogEventIdWithGeneration save_draft_message_log_event_id;
|
|
|
|
LogEventIdWithGeneration save_notification_settings_log_event_id;
|
|
|
|
std::unordered_map<int64, LogEventIdWithGeneration> read_history_log_event_ids;
|
2020-09-22 00:13:06 +02:00
|
|
|
std::unordered_set<MessageId, MessageIdHash> updated_read_history_message_ids;
|
2020-09-24 18:15:42 +02:00
|
|
|
LogEventIdWithGeneration set_folder_id_log_event_id;
|
2020-05-09 22:39:11 +02:00
|
|
|
|
2019-08-19 03:51:03 +02:00
|
|
|
FolderId folder_id;
|
2020-05-21 18:39:34 +02:00
|
|
|
vector<DialogListId> dialog_list_ids; // TODO replace with mask
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
MessageId
|
2019-11-29 17:24:45 +01:00
|
|
|
last_read_all_mentions_message_id; // all mentions with a message identifier not greater than it are implicitly read
|
2018-12-31 20:04:05 +01:00
|
|
|
MessageId
|
2019-11-29 17:24:45 +01:00
|
|
|
max_unavailable_message_id; // maximum unavailable message identifier for dialogs with cleared/unavailable history
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
int32 last_clear_history_date = 0;
|
|
|
|
MessageId last_clear_history_message_id;
|
|
|
|
int64 order = DEFAULT_ORDER;
|
|
|
|
int32 delete_last_message_date = 0;
|
|
|
|
MessageId deleted_last_message_id;
|
2018-12-02 18:47:39 +01:00
|
|
|
int32 pending_last_message_date = 0;
|
|
|
|
MessageId pending_last_message_id;
|
2019-03-30 22:30:07 +01:00
|
|
|
MessageId max_notification_message_id;
|
2020-01-08 02:34:15 +01:00
|
|
|
MessageId last_edited_message_id;
|
2019-12-04 18:06:39 +01:00
|
|
|
uint32 scheduled_messages_sync_generation = 0;
|
2020-02-28 19:40:31 +01:00
|
|
|
uint32 last_repair_scheduled_messages_generation = 0;
|
2018-01-26 16:07:21 +01:00
|
|
|
|
2018-08-04 23:05:29 +02:00
|
|
|
MessageId max_added_message_id;
|
2019-02-07 12:12:22 +01:00
|
|
|
MessageId being_added_message_id;
|
2019-04-13 15:50:06 +02:00
|
|
|
MessageId being_updated_last_new_message_id;
|
|
|
|
MessageId being_updated_last_database_message_id;
|
2019-04-28 16:07:27 +02:00
|
|
|
MessageId being_deleted_message_id;
|
2018-08-04 23:05:29 +02:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
NotificationGroupInfo message_notification_group;
|
|
|
|
NotificationGroupInfo mention_notification_group;
|
2018-12-04 17:40:12 +01:00
|
|
|
NotificationId new_secret_chat_notification_id; // secret chats only
|
2018-12-25 03:45:36 +01:00
|
|
|
MessageId pinned_message_notification_message_id;
|
2018-11-11 13:58:52 +01:00
|
|
|
|
2020-07-09 22:14:41 +02:00
|
|
|
int32 distance = -1; // distance to the peer
|
|
|
|
|
2018-01-26 16:07:21 +01:00
|
|
|
bool has_contact_registered_message = false;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool is_last_message_deleted_locally = false;
|
|
|
|
|
|
|
|
bool know_can_report_spam = false;
|
|
|
|
bool can_report_spam = false;
|
2019-10-10 22:19:26 +02:00
|
|
|
bool know_action_bar = false;
|
|
|
|
bool can_add_contact = false;
|
|
|
|
bool can_block_user = false;
|
|
|
|
bool can_share_phone_number = false;
|
|
|
|
bool can_report_location = false;
|
2020-07-09 22:14:41 +02:00
|
|
|
bool can_unarchive = false;
|
2020-07-10 11:44:02 +02:00
|
|
|
bool hide_distance = false;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
bool is_opened = false;
|
|
|
|
|
|
|
|
bool need_restore_reply_markup = true;
|
|
|
|
|
|
|
|
bool have_full_history = false;
|
|
|
|
bool is_empty = false;
|
|
|
|
|
|
|
|
bool is_last_read_inbox_message_id_inited = false;
|
|
|
|
bool is_last_read_outbox_message_id_inited = false;
|
2020-10-20 19:28:37 +02:00
|
|
|
bool is_last_pinned_message_id_inited = false;
|
2019-08-19 03:51:03 +02:00
|
|
|
bool is_folder_id_inited = false;
|
2018-05-02 12:30:52 +02:00
|
|
|
bool need_repair_server_unread_count = false;
|
2020-02-19 02:14:58 +01:00
|
|
|
bool need_repair_channel_server_unread_count = false;
|
2018-06-27 23:08:44 +02:00
|
|
|
bool is_marked_as_unread = false;
|
2020-09-20 00:54:40 +02:00
|
|
|
bool is_blocked = false;
|
|
|
|
bool is_is_blocked_inited = false;
|
2019-12-04 19:44:40 +01:00
|
|
|
bool last_sent_has_scheduled_messages = false;
|
2019-12-04 18:51:52 +01:00
|
|
|
bool has_scheduled_server_messages = false;
|
2019-12-04 20:43:14 +01:00
|
|
|
bool has_scheduled_database_messages = false;
|
|
|
|
bool is_has_scheduled_database_messages_checked = false;
|
2019-12-04 18:06:39 +01:00
|
|
|
bool has_loaded_scheduled_messages_from_database = false;
|
2020-02-28 21:01:30 +01:00
|
|
|
bool sent_scheduled_messages = false;
|
2020-08-08 22:00:51 +02:00
|
|
|
bool had_last_yet_unsent_message = false; // whether the dialog was stored to database without last message
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-03-04 15:59:18 +01:00
|
|
|
bool increment_view_counter = false;
|
|
|
|
|
2018-06-08 18:42:21 +02:00
|
|
|
bool is_update_new_chat_sent = false;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 pts = 0; // for channels only
|
|
|
|
std::multimap<int32, PendingPtsUpdate> postponed_channel_updates; // for channels only
|
|
|
|
int32 retry_get_difference_timeout = 1; // for channels only
|
2019-08-27 23:27:12 +02:00
|
|
|
int32 pending_read_channel_inbox_pts = 0; // for channels only
|
|
|
|
MessageId pending_read_channel_inbox_max_message_id; // for channels only
|
|
|
|
int32 pending_read_channel_inbox_server_unread_count = 0; // for channels only
|
2018-12-31 20:04:05 +01:00
|
|
|
std::unordered_map<int64, MessageId> random_id_to_message_id; // for secret chats only
|
|
|
|
|
|
|
|
MessageId last_assigned_message_id; // identifier of the last local or yet unsent message, assigned after
|
|
|
|
// application start, used to guarantee that all assigned message identifiers
|
|
|
|
// are different
|
|
|
|
|
2020-09-28 15:08:35 +02:00
|
|
|
std::unordered_map<MessageId, std::set<MessageId>, MessageIdHash>
|
|
|
|
yet_unsent_thread_message_ids; // top_thread_message_id -> yet unsent message IDs
|
|
|
|
|
2019-12-01 18:50:52 +01:00
|
|
|
std::unordered_map<ScheduledServerMessageId, int32, ScheduledServerMessageIdHash> scheduled_message_date;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
std::unordered_map<MessageId, MessageId, MessageIdHash> yet_unsent_message_id_to_persistent_message_id;
|
|
|
|
|
2020-02-29 18:36:49 +01:00
|
|
|
std::unordered_map<int32, MessageId> last_assigned_scheduled_message_id; // date -> message_id
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
std::unordered_set<MessageId, MessageIdHash> deleted_message_ids;
|
2019-12-04 18:32:50 +01:00
|
|
|
std::unordered_set<ScheduledServerMessageId, ScheduledServerMessageIdHash> deleted_scheduled_server_message_ids;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-11-21 13:23:43 +01:00
|
|
|
std::vector<std::pair<DialogId, MessageId>> pending_new_message_notifications;
|
2018-12-22 21:24:18 +01:00
|
|
|
std::vector<std::pair<DialogId, MessageId>> pending_new_mention_notifications;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-11-29 00:48:47 +01:00
|
|
|
std::unordered_map<NotificationId, MessageId, NotificationIdHash> notification_id_to_message_id;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
string client_data;
|
|
|
|
|
|
|
|
// Load from newest to oldest message
|
2018-06-21 19:55:59 +02:00
|
|
|
MessageId suffix_load_first_message_id_; // identifier of some message such all suffix messages in range
|
|
|
|
// [suffix_load_first_message_id_, last_message_id] are loaded
|
2018-12-31 20:04:05 +01:00
|
|
|
MessageId suffix_load_query_message_id_;
|
|
|
|
std::vector<std::pair<Promise<>, std::function<bool(const Message *)>>> suffix_load_queries_;
|
|
|
|
bool suffix_load_done_ = false;
|
|
|
|
bool suffix_load_has_query_ = false;
|
|
|
|
|
2019-12-16 02:07:14 +01:00
|
|
|
std::unordered_map<MessageId, int64, MessageIdHash> pending_viewed_live_locations; // message_id -> task_id
|
2018-12-31 20:04:05 +01:00
|
|
|
std::unordered_set<MessageId, MessageIdHash> pending_viewed_message_ids;
|
|
|
|
|
2019-11-30 15:04:59 +01:00
|
|
|
unique_ptr<Message> messages;
|
|
|
|
unique_ptr<Message> scheduled_messages;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
struct MessageOp {
|
|
|
|
enum : int8 { Add, SetPts, Delete, DeleteAll } type;
|
2018-09-21 23:33:41 +02:00
|
|
|
bool from_update = false;
|
|
|
|
bool have_previous = false;
|
|
|
|
bool have_next = false;
|
|
|
|
MessageContentType content_type = MessageContentType::None;
|
|
|
|
int32 pts = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
MessageId message_id;
|
2018-09-21 23:33:41 +02:00
|
|
|
const char *source = nullptr;
|
|
|
|
double date = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-09-21 23:33:41 +02:00
|
|
|
MessageOp(decltype(type) type, MessageId message_id, MessageContentType content_type, bool from_update,
|
|
|
|
bool have_previous, bool have_next, const char *source)
|
2018-12-31 20:04:05 +01:00
|
|
|
: type(type)
|
|
|
|
, from_update(from_update)
|
|
|
|
, have_previous(have_previous)
|
|
|
|
, have_next(have_next)
|
|
|
|
, content_type(content_type)
|
|
|
|
, message_id(message_id)
|
|
|
|
, source(source)
|
|
|
|
, date(G()->server_time()) {
|
|
|
|
}
|
2018-09-21 23:33:41 +02:00
|
|
|
|
|
|
|
MessageOp(decltype(type) type, int32 pts, const char *source)
|
|
|
|
: type(type), pts(pts), source(source), date(G()->server_time()) {
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
2018-04-01 23:01:09 +02:00
|
|
|
const char *debug_set_dialog_last_database_message_id = "Unknown"; // to be removed soon
|
2018-12-31 20:04:05 +01:00
|
|
|
vector<MessageOp> debug_message_op;
|
|
|
|
|
2020-03-12 16:37:25 +01:00
|
|
|
// message identifiers loaded from database
|
2018-07-15 11:29:28 +02:00
|
|
|
MessageId debug_last_new_message_id;
|
|
|
|
MessageId debug_first_database_message_id;
|
|
|
|
MessageId debug_last_database_message_id;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Dialog() = default;
|
|
|
|
Dialog(const Dialog &) = delete;
|
|
|
|
Dialog &operator=(const Dialog &) = delete;
|
|
|
|
Dialog(Dialog &&other) = delete;
|
|
|
|
Dialog &operator=(Dialog &&other) = delete;
|
|
|
|
~Dialog();
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
2020-05-19 03:03:15 +02:00
|
|
|
struct RecommendedDialogFilter {
|
|
|
|
unique_ptr<DialogFilter> dialog_filter;
|
|
|
|
string description;
|
|
|
|
};
|
|
|
|
|
2019-08-22 17:24:02 +02:00
|
|
|
struct DialogList {
|
2020-05-21 18:39:34 +02:00
|
|
|
DialogListId dialog_list_id;
|
2019-08-22 17:24:02 +02:00
|
|
|
bool is_message_unread_count_inited_ = false;
|
|
|
|
bool is_dialog_unread_count_inited_ = false;
|
|
|
|
bool need_unread_count_recalc_ = true;
|
|
|
|
int32 unread_message_total_count_ = 0;
|
|
|
|
int32 unread_message_muted_count_ = 0;
|
|
|
|
int32 unread_dialog_total_count_ = 0;
|
|
|
|
int32 unread_dialog_muted_count_ = 0;
|
|
|
|
int32 unread_dialog_marked_count_ = 0;
|
|
|
|
int32 unread_dialog_muted_marked_count_ = 0;
|
2019-12-26 19:44:35 +01:00
|
|
|
int32 in_memory_dialog_total_count_ = 0;
|
|
|
|
int32 server_dialog_total_count_ = -1;
|
|
|
|
int32 secret_chat_total_count_ = -1;
|
2019-08-22 17:24:02 +02:00
|
|
|
|
2020-05-21 02:39:45 +02:00
|
|
|
vector<Promise<Unit>> load_list_queries_;
|
|
|
|
|
2020-05-03 23:51:01 +02:00
|
|
|
std::unordered_map<DialogId, int64, DialogIdHash> pinned_dialog_id_orders_;
|
2020-05-21 02:39:45 +02:00
|
|
|
vector<DialogDate> pinned_dialogs_;
|
2020-06-04 14:31:29 +02:00
|
|
|
bool are_pinned_dialogs_inited_ = false;
|
2020-05-03 00:10:54 +02:00
|
|
|
|
2020-05-20 02:04:52 +02:00
|
|
|
DialogDate last_pinned_dialog_date_ = MIN_DIALOG_DATE; // in memory
|
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
// date of the last loaded dialog
|
2020-05-20 02:04:52 +02:00
|
|
|
// min(folder1_last_dialog_date_, folder2_last_dialog_date, last_pinned_dialog_date_)
|
|
|
|
DialogDate list_last_dialog_date_ = MIN_DIALOG_DATE; // in memory
|
2020-05-21 03:40:04 +02:00
|
|
|
};
|
2020-05-20 02:04:52 +02:00
|
|
|
|
2020-05-21 03:40:04 +02:00
|
|
|
struct DialogFolder {
|
|
|
|
FolderId folder_id;
|
2020-05-03 21:59:28 +02:00
|
|
|
// date of the last loaded dialog in the folder
|
2020-05-20 02:04:52 +02:00
|
|
|
DialogDate folder_last_dialog_date_{MAX_ORDINARY_DIALOG_ORDER, DialogId()}; // in memory
|
2020-03-18 21:19:23 +01:00
|
|
|
|
2020-05-03 21:59:28 +02:00
|
|
|
std::set<DialogDate> ordered_dialogs_; // all known dialogs, including with default order
|
2019-08-22 17:24:02 +02:00
|
|
|
|
|
|
|
// date of last known user/group/channel dialog in the right order
|
2020-05-22 17:26:30 +02:00
|
|
|
DialogDate last_server_dialog_date_{MAX_ORDINARY_DIALOG_ORDER, DialogId()};
|
|
|
|
DialogDate last_loaded_database_dialog_date_{MAX_ORDINARY_DIALOG_ORDER, DialogId()};
|
|
|
|
DialogDate last_database_server_dialog_date_{MAX_ORDINARY_DIALOG_ORDER, DialogId()};
|
2019-08-22 17:24:02 +02:00
|
|
|
|
2020-05-21 02:39:45 +02:00
|
|
|
MultiPromiseActor load_folder_dialog_list_multipromise_{
|
2020-05-03 21:59:28 +02:00
|
|
|
"LoadDialogListMultiPromiseActor"}; // must be defined before pending_on_get_dialogs_
|
2019-08-22 17:24:02 +02:00
|
|
|
int32 load_dialog_list_limit_max_ = 0;
|
|
|
|
};
|
|
|
|
|
2020-05-04 00:47:26 +02:00
|
|
|
class DialogListViewIterator {
|
|
|
|
MessagesManager *messages_manager_;
|
2020-05-21 18:39:34 +02:00
|
|
|
const DialogListId *dialog_list_id_;
|
2020-05-04 00:47:26 +02:00
|
|
|
|
|
|
|
public:
|
2020-05-21 18:39:34 +02:00
|
|
|
DialogListViewIterator(MessagesManager *messages_manager, const DialogListId *dialog_list_id)
|
2020-05-04 00:47:26 +02:00
|
|
|
: messages_manager_(messages_manager), dialog_list_id_(dialog_list_id) {
|
|
|
|
}
|
|
|
|
|
|
|
|
DialogList &operator*() const {
|
2020-05-15 15:32:07 +02:00
|
|
|
auto dialog_list_ptr = messages_manager_->get_dialog_list(*dialog_list_id_);
|
|
|
|
CHECK(dialog_list_ptr != nullptr);
|
|
|
|
return *dialog_list_ptr;
|
2020-05-04 00:47:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const DialogListViewIterator &other) const {
|
|
|
|
return dialog_list_id_ != other.dialog_list_id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator++() {
|
|
|
|
dialog_list_id_++;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class DialogListView {
|
|
|
|
MessagesManager *messages_manager_;
|
|
|
|
// TODO can be optimized to store only mask of dialog lists
|
2020-05-21 18:39:34 +02:00
|
|
|
vector<DialogListId> dialog_list_ids_;
|
2020-05-04 00:47:26 +02:00
|
|
|
|
|
|
|
public:
|
2020-05-21 18:39:34 +02:00
|
|
|
DialogListView(MessagesManager *messages_manager, vector<DialogListId> dialog_list_ids)
|
2020-05-04 00:47:26 +02:00
|
|
|
: messages_manager_(messages_manager), dialog_list_ids_(std::move(dialog_list_ids)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
DialogListViewIterator begin() {
|
2020-06-04 14:31:29 +02:00
|
|
|
return DialogListViewIterator(messages_manager_, dialog_list_ids_.empty() ? nullptr : &dialog_list_ids_[0]);
|
2020-05-04 00:47:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DialogListViewIterator end() {
|
2020-06-04 14:31:29 +02:00
|
|
|
return DialogListViewIterator(
|
|
|
|
messages_manager_, dialog_list_ids_.empty() ? nullptr : &dialog_list_ids_[0] + dialog_list_ids_.size());
|
2020-05-04 00:47:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-06-01 22:09:35 +02:00
|
|
|
struct DialogPositionInList {
|
2020-05-09 22:39:11 +02:00
|
|
|
int64 order = DEFAULT_ORDER;
|
|
|
|
int64 private_order = 0;
|
|
|
|
int64 public_order = 0;
|
|
|
|
bool is_pinned = false;
|
|
|
|
bool is_sponsored = false;
|
2020-05-10 21:06:13 +02:00
|
|
|
|
|
|
|
int32 total_dialog_count = 0;
|
2020-05-29 05:07:51 +02:00
|
|
|
|
2020-06-01 22:09:35 +02:00
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const DialogPositionInList &order) {
|
2020-05-29 05:07:51 +02:00
|
|
|
return string_builder << "order = " << order.order << ", private_order = " << order.private_order
|
|
|
|
<< ", public_order = " << order.public_order << ", is_pinned = " << order.is_pinned
|
|
|
|
<< ", is_sponsored = " << order.is_sponsored
|
|
|
|
<< ", total_dialog_count = " << order.total_dialog_count;
|
|
|
|
}
|
2020-05-09 22:39:11 +02:00
|
|
|
};
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class MessagesIteratorBase {
|
|
|
|
vector<const Message *> stack_;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
MessagesIteratorBase() = default;
|
|
|
|
|
|
|
|
// points iterator to message with greatest id which is less or equal than message_id
|
|
|
|
MessagesIteratorBase(const Message *root, MessageId message_id) {
|
|
|
|
size_t last_right_pos = 0;
|
|
|
|
while (root != nullptr) {
|
2019-02-21 16:58:20 +01:00
|
|
|
// LOG(DEBUG) << "Have root->message_id = " << root->message_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
stack_.push_back(root);
|
2019-11-29 17:11:06 +01:00
|
|
|
if (root->message_id <= message_id) {
|
2018-12-31 20:04:05 +01:00
|
|
|
// LOG(DEBUG) << "Go right";
|
|
|
|
last_right_pos = stack_.size();
|
|
|
|
root = root->right.get();
|
|
|
|
} else {
|
|
|
|
// LOG(DEBUG) << "Go left";
|
|
|
|
root = root->left.get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stack_.resize(last_right_pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Message *operator*() const {
|
|
|
|
return stack_.empty() ? nullptr : stack_.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
~MessagesIteratorBase() = default;
|
|
|
|
|
|
|
|
public:
|
|
|
|
MessagesIteratorBase(const MessagesIteratorBase &) = delete;
|
|
|
|
MessagesIteratorBase &operator=(const MessagesIteratorBase &) = delete;
|
|
|
|
MessagesIteratorBase(MessagesIteratorBase &&other) = default;
|
|
|
|
MessagesIteratorBase &operator=(MessagesIteratorBase &&other) = default;
|
|
|
|
|
|
|
|
void operator++() {
|
|
|
|
if (stack_.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Message *cur = stack_.back();
|
|
|
|
if (!cur->have_next) {
|
|
|
|
stack_.clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (cur->right == nullptr) {
|
|
|
|
while (true) {
|
|
|
|
stack_.pop_back();
|
|
|
|
if (stack_.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const Message *new_cur = stack_.back();
|
|
|
|
if (new_cur->left.get() == cur) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cur = new_cur;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cur = cur->right.get();
|
|
|
|
while (cur != nullptr) {
|
|
|
|
stack_.push_back(cur);
|
|
|
|
cur = cur->left.get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator--() {
|
|
|
|
if (stack_.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Message *cur = stack_.back();
|
|
|
|
if (!cur->have_previous) {
|
|
|
|
stack_.clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (cur->left == nullptr) {
|
|
|
|
while (true) {
|
|
|
|
stack_.pop_back();
|
|
|
|
if (stack_.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const Message *new_cur = stack_.back();
|
|
|
|
if (new_cur->right.get() == cur) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cur = new_cur;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cur = cur->left.get();
|
|
|
|
while (cur != nullptr) {
|
|
|
|
stack_.push_back(cur);
|
|
|
|
cur = cur->right.get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class MessagesIterator : public MessagesIteratorBase {
|
|
|
|
public:
|
|
|
|
MessagesIterator() = default;
|
|
|
|
|
2019-12-02 21:29:08 +01:00
|
|
|
MessagesIterator(Dialog *d, MessageId message_id)
|
|
|
|
: MessagesIteratorBase(message_id.is_scheduled() ? d->scheduled_messages.get() : d->messages.get(),
|
|
|
|
message_id) {
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Message *operator*() const {
|
|
|
|
return const_cast<Message *>(MessagesIteratorBase::operator*());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class MessagesConstIterator : public MessagesIteratorBase {
|
|
|
|
public:
|
|
|
|
MessagesConstIterator() = default;
|
|
|
|
|
2019-12-02 21:29:08 +01:00
|
|
|
MessagesConstIterator(const Dialog *d, MessageId message_id)
|
|
|
|
: MessagesIteratorBase(message_id.is_scheduled() ? d->scheduled_messages.get() : d->messages.get(),
|
|
|
|
message_id) {
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const Message *operator*() const {
|
|
|
|
return MessagesIteratorBase::operator*();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PendingSecretMessage {
|
2019-09-08 02:49:16 +02:00
|
|
|
enum class Type : int32 { NewMessage, DeleteMessages, DeleteHistory };
|
2019-09-04 20:29:27 +02:00
|
|
|
Type type = Type::NewMessage;
|
|
|
|
|
|
|
|
// for NewMessage
|
2018-12-31 20:04:05 +01:00
|
|
|
MessageInfo message_info;
|
2018-12-12 00:48:56 +01:00
|
|
|
MultiPromiseActor load_data_multipromise{"LoadPendingSecretMessageDataMultiPromiseActor"};
|
2019-09-04 20:29:27 +02:00
|
|
|
|
|
|
|
// for DeleteMessages/DeleteHistory
|
|
|
|
DialogId dialog_id;
|
|
|
|
vector<int64> random_ids;
|
|
|
|
MessageId last_message_id;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Promise<> success_promise;
|
|
|
|
};
|
|
|
|
|
2020-08-09 14:14:30 +02:00
|
|
|
struct MessageSendOptions {
|
2019-12-06 00:32:23 +01:00
|
|
|
bool disable_notification = false;
|
|
|
|
bool from_background = false;
|
2019-12-06 01:08:11 +01:00
|
|
|
int32 schedule_date = 0;
|
2019-12-06 00:32:23 +01:00
|
|
|
|
2020-08-09 14:14:30 +02:00
|
|
|
MessageSendOptions() = default;
|
|
|
|
MessageSendOptions(bool disable_notification, bool from_background, int32 schedule_date)
|
2019-12-06 01:08:11 +01:00
|
|
|
: disable_notification(disable_notification), from_background(from_background), schedule_date(schedule_date) {
|
2019-12-06 00:32:23 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-18 00:26:36 +02:00
|
|
|
class BlockMessageSenderFromRepliesOnServerLogEvent;
|
2019-11-29 13:03:03 +01:00
|
|
|
class ChangeDialogReportSpamStateOnServerLogEvent;
|
2018-12-31 20:04:05 +01:00
|
|
|
class DeleteAllChannelMessagesFromUserOnServerLogEvent;
|
|
|
|
class DeleteDialogHistoryFromServerLogEvent;
|
|
|
|
class DeleteMessageLogEvent;
|
|
|
|
class DeleteMessagesFromServerLogEvent;
|
2019-11-29 13:03:03 +01:00
|
|
|
class DeleteScheduledMessagesFromServerLogEvent;
|
2018-12-31 20:04:05 +01:00
|
|
|
class ForwardMessagesLogEvent;
|
|
|
|
class GetChannelDifferenceLogEvent;
|
2019-11-29 13:03:03 +01:00
|
|
|
class GetDialogFromServerLogEvent;
|
2018-12-31 20:04:05 +01:00
|
|
|
class ReadAllDialogMentionsOnServerLogEvent;
|
2018-06-20 03:02:02 +02:00
|
|
|
class ReadHistoryInSecretChatLogEvent;
|
2020-09-22 00:13:06 +02:00
|
|
|
class ReadHistoryOnServerLogEvent;
|
2018-12-31 20:04:05 +01:00
|
|
|
class ReadMessageContentsOnServerLogEvent;
|
2020-09-22 00:13:06 +02:00
|
|
|
class ReadMessageThreadHistoryOnServerLogEvent;
|
2018-12-31 20:04:05 +01:00
|
|
|
class ReorderPinnedDialogsOnServerLogEvent;
|
2018-04-28 21:50:12 +02:00
|
|
|
class ResetAllNotificationSettingsOnServerLogEvent;
|
2019-11-29 13:03:03 +01:00
|
|
|
class SaveDialogDraftMessageOnServerLogEvent;
|
2018-12-31 20:04:05 +01:00
|
|
|
class SendBotStartMessageLogEvent;
|
|
|
|
class SendInlineQueryResultMessageLogEvent;
|
|
|
|
class SendMessageLogEvent;
|
|
|
|
class SendScreenshotTakenNotificationMessageLogEvent;
|
2019-11-29 13:03:03 +01:00
|
|
|
class SetDialogFolderIdOnServerLogEvent;
|
2020-09-20 02:00:01 +02:00
|
|
|
class ToggleDialogIsBlockedOnServerLogEvent;
|
2020-09-22 00:13:06 +02:00
|
|
|
class ToggleDialogIsMarkedAsUnreadOnServerLogEvent;
|
|
|
|
class ToggleDialogIsPinnedOnServerLogEvent;
|
2020-10-23 00:56:06 +02:00
|
|
|
class UnpinAllDialogMessagesOnServerLogEvent;
|
2019-11-29 13:03:03 +01:00
|
|
|
class UpdateDialogNotificationSettingsOnServerLogEvent;
|
|
|
|
class UpdateScopeNotificationSettingsOnServerLogEvent;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-15 00:39:28 +02:00
|
|
|
class DialogFiltersLogEvent;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr size_t MAX_GROUPED_MESSAGES = 10; // server side limit
|
|
|
|
static constexpr int32 MAX_GET_DIALOGS = 100; // server side limit
|
|
|
|
static constexpr int32 MAX_GET_HISTORY = 100; // server side limit
|
|
|
|
static constexpr int32 MAX_SEARCH_MESSAGES = 100; // server side limit
|
|
|
|
static constexpr int32 MIN_SEARCH_PUBLIC_DIALOG_PREFIX_LEN = 5; // server side limit
|
|
|
|
static constexpr int32 MIN_CHANNEL_DIFFERENCE = 10;
|
|
|
|
static constexpr int32 MAX_CHANNEL_DIFFERENCE = 100;
|
2020-05-19 13:30:25 +02:00
|
|
|
static constexpr int32 MAX_BOT_CHANNEL_DIFFERENCE = 100000; // server side limit
|
2020-10-12 10:33:16 +02:00
|
|
|
static constexpr int32 MAX_RECENTLY_FOUND_DIALOGS = 30; // some reasonable value
|
2020-05-19 13:30:25 +02:00
|
|
|
static constexpr size_t MAX_TITLE_LENGTH = 128; // server side limit for chat title
|
|
|
|
static constexpr size_t MAX_DESCRIPTION_LENGTH = 255; // server side limit for chat description
|
|
|
|
static constexpr size_t MAX_DIALOG_FILTER_TITLE_LENGTH = 12; // server side limit for dialog filter title
|
2020-05-20 02:04:52 +02:00
|
|
|
static constexpr int32 MAX_PRIVATE_MESSAGE_TTL = 60; // server side limit
|
|
|
|
static constexpr int32 MAX_DIALOG_FILTERS = 10; // server side limit
|
|
|
|
static constexpr int32 DIALOG_FILTERS_CACHE_TIME = 86400;
|
|
|
|
|
2020-03-26 17:04:48 +01:00
|
|
|
static constexpr int64 SPONSORED_DIALOG_ORDER = static_cast<int64>(2147483647) << 32;
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr int32 MIN_PINNED_DIALOG_DATE = 2147000000; // some big date
|
2020-05-20 02:04:52 +02:00
|
|
|
static constexpr int64 MAX_ORDINARY_DIALOG_ORDER =
|
|
|
|
9221294780217032704; // == get_dialog_order(MessageId(), MIN_PINNED_DIALOG_DATE - 1)
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static constexpr int32 UPDATE_CHANNEL_TO_LONG_FLAG_HAS_PTS = 1 << 0;
|
|
|
|
|
|
|
|
static constexpr int32 CHANNEL_DIFFERENCE_FLAG_IS_FINAL = 1 << 0;
|
|
|
|
static constexpr int32 CHANNEL_DIFFERENCE_FLAG_HAS_TIMEOUT = 1 << 1;
|
|
|
|
|
|
|
|
static constexpr int32 DIALOG_FLAG_HAS_PTS = 1 << 0;
|
|
|
|
static constexpr int32 DIALOG_FLAG_HAS_DRAFT = 1 << 1;
|
|
|
|
static constexpr int32 DIALOG_FLAG_IS_PINNED = 1 << 2;
|
2019-08-19 03:51:03 +02:00
|
|
|
static constexpr int32 DIALOG_FLAG_HAS_FOLDER_ID = 1 << 4;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static constexpr int32 MAX_MESSAGE_VIEW_DELAY = 1; // seconds
|
|
|
|
static constexpr int32 MIN_SAVE_DRAFT_DELAY = 1; // seconds
|
2018-05-03 14:36:05 +02:00
|
|
|
static constexpr int32 MIN_READ_HISTORY_DELAY = 3; // seconds
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr int32 MAX_SAVE_DIALOG_DELAY = 0; // seconds
|
|
|
|
|
2019-12-16 16:39:40 +01:00
|
|
|
static constexpr int32 LIVE_LOCATION_VIEW_PERIOD = 60; // seconds, server-side limit
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr int32 USERNAME_CACHE_EXPIRE_TIME = 3 * 86400;
|
|
|
|
static constexpr int32 USERNAME_CACHE_EXPIRE_TIME_SHORT = 900;
|
2020-02-13 01:03:50 +01:00
|
|
|
static constexpr int32 AUTH_NOTIFICATION_ID_CACHE_TIME = 7 * 86400;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-02-26 01:41:49 +01:00
|
|
|
static constexpr int32 ONLINE_MEMBER_COUNT_UPDATE_TIME = 5 * 60;
|
|
|
|
|
2018-09-19 18:43:01 +02:00
|
|
|
static constexpr int32 MAX_RESEND_DELAY = 86400; // seconds, some resonable limit
|
|
|
|
|
2019-12-03 01:12:41 +01:00
|
|
|
static constexpr int32 SCHEDULE_WHEN_ONLINE_DATE = 2147483646;
|
|
|
|
|
2018-03-13 18:48:08 +01:00
|
|
|
static constexpr double DIALOG_ACTION_TIMEOUT = 5.5;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr const char *DELETE_MESSAGE_USER_REQUEST_SOURCE = "user request";
|
|
|
|
|
|
|
|
static constexpr bool DROP_UPDATES = false;
|
|
|
|
|
2020-09-14 01:32:37 +02:00
|
|
|
static FullMessageId get_full_message_id(const tl_object_ptr<telegram_api::Message> &message_ptr, bool is_scheduled);
|
2019-12-01 22:11:15 +01:00
|
|
|
|
2019-12-03 00:30:50 +01:00
|
|
|
static int32 get_message_date(const tl_object_ptr<telegram_api::Message> &message_ptr);
|
|
|
|
|
2018-05-07 19:20:20 +02:00
|
|
|
static bool is_dialog_inited(const Dialog *d);
|
2018-05-03 15:29:33 +02:00
|
|
|
|
2018-07-02 03:21:18 +02:00
|
|
|
int32 get_dialog_mute_until(const Dialog *d) const;
|
|
|
|
|
|
|
|
bool is_dialog_muted(const Dialog *d) const;
|
|
|
|
|
2019-01-10 18:54:46 +01:00
|
|
|
bool is_dialog_pinned_message_notifications_disabled(const Dialog *d) const;
|
|
|
|
|
|
|
|
bool is_dialog_mention_notifications_disabled(const Dialog *d) const;
|
2019-01-10 01:47:33 +01:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
int64 get_dialog_pinned_order(DialogListId dialog_list_id, DialogId dialog_id) const;
|
2020-05-03 00:10:54 +02:00
|
|
|
|
2020-05-27 22:35:35 +02:00
|
|
|
static int64 get_dialog_pinned_order(const DialogList *list, DialogId dialog_id);
|
2020-05-03 00:10:54 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void open_dialog(Dialog *d);
|
|
|
|
|
|
|
|
void close_dialog(Dialog *d);
|
|
|
|
|
2018-10-08 16:13:09 +02:00
|
|
|
DialogId get_my_dialog_id() const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void add_secret_message(unique_ptr<PendingSecretMessage> pending_secret_message, Promise<Unit> lock_promise = Auto());
|
|
|
|
|
|
|
|
void finish_add_secret_message(unique_ptr<PendingSecretMessage> pending_secret_message);
|
|
|
|
|
2019-09-04 20:29:27 +02:00
|
|
|
void finish_delete_secret_messages(DialogId dialog_id, std::vector<int64> random_ids, Promise<> promise);
|
|
|
|
|
|
|
|
void finish_delete_secret_chat_history(DialogId dialog_id, MessageId last_message_id, Promise<> promise);
|
|
|
|
|
2019-12-01 22:11:15 +01:00
|
|
|
MessageInfo parse_telegram_api_message(tl_object_ptr<telegram_api::Message> message_ptr, bool is_scheduled,
|
|
|
|
const char *source) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
std::pair<DialogId, unique_ptr<Message>> create_message(MessageInfo &&message_info, bool is_channel_message);
|
|
|
|
|
2019-12-05 18:34:19 +01:00
|
|
|
MessageId find_old_message_id(DialogId dialog_id, MessageId message_id) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
FullMessageId on_get_message(MessageInfo &&message_info, bool from_update, bool is_channel_message,
|
|
|
|
bool have_previous, bool have_next, const char *source);
|
|
|
|
|
|
|
|
Result<InputMessageContent> process_input_message_content(
|
2019-08-09 19:28:49 +02:00
|
|
|
DialogId dialog_id, tl_object_ptr<td_api::InputMessageContent> &&input_message_content);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-08-09 13:18:08 +02:00
|
|
|
Result<MessageCopyOptions> process_message_copy_options(DialogId dialog_id,
|
|
|
|
tl_object_ptr<td_api::messageCopyOptions> &&options) const;
|
|
|
|
|
2020-08-09 14:14:30 +02:00
|
|
|
Result<MessageSendOptions> process_message_send_options(DialogId dialog_id,
|
|
|
|
tl_object_ptr<td_api::messageSendOptions> &&options) const;
|
2019-12-06 00:32:23 +01:00
|
|
|
|
2020-08-09 14:14:30 +02:00
|
|
|
static Status can_use_message_send_options(const MessageSendOptions &options,
|
2019-12-06 02:25:44 +01:00
|
|
|
const unique_ptr<MessageContent> &content, int32 ttl);
|
2020-08-09 14:14:30 +02:00
|
|
|
static Status can_use_message_send_options(const MessageSendOptions &options, const InputMessageContent &content);
|
2019-12-06 02:25:44 +01:00
|
|
|
|
2020-09-23 00:52:16 +02:00
|
|
|
Status can_use_top_thread_message_id(Dialog *d, MessageId top_thread_message_id, MessageId reply_to_message_id);
|
|
|
|
|
2020-10-22 01:40:58 +02:00
|
|
|
bool is_anonymous_administrator(DialogId dialog_id, string *author_signature) const;
|
2020-09-11 20:06:01 +02:00
|
|
|
|
2020-09-24 14:29:34 +02:00
|
|
|
Message *get_message_to_send(Dialog *d, MessageId top_thread_message_id, MessageId reply_to_message_id,
|
|
|
|
const MessageSendOptions &options, unique_ptr<MessageContent> &&content,
|
2020-10-24 13:52:18 +02:00
|
|
|
bool *need_update_dialog_pos, bool suppress_reply_info = false,
|
|
|
|
unique_ptr<MessageForwardInfo> forward_info = nullptr, bool is_copy = false);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
int64 begin_send_message(DialogId dialog_id, const Message *m);
|
|
|
|
|
|
|
|
Status can_send_message(DialogId dialog_id) const TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2020-01-15 00:44:24 +01:00
|
|
|
Status can_send_message_content(DialogId dialog_id, const MessageContent *content,
|
|
|
|
bool is_forward) const TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-01-16 04:10:08 +01:00
|
|
|
bool can_resend_message(const Message *m) const;
|
2019-08-11 03:05:00 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool can_edit_message(DialogId dialog_id, const Message *m, bool is_editing, bool only_reply_markup = false) const;
|
|
|
|
|
2018-03-04 15:14:37 +01:00
|
|
|
bool can_report_dialog(DialogId dialog_id) const;
|
|
|
|
|
2020-10-23 00:56:06 +02:00
|
|
|
Status can_pin_messages(DialogId dialog_id) const;
|
|
|
|
|
2019-01-31 01:06:21 +01:00
|
|
|
void cancel_edit_message_media(DialogId dialog_id, Message *m, Slice error_message);
|
2018-06-19 01:31:34 +02:00
|
|
|
|
|
|
|
void on_message_media_edited(DialogId dialog_id, MessageId message_id, FileId file_id, FileId thumbnail_file_id,
|
2019-12-03 18:26:09 +01:00
|
|
|
bool was_uploaded, bool was_thumbnail_uploaded, string file_reference,
|
|
|
|
int32 scheduled_date, uint64 generation, Result<Unit> &&result);
|
2018-06-19 01:31:34 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
MessageId get_persistent_message_id(const Dialog *d, MessageId message_id) const;
|
|
|
|
|
2020-09-10 15:29:10 +02:00
|
|
|
static FullMessageId get_replied_message_id(DialogId dialog_id, const Message *m);
|
2018-02-07 00:31:38 +01:00
|
|
|
|
2020-09-23 00:52:16 +02:00
|
|
|
MessageId get_reply_to_message_id(Dialog *d, MessageId top_thread_message_id, MessageId message_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-10 13:54:34 +02:00
|
|
|
static void fix_server_reply_to_message_id(DialogId dialog_id, MessageId message_id, DialogId reply_in_dialog_id,
|
|
|
|
MessageId &reply_to_message_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool can_set_game_score(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
|
|
|
bool check_update_dialog_id(const tl_object_ptr<telegram_api::Update> &update, DialogId dialog_id);
|
|
|
|
|
|
|
|
void process_update(tl_object_ptr<telegram_api::Update> &&update);
|
|
|
|
|
|
|
|
void process_channel_update(tl_object_ptr<telegram_api::Update> &&update);
|
|
|
|
|
2018-04-23 00:50:07 +02:00
|
|
|
void on_message_edited(FullMessageId full_message_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void delete_messages_from_updates(const vector<MessageId> &message_ids);
|
|
|
|
|
2020-09-14 01:23:02 +02:00
|
|
|
void delete_dialog_messages_from_updates(DialogId dialog_id, const vector<MessageId> &message_ids,
|
|
|
|
bool skip_update_for_not_found_messages);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-10-20 14:08:36 +02:00
|
|
|
void update_dialog_pinned_messages_from_updates(DialogId dialog_id, const vector<MessageId> &message_ids,
|
|
|
|
bool is_pin);
|
|
|
|
|
|
|
|
bool update_message_is_pinned(Dialog *d, Message *m, bool is_pin, const char *source);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void do_forward_messages(DialogId to_dialog_id, DialogId from_dialog_id, const vector<Message *> &messages,
|
2020-09-22 01:15:09 +02:00
|
|
|
const vector<MessageId> &message_ids, uint64 log_event_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Result<MessageId> forward_message(DialogId to_dialog_id, DialogId from_dialog_id, MessageId message_id,
|
2020-08-09 14:14:30 +02:00
|
|
|
tl_object_ptr<td_api::messageSendOptions> &&options, bool in_game_share,
|
2020-08-09 13:18:08 +02:00
|
|
|
MessageCopyOptions &©_options) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void do_send_media(DialogId dialog_id, Message *m, FileId file_id, FileId thumbnail_file_id,
|
|
|
|
tl_object_ptr<telegram_api::InputFile> input_file,
|
|
|
|
tl_object_ptr<telegram_api::InputFile> input_thumbnail);
|
|
|
|
|
|
|
|
void do_send_secret_media(DialogId dialog_id, Message *m, FileId file_id, FileId thumbnail_file_id,
|
|
|
|
tl_object_ptr<telegram_api::InputEncryptedFile> input_encrypted_file,
|
|
|
|
BufferSlice thumbnail);
|
|
|
|
|
2019-08-11 03:05:00 +02:00
|
|
|
void do_send_message(DialogId dialog_id, const Message *m, vector<int> bad_parts = {});
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-11 03:05:00 +02:00
|
|
|
void on_message_media_uploaded(DialogId dialog_id, const Message *m,
|
|
|
|
tl_object_ptr<telegram_api::InputMedia> &&input_media, FileId file_id,
|
|
|
|
FileId thumbnail_file_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-11 03:05:00 +02:00
|
|
|
void on_secret_message_media_uploaded(DialogId dialog_id, const Message *m, SecretInputMedia &&secret_input_media,
|
2018-12-31 20:04:05 +01:00
|
|
|
FileId file_id, FileId thumbnail_file_id);
|
|
|
|
|
|
|
|
void on_upload_message_media_finished(int64 media_album_id, DialogId dialog_id, MessageId message_id, Status result);
|
|
|
|
|
|
|
|
void do_send_message_group(int64 media_album_id);
|
|
|
|
|
2020-09-12 23:51:24 +02:00
|
|
|
void on_text_message_ready_to_send(DialogId dialog_id, MessageId message_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_media_message_ready_to_send(DialogId dialog_id, MessageId message_id, Promise<Message *> &&promise);
|
|
|
|
|
|
|
|
void on_yet_unsent_media_queue_updated(DialogId dialog_id);
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void save_send_bot_start_message_log_event(UserId bot_user_id, DialogId dialog_id, const string ¶meter,
|
|
|
|
const Message *m);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-11 03:05:00 +02:00
|
|
|
void do_send_bot_start_message(UserId bot_user_id, DialogId dialog_id, const string ¶meter, const Message *m);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void save_send_inline_query_result_message_log_event(DialogId dialog_id, const Message *m, int64 query_id,
|
|
|
|
const string &result_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-08-11 03:05:00 +02:00
|
|
|
void do_send_inline_query_result_message(DialogId dialog_id, const Message *m, int64 query_id,
|
|
|
|
const string &result_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_send_screenshot_taken_notification_message_log_event(DialogId dialog_id, const Message *m);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void do_send_screenshot_taken_notification_message(DialogId dialog_id, const Message *m, uint64 log_event_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
Message *continue_send_message(DialogId dialog_id, unique_ptr<Message> &&m, uint64 log_event_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
bool is_message_unload_enabled() const;
|
|
|
|
|
2019-08-11 01:10:21 +02:00
|
|
|
int64 generate_new_media_album_id();
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static bool can_forward_message(DialogId from_dialog_id, const Message *m);
|
|
|
|
|
2020-08-01 04:19:54 +02:00
|
|
|
bool can_get_message_statistics(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static bool can_delete_channel_message(DialogParticipantStatus status, const Message *m, bool is_bot);
|
|
|
|
|
2020-03-20 01:59:09 +01:00
|
|
|
bool can_delete_message(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool can_revoke_message(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
|
|
|
bool can_unload_message(const Dialog *d, const Message *m) const;
|
|
|
|
|
|
|
|
void unload_message(Dialog *d, MessageId message_id);
|
|
|
|
|
|
|
|
unique_ptr<Message> delete_message(Dialog *d, MessageId message_id, bool is_permanently_deleted,
|
|
|
|
bool *need_update_dialog_pos, const char *source);
|
|
|
|
|
|
|
|
unique_ptr<Message> do_delete_message(Dialog *d, MessageId message_id, bool is_permanently_deleted,
|
|
|
|
bool only_from_memory, bool *need_update_dialog_pos, const char *source);
|
|
|
|
|
2019-12-02 16:22:05 +01:00
|
|
|
unique_ptr<Message> do_delete_scheduled_message(Dialog *d, MessageId message_id, bool is_permanently_deleted,
|
|
|
|
const char *source);
|
2019-11-29 13:03:03 +01:00
|
|
|
|
2019-12-06 18:47:22 +01:00
|
|
|
void on_message_deleted(Dialog *d, Message *m, bool is_permanently_deleted, const char *source);
|
2019-02-19 15:33:15 +01:00
|
|
|
|
2019-03-01 02:04:02 +01:00
|
|
|
int32 get_unload_dialog_delay() const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void unload_dialog(DialogId dialog_id);
|
|
|
|
|
2019-12-06 18:47:22 +01:00
|
|
|
void delete_all_dialog_messages(Dialog *d, bool remove_from_dialog_list, bool is_permanently_deleted);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-12-06 18:47:22 +01:00
|
|
|
void do_delete_all_dialog_messages(Dialog *d, unique_ptr<Message> &message, bool is_permanently_deleted,
|
|
|
|
vector<int64> &deleted_message_ids);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-11-29 13:03:03 +01:00
|
|
|
void delete_message_from_server(DialogId dialog_id, MessageId message_ids, bool revoke);
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void delete_messages_from_server(DialogId dialog_id, vector<MessageId> message_ids, bool revoke, uint64 log_event_id,
|
2018-12-31 20:04:05 +01:00
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void delete_scheduled_messages_from_server(DialogId dialog_id, vector<MessageId> message_ids, uint64 log_event_id,
|
2019-11-29 13:03:03 +01:00
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void delete_dialog_history_from_server(DialogId dialog_id, MessageId max_message_id, bool remove_from_dialog_list,
|
2020-09-22 01:15:09 +02:00
|
|
|
bool revoke, bool allow_error, uint64 log_event_id, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-10-18 00:26:36 +02:00
|
|
|
void block_message_sender_from_replies_on_server(MessageId message_id, bool delete_message, bool delete_all_messages,
|
|
|
|
bool report_spam, uint64 log_event_id, Promise<Unit> &&promise);
|
2020-09-24 14:29:34 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void delete_all_channel_messages_from_user_on_server(ChannelId channel_id, UserId user_id, uint64 log_event_id,
|
2018-12-31 20:04:05 +01:00
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void read_all_dialog_mentions_on_server(DialogId dialog_id, uint64 log_event_id, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-10-23 00:56:06 +02:00
|
|
|
void unpin_all_dialog_messages_on_server(DialogId dialog_id, uint64 log_event_id, Promise<Unit> &&promise);
|
|
|
|
|
2019-11-29 14:16:02 +01:00
|
|
|
static MessageId find_message_by_date(const Message *m, int32 date);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-10-22 14:59:59 +02:00
|
|
|
static void find_messages(const Message *m, vector<MessageId> &message_ids,
|
|
|
|
const std::function<bool(const Message *)> &condition);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-11-29 14:16:02 +01:00
|
|
|
static void find_old_messages(const Message *m, MessageId max_message_id, vector<MessageId> &message_ids);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-19 15:39:44 +02:00
|
|
|
static void find_newer_messages(const Message *m, MessageId min_message_id, vector<MessageId> &message_ids);
|
2020-04-22 16:52:51 +02:00
|
|
|
|
2019-11-29 14:16:02 +01:00
|
|
|
void find_unloadable_messages(const Dialog *d, int32 unload_before_date, const Message *m,
|
2018-12-31 20:04:05 +01:00
|
|
|
vector<MessageId> &message_ids, int32 &left_to_unload) const;
|
|
|
|
|
2019-08-29 02:16:49 +02:00
|
|
|
void on_pending_message_views_timeout(DialogId dialog_id);
|
|
|
|
|
2020-08-31 12:42:27 +02:00
|
|
|
void update_message_interaction_info(FullMessageId full_message_id, int32 view_count, int32 forward_count,
|
|
|
|
bool has_reply_info, tl_object_ptr<telegram_api::messageReplies> &&reply_info);
|
2020-07-31 04:50:11 +02:00
|
|
|
|
2020-09-11 13:51:13 +02:00
|
|
|
bool is_active_message_reply_info(DialogId dialog_id, const MessageReplyInfo &info) const;
|
|
|
|
|
2020-09-25 15:37:24 +02:00
|
|
|
bool is_visible_message_reply_info(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
2020-10-01 21:43:13 +02:00
|
|
|
void on_message_reply_info_changed(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
2020-10-01 14:25:54 +02:00
|
|
|
Result<FullMessageId> get_top_thread_full_message_id(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
2020-07-31 04:50:11 +02:00
|
|
|
td_api::object_ptr<td_api::messageInteractionInfo> get_message_interaction_info_object(DialogId dialog_id,
|
|
|
|
const Message *m) const;
|
|
|
|
|
2020-08-31 12:42:27 +02:00
|
|
|
bool update_message_interaction_info(DialogId dialog_id, Message *m, int32 view_count, int32 forward_count,
|
|
|
|
bool has_reply_info, MessageReplyInfo &&reply_info);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-01-31 12:52:44 +01:00
|
|
|
bool update_message_contains_unread_mention(Dialog *d, Message *m, bool contains_unread_mention, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void read_message_content_from_updates(MessageId message_id);
|
|
|
|
|
|
|
|
void read_channel_message_content_from_updates(Dialog *d, MessageId message_id);
|
|
|
|
|
2018-01-31 12:52:44 +01:00
|
|
|
bool read_message_content(Dialog *d, Message *m, bool is_local_read, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void read_message_contents_on_server(DialogId dialog_id, vector<MessageId> message_ids, uint64 log_event_id,
|
|
|
|
Promise<Unit> &&promise, bool skip_log_event = false);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-12-30 01:31:33 +01:00
|
|
|
bool has_incoming_notification(DialogId dialog_id, const Message *m) const;
|
2018-05-01 20:12:00 +02:00
|
|
|
|
2019-12-30 01:31:33 +01:00
|
|
|
int32 calc_new_unread_count_from_last_unread(Dialog *d, MessageId max_message_id, MessageType type) const;
|
2018-05-01 20:12:00 +02:00
|
|
|
|
2019-12-30 01:31:33 +01:00
|
|
|
int32 calc_new_unread_count_from_the_end(Dialog *d, MessageId max_message_id, MessageType type,
|
|
|
|
int32 hint_unread_count) const;
|
|
|
|
|
|
|
|
int32 calc_new_unread_count(Dialog *d, MessageId max_message_id, MessageType type, int32 hint_unread_count) const;
|
2018-05-01 19:13:36 +02:00
|
|
|
|
2018-05-03 10:57:19 +02:00
|
|
|
void repair_server_unread_count(DialogId dialog_id, int32 unread_count);
|
|
|
|
|
2018-05-10 19:06:48 +02:00
|
|
|
void repair_channel_server_unread_count(Dialog *d);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void read_history_outbox(DialogId dialog_id, MessageId max_message_id, int32 read_date = -1);
|
|
|
|
|
2018-05-03 14:36:05 +02:00
|
|
|
void read_history_on_server(Dialog *d, MessageId max_message_id);
|
|
|
|
|
2020-09-22 00:13:06 +02:00
|
|
|
void do_read_history_on_server(DialogId dialog_id);
|
|
|
|
|
|
|
|
void read_history_on_server_impl(Dialog *d, MessageId max_message_id);
|
|
|
|
|
|
|
|
void read_message_thread_history_on_server_impl(Dialog *d, MessageId top_thread_message_id, MessageId max_message_id);
|
|
|
|
|
|
|
|
void on_read_history_finished(DialogId dialog_id, MessageId top_thread_message_id, uint64 generation);
|
2018-05-03 14:36:05 +02:00
|
|
|
|
2020-09-22 00:13:06 +02:00
|
|
|
void read_message_thread_history_on_server(Dialog *d, MessageId top_thread_message_id, MessageId max_message_id,
|
|
|
|
MessageId last_message_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void read_secret_chat_outbox_inner(DialogId dialog_id, int32 up_to_date, int32 read_date);
|
|
|
|
|
2018-01-25 16:36:40 +01:00
|
|
|
void set_dialog_max_unavailable_message_id(DialogId dialog_id, MessageId max_unavailable_message_id, bool from_update,
|
|
|
|
const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-03-05 03:18:31 +01:00
|
|
|
void set_dialog_online_member_count(DialogId dialog_id, int32 online_member_count, bool is_from_server,
|
|
|
|
const char *source);
|
2019-02-26 01:24:33 +01:00
|
|
|
|
2019-02-26 16:24:46 +01:00
|
|
|
void on_update_dialog_online_member_count_timeout(DialogId dialog_id);
|
|
|
|
|
2020-09-30 03:26:39 +02:00
|
|
|
template <class T, class It>
|
|
|
|
vector<MessageId> get_message_history_slice(const T &begin, It it, const T &end, MessageId from_message_id,
|
|
|
|
int32 offset, int32 limit);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void preload_newer_messages(const Dialog *d, MessageId max_message_id);
|
|
|
|
|
|
|
|
void preload_older_messages(const Dialog *d, MessageId min_message_id);
|
|
|
|
|
|
|
|
void on_get_history_from_database(DialogId dialog_id, MessageId from_message_id, int32 offset, int32 limit,
|
|
|
|
bool from_the_end, bool only_local, vector<BufferSlice> &&messages,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void get_history_from_the_end(DialogId dialog_id, bool from_database, bool only_local, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void get_history(DialogId dialog_id, MessageId from_message_id, int32 offset, int32 limit, bool from_database,
|
|
|
|
bool only_local, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void load_messages(DialogId dialog_id, MessageId from_message_id, int32 offset, int32 limit, int left_tries,
|
|
|
|
bool only_local, Promise<Unit> &&promise);
|
|
|
|
|
2019-12-04 18:06:39 +01:00
|
|
|
void load_dialog_scheduled_messages(DialogId dialog_id, bool from_database, int32 hash, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void on_get_scheduled_messages_from_database(DialogId dialog_id, vector<BufferSlice> &&messages);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static int32 get_random_y(MessageId message_id);
|
|
|
|
|
2019-12-05 14:29:06 +01:00
|
|
|
static void set_message_id(unique_ptr<Message> &message, MessageId message_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool is_allowed_useless_update(const tl_object_ptr<telegram_api::Update> &update) const;
|
|
|
|
|
2018-04-27 18:51:11 +02:00
|
|
|
bool is_message_auto_read(DialogId dialog_id, bool is_outgoing) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void fail_send_message(FullMessageId full_message_id, int error_code, const string &error_message);
|
|
|
|
|
2018-09-19 18:59:23 +02:00
|
|
|
void fail_send_message(FullMessageId full_message_id, Status error);
|
|
|
|
|
2018-06-19 01:31:34 +02:00
|
|
|
void fail_edit_message_media(FullMessageId full_message_id, Status &&error);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_dialog_updated(DialogId dialog_id, const char *source);
|
|
|
|
|
|
|
|
BufferSlice get_dialog_database_value(const Dialog *d);
|
|
|
|
|
|
|
|
void save_dialog_to_database(DialogId dialog_id);
|
|
|
|
|
2019-05-04 00:03:10 +02:00
|
|
|
void on_save_dialog_to_database(DialogId dialog_id, bool can_reuse_notification_group, bool success);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
void try_reuse_notification_group(NotificationGroupInfo &group_info);
|
|
|
|
|
2020-05-21 02:39:45 +02:00
|
|
|
void load_dialog_list(DialogList &list, int32 limit, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void load_folder_dialog_list(FolderId folder_id, int32 limit, bool only_local, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-06-05 06:21:02 +02:00
|
|
|
void on_load_folder_dialog_list_fail(FolderId folder_id, Status error);
|
|
|
|
|
2020-05-21 02:39:45 +02:00
|
|
|
void load_folder_dialog_list_from_database(FolderId folder_id, int32 limit, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-11-07 20:28:45 +01:00
|
|
|
void preload_folder_dialog_list(FolderId folder_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-01 21:43:05 +02:00
|
|
|
static void invalidate_message_indexes(Dialog *d);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void update_message_count_by_index(Dialog *d, int diff, const Message *m);
|
|
|
|
|
2018-05-23 17:28:46 +02:00
|
|
|
void update_message_count_by_index(Dialog *d, int diff, int32 index_mask);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 get_message_index_mask(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
2020-10-31 11:55:53 +01:00
|
|
|
void update_reply_count_by_message(Dialog *d, int diff, const Message *m);
|
|
|
|
|
|
|
|
void update_message_reply_count(Dialog *d, MessageId message_id, DialogId replier_dialog_id,
|
|
|
|
MessageId reply_message_id, int diff, bool is_recursive = false);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Message *add_message_to_dialog(DialogId dialog_id, unique_ptr<Message> message, bool from_update, bool *need_update,
|
|
|
|
bool *need_update_dialog_pos, const char *source);
|
|
|
|
|
|
|
|
Message *add_message_to_dialog(Dialog *d, unique_ptr<Message> message, bool from_update, bool *need_update,
|
|
|
|
bool *need_update_dialog_pos, const char *source);
|
|
|
|
|
2019-12-02 18:50:10 +01:00
|
|
|
Message *add_scheduled_message_to_dialog(Dialog *d, unique_ptr<Message> message, bool from_update, bool *need_update,
|
2019-11-29 13:03:03 +01:00
|
|
|
const char *source);
|
|
|
|
|
2020-09-28 23:22:35 +02:00
|
|
|
void register_new_local_message_id(Dialog *d, const Message *m);
|
|
|
|
|
2018-11-28 18:18:50 +01:00
|
|
|
void on_message_changed(const Dialog *d, const Message *m, bool need_send_update, const char *source);
|
2018-01-25 13:00:23 +01:00
|
|
|
|
2019-04-28 19:21:44 +02:00
|
|
|
bool need_delete_file(FullMessageId full_message_id, FileId file_id) const;
|
|
|
|
|
2019-11-30 16:05:30 +01:00
|
|
|
bool need_delete_message_files(DialogId dialog_id, const Message *m) const;
|
2019-04-20 15:41:32 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void add_message_to_database(const Dialog *d, const Message *m, const char *source);
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
void delete_all_dialog_messages_from_database(Dialog *d, MessageId max_message_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-11-29 16:36:31 +01:00
|
|
|
void delete_message_from_database(Dialog *d, MessageId message_id, const Message *m, bool is_permanently_deleted);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-04-28 19:21:44 +02:00
|
|
|
void delete_message_files(DialogId dialog_id, const Message *m) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-10-24 21:49:50 +02:00
|
|
|
static void add_random_id_to_message_id_correspondence(Dialog *d, int64 random_id, MessageId message_id);
|
|
|
|
|
|
|
|
static void delete_random_id_to_message_id_correspondence(Dialog *d, int64 random_id, MessageId message_id);
|
|
|
|
|
2018-11-29 00:48:47 +01:00
|
|
|
static void add_notification_id_to_message_id_correspondence(Dialog *d, NotificationId notification_id,
|
|
|
|
MessageId message_id);
|
|
|
|
|
|
|
|
static void delete_notification_id_to_message_id_correspondence(Dialog *d, NotificationId notification_id,
|
|
|
|
MessageId message_id);
|
|
|
|
|
2019-10-23 20:53:26 +02:00
|
|
|
void remove_message_notification_id(Dialog *d, Message *m, bool is_permanent, bool force_update,
|
|
|
|
bool ignore_pinned_message_notification_removal = false);
|
2018-11-29 00:48:47 +01:00
|
|
|
|
2018-12-04 17:40:12 +01:00
|
|
|
void remove_new_secret_chat_notification(Dialog *d, bool is_permanent);
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
void fix_dialog_last_notification_id(Dialog *d, bool from_mentions, MessageId message_id);
|
2018-11-29 16:36:31 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
void do_fix_dialog_last_notification_id(DialogId dialog_id, bool from_mentions,
|
|
|
|
NotificationId prev_last_notification_id,
|
|
|
|
Result<vector<Notification>> result);
|
2018-11-29 16:36:31 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void do_delete_message_log_event(const DeleteMessageLogEvent &log_event) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-04-02 01:30:25 +02:00
|
|
|
void attach_message_to_previous(Dialog *d, MessageId message_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-04-02 01:30:25 +02:00
|
|
|
void attach_message_to_next(Dialog *d, MessageId message_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-11-30 15:38:46 +01:00
|
|
|
bool update_message(Dialog *d, Message *old_message, unique_ptr<Message> new_message, bool *need_update_dialog_pos);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-09-28 22:57:34 +02:00
|
|
|
static bool need_message_changed_warning(const Message *old_message);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-05-23 17:28:46 +02:00
|
|
|
bool update_message_content(DialogId dialog_id, Message *old_message, unique_ptr<MessageContent> new_content,
|
2019-02-24 21:49:55 +01:00
|
|
|
bool need_send_update_message_content, bool need_merge_files, bool is_message_in_dialog);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-11-11 13:58:52 +01:00
|
|
|
void send_update_new_message(const Dialog *d, const Message *m);
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
static bool is_from_mention_notification_group(const Dialog *d, const Message *m);
|
2018-11-29 16:36:31 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
static bool is_message_notification_active(const Dialog *d, const Message *m);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
static NotificationGroupInfo &get_notification_group_info(Dialog *d, const Message *m);
|
2018-12-04 17:40:12 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
NotificationGroupId get_dialog_notification_group_id(DialogId dialog_id, NotificationGroupInfo &group_info);
|
2018-12-05 23:34:22 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
NotificationId get_next_notification_id(Dialog *d, NotificationGroupId notification_group_id, MessageId message_id);
|
|
|
|
|
2018-12-25 03:45:36 +01:00
|
|
|
void try_add_pinned_message_notification(Dialog *d, vector<Notification> &res, NotificationId max_notification_id,
|
|
|
|
int32 limit);
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
vector<Notification> get_message_notifications_from_database_force(Dialog *d, bool from_mentions, int32 limit);
|
|
|
|
|
|
|
|
Result<vector<BufferSlice>> do_get_message_notifications_from_database_force(Dialog *d, bool from_mentions,
|
2018-12-05 23:34:22 +01:00
|
|
|
NotificationId from_notification_id,
|
|
|
|
MessageId from_message_id, int32 limit);
|
2018-12-03 16:38:29 +01:00
|
|
|
|
2018-12-25 03:45:36 +01:00
|
|
|
void do_get_message_notifications_from_database(Dialog *d, bool from_mentions,
|
|
|
|
NotificationId initial_from_notification_id,
|
|
|
|
NotificationId from_notification_id, MessageId from_message_id,
|
|
|
|
int32 limit, Promise<vector<Notification>> promise);
|
2018-12-05 23:59:33 +01:00
|
|
|
|
2018-12-25 03:45:36 +01:00
|
|
|
void on_get_message_notifications_from_database(DialogId dialog_id, bool from_mentions,
|
|
|
|
NotificationId initial_from_notification_id, int32 limit,
|
2018-12-22 21:24:18 +01:00
|
|
|
Result<vector<BufferSlice>> result,
|
2018-12-03 16:38:29 +01:00
|
|
|
Promise<vector<Notification>> promise);
|
2018-11-28 21:19:30 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
void do_remove_message_notification(DialogId dialog_id, bool from_mentions, NotificationId notification_id,
|
|
|
|
vector<BufferSlice> result);
|
2018-11-29 00:48:47 +01:00
|
|
|
|
2018-12-25 16:04:29 +01:00
|
|
|
int32 get_dialog_pending_notification_count(const Dialog *d, bool from_mentions) const;
|
|
|
|
|
|
|
|
void update_dialog_mention_notification_count(const Dialog *d);
|
2018-11-20 16:03:49 +01:00
|
|
|
|
2019-02-05 15:10:06 +01:00
|
|
|
bool is_message_notification_disabled(const Dialog *d, const Message *m) const;
|
|
|
|
|
2019-03-26 16:05:53 +01:00
|
|
|
bool is_dialog_message_notification_disabled(DialogId dialog_id, int32 message_date) const;
|
|
|
|
|
2019-02-05 15:10:06 +01:00
|
|
|
bool may_need_message_notification(const Dialog *d, const Message *m) const;
|
|
|
|
|
2018-11-28 18:18:50 +01:00
|
|
|
bool add_new_message_notification(Dialog *d, Message *m, bool force);
|
2018-11-08 19:00:03 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
void flush_pending_new_message_notifications(DialogId dialog_id, bool from_mentions, DialogId settings_dialog_id);
|
|
|
|
|
2019-10-18 16:02:34 +02:00
|
|
|
void remove_all_dialog_notifications(Dialog *d, bool from_mentions, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-18 16:21:00 +02:00
|
|
|
void remove_message_dialog_notifications(Dialog *d, MessageId max_message_id, bool from_mentions, const char *source);
|
2018-11-20 18:17:15 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void send_update_message_send_succeeded(Dialog *d, MessageId old_message_id, const Message *m) const;
|
|
|
|
|
|
|
|
void send_update_message_content(DialogId dialog_id, MessageId message_id, const MessageContent *content,
|
2018-03-04 20:18:32 +01:00
|
|
|
int32 message_date, bool is_content_secret, const char *source) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-03-13 18:48:08 +01:00
|
|
|
void send_update_message_edited(DialogId dialog_id, const Message *m);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-11 19:20:46 +02:00
|
|
|
void send_update_message_interaction_info(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
2019-12-13 19:05:10 +01:00
|
|
|
void send_update_message_live_location_viewed(FullMessageId full_message_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void send_update_delete_messages(DialogId dialog_id, vector<int64> &&message_ids, bool is_permanent,
|
|
|
|
bool from_cache) const;
|
|
|
|
|
2020-10-03 20:47:12 +02:00
|
|
|
void send_update_new_chat(Dialog *d);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void send_update_chat_draft_message(const Dialog *d);
|
|
|
|
|
|
|
|
void send_update_chat_last_message(Dialog *d, const char *source);
|
|
|
|
|
2018-01-25 13:26:25 +01:00
|
|
|
void send_update_chat_last_message_impl(const Dialog *d, const char *source) const;
|
|
|
|
|
2020-05-25 22:52:43 +02:00
|
|
|
void send_update_chat_filters();
|
2020-05-15 00:39:28 +02:00
|
|
|
|
2020-05-26 00:58:06 +02:00
|
|
|
void send_update_unread_message_count(DialogList &list, DialogId dialog_id, bool force, const char *source,
|
2020-05-22 18:20:50 +02:00
|
|
|
bool from_database = false);
|
2018-02-25 01:00:17 +01:00
|
|
|
|
2020-05-26 00:58:06 +02:00
|
|
|
void send_update_unread_chat_count(DialogList &list, DialogId dialog_id, bool force, const char *source,
|
2020-05-22 18:20:50 +02:00
|
|
|
bool from_database = false);
|
2018-07-02 03:02:30 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void send_update_chat_read_inbox(const Dialog *d, bool force, const char *source);
|
|
|
|
|
|
|
|
void send_update_chat_read_outbox(const Dialog *d);
|
|
|
|
|
|
|
|
void send_update_chat_unread_mention_count(const Dialog *d);
|
|
|
|
|
2020-05-29 00:58:24 +02:00
|
|
|
void send_update_chat_position(DialogListId dialog_list_id, const Dialog *d, const char *source) const;
|
2018-05-08 22:02:15 +02:00
|
|
|
|
2019-02-26 01:24:33 +01:00
|
|
|
void send_update_chat_online_member_count(DialogId dialog_id, int32 online_member_count) const;
|
|
|
|
|
2020-01-06 18:40:58 +01:00
|
|
|
void send_update_secret_chats_with_user_action_bar(const Dialog *d) const;
|
|
|
|
|
2019-10-11 00:23:28 +02:00
|
|
|
void send_update_chat_action_bar(const Dialog *d);
|
|
|
|
|
2020-02-28 19:40:31 +01:00
|
|
|
void send_update_chat_has_scheduled_messages(Dialog *d, bool from_deletion);
|
2019-12-04 19:01:00 +01:00
|
|
|
|
2020-09-30 03:40:30 +02:00
|
|
|
void send_update_user_chat_action(DialogId dialog_id, MessageId top_thread_message_id, UserId user_id,
|
2020-10-01 18:28:10 +02:00
|
|
|
DialogAction action);
|
2020-09-30 03:40:30 +02:00
|
|
|
|
2020-03-24 01:47:33 +01:00
|
|
|
void repair_dialog_action_bar(Dialog *d, const char *source);
|
|
|
|
|
2019-10-11 03:17:46 +02:00
|
|
|
void hide_dialog_action_bar(Dialog *d);
|
|
|
|
|
2019-12-03 02:36:23 +01:00
|
|
|
static Result<int32> get_message_schedule_date(td_api::object_ptr<td_api::MessageSchedulingState> &&scheduling_state);
|
|
|
|
|
2020-01-16 04:10:08 +01:00
|
|
|
tl_object_ptr<td_api::MessageSendingState> get_message_sending_state_object(const Message *m) const;
|
2019-12-03 01:20:38 +01:00
|
|
|
|
2019-12-03 01:12:41 +01:00
|
|
|
static tl_object_ptr<td_api::MessageSchedulingState> get_message_scheduling_state_object(int32 send_date);
|
|
|
|
|
2019-06-11 01:30:00 +02:00
|
|
|
tl_object_ptr<td_api::message> get_message_object(DialogId dialog_id, const Message *m,
|
|
|
|
bool for_event_log = false) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static tl_object_ptr<td_api::messages> get_messages_object(int32 total_count,
|
|
|
|
vector<tl_object_ptr<td_api::message>> &&messages);
|
|
|
|
|
2018-01-16 19:56:59 +01:00
|
|
|
vector<DialogId> sort_dialogs_by_order(const vector<DialogId> &dialog_ids, int32 limit) const;
|
|
|
|
|
|
|
|
vector<DialogId> get_peers_dialog_ids(vector<tl_object_ptr<telegram_api::Peer>> &&peers);
|
|
|
|
|
2018-10-07 23:28:03 +02:00
|
|
|
static bool need_unread_counter(int64 dialog_order);
|
|
|
|
|
2020-03-19 23:15:15 +01:00
|
|
|
int32 get_dialog_total_count(const DialogList &list) const;
|
2019-12-26 19:44:35 +01:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
void repair_server_dialog_total_count(DialogListId dialog_list_id);
|
2019-12-26 20:19:25 +01:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
void repair_secret_chat_total_count(DialogListId dialog_list_id);
|
2019-12-26 20:33:18 +01:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
void on_get_secret_chat_total_count(DialogListId dialog_list_id, int32 total_count);
|
2019-12-26 20:33:18 +01:00
|
|
|
|
2020-05-29 07:48:38 +02:00
|
|
|
void recalc_unread_count(DialogListId dialog_list_id, int32 old_dialog_total_count = -1);
|
2018-02-25 01:00:17 +01:00
|
|
|
|
2020-05-15 00:39:28 +02:00
|
|
|
td_api::object_ptr<td_api::updateChatFilters> get_update_chat_filters_object() const;
|
|
|
|
|
2019-08-22 17:24:02 +02:00
|
|
|
td_api::object_ptr<td_api::updateUnreadMessageCount> get_update_unread_message_count_object(
|
2020-03-17 02:29:24 +01:00
|
|
|
const DialogList &list) const;
|
2018-10-09 16:12:10 +02:00
|
|
|
|
2020-03-17 02:29:24 +01:00
|
|
|
td_api::object_ptr<td_api::updateUnreadChatCount> get_update_unread_chat_count_object(const DialogList &list) const;
|
2018-10-09 16:12:10 +02:00
|
|
|
|
2020-05-29 08:08:01 +02:00
|
|
|
void save_unread_chat_count(const DialogList &list);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void set_dialog_last_read_inbox_message_id(Dialog *d, MessageId message_id, int32 server_unread_count,
|
|
|
|
int32 local_unread_count, bool force_update, const char *source);
|
|
|
|
|
|
|
|
void set_dialog_last_read_outbox_message_id(Dialog *d, MessageId message_id);
|
|
|
|
|
|
|
|
void set_dialog_last_message_id(Dialog *d, MessageId last_message_id, const char *source);
|
|
|
|
|
|
|
|
void set_dialog_first_database_message_id(Dialog *d, MessageId first_database_message_id, const char *source);
|
|
|
|
|
2018-12-15 18:43:20 +01:00
|
|
|
void set_dialog_last_database_message_id(Dialog *d, MessageId last_database_message_id, const char *source,
|
|
|
|
bool is_loaded_from_database = false);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void set_dialog_last_new_message_id(Dialog *d, MessageId last_new_message_id, const char *source);
|
|
|
|
|
|
|
|
void set_dialog_last_clear_history_date(Dialog *d, int32 date, MessageId last_clear_history_message_id,
|
2018-12-15 18:43:20 +01:00
|
|
|
const char *source, bool is_loaded_from_database = false);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-08-10 08:19:08 +02:00
|
|
|
static void set_dialog_unread_mention_count(Dialog *d, int32 unread_mention_count);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void set_dialog_is_empty(Dialog *d, const char *source);
|
|
|
|
|
2020-10-23 13:50:05 +02:00
|
|
|
void remove_dialog_newer_messages(Dialog *d, MessageId from_message_id, const char *source);
|
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
static int32 get_pinned_dialogs_limit(DialogListId dialog_list_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static vector<DialogId> remove_secret_chat_dialog_ids(vector<DialogId> dialog_ids);
|
|
|
|
|
2020-08-02 02:56:45 +02:00
|
|
|
bool set_dialog_is_pinned(DialogId dialog_id, bool is_pinned);
|
2020-05-29 05:57:55 +02:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
bool set_dialog_is_pinned(DialogListId dialog_list_id, Dialog *d, bool is_pinned,
|
|
|
|
bool need_update_dialog_lists = true);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-06-27 23:08:44 +02:00
|
|
|
void set_dialog_is_marked_as_unread(Dialog *d, bool is_marked_as_unread);
|
|
|
|
|
2020-09-20 00:54:40 +02:00
|
|
|
void set_dialog_is_blocked(Dialog *d, bool is_blocked);
|
|
|
|
|
2020-10-20 19:28:37 +02:00
|
|
|
void set_dialog_last_pinned_message_id(Dialog *d, MessageId last_pinned_message_id);
|
2019-02-01 13:19:32 +01:00
|
|
|
|
2020-10-20 19:28:37 +02:00
|
|
|
void drop_dialog_last_pinned_message_id(Dialog *d);
|
2019-02-01 13:19:32 +01:00
|
|
|
|
2020-02-28 19:40:31 +01:00
|
|
|
void repair_dialog_scheduled_messages(Dialog *d);
|
2019-12-04 22:58:59 +01:00
|
|
|
|
2019-12-04 18:51:52 +01:00
|
|
|
void set_dialog_has_scheduled_server_messages(Dialog *d, bool has_scheduled_server_messages);
|
2019-11-25 17:11:24 +01:00
|
|
|
|
2019-12-04 20:43:14 +01:00
|
|
|
void set_dialog_has_scheduled_database_messages(DialogId dialog_id, bool has_scheduled_database_messages);
|
|
|
|
|
|
|
|
void set_dialog_has_scheduled_database_messages_impl(Dialog *d, bool has_scheduled_database_messages);
|
|
|
|
|
2019-08-19 03:51:03 +02:00
|
|
|
void set_dialog_folder_id(Dialog *d, FolderId folder_id);
|
|
|
|
|
2020-07-09 22:14:41 +02:00
|
|
|
void do_set_dialog_folder_id(Dialog *d, FolderId folder_id);
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void toggle_dialog_is_pinned_on_server(DialogId dialog_id, bool is_pinned, uint64 log_event_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void toggle_dialog_is_marked_as_unread_on_server(DialogId dialog_id, bool is_marked_as_unread, uint64 log_event_id);
|
2018-06-27 23:08:44 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void toggle_dialog_is_blocked_on_server(DialogId dialog_id, bool is_blocked, uint64 log_event_id);
|
2020-09-20 02:00:01 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void reorder_pinned_dialogs_on_server(FolderId folder_id, const vector<DialogId> &dialog_ids, uint64 log_event_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void set_dialog_reply_markup(Dialog *d, MessageId message_id);
|
|
|
|
|
|
|
|
void try_restore_dialog_reply_markup(Dialog *d, const Message *m);
|
|
|
|
|
2020-02-18 18:28:16 +01:00
|
|
|
void set_dialog_pinned_message_notification(Dialog *d, MessageId message_id, const char *source);
|
2018-12-25 03:45:36 +01:00
|
|
|
|
2020-02-18 18:28:16 +01:00
|
|
|
void remove_dialog_pinned_message_notification(Dialog *d, const char *source);
|
2019-01-10 20:16:05 +01:00
|
|
|
|
2019-01-10 18:54:46 +01:00
|
|
|
void remove_dialog_mention_notifications(Dialog *d);
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
bool set_dialog_last_notification(DialogId dialog_id, NotificationGroupInfo &group_info, int32 last_notification_date,
|
|
|
|
NotificationId last_notification_id, const char *source);
|
2018-11-12 15:44:42 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static string get_notification_settings_scope_database_key(NotificationSettingsScope scope);
|
|
|
|
|
2018-10-02 01:40:34 +02:00
|
|
|
void save_scope_notification_settings(NotificationSettingsScope scope, const ScopeNotificationSettings &new_settings);
|
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
bool update_dialog_notification_settings(DialogId dialog_id, DialogNotificationSettings *current_settings,
|
|
|
|
const DialogNotificationSettings &new_settings);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
bool update_scope_notification_settings(NotificationSettingsScope scope, ScopeNotificationSettings *current_settings,
|
|
|
|
const ScopeNotificationSettings &new_settings);
|
|
|
|
|
2020-06-02 19:02:25 +02:00
|
|
|
void schedule_dialog_unmute(DialogId dialog_id, bool use_default, int32 mute_until);
|
|
|
|
|
2020-06-05 03:05:43 +02:00
|
|
|
void update_dialog_unmute_timeout(Dialog *d, bool &old_use_default, int32 &old_mute_until, bool new_use_default,
|
2018-04-09 18:30:27 +02:00
|
|
|
int32 new_mute_until);
|
|
|
|
|
2020-06-02 19:21:56 +02:00
|
|
|
void schedule_scope_unmute(NotificationSettingsScope scope, int32 mute_until);
|
|
|
|
|
2020-06-02 19:31:33 +02:00
|
|
|
void update_scope_unmute_timeout(NotificationSettingsScope scope, int32 &old_mute_until, int32 new_mute_until);
|
2018-02-23 16:35:36 +01:00
|
|
|
|
|
|
|
void on_dialog_unmute(DialogId dialog_id);
|
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
void on_scope_unmute(NotificationSettingsScope scope);
|
|
|
|
|
2018-04-28 20:05:04 +02:00
|
|
|
bool update_dialog_silent_send_message(Dialog *d, bool silent_send_message);
|
|
|
|
|
2020-09-18 18:42:31 +02:00
|
|
|
bool is_dialog_action_unneeded(DialogId dialog_id) const;
|
2020-02-22 17:03:52 +01:00
|
|
|
|
2018-03-12 21:33:56 +01:00
|
|
|
void on_send_dialog_action_timeout(DialogId dialog_id);
|
|
|
|
|
2018-03-13 18:48:08 +01:00
|
|
|
void on_active_dialog_action_timeout(DialogId dialog_id);
|
|
|
|
|
2019-01-25 17:12:03 +01:00
|
|
|
void clear_active_dialog_actions(DialogId dialog_id);
|
|
|
|
|
2018-03-14 19:36:28 +01:00
|
|
|
void cancel_user_dialog_action(DialogId dialog_id, const Message *m);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Dialog *get_dialog_by_message_id(MessageId message_id);
|
|
|
|
|
2018-08-05 00:29:53 +02:00
|
|
|
MessageId get_message_id_by_random_id(Dialog *d, int64 random_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-11-17 23:42:15 +01:00
|
|
|
Dialog *add_dialog(DialogId dialog_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-11-17 23:42:15 +01:00
|
|
|
Dialog *add_new_dialog(unique_ptr<Dialog> &&d, bool is_loaded_from_database);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-04-04 21:30:10 +02:00
|
|
|
void fix_new_dialog(Dialog *d, unique_ptr<Message> &&last_database_message, MessageId last_database_message_id,
|
2018-11-17 22:24:19 +01:00
|
|
|
int64 order, int32 last_clear_history_date, MessageId last_clear_history_message_id,
|
2018-11-17 23:42:15 +01:00
|
|
|
bool is_loaded_from_database);
|
2018-02-13 22:17:00 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void add_dialog_last_database_message(Dialog *d, unique_ptr<Message> &&last_database_message);
|
|
|
|
|
2019-10-10 22:19:26 +02:00
|
|
|
void fix_dialog_action_bar(Dialog *d);
|
|
|
|
|
2019-08-19 03:51:03 +02:00
|
|
|
td_api::object_ptr<td_api::ChatType> get_chat_type_object(DialogId dialog_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-07-09 22:14:41 +02:00
|
|
|
td_api::object_ptr<td_api::ChatActionBar> get_chat_action_bar_object(const Dialog *d,
|
|
|
|
bool hide_unarchive = false) const;
|
2019-10-10 22:19:26 +02:00
|
|
|
|
2020-10-03 20:47:12 +02:00
|
|
|
td_api::object_ptr<td_api::chat> get_chat_object(const Dialog *d) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
bool have_dialog_info(DialogId dialog_id) const;
|
2018-01-21 15:11:09 +01:00
|
|
|
bool have_dialog_info_force(DialogId dialog_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Dialog *get_dialog(DialogId dialog_id);
|
|
|
|
const Dialog *get_dialog(DialogId dialog_id) const;
|
|
|
|
|
|
|
|
Dialog *get_dialog_force(DialogId dialog_id);
|
|
|
|
|
2018-11-17 22:24:19 +01:00
|
|
|
Dialog *on_load_dialog_from_database(DialogId dialog_id, const BufferSlice &value);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-09-15 03:15:46 +02:00
|
|
|
void on_get_dialogs_from_database(FolderId folder_id, int32 limit, DialogDbGetDialogsResult &&dialogs,
|
2019-08-22 17:24:02 +02:00
|
|
|
Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void send_get_dialog_query(DialogId dialog_id, Promise<Unit> &&promise, uint64 log_event_id = 0);
|
2018-01-16 17:04:36 +01:00
|
|
|
|
|
|
|
void send_search_public_dialogs_query(const string &query, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-10-28 12:25:27 +01:00
|
|
|
void reload_dialog_info_full(DialogId dialog_id);
|
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
vector<DialogId> get_pinned_dialog_ids(DialogListId dialog_list_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
void reload_pinned_dialogs(DialogListId dialog_list_id, Promise<Unit> &&promise);
|
2019-08-06 00:02:09 +02:00
|
|
|
|
2020-05-28 11:05:40 +02:00
|
|
|
double get_dialog_filters_cache_time() const;
|
|
|
|
|
2020-05-15 00:39:28 +02:00
|
|
|
void schedule_dialog_filters_reload(double timeout);
|
|
|
|
|
2020-05-28 11:14:58 +02:00
|
|
|
static void on_reload_dialog_filters_timeout(void *messages_manager_ptr);
|
|
|
|
|
2020-06-04 01:02:17 +02:00
|
|
|
void reload_dialog_filters();
|
|
|
|
|
2020-05-15 00:39:28 +02:00
|
|
|
void on_get_dialog_filters(Result<vector<tl_object_ptr<telegram_api::dialogFilter>>> r_filters, bool dummy);
|
|
|
|
|
2020-05-28 13:34:02 +02:00
|
|
|
bool need_synchronize_dialog_filters() const;
|
|
|
|
|
2020-05-28 14:10:31 +02:00
|
|
|
void synchronize_dialog_filters();
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void update_dialogs_hints(const Dialog *d);
|
|
|
|
void update_dialogs_hints_rating(const Dialog *d);
|
|
|
|
|
2020-05-19 03:03:15 +02:00
|
|
|
td_api::object_ptr<td_api::chatFilter> get_chat_filter_object(const DialogFilter *filter) const;
|
|
|
|
|
2020-05-19 02:02:05 +02:00
|
|
|
void load_dialog_filter(const DialogFilter *filter, bool force, Promise<Unit> &&promise);
|
|
|
|
|
2020-05-19 03:03:15 +02:00
|
|
|
void on_get_recommended_dialog_filters(Result<vector<tl_object_ptr<telegram_api::dialogFilterSuggested>>> result,
|
|
|
|
Promise<td_api::object_ptr<td_api::recommendedChatFilters>> &&promise);
|
|
|
|
|
|
|
|
void on_load_recommended_dialog_filters(Result<Unit> &&result, vector<RecommendedDialogFilter> &&filters,
|
|
|
|
Promise<td_api::object_ptr<td_api::recommendedChatFilters>> &&promise);
|
|
|
|
|
2020-05-27 01:29:40 +02:00
|
|
|
InputDialogId get_input_dialog_id(DialogId dialog_id) const;
|
|
|
|
|
2020-05-27 16:44:13 +02:00
|
|
|
void sort_dialog_filter_input_dialog_ids(DialogFilter *dialog_filter) const;
|
|
|
|
|
2020-05-18 23:47:34 +02:00
|
|
|
Result<unique_ptr<DialogFilter>> create_dialog_filter(DialogFilterId dialog_filter_id,
|
|
|
|
td_api::object_ptr<td_api::chatFilter> filter);
|
2020-05-18 21:26:44 +02:00
|
|
|
|
2020-05-28 14:10:31 +02:00
|
|
|
void update_dialog_filter_on_server(unique_ptr<DialogFilter> &&dialog_filter);
|
2020-05-28 01:07:00 +02:00
|
|
|
|
2020-05-28 14:10:31 +02:00
|
|
|
void on_update_dialog_filter(unique_ptr<DialogFilter> dialog_filter, Status result);
|
2020-05-18 21:26:44 +02:00
|
|
|
|
2020-05-28 14:10:31 +02:00
|
|
|
void delete_dialog_filter_on_server(DialogFilterId dialog_filter_id);
|
2020-05-28 01:11:41 +02:00
|
|
|
|
2020-05-28 14:10:31 +02:00
|
|
|
void on_delete_dialog_filter(DialogFilterId dialog_filter_id, Status result);
|
2020-05-19 00:06:24 +02:00
|
|
|
|
2020-05-28 14:50:54 +02:00
|
|
|
void reorder_dialog_filters_on_server(vector<DialogFilterId> dialog_filter_ids);
|
|
|
|
|
|
|
|
void on_reorder_dialog_filters(vector<DialogFilterId> dialog_filter_ids, Status result);
|
|
|
|
|
2020-05-25 22:52:43 +02:00
|
|
|
void save_dialog_filters();
|
|
|
|
|
2020-06-01 17:05:32 +02:00
|
|
|
void add_dialog_filter(unique_ptr<DialogFilter> dialog_filter, bool at_beginning, const char *source);
|
2020-05-25 21:31:12 +02:00
|
|
|
|
2020-05-26 16:41:35 +02:00
|
|
|
void edit_dialog_filter(unique_ptr<DialogFilter> new_dialog_filter, const char *source);
|
2020-05-25 21:31:12 +02:00
|
|
|
|
|
|
|
void delete_dialog_filter(DialogFilterId dialog_filter_id, const char *source);
|
|
|
|
|
2020-05-28 14:50:54 +02:00
|
|
|
static bool set_dialog_filters_order(vector<unique_ptr<DialogFilter>> &dialog_filters,
|
|
|
|
vector<DialogFilterId> dialog_filter_ids);
|
2020-05-28 01:43:23 +02:00
|
|
|
|
2020-05-25 21:31:12 +02:00
|
|
|
const DialogFilter *get_server_dialog_filter(DialogFilterId dialog_filter_id) const;
|
|
|
|
|
2020-05-18 01:29:28 +02:00
|
|
|
DialogFilter *get_dialog_filter(DialogFilterId dialog_filter_id);
|
|
|
|
const DialogFilter *get_dialog_filter(DialogFilterId dialog_filter_id) const;
|
|
|
|
|
2020-05-28 20:29:38 +02:00
|
|
|
static vector<DialogFilterId> get_dialog_filter_ids(const vector<unique_ptr<DialogFilter>> &dialog_filters);
|
|
|
|
|
2020-05-26 15:05:59 +02:00
|
|
|
static vector<FolderId> get_dialog_filter_folder_ids(const DialogFilter *filter);
|
|
|
|
|
2020-05-21 02:48:54 +02:00
|
|
|
vector<FolderId> get_dialog_list_folder_ids(const DialogList &list) const;
|
|
|
|
|
2020-05-21 03:40:04 +02:00
|
|
|
bool has_dialogs_from_folder(const DialogList &list, const DialogFolder &folder) const;
|
2020-05-20 02:04:52 +02:00
|
|
|
|
2020-05-28 00:15:34 +02:00
|
|
|
bool is_dialog_in_list(const Dialog *d, DialogListId dialog_list_id) const;
|
|
|
|
|
|
|
|
void add_dialog_to_list(Dialog *d, DialogListId dialog_list_id) const;
|
|
|
|
|
|
|
|
void remove_dialog_from_list(Dialog *d, DialogListId dialog_list_id) const;
|
2020-05-20 02:10:30 +02:00
|
|
|
|
2020-05-26 15:21:26 +02:00
|
|
|
bool need_dialog_in_filter(const Dialog *d, const DialogFilter *filter) const;
|
|
|
|
|
2020-05-20 02:10:30 +02:00
|
|
|
bool need_dialog_in_list(const Dialog *d, const DialogList &list) const;
|
2020-05-12 00:57:17 +02:00
|
|
|
|
2020-06-01 22:09:35 +02:00
|
|
|
static bool need_send_update_chat_position(const DialogPositionInList &old_position,
|
|
|
|
const DialogPositionInList &new_position);
|
2020-05-29 02:16:56 +02:00
|
|
|
|
2020-06-01 22:09:35 +02:00
|
|
|
DialogPositionInList get_dialog_position_in_list(const DialogList *list, const Dialog *d, bool actual = false) const;
|
2020-05-09 22:39:11 +02:00
|
|
|
|
2020-06-01 22:09:35 +02:00
|
|
|
std::unordered_map<DialogListId, DialogPositionInList, DialogListIdHash> get_dialog_positions(const Dialog *d) const;
|
2020-05-09 22:39:11 +02:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
vector<DialogListId> get_dialog_list_ids(const Dialog *d) const;
|
2020-05-04 00:47:26 +02:00
|
|
|
DialogListView get_dialog_lists(const Dialog *d);
|
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
DialogList &add_dialog_list(DialogListId dialog_list_id);
|
2020-05-15 15:32:07 +02:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
DialogList *get_dialog_list(DialogListId dialog_list_id);
|
|
|
|
const DialogList *get_dialog_list(DialogListId dialog_list_id) const;
|
2019-08-22 17:24:02 +02:00
|
|
|
|
2020-05-21 03:40:04 +02:00
|
|
|
DialogFolder *get_dialog_folder(FolderId folder_id);
|
|
|
|
const DialogFolder *get_dialog_folder(FolderId folder_id) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
std::pair<int32, vector<DialogParticipant>> search_private_chat_participants(UserId my_user_id, UserId peer_user_id,
|
2018-07-20 02:00:17 +02:00
|
|
|
const string &query, int32 limit,
|
|
|
|
DialogParticipantsFilter filter) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-11-29 18:30:55 +01:00
|
|
|
static unique_ptr<Message> *treap_find_message(unique_ptr<Message> *v, MessageId message_id);
|
|
|
|
static const unique_ptr<Message> *treap_find_message(const unique_ptr<Message> *v, MessageId message_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-11-29 18:30:55 +01:00
|
|
|
static Message *treap_insert_message(unique_ptr<Message> *v, unique_ptr<Message> message);
|
|
|
|
static unique_ptr<Message> treap_delete_message(unique_ptr<Message> *v);
|
2018-11-22 19:27:43 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static Message *get_message(Dialog *d, MessageId message_id);
|
|
|
|
static const Message *get_message(const Dialog *d, MessageId message_id);
|
|
|
|
|
|
|
|
Message *get_message(FullMessageId full_message_id);
|
|
|
|
const Message *get_message(FullMessageId full_message_id) const;
|
|
|
|
|
2019-03-11 14:06:21 +01:00
|
|
|
Message *get_message_force(Dialog *d, MessageId message_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-03-11 14:06:21 +01:00
|
|
|
Message *get_message_force(FullMessageId full_message_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-02-08 13:54:25 +01:00
|
|
|
void get_message_force_from_server(Dialog *d, MessageId message_id, Promise<Unit> &&promise,
|
|
|
|
tl_object_ptr<telegram_api::InputMessage> input_message = nullptr);
|
2018-02-07 00:31:38 +01:00
|
|
|
|
2019-11-29 13:03:03 +01:00
|
|
|
Message *on_get_message_from_database(DialogId dialog_id, Dialog *d, const BufferSlice &value, bool is_scheduled,
|
|
|
|
const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void get_dialog_message_by_date_from_server(const Dialog *d, int32 date, int64 random_id, bool after_database_search,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void on_get_dialog_message_by_date_from_database(DialogId dialog_id, int32 date, int64 random_id,
|
|
|
|
Result<BufferSlice> result, Promise<Unit> promise);
|
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
std::pair<bool, int32> get_dialog_mute_until(DialogId dialog_id, const Dialog *d) const;
|
|
|
|
|
2019-01-29 12:40:56 +01:00
|
|
|
NotificationSettingsScope get_dialog_notification_setting_scope(DialogId dialog_id) const;
|
2018-04-09 18:30:27 +02:00
|
|
|
|
|
|
|
int32 get_scope_mute_until(DialogId dialog_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
DialogNotificationSettings *get_dialog_notification_settings(DialogId dialog_id, bool force);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
ScopeNotificationSettings *get_scope_notification_settings(NotificationSettingsScope scope);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-09-21 09:15:07 +02:00
|
|
|
const ScopeNotificationSettings *get_scope_notification_settings(NotificationSettingsScope scope) const;
|
|
|
|
|
2019-04-07 23:28:45 +02:00
|
|
|
vector<FileId> get_message_file_ids(const Message *m) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-06-05 18:54:33 +02:00
|
|
|
void cancel_upload_message_content_files(const MessageContent *content);
|
|
|
|
|
2019-02-15 17:54:18 +01:00
|
|
|
static void cancel_upload_file(FileId file_id);
|
|
|
|
|
2019-11-29 13:30:48 +01:00
|
|
|
void cancel_send_message_query(DialogId dialog_id, Message *m);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-12-06 18:47:22 +01:00
|
|
|
void cancel_send_deleted_message(DialogId dialog_id, Message *m, bool is_permanently_deleted);
|
2019-11-29 13:52:18 +01:00
|
|
|
|
2020-09-21 00:08:49 +02:00
|
|
|
bool is_discussion_message(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
2020-09-12 16:31:20 +02:00
|
|
|
bool has_message_sender_user_id(DialogId dialog_id, const Message *m) const;
|
|
|
|
|
2020-03-28 00:35:07 +01:00
|
|
|
static bool get_message_disable_web_page_preview(const Message *m);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static int32 get_message_flags(const Message *m);
|
|
|
|
|
2019-03-29 02:43:01 +01:00
|
|
|
static bool is_forward_info_sender_hidden(const MessageForwardInfo *forward_info);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
unique_ptr<MessageForwardInfo> get_message_forward_info(
|
|
|
|
tl_object_ptr<telegram_api::messageFwdHeader> &&forward_header);
|
|
|
|
|
2019-04-15 04:14:41 +02:00
|
|
|
td_api::object_ptr<td_api::messageForwardInfo> get_message_forward_info_object(
|
2018-01-26 20:53:20 +01:00
|
|
|
const unique_ptr<MessageForwardInfo> &forward_info) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-06-20 21:18:53 +02:00
|
|
|
void ttl_read_history(Dialog *d, bool is_outgoing, MessageId from_message_id, MessageId till_message_id,
|
|
|
|
double view_date);
|
|
|
|
void ttl_read_history_impl(DialogId dialog_id, bool is_outgoing, MessageId from_message_id, MessageId till_message_id,
|
|
|
|
double view_date);
|
2019-06-11 01:55:07 +02:00
|
|
|
void ttl_on_view(const Dialog *d, Message *m, double view_date, double now);
|
|
|
|
bool ttl_on_open(Dialog *d, Message *m, double now, bool is_local_read);
|
|
|
|
void ttl_register_message(DialogId dialog_id, const Message *m, double now);
|
|
|
|
void ttl_unregister_message(DialogId dialog_id, const Message *m, double now, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
void ttl_loop(double now);
|
|
|
|
void ttl_update_timeout(double now);
|
2018-01-05 19:37:07 +01:00
|
|
|
|
2019-01-10 18:54:46 +01:00
|
|
|
void on_message_ttl_expired(Dialog *d, Message *m);
|
|
|
|
void on_message_ttl_expired_impl(Dialog *d, Message *m);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void start_up() override;
|
|
|
|
void loop() override;
|
|
|
|
void tear_down() override;
|
|
|
|
|
2020-06-04 01:02:17 +02:00
|
|
|
void create_folders();
|
2019-01-05 23:25:09 +01:00
|
|
|
void init();
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void ttl_db_loop_start(double server_now);
|
|
|
|
void ttl_db_loop(double server_now);
|
|
|
|
void ttl_db_on_result(Result<std::pair<std::vector<std::pair<DialogId, BufferSlice>>, int32>> r_result, bool dummy);
|
|
|
|
|
2019-08-05 11:12:59 +02:00
|
|
|
static Result<MessageLinkInfo> get_message_link_info(Slice url);
|
|
|
|
|
|
|
|
void on_get_message_link_dialog(MessageLinkInfo &&info, Promise<MessageLinkInfo> &&promise);
|
|
|
|
|
2020-09-18 03:14:59 +02:00
|
|
|
void on_get_message_link_message(MessageLinkInfo &&info, DialogId dialog_id, Promise<MessageLinkInfo> &&promise);
|
|
|
|
|
|
|
|
void on_get_message_link_discussion_message(MessageLinkInfo &&info, DialogId comment_dialog_id,
|
|
|
|
Promise<MessageLinkInfo> &&promise);
|
|
|
|
|
2020-11-07 19:08:45 +01:00
|
|
|
void process_discussion_message_impl(telegram_api::object_ptr<telegram_api::messages_discussionMessage> &&result,
|
|
|
|
DialogId dialog_id, MessageId message_id, DialogId expected_dialog_id,
|
|
|
|
MessageId expected_message_id, Promise<vector<FullMessageId>> promise);
|
|
|
|
|
2020-11-07 12:35:33 +01:00
|
|
|
void on_get_discussion_message(DialogId dialog_id, MessageId message_id, vector<FullMessageId> full_message_ids,
|
|
|
|
Promise<MessageThreadInfo> &&promise);
|
|
|
|
|
2020-08-22 09:05:51 +02:00
|
|
|
static MessageId get_first_database_message_id_by_index(const Dialog *d, MessageSearchFilter filter);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_search_dialog_messages_db_result(int64 random_id, DialogId dialog_id, MessageId from_message_id,
|
2020-08-22 09:48:36 +02:00
|
|
|
MessageId first_db_message_id, MessageSearchFilter filter, int32 offset,
|
2020-08-22 09:05:51 +02:00
|
|
|
int32 limit, Result<std::vector<BufferSlice>> r_messages, Promise<> promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-08-21 14:08:47 +02:00
|
|
|
void on_messages_db_fts_result(Result<MessagesDbFtsResult> result, string offset, int32 limit, int64 random_id,
|
|
|
|
Promise<> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_messages_db_calls_result(Result<MessagesDbCallsResult> result, int64 random_id, MessageId first_db_message_id,
|
2020-08-22 09:05:51 +02:00
|
|
|
MessageSearchFilter filter, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_load_active_live_location_full_message_ids_from_database(string value);
|
|
|
|
|
|
|
|
void on_load_active_live_location_messages_finished();
|
|
|
|
|
|
|
|
void try_add_active_live_location(DialogId dialog_id, const Message *m);
|
|
|
|
|
|
|
|
void add_active_live_location(FullMessageId full_message_id);
|
|
|
|
|
|
|
|
bool delete_active_live_location(DialogId dialog_id, const Message *m);
|
|
|
|
|
|
|
|
void save_active_live_locations();
|
|
|
|
|
2019-12-16 02:07:14 +01:00
|
|
|
void on_message_live_location_viewed(Dialog *d, const Message *m);
|
|
|
|
|
|
|
|
void view_message_live_location_on_server(int64 task_id);
|
|
|
|
|
2019-12-16 16:39:40 +01:00
|
|
|
void view_message_live_location_on_server_impl(int64 task_id, FullMessageId full_message_id);
|
|
|
|
|
2019-12-16 02:07:14 +01:00
|
|
|
void on_message_live_location_viewed_on_server(int64 task_id);
|
|
|
|
|
2019-01-03 16:26:44 +01:00
|
|
|
void add_message_file_sources(DialogId dialog_id, const Message *m);
|
|
|
|
|
|
|
|
void remove_message_file_sources(DialogId dialog_id, const Message *m);
|
|
|
|
|
2019-11-30 16:17:34 +01:00
|
|
|
void change_message_files(DialogId dialog_id, const Message *m, const vector<FileId> &old_file_ids);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Result<unique_ptr<ReplyMarkup>> get_dialog_reply_markup(
|
|
|
|
DialogId dialog_id, tl_object_ptr<td_api::ReplyMarkup> &&reply_markup_ptr) const TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
const DialogPhoto *get_dialog_photo(DialogId dialog_id) const;
|
|
|
|
|
|
|
|
string get_dialog_title(DialogId dialog_id) const;
|
|
|
|
|
|
|
|
string get_dialog_username(DialogId dialog_id) const;
|
|
|
|
|
2019-03-20 13:28:06 +01:00
|
|
|
RestrictedRights get_dialog_permissions(DialogId dialog_id) const;
|
2020-02-27 20:39:06 +01:00
|
|
|
|
|
|
|
bool get_dialog_has_scheduled_messages(const Dialog *d) const;
|
2019-03-20 13:28:06 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static int64 get_dialog_order(MessageId message_id, int32 message_date);
|
|
|
|
|
2020-03-19 23:15:15 +01:00
|
|
|
bool is_dialog_sponsored(const Dialog *d) const;
|
|
|
|
|
2020-05-09 22:51:14 +02:00
|
|
|
int64 get_dialog_base_order(const Dialog *d) const;
|
2020-05-04 15:33:42 +02:00
|
|
|
|
|
|
|
int64 get_dialog_private_order(const DialogList *list, const Dialog *d) const;
|
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
td_api::object_ptr<td_api::chatPosition> get_chat_position_object(DialogListId dialog_list_id, const Dialog *d) const;
|
2020-05-08 14:48:25 +02:00
|
|
|
|
|
|
|
vector<td_api::object_ptr<td_api::chatPosition>> get_chat_positions_object(const Dialog *d) const;
|
2019-08-20 19:25:38 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool update_dialog_draft_message(Dialog *d, unique_ptr<DraftMessage> &&draft_message, bool from_update,
|
|
|
|
bool need_update_dialog_pos);
|
|
|
|
|
|
|
|
void save_dialog_draft_message_on_server(DialogId dialog_id);
|
|
|
|
|
|
|
|
void on_saved_dialog_draft_message(DialogId dialog_id, uint64 generation);
|
|
|
|
|
2018-04-28 21:31:42 +02:00
|
|
|
void update_dialog_notification_settings_on_server(DialogId dialog_id, bool from_binlog);
|
2018-04-28 20:05:04 +02:00
|
|
|
|
2020-02-12 23:22:25 +01:00
|
|
|
void send_update_dialog_notification_settings_query(const Dialog *d, Promise<Unit> &&promise);
|
2018-10-02 01:40:34 +02:00
|
|
|
|
2018-04-28 21:50:12 +02:00
|
|
|
void on_updated_dialog_notification_settings(DialogId dialog_id, uint64 generation);
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void update_scope_notification_settings_on_server(NotificationSettingsScope scope, uint64 log_event_id);
|
2018-04-28 21:31:42 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void reset_all_notification_settings_on_server(uint64 log_event_id);
|
2018-04-28 20:05:04 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void change_dialog_report_spam_state_on_server(DialogId dialog_id, bool is_spam_dialog, uint64 log_event_id,
|
2018-04-29 07:58:45 +02:00
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2019-08-27 16:23:01 +02:00
|
|
|
void set_dialog_folder_id_on_server(DialogId dialog_id, bool from_binlog);
|
|
|
|
|
|
|
|
void on_updated_dialog_folder_id(DialogId dialog_id, uint64 generation);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
int64 get_next_pinned_dialog_order();
|
|
|
|
|
2020-03-19 21:52:09 +01:00
|
|
|
bool is_removed_from_dialog_list(const Dialog *d) const;
|
|
|
|
|
2020-05-09 22:39:11 +02:00
|
|
|
void update_dialog_pos(Dialog *d, const char *source, bool need_send_update = true,
|
2020-03-18 17:41:18 +01:00
|
|
|
bool is_loaded_from_database = false);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-09 22:39:11 +02:00
|
|
|
bool set_dialog_order(Dialog *d, int64 new_order, bool need_send_update, bool is_loaded_from_database,
|
2018-11-17 23:42:15 +01:00
|
|
|
const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
void update_dialog_lists(Dialog *d,
|
2020-06-01 22:09:35 +02:00
|
|
|
std::unordered_map<DialogListId, DialogPositionInList, DialogListIdHash> &&old_positions,
|
2020-05-09 22:39:11 +02:00
|
|
|
bool need_send_update, bool is_loaded_from_database, const char *source);
|
|
|
|
|
2019-08-22 17:24:02 +02:00
|
|
|
void update_last_dialog_date(FolderId folder_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-06-07 22:07:46 +02:00
|
|
|
bool do_update_list_last_pinned_dialog_date(DialogList &list) const;
|
|
|
|
|
2020-06-07 22:59:16 +02:00
|
|
|
void update_list_last_pinned_dialog_date(DialogList &list);
|
2020-05-25 23:47:26 +02:00
|
|
|
|
2020-06-07 22:22:33 +02:00
|
|
|
bool do_update_list_last_dialog_date(DialogList &list, const vector<FolderId> &folder_ids) const;
|
|
|
|
|
2020-06-07 22:59:16 +02:00
|
|
|
void update_list_last_dialog_date(DialogList &list);
|
2020-05-20 02:04:52 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void load_notification_settings();
|
|
|
|
|
|
|
|
void set_get_difference_timeout(double timeout);
|
|
|
|
|
|
|
|
void skip_old_pending_update(tl_object_ptr<telegram_api::Update> &&update, int32 new_pts, int32 old_pts,
|
|
|
|
int32 pts_count, const char *source);
|
|
|
|
|
|
|
|
void process_pending_updates();
|
|
|
|
|
|
|
|
void drop_pending_updates();
|
|
|
|
|
|
|
|
static string get_channel_pts_key(DialogId dialog_id);
|
|
|
|
|
|
|
|
int32 load_channel_pts(DialogId dialog_id) const;
|
|
|
|
|
2019-08-27 23:27:12 +02:00
|
|
|
void set_channel_pts(Dialog *d, int32 new_pts, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-11-07 19:08:45 +01:00
|
|
|
bool need_channel_difference_to_add_message(DialogId dialog_id,
|
|
|
|
const tl_object_ptr<telegram_api::Message> &message_ptr);
|
|
|
|
|
|
|
|
void run_after_channel_difference(DialogId dialog_id, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool running_get_channel_difference(DialogId dialog_id) const;
|
|
|
|
|
2019-08-29 02:16:49 +02:00
|
|
|
void on_channel_get_difference_timeout(DialogId dialog_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void get_channel_difference(DialogId dialog_id, int32 pts, bool force, const char *source);
|
|
|
|
|
|
|
|
void do_get_channel_difference(DialogId dialog_id, int32 pts, bool force,
|
|
|
|
tl_object_ptr<telegram_api::InputChannel> &&input_channel, const char *source);
|
|
|
|
|
|
|
|
void process_get_channel_difference_updates(DialogId dialog_id,
|
|
|
|
vector<tl_object_ptr<telegram_api::Message>> &&new_messages,
|
|
|
|
vector<tl_object_ptr<telegram_api::Update>> &&other_updates);
|
|
|
|
|
|
|
|
void on_get_channel_dialog(DialogId dialog_id, MessageId last_message_id, MessageId read_inbox_max_message_id,
|
|
|
|
int32 server_unread_count, int32 unread_mention_count,
|
|
|
|
MessageId read_outbox_max_message_id,
|
|
|
|
vector<tl_object_ptr<telegram_api::Message>> &&messages);
|
|
|
|
|
|
|
|
void after_get_channel_difference(DialogId dialog_id, bool success);
|
|
|
|
|
|
|
|
static void on_channel_get_difference_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
|
|
|
static void on_pending_message_views_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
2019-12-16 16:39:40 +01:00
|
|
|
static void on_pending_message_live_location_view_timeout_callback(void *messages_manager_ptr, int64 task_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static void on_pending_draft_message_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
2018-05-03 14:36:05 +02:00
|
|
|
static void on_pending_read_history_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static void on_pending_updated_dialog_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
|
|
|
static void on_pending_unload_dialog_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
2018-02-23 16:35:36 +01:00
|
|
|
static void on_dialog_unmute_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
2018-03-12 21:33:56 +01:00
|
|
|
static void on_pending_send_dialog_action_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
2018-03-13 18:48:08 +01:00
|
|
|
static void on_active_dialog_action_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
2019-02-26 16:24:46 +01:00
|
|
|
static void on_update_dialog_online_member_count_timeout_callback(void *messages_manager_ptr, int64 dialog_id_int);
|
|
|
|
|
2020-05-21 02:39:45 +02:00
|
|
|
static void on_preload_folder_dialog_list_timeout_callback(void *messages_manager_ptr, int64 folder_id_int);
|
2019-08-22 17:24:02 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void load_secret_thumbnail(FileId thumbnail_file_id);
|
|
|
|
|
|
|
|
static tl_object_ptr<telegram_api::channelAdminLogEventsFilter> get_channel_admin_log_events_filter(
|
|
|
|
const tl_object_ptr<td_api::chatEventLogFilters> &filters);
|
|
|
|
|
|
|
|
tl_object_ptr<td_api::ChatEventAction> get_chat_event_action_object(
|
2019-06-17 18:46:07 +02:00
|
|
|
ChannelId channel_id, tl_object_ptr<telegram_api::ChannelAdminLogEventAction> &&action_ptr);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_upload_media(FileId file_id, tl_object_ptr<telegram_api::InputFile> input_file,
|
|
|
|
tl_object_ptr<telegram_api::InputEncryptedFile> input_encrypted_file);
|
|
|
|
void on_upload_media_error(FileId file_id, Status status);
|
|
|
|
|
|
|
|
void on_load_secret_thumbnail(FileId thumbnail_file_id, BufferSlice thumbnail);
|
|
|
|
void on_upload_thumbnail(FileId thumbnail_file_id, tl_object_ptr<telegram_api::InputFile> thumbnail_input_file);
|
|
|
|
|
|
|
|
void on_upload_dialog_photo(FileId file_id, tl_object_ptr<telegram_api::InputFile> input_file);
|
|
|
|
void on_upload_dialog_photo_error(FileId file_id, Status status);
|
|
|
|
|
2019-01-29 00:41:33 +01:00
|
|
|
void send_edit_dialog_photo_query(DialogId dialog_id, FileId file_id,
|
2019-01-28 23:52:36 +01:00
|
|
|
tl_object_ptr<telegram_api::InputChatPhoto> &&input_chat_photo,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2020-04-28 15:25:56 +02:00
|
|
|
void add_sponsored_dialog(const Dialog *d, DialogSource source);
|
2020-04-02 02:03:17 +02:00
|
|
|
|
2020-04-28 15:25:56 +02:00
|
|
|
void save_sponsored_dialog();
|
|
|
|
|
|
|
|
void set_sponsored_dialog(DialogId dialog_id, DialogSource source);
|
2018-05-08 22:02:15 +02:00
|
|
|
|
2018-09-21 23:33:41 +02:00
|
|
|
static uint64 get_sequence_dispatcher_id(DialogId dialog_id, MessageContentType message_content_type);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Dialog *get_service_notifications_dialog();
|
|
|
|
|
2020-02-13 01:03:50 +01:00
|
|
|
void save_auth_notification_ids();
|
|
|
|
|
2019-11-26 01:32:05 +01:00
|
|
|
static MessageId get_next_message_id(Dialog *d, MessageType type);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static MessageId get_next_local_message_id(Dialog *d);
|
|
|
|
|
|
|
|
static MessageId get_next_yet_unsent_message_id(Dialog *d);
|
|
|
|
|
2020-02-29 18:36:49 +01:00
|
|
|
static MessageId get_next_yet_unsent_scheduled_message_id(Dialog *d, int32 date);
|
2019-12-02 21:29:08 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool add_recently_found_dialog_internal(DialogId dialog_id);
|
|
|
|
|
|
|
|
bool remove_recently_found_dialog_internal(DialogId dialog_id);
|
|
|
|
|
2020-10-12 10:33:16 +02:00
|
|
|
void update_recently_found_dialogs();
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void save_recently_found_dialogs();
|
2020-10-12 10:33:16 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool load_recently_found_dialogs(Promise<Unit> &promise);
|
|
|
|
|
2019-11-30 18:22:44 +01:00
|
|
|
void reget_message_from_server_if_needed(DialogId dialog_id, const Message *m);
|
|
|
|
|
2019-11-30 17:41:23 +01:00
|
|
|
void speculatively_update_channel_participants(DialogId dialog_id, const Message *m);
|
|
|
|
|
2019-11-30 18:04:49 +01:00
|
|
|
void update_sent_message_contents(DialogId dialog_id, const Message *m);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void update_used_hashtags(DialogId dialog_id, const Message *m);
|
|
|
|
|
2019-11-30 17:29:52 +01:00
|
|
|
void update_top_dialogs(DialogId dialog_id, const Message *m);
|
|
|
|
|
2020-08-01 04:54:39 +02:00
|
|
|
void update_forward_count(DialogId dialog_id, MessageId message_id);
|
|
|
|
|
2020-07-10 11:44:02 +02:00
|
|
|
void try_hide_distance(DialogId dialog_id, const Message *m);
|
|
|
|
|
2020-08-19 23:00:42 +02:00
|
|
|
string get_message_search_text(const Message *m) const;
|
2018-09-27 21:44:40 +02:00
|
|
|
|
2019-11-29 13:03:03 +01:00
|
|
|
unique_ptr<Message> parse_message(DialogId dialog_id, const BufferSlice &value, bool is_scheduled);
|
2018-10-25 17:00:49 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
unique_ptr<Dialog> parse_dialog(DialogId dialog_id, const BufferSlice &value);
|
|
|
|
|
|
|
|
void load_calls_db_state();
|
|
|
|
void save_calls_db_state();
|
|
|
|
|
2018-05-09 19:14:17 +02:00
|
|
|
static constexpr bool is_debug_message_op_enabled() {
|
|
|
|
return !LOG_IS_STRIPPED(ERROR) && false;
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static void dump_debug_message_op(const Dialog *d, int priority = 0);
|
|
|
|
|
2018-04-13 18:10:24 +02:00
|
|
|
static void add_message_dependencies(Dependencies &dependencies, DialogId dialog_id, const Message *m);
|
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
void save_send_message_log_event(DialogId dialog_id, const Message *m);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_change_dialog_report_spam_state_on_server_log_event(DialogId dialog_id, bool is_spam_dialog);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_delete_messages_from_server_log_event(DialogId dialog_id, const vector<MessageId> &message_ids,
|
|
|
|
bool revoke);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_delete_scheduled_messages_from_server_log_event(DialogId dialog_id, const vector<MessageId> &message_ids);
|
2019-11-29 13:03:03 +01:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_delete_dialog_history_from_server_log_event(DialogId dialog_id, MessageId max_message_id,
|
|
|
|
bool remove_from_dialog_list, bool revoke);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-10-18 00:26:36 +02:00
|
|
|
uint64 save_block_message_sender_from_replies_on_server_log_event(MessageId message_id, bool delete_message,
|
|
|
|
bool delete_all_messages, bool report_spam);
|
2020-09-24 14:29:34 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_delete_all_channel_messages_from_user_on_server_log_event(ChannelId channel_id, UserId user_id);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_read_all_dialog_mentions_on_server_log_event(DialogId dialog_id);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_toggle_dialog_is_pinned_on_server_log_event(DialogId dialog_id, bool is_pinned);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_reorder_pinned_dialogs_on_server_log_event(FolderId folder_id, const vector<DialogId> &dialog_ids);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_toggle_dialog_is_marked_as_unread_on_server_log_event(DialogId dialog_id, bool is_marked_as_unread);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_toggle_dialog_is_blocked_on_server_log_event(DialogId dialog_id, bool is_blocked);
|
2020-09-20 02:00:01 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_read_message_contents_on_server_log_event(DialogId dialog_id, const vector<MessageId> &message_ids);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_update_scope_notification_settings_on_server_log_event(NotificationSettingsScope scope);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_reset_all_notification_settings_on_server_log_event();
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_get_dialog_from_server_log_event(DialogId dialog_id);
|
2018-10-02 01:01:17 +02:00
|
|
|
|
2020-09-22 01:15:09 +02:00
|
|
|
uint64 save_forward_messages_log_event(DialogId to_dialog_id, DialogId from_dialog_id,
|
|
|
|
const vector<Message *> &messages, const vector<MessageId> &message_ids);
|
2018-10-02 01:40:34 +02:00
|
|
|
|
2020-10-23 00:56:06 +02:00
|
|
|
uint64 save_unpin_all_dialog_messages_on_server_log_event(DialogId dialog_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void suffix_load_loop(Dialog *d);
|
|
|
|
void suffix_load_update_first_message_id(Dialog *d);
|
|
|
|
void suffix_load_query_ready(DialogId dialog_id);
|
|
|
|
void suffix_load_add_query(Dialog *d, std::pair<Promise<>, std::function<bool(const Message *)>> query);
|
|
|
|
void suffix_load_till_date(Dialog *d, int32 date, Promise<> promise);
|
|
|
|
void suffix_load_till_message_id(Dialog *d, MessageId message_id, Promise<> promise);
|
|
|
|
|
2019-09-07 01:07:56 +02:00
|
|
|
Result<string> get_login_button_url(DialogId dialog_id, MessageId message_id, int32 button_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Result<ServerMessageId> get_invoice_message_id(FullMessageId full_message_id);
|
|
|
|
|
|
|
|
bool is_broadcast_channel(DialogId dialog_id) const;
|
|
|
|
|
2020-10-12 09:56:01 +02:00
|
|
|
bool is_deleted_secret_chat(const Dialog *d) const;
|
|
|
|
|
2019-12-03 18:26:09 +01:00
|
|
|
static int32 get_message_schedule_date(const Message *m);
|
|
|
|
|
2020-11-07 22:38:13 +01:00
|
|
|
static DialogId get_message_original_sender(const Message *m);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 recently_found_dialogs_loaded_ = 0; // 0 - not loaded, 1 - load request was sent, 2 - loaded
|
2018-12-12 00:48:56 +01:00
|
|
|
MultiPromiseActor resolve_recently_found_dialogs_multipromise_{"ResolveRecentlyFoundDialogsMultiPromiseActor"};
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
vector<DialogId> recently_found_dialog_ids_;
|
|
|
|
|
|
|
|
class UploadMediaCallback;
|
|
|
|
class UploadThumbnailCallback;
|
|
|
|
class UploadDialogPhotoCallback;
|
|
|
|
|
|
|
|
std::shared_ptr<UploadMediaCallback> upload_media_callback_;
|
|
|
|
std::shared_ptr<UploadThumbnailCallback> upload_thumbnail_callback_;
|
|
|
|
std::shared_ptr<UploadDialogPhotoCallback> upload_dialog_photo_callback_;
|
|
|
|
|
|
|
|
int32 accumulated_pts_count_ = 0;
|
|
|
|
int32 accumulated_pts_ = -1;
|
|
|
|
Timeout pts_gap_timeout_;
|
|
|
|
|
|
|
|
std::unordered_map<FileId, std::pair<FullMessageId, FileId>, FileIdHash>
|
|
|
|
being_uploaded_files_; // file_id -> message, thumbnail_file_id
|
|
|
|
struct UploadedThumbnailInfo {
|
|
|
|
FullMessageId full_message_id;
|
|
|
|
FileId file_id; // original file file_id
|
|
|
|
tl_object_ptr<telegram_api::InputFile> input_file; // original file InputFile
|
|
|
|
};
|
|
|
|
std::unordered_map<FileId, UploadedThumbnailInfo, FileIdHash> being_uploaded_thumbnails_; // thumbnail_file_id -> ...
|
|
|
|
struct UploadedSecretThumbnailInfo {
|
|
|
|
FullMessageId full_message_id;
|
|
|
|
FileId file_id; // original file file_id
|
|
|
|
tl_object_ptr<telegram_api::InputEncryptedFile> input_file; // original file InputEncryptedFile
|
|
|
|
};
|
|
|
|
std::unordered_map<FileId, UploadedSecretThumbnailInfo, FileIdHash>
|
|
|
|
being_loaded_secret_thumbnails_; // thumbnail_file_id -> ...
|
|
|
|
|
|
|
|
// TTL
|
|
|
|
class TtlNode : private HeapNode {
|
|
|
|
public:
|
|
|
|
TtlNode(DialogId dialog_id, MessageId message_id) : full_message_id(dialog_id, message_id) {
|
|
|
|
}
|
|
|
|
|
|
|
|
FullMessageId full_message_id;
|
|
|
|
|
|
|
|
HeapNode *as_heap_node() const {
|
|
|
|
return const_cast<HeapNode *>(static_cast<const HeapNode *>(this));
|
|
|
|
}
|
|
|
|
static TtlNode *from_heap_node(HeapNode *node) {
|
|
|
|
return static_cast<TtlNode *>(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const TtlNode &other) const {
|
|
|
|
return full_message_id == other.full_message_id;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
struct TtlNodeHash {
|
|
|
|
std::size_t operator()(const TtlNode &ttl_node) const {
|
|
|
|
return FullMessageIdHash()(ttl_node.full_message_id);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
std::unordered_set<TtlNode, TtlNodeHash> ttl_nodes_;
|
|
|
|
KHeap<double> ttl_heap_;
|
|
|
|
Slot ttl_slot_;
|
|
|
|
|
2020-08-27 00:52:59 +02:00
|
|
|
enum YieldType : int32 { None, TtlDb }; // None must be first
|
2019-02-10 01:45:15 +01:00
|
|
|
int32 ttl_db_expires_from_;
|
|
|
|
int32 ttl_db_expires_till_;
|
2018-12-31 20:04:05 +01:00
|
|
|
bool ttl_db_has_query_;
|
|
|
|
Slot ttl_db_slot_;
|
|
|
|
|
|
|
|
std::unordered_set<int64> message_random_ids_;
|
|
|
|
std::unordered_map<int64, FullMessageId> being_sent_messages_; // message_random_id -> message
|
|
|
|
|
|
|
|
std::unordered_map<FullMessageId, MessageId, FullMessageIdHash>
|
2019-12-05 18:34:19 +01:00
|
|
|
update_message_ids_; // new_message_id -> temporary_id
|
|
|
|
std::unordered_map<DialogId, std::unordered_map<ScheduledServerMessageId, MessageId, ScheduledServerMessageIdHash>,
|
|
|
|
DialogIdHash>
|
2020-04-22 11:48:52 +02:00
|
|
|
update_scheduled_message_ids_; // new_message_id -> temporary_id
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-08-05 00:29:53 +02:00
|
|
|
const char *debug_add_message_to_dialog_fail_reason_ = "";
|
2018-02-02 17:51:24 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
struct UploadedDialogPhotoInfo {
|
|
|
|
DialogId dialog_id;
|
2020-07-08 18:40:23 +02:00
|
|
|
double main_frame_timestamp;
|
|
|
|
bool is_animation;
|
|
|
|
bool is_reupload;
|
|
|
|
Promise<Unit> promise;
|
|
|
|
|
|
|
|
UploadedDialogPhotoInfo(DialogId dialog_id, double main_frame_timestamp, bool is_animation, bool is_reupload,
|
|
|
|
Promise<Unit> promise)
|
|
|
|
: dialog_id(dialog_id)
|
|
|
|
, main_frame_timestamp(main_frame_timestamp)
|
|
|
|
, is_animation(is_animation)
|
|
|
|
, is_reupload(is_reupload)
|
|
|
|
, promise(std::move(promise)) {
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
2020-05-07 02:43:11 +02:00
|
|
|
std::unordered_map<FileId, UploadedDialogPhotoInfo, FileIdHash> being_uploaded_dialog_photos_; // file_id -> ...
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
struct PendingMessageGroupSend {
|
|
|
|
DialogId dialog_id;
|
|
|
|
size_t finished_count = 0;
|
|
|
|
vector<MessageId> message_ids;
|
|
|
|
vector<bool> is_finished;
|
|
|
|
vector<Status> results;
|
|
|
|
};
|
|
|
|
std::unordered_map<int64, PendingMessageGroupSend> pending_message_group_sends_; // media_album_id -> ...
|
|
|
|
|
|
|
|
std::unordered_map<MessageId, DialogId, MessageIdHash> message_id_to_dialog_id_;
|
|
|
|
std::unordered_map<MessageId, DialogId, MessageIdHash> last_clear_history_message_id_to_dialog_id_;
|
|
|
|
|
|
|
|
std::unordered_map<int64, DialogId> created_dialogs_; // random_id -> dialog_id
|
|
|
|
std::unordered_map<DialogId, Promise<Unit>, DialogIdHash> pending_created_dialogs_; // dialog_id -> promise
|
|
|
|
|
|
|
|
bool running_get_difference_ = false; // true after before_get_difference and false after after_get_difference
|
|
|
|
|
|
|
|
std::unordered_map<DialogId, unique_ptr<Dialog>, DialogIdHash> dialogs_;
|
|
|
|
std::multimap<int32, PendingPtsUpdate> pending_updates_;
|
|
|
|
std::multimap<int32, PendingPtsUpdate> postponed_pts_updates_;
|
|
|
|
|
|
|
|
std::unordered_set<DialogId, DialogIdHash>
|
|
|
|
loaded_dialogs_; // dialogs loaded from database, but not added to dialogs_
|
|
|
|
|
|
|
|
std::unordered_set<DialogId, DialogIdHash> postponed_chat_read_inbox_updates_;
|
2019-02-27 00:54:15 +01:00
|
|
|
|
|
|
|
struct PendingGetMessageRequest {
|
|
|
|
MessageId message_id;
|
|
|
|
Promise<Unit> promise;
|
|
|
|
tl_object_ptr<telegram_api::InputMessage> input_message;
|
|
|
|
|
|
|
|
PendingGetMessageRequest(MessageId message_id, Promise<Unit> promise,
|
|
|
|
tl_object_ptr<telegram_api::InputMessage> input_message)
|
|
|
|
: message_id(message_id), promise(std::move(promise)), input_message(std::move(input_message)) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-01-16 17:04:36 +01:00
|
|
|
std::unordered_map<string, vector<Promise<Unit>>> search_public_dialogs_queries_;
|
2018-01-16 19:56:59 +01:00
|
|
|
std::unordered_map<string, vector<DialogId>> found_public_dialogs_; // TODO time bound cache
|
|
|
|
std::unordered_map<string, vector<DialogId>> found_on_server_dialogs_; // TODO time bound cache
|
2018-01-16 17:04:36 +01:00
|
|
|
|
2019-04-01 21:38:17 +02:00
|
|
|
struct CommonDialogs {
|
|
|
|
vector<DialogId> dialog_ids;
|
|
|
|
double received_date = 0;
|
2020-09-19 23:28:26 +02:00
|
|
|
int32 total_count = 0;
|
2019-04-01 21:38:17 +02:00
|
|
|
bool is_outdated = false;
|
|
|
|
};
|
|
|
|
std::unordered_map<UserId, CommonDialogs, UserIdHash> found_common_dialogs_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-20 02:29:00 +02:00
|
|
|
std::unordered_map<int64, std::pair<int32, vector<DialogId>>>
|
|
|
|
found_blocked_dialogs_; // random_id -> [total_count, [dialog_id]...]
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
std::unordered_map<int64, FullMessageId> get_dialog_message_by_date_results_;
|
|
|
|
|
|
|
|
std::unordered_map<int64, std::pair<int32, vector<MessageId>>>
|
2020-09-29 12:51:18 +02:00
|
|
|
found_dialog_messages_; // random_id -> [total_count, [message_id]...]
|
|
|
|
std::unordered_map<int64, DialogId> found_dialog_messages_dialog_id_; // random_id -> dialog_id
|
2018-12-31 20:04:05 +01:00
|
|
|
std::unordered_map<int64, std::pair<int32, vector<FullMessageId>>>
|
|
|
|
found_messages_; // random_id -> [total_count, [full_message_id]...]
|
|
|
|
std::unordered_map<int64, std::pair<int32, vector<FullMessageId>>>
|
|
|
|
found_call_messages_; // random_id -> [total_count, [full_message_id]...]
|
|
|
|
std::unordered_map<int64, std::pair<int32, vector<MessageId>>>
|
|
|
|
found_dialog_recent_location_messages_; // random_id -> [total_count, [message_id]...]
|
|
|
|
|
2020-08-21 13:47:43 +02:00
|
|
|
std::unordered_map<int64, FoundMessages> found_fts_messages_; // random_id -> FoundMessages
|
|
|
|
std::unordered_map<int64, FoundMessages> found_message_public_forwards_; // random_id -> FoundMessages
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-09-14 00:39:34 +02:00
|
|
|
struct PublicMessageLinks {
|
|
|
|
std::unordered_map<MessageId, std::pair<string, string>, MessageIdHash> links_;
|
|
|
|
};
|
|
|
|
std::unordered_map<DialogId, PublicMessageLinks, DialogIdHash> public_message_links_[2];
|
2018-01-16 22:27:16 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
std::unordered_map<int64, tl_object_ptr<td_api::chatEvents>> chat_events_; // random_id -> chat events
|
|
|
|
|
|
|
|
std::unordered_map<int64, tl_object_ptr<td_api::gameHighScores>> game_high_scores_; // random_id -> high scores
|
|
|
|
|
2018-05-03 16:16:04 +02:00
|
|
|
std::unordered_map<DialogId, vector<Promise<Unit>>, DialogIdHash> get_dialog_notification_settings_queries_;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
std::unordered_map<DialogId, vector<Promise<Unit>>, DialogIdHash> get_dialog_queries_;
|
2020-09-22 01:15:09 +02:00
|
|
|
std::unordered_map<DialogId, uint64, DialogIdHash> get_dialog_query_log_event_id_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
std::unordered_map<FullMessageId, int32, FullMessageIdHash> replied_by_yet_unsent_messages_;
|
|
|
|
|
2018-03-13 18:48:08 +01:00
|
|
|
struct ActiveDialogAction {
|
2020-09-18 19:15:12 +02:00
|
|
|
MessageId top_thread_message_id;
|
2018-03-13 18:48:08 +01:00
|
|
|
UserId user_id;
|
2020-10-01 18:28:10 +02:00
|
|
|
DialogAction action;
|
2018-03-13 18:48:08 +01:00
|
|
|
double start_time;
|
|
|
|
|
2020-10-01 18:28:10 +02:00
|
|
|
ActiveDialogAction(MessageId top_thread_message_id, UserId user_id, DialogAction action, double start_time)
|
|
|
|
: top_thread_message_id(top_thread_message_id), user_id(user_id), action(action), start_time(start_time) {
|
2018-03-13 18:48:08 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::unordered_map<DialogId, std::vector<ActiveDialogAction>, DialogIdHash> active_dialog_actions_;
|
|
|
|
|
2018-04-09 18:30:27 +02:00
|
|
|
ScopeNotificationSettings users_notification_settings_;
|
|
|
|
ScopeNotificationSettings chats_notification_settings_;
|
2019-01-29 12:40:56 +01:00
|
|
|
ScopeNotificationSettings channels_notification_settings_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-11-28 17:21:18 +01:00
|
|
|
std::unordered_map<NotificationGroupId, DialogId, NotificationGroupIdHash> notification_group_id_to_dialog_id_;
|
|
|
|
|
2018-06-19 01:31:34 +02:00
|
|
|
uint64 current_message_edit_generation_ = 0;
|
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
std::unordered_set<DialogListId, DialogListIdHash> postponed_unread_message_count_updates_;
|
|
|
|
std::unordered_set<DialogListId, DialogListIdHash> postponed_unread_chat_count_updates_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-03 00:38:11 +02:00
|
|
|
int64 current_pinned_dialog_order_ = static_cast<int64>(MIN_PINNED_DIALOG_DATE) << 32;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-21 18:39:34 +02:00
|
|
|
std::unordered_map<DialogListId, DialogList, DialogListIdHash> dialog_lists_;
|
2020-05-21 03:40:04 +02:00
|
|
|
std::unordered_map<FolderId, DialogFolder, FolderIdHash> dialog_folders_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-28 14:10:31 +02:00
|
|
|
bool are_dialog_filters_being_synchronized_ = false;
|
2020-05-28 11:38:46 +02:00
|
|
|
bool are_dialog_filters_being_reloaded_ = false;
|
|
|
|
bool need_dialog_filters_reload_ = false;
|
2020-06-07 22:45:11 +02:00
|
|
|
bool disable_get_dialog_filter_ = false;
|
2020-06-08 00:22:59 +02:00
|
|
|
bool is_update_chat_filters_sent_ = false;
|
2020-05-15 00:39:28 +02:00
|
|
|
int32 dialog_filters_updated_date_ = 0;
|
2020-05-25 21:31:12 +02:00
|
|
|
vector<unique_ptr<DialogFilter>> server_dialog_filters_;
|
2020-05-15 00:39:28 +02:00
|
|
|
vector<unique_ptr<DialogFilter>> dialog_filters_;
|
2020-06-01 17:05:32 +02:00
|
|
|
vector<RecommendedDialogFilter> recommended_dialog_filters_;
|
2020-06-04 14:31:29 +02:00
|
|
|
vector<Promise<Unit>> dialog_filter_reload_queries_;
|
2020-05-15 00:39:28 +02:00
|
|
|
|
2018-01-28 21:38:55 +01:00
|
|
|
std::unordered_map<DialogId, string, DialogIdHash> active_get_channel_differencies_;
|
2020-09-22 01:15:09 +02:00
|
|
|
std::unordered_map<DialogId, uint64, DialogIdHash> get_channel_difference_to_log_event_id_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-08-01 19:31:20 +02:00
|
|
|
MultiTimeout channel_get_difference_timeout_{"ChannelGetDifferenceTimeout"};
|
|
|
|
MultiTimeout channel_get_difference_retry_timeout_{"ChannelGetDifferenceRetryTimeout"};
|
|
|
|
MultiTimeout pending_message_views_timeout_{"PendingMessageViewsTimeout"};
|
2019-12-16 16:39:40 +01:00
|
|
|
MultiTimeout pending_message_live_location_view_timeout_{"PendingMessageLiveLocationViewTimeout"};
|
2018-08-01 19:31:20 +02:00
|
|
|
MultiTimeout pending_draft_message_timeout_{"PendingDraftMessageTimeout"};
|
|
|
|
MultiTimeout pending_read_history_timeout_{"PendingReadHistoryTimeout"};
|
|
|
|
MultiTimeout pending_updated_dialog_timeout_{"PendingUpdatedDialogTimeout"};
|
|
|
|
MultiTimeout pending_unload_dialog_timeout_{"PendingUnloadDialogTimeout"};
|
|
|
|
MultiTimeout dialog_unmute_timeout_{"DialogUnmuteTimeout"};
|
|
|
|
MultiTimeout pending_send_dialog_action_timeout_{"PendingSendDialogActionTimeout"};
|
|
|
|
MultiTimeout active_dialog_action_timeout_{"ActiveDialogActionTimeout"};
|
2019-02-26 16:24:46 +01:00
|
|
|
MultiTimeout update_dialog_online_member_count_timeout_{"UpdateDialogOnlineMemberCountTimeout"};
|
2020-05-21 02:39:45 +02:00
|
|
|
MultiTimeout preload_folder_dialog_list_timeout_{"PreloadFolderDialogListTimeout"};
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-05-15 00:39:28 +02:00
|
|
|
Timeout reload_dialog_filters_timeout_;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Hints dialogs_hints_; // search dialogs by title and username
|
|
|
|
|
|
|
|
std::unordered_set<FullMessageId, FullMessageIdHash> active_live_location_full_message_ids_;
|
|
|
|
bool are_active_live_location_messages_loaded_ = false;
|
|
|
|
vector<Promise<Unit>> load_active_live_location_messages_queries_;
|
|
|
|
|
2019-12-04 18:06:39 +01:00
|
|
|
std::unordered_map<DialogId, vector<Promise<Unit>>, DialogIdHash> load_scheduled_messages_from_database_queries_;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
struct ResolvedUsername {
|
|
|
|
DialogId dialog_id;
|
|
|
|
double expires_at;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::unordered_map<string, ResolvedUsername> resolved_usernames_;
|
2019-03-15 01:19:10 +01:00
|
|
|
std::unordered_map<string, DialogId> inaccessible_resolved_usernames_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
struct PendingOnGetDialogs {
|
2019-08-22 17:24:02 +02:00
|
|
|
FolderId folder_id;
|
2019-08-19 03:51:03 +02:00
|
|
|
vector<tl_object_ptr<telegram_api::Dialog>> dialogs;
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 total_count;
|
|
|
|
vector<tl_object_ptr<telegram_api::Message>> messages;
|
|
|
|
Promise<Unit> promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
vector<PendingOnGetDialogs> pending_on_get_dialogs_;
|
|
|
|
std::unordered_map<DialogId, PendingOnGetDialogs, DialogIdHash> pending_channel_on_get_dialogs_;
|
|
|
|
|
2020-11-07 19:08:45 +01:00
|
|
|
std::unordered_map<DialogId, vector<Promise<Unit>>, DialogIdHash> run_after_get_channel_difference_;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
ChangesProcessor<unique_ptr<PendingSecretMessage>> pending_secret_messages_;
|
|
|
|
|
|
|
|
std::unordered_map<DialogId, vector<DialogId>, DialogIdHash>
|
|
|
|
pending_add_dialog_last_database_message_dependent_dialogs_;
|
|
|
|
std::unordered_map<DialogId, std::pair<int32, unique_ptr<Message>>, DialogIdHash>
|
|
|
|
pending_add_dialog_last_database_message_; // dialog -> dependency counter + message
|
|
|
|
|
2018-10-01 00:34:06 +02:00
|
|
|
struct CallsDbState {
|
|
|
|
std::array<MessageId, 2> first_calls_database_message_id_by_index;
|
|
|
|
std::array<int32, 2> message_count_by_index;
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
CallsDbState calls_db_state_;
|
|
|
|
|
2019-12-16 02:07:14 +01:00
|
|
|
int64 viewed_live_location_task_id_ = 0;
|
|
|
|
std::unordered_map<int64, FullMessageId> viewed_live_location_tasks_; // task_id -> task
|
|
|
|
|
2020-10-24 01:00:37 +02:00
|
|
|
std::unordered_map<uint64, std::map<MessageId, Promise<Message *>>> yet_unsent_media_queues_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-03-12 21:33:56 +01:00
|
|
|
std::unordered_map<DialogId, NetQueryRef, DialogIdHash> set_typing_query_;
|
|
|
|
|
2019-01-18 19:24:03 +01:00
|
|
|
std::unordered_map<FullMessageId, FileSourceId, FullMessageIdHash> full_message_id_to_file_source_id_;
|
|
|
|
|
2019-11-30 17:29:52 +01:00
|
|
|
std::unordered_map<DialogId, int32, DialogIdHash> last_outgoing_forwarded_message_date_;
|
|
|
|
|
2019-02-26 01:24:33 +01:00
|
|
|
struct OnlineMemberCountInfo {
|
|
|
|
int32 online_member_count = 0;
|
|
|
|
double updated_time = 0;
|
|
|
|
bool is_update_sent = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::unordered_map<DialogId, OnlineMemberCountInfo, DialogIdHash> dialog_online_member_counts_;
|
|
|
|
|
2020-02-13 01:03:50 +01:00
|
|
|
std::unordered_map<string, int32> auth_notification_id_date_;
|
|
|
|
|
2020-02-19 01:09:18 +01:00
|
|
|
std::unordered_map<DialogId, MessageId, DialogIdHash> previous_repaired_read_inbox_max_message_id_;
|
|
|
|
|
2019-12-04 18:06:39 +01:00
|
|
|
uint32 scheduled_messages_sync_generation_ = 1;
|
|
|
|
|
2020-04-30 13:57:01 +02:00
|
|
|
DialogId removed_sponsored_dialog_id_;
|
2018-06-13 23:07:24 +02:00
|
|
|
DialogId sponsored_dialog_id_;
|
2020-04-28 15:25:56 +02:00
|
|
|
DialogSource sponsored_dialog_source_;
|
2018-05-08 22:02:15 +02:00
|
|
|
|
2020-03-07 19:00:10 +01:00
|
|
|
FullMessageId being_readded_message_id_;
|
|
|
|
|
2018-11-17 23:42:15 +01:00
|
|
|
DialogId being_added_dialog_id_;
|
|
|
|
|
2019-03-16 19:30:03 +01:00
|
|
|
DialogId debug_channel_difference_dialog_;
|
|
|
|
|
2018-11-29 12:37:48 +01:00
|
|
|
double start_time_ = 0;
|
2019-01-05 23:25:09 +01:00
|
|
|
bool is_inited_ = false;
|
2018-11-29 12:37:48 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Td *td_;
|
|
|
|
ActorShared<> parent_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|