2018-12-31 20:04:05 +01:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
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
|
|
|
|
|
2023-10-17 13:23:42 +02:00
|
|
|
#include "td/telegram/AccentColorId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/AccessRights.h"
|
2021-06-21 01:08:11 +02:00
|
|
|
#include "td/telegram/BotCommand.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/ChannelId.h"
|
2022-04-04 14:35:09 +02:00
|
|
|
#include "td/telegram/ChannelType.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/ChatId.h"
|
2023-10-18 14:59:25 +02:00
|
|
|
#include "td/telegram/CustomEmojiId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/DialogId.h"
|
2021-02-12 14:53:40 +01:00
|
|
|
#include "td/telegram/DialogInviteLink.h"
|
|
|
|
#include "td/telegram/DialogLocation.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/DialogParticipant.h"
|
2022-08-30 15:02:25 +02:00
|
|
|
#include "td/telegram/EmojiStatus.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/files/FileId.h"
|
2019-01-20 04:34:47 +01:00
|
|
|
#include "td/telegram/files/FileSourceId.h"
|
2023-09-21 18:11:17 +02:00
|
|
|
#include "td/telegram/MessageFullId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/MessageId.h"
|
2024-01-10 15:09:09 +01:00
|
|
|
#include "td/telegram/MessageTtl.h"
|
2020-03-13 23:56:47 +01:00
|
|
|
#include "td/telegram/net/DcId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/Photo.h"
|
2019-10-22 12:40:24 +02:00
|
|
|
#include "td/telegram/PublicDialogType.h"
|
2019-02-25 04:08:18 +01:00
|
|
|
#include "td/telegram/QueryCombiner.h"
|
2023-01-13 12:29:47 +01:00
|
|
|
#include "td/telegram/QueryMerger.h"
|
2021-02-12 14:53:40 +01:00
|
|
|
#include "td/telegram/RestrictionReason.h"
|
2019-09-18 05:55:43 +02:00
|
|
|
#include "td/telegram/StickerSetId.h"
|
2023-07-07 17:06:14 +02:00
|
|
|
#include "td/telegram/StoryId.h"
|
2021-09-18 23:47:05 +02:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/UserId.h"
|
2022-10-12 20:04:18 +02:00
|
|
|
#include "td/telegram/Usernames.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-01-06 20:11:02 +01:00
|
|
|
#include "td/actor/actor.h"
|
2022-07-02 22:32:18 +02:00
|
|
|
#include "td/actor/MultiTimeout.h"
|
2019-01-06 20:11:02 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/common.h"
|
2022-02-07 22:04:34 +01:00
|
|
|
#include "td/utils/FlatHashMap.h"
|
2022-03-11 19:38:48 +01:00
|
|
|
#include "td/utils/FlatHashSet.h"
|
2022-06-27 12:30:18 +02:00
|
|
|
#include "td/utils/Promise.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Status.h"
|
|
|
|
#include "td/utils/StringBuilder.h"
|
2021-02-25 13:56:26 +01:00
|
|
|
#include "td/utils/Time.h"
|
2022-08-04 15:18:41 +02:00
|
|
|
#include "td/utils/WaitFreeHashMap.h"
|
2022-08-20 23:20:57 +02:00
|
|
|
#include "td/utils/WaitFreeHashSet.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2019-01-06 20:11:02 +01:00
|
|
|
struct BinlogEvent;
|
2021-12-22 14:09:34 +01:00
|
|
|
struct MinChannel;
|
2018-12-31 20:04:05 +01:00
|
|
|
class Td;
|
|
|
|
|
2024-04-02 12:06:22 +02:00
|
|
|
class ChatManager final : public Actor {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
2024-04-02 12:06:22 +02:00
|
|
|
ChatManager(Td *td, ActorShared<> parent);
|
|
|
|
ChatManager(const ChatManager &) = delete;
|
|
|
|
ChatManager &operator=(const ChatManager &) = delete;
|
|
|
|
ChatManager(ChatManager &&) = delete;
|
|
|
|
ChatManager &operator=(ChatManager &&) = delete;
|
|
|
|
~ChatManager() final;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-02-28 23:08:45 +01:00
|
|
|
static ChatId get_chat_id(const tl_object_ptr<telegram_api::Chat> &chat);
|
|
|
|
static ChannelId get_channel_id(const tl_object_ptr<telegram_api::Chat> &chat);
|
2022-04-30 20:13:01 +02:00
|
|
|
static DialogId get_dialog_id(const tl_object_ptr<telegram_api::Chat> &chat);
|
2018-02-28 23:08:45 +01:00
|
|
|
|
2023-09-14 17:59:30 +02:00
|
|
|
vector<ChannelId> get_channel_ids(vector<tl_object_ptr<telegram_api::Chat>> &&chats, const char *source);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
// TODO get_input_chat ???
|
|
|
|
|
|
|
|
tl_object_ptr<telegram_api::InputChannel> get_input_channel(ChannelId channel_id) const;
|
|
|
|
|
|
|
|
tl_object_ptr<telegram_api::InputPeer> get_input_peer_chat(ChatId chat_id, AccessRights access_rights) const;
|
|
|
|
bool have_input_peer_chat(ChatId chat_id, AccessRights access_rights) const;
|
|
|
|
|
2024-04-02 02:52:34 +02:00
|
|
|
tl_object_ptr<telegram_api::InputPeer> get_simple_input_peer(DialogId dialog_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<telegram_api::InputPeer> get_input_peer_channel(ChannelId channel_id, AccessRights access_rights) const;
|
|
|
|
bool have_input_peer_channel(ChannelId channel_id, AccessRights access_rights) const;
|
|
|
|
|
2024-03-05 10:47:42 +01:00
|
|
|
bool is_chat_received_from_server(ChatId chat_id) const;
|
|
|
|
bool is_channel_received_from_server(ChannelId channel_id) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
const DialogPhoto *get_chat_dialog_photo(ChatId chat_id) const;
|
|
|
|
const DialogPhoto *get_channel_dialog_photo(ChannelId channel_id) const;
|
|
|
|
|
2023-10-17 14:09:57 +02:00
|
|
|
AccentColorId get_channel_accent_color_id(ChannelId channel_id) const;
|
2023-11-02 20:32:59 +01:00
|
|
|
|
|
|
|
int32 get_chat_accent_color_id_object(ChatId chat_id) const;
|
|
|
|
int32 get_channel_accent_color_id_object(ChannelId channel_id) const;
|
2023-10-17 14:09:57 +02:00
|
|
|
|
2023-10-18 14:59:25 +02:00
|
|
|
CustomEmojiId get_chat_background_custom_emoji_id(ChatId chat_id) const;
|
|
|
|
CustomEmojiId get_channel_background_custom_emoji_id(ChannelId channel_id) const;
|
|
|
|
|
2023-12-17 20:54:55 +01:00
|
|
|
int32 get_chat_profile_accent_color_id_object(ChatId chat_id) const;
|
|
|
|
int32 get_channel_profile_accent_color_id_object(ChannelId channel_id) const;
|
|
|
|
|
|
|
|
CustomEmojiId get_chat_profile_background_custom_emoji_id(ChatId chat_id) const;
|
|
|
|
CustomEmojiId get_channel_profile_background_custom_emoji_id(ChannelId channel_id) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
string get_chat_title(ChatId chat_id) const;
|
|
|
|
string get_channel_title(ChannelId channel_id) const;
|
|
|
|
|
2019-03-20 13:28:06 +01:00
|
|
|
RestrictedRights get_chat_default_permissions(ChatId chat_id) const;
|
|
|
|
RestrictedRights get_channel_default_permissions(ChannelId channel_id) const;
|
|
|
|
|
2023-12-21 18:01:26 +01:00
|
|
|
td_api::object_ptr<td_api::emojiStatus> get_chat_emoji_status_object(ChatId chat_id) const;
|
|
|
|
td_api::object_ptr<td_api::emojiStatus> get_channel_emoji_status_object(ChannelId channel_id) const;
|
|
|
|
|
2024-02-18 23:10:57 +01:00
|
|
|
string get_chat_about(ChatId chat_id);
|
|
|
|
string get_channel_about(ChannelId channel_id);
|
|
|
|
|
2021-12-06 19:43:55 +01:00
|
|
|
bool get_chat_has_protected_content(ChatId chat_id) const;
|
|
|
|
bool get_channel_has_protected_content(ChannelId channel_id) const;
|
2021-11-24 18:03:38 +01:00
|
|
|
|
2023-09-05 17:17:45 +02:00
|
|
|
bool get_channel_stories_hidden(ChannelId channel_id) const;
|
2023-06-28 15:09:44 +02:00
|
|
|
|
2024-03-06 12:46:52 +01:00
|
|
|
bool can_poll_channel_active_stories(ChannelId channel_id) const;
|
|
|
|
|
2024-03-10 01:15:01 +01:00
|
|
|
bool can_use_premium_custom_emoji_in_channel(ChannelId channel_id) const;
|
|
|
|
|
2024-02-24 21:47:30 +01:00
|
|
|
string get_channel_search_text(ChannelId channel_id) const;
|
2022-10-11 19:35:35 +02:00
|
|
|
|
2022-10-12 20:04:18 +02:00
|
|
|
string get_channel_first_username(ChannelId channel_id) const;
|
2024-01-08 17:14:41 +01:00
|
|
|
string get_channel_editable_username(ChannelId channel_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_binlog_chat_event(BinlogEvent &&event);
|
|
|
|
void on_binlog_channel_event(BinlogEvent &&event);
|
|
|
|
|
2019-01-12 04:48:39 +01:00
|
|
|
void on_get_chat(tl_object_ptr<telegram_api::Chat> &&chat, const char *source);
|
|
|
|
void on_get_chats(vector<tl_object_ptr<telegram_api::Chat>> &&chats, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-11-11 20:07:12 +01:00
|
|
|
void on_get_chat_full(tl_object_ptr<telegram_api::ChatFull> &&chat_full, Promise<Unit> &&promise);
|
2021-04-12 03:20:43 +02:00
|
|
|
void on_get_chat_full_failed(ChatId chat_id);
|
|
|
|
void on_get_channel_full_failed(ChannelId channel_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-12-20 14:11:58 +01:00
|
|
|
void on_ignored_restriction_reasons_changed();
|
|
|
|
|
2019-06-12 23:21:30 +02:00
|
|
|
void on_get_chat_participants(tl_object_ptr<telegram_api::ChatParticipants> &&participants, bool from_update);
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_update_chat_add_user(ChatId chat_id, UserId inviter_user_id, UserId user_id, int32 date, int32 version);
|
2019-03-18 03:24:25 +01:00
|
|
|
void on_update_chat_description(ChatId chat_id, string &&description);
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_update_chat_edit_administrator(ChatId chat_id, UserId user_id, bool is_administrator, int32 version);
|
|
|
|
void on_update_chat_delete_user(ChatId chat_id, UserId user_id, int32 version);
|
2019-03-20 14:32:27 +01:00
|
|
|
void on_update_chat_default_permissions(ChatId chat_id, RestrictedRights default_permissions, int32 version);
|
2019-05-12 20:19:03 +02:00
|
|
|
void on_update_chat_pinned_message(ChatId chat_id, MessageId pinned_message_id, int32 version);
|
2024-03-09 21:35:12 +01:00
|
|
|
void on_update_chat_bot_commands(ChatId chat_id, BotCommands &&bot_commands);
|
2024-03-21 22:58:08 +01:00
|
|
|
void on_update_chat_permanent_invite_link(ChatId chat_id, const DialogInviteLink &invite_link);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2023-09-21 13:05:40 +02:00
|
|
|
void on_update_channel_participant_count(ChannelId channel_id, int32 participant_count);
|
2022-10-17 12:12:02 +02:00
|
|
|
void on_update_channel_editable_username(ChannelId channel_id, string &&username);
|
2022-10-12 20:04:18 +02:00
|
|
|
void on_update_channel_usernames(ChannelId channel_id, Usernames &&usernames);
|
2023-09-05 15:50:41 +02:00
|
|
|
void on_update_channel_story_ids(ChannelId channel_id, StoryId max_active_story_id, StoryId max_read_story_id);
|
|
|
|
void on_update_channel_max_read_story_id(ChannelId channel_id, StoryId max_read_story_id);
|
2023-09-05 17:17:45 +02:00
|
|
|
void on_update_channel_stories_hidden(ChannelId channel_id, bool stories_hidden);
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_update_channel_description(ChannelId channel_id, string &&description);
|
2019-09-18 05:55:43 +02:00
|
|
|
void on_update_channel_sticker_set(ChannelId channel_id, StickerSetId sticker_set_id);
|
2024-02-08 13:02:04 +01:00
|
|
|
void on_update_channel_emoji_sticker_set(ChannelId channel_id, StickerSetId sticker_set_id);
|
2024-02-12 15:42:35 +01:00
|
|
|
void on_update_channel_unrestrict_boost_count(ChannelId channel_id, int32 unrestrict_boost_count);
|
2019-09-14 04:35:56 +02:00
|
|
|
void on_update_channel_linked_channel_id(ChannelId channel_id, ChannelId group_channel_id);
|
2019-10-14 18:07:31 +02:00
|
|
|
void on_update_channel_location(ChannelId channel_id, const DialogLocation &location);
|
2020-12-21 20:06:52 +01:00
|
|
|
void on_update_channel_slow_mode_delay(ChannelId channel_id, int32 slow_mode_delay, Promise<Unit> &&promise);
|
2019-11-21 00:41:53 +01:00
|
|
|
void on_update_channel_slow_mode_next_send_date(ChannelId channel_id, int32 slow_mode_next_send_date);
|
2020-12-21 20:06:52 +01:00
|
|
|
void on_update_channel_is_all_history_available(ChannelId channel_id, bool is_all_history_available,
|
|
|
|
Promise<Unit> &&promise);
|
2024-04-02 14:17:31 +02:00
|
|
|
void on_update_channel_can_have_sponsored_messages(ChannelId channel_id, bool can_have_sponsored_messages,
|
|
|
|
Promise<Unit> &&promise);
|
2022-12-20 13:51:37 +01:00
|
|
|
void on_update_channel_has_hidden_participants(ChannelId channel_id, bool has_hidden_participants,
|
|
|
|
Promise<Unit> &&promise);
|
2022-12-27 17:14:37 +01:00
|
|
|
void on_update_channel_has_aggressive_anti_spam_enabled(ChannelId channel_id, bool has_aggressive_anti_spam_enabled,
|
|
|
|
Promise<Unit> &&promise);
|
2023-09-05 17:34:06 +02:00
|
|
|
void on_update_channel_has_pinned_stories(ChannelId channel_id, bool has_pinned_stories);
|
2019-03-20 14:32:27 +01:00
|
|
|
void on_update_channel_default_permissions(ChannelId channel_id, RestrictedRights default_permissions);
|
2019-11-11 17:14:32 +01:00
|
|
|
void on_update_channel_administrator_count(ChannelId channel_id, int32 administrator_count);
|
2024-03-09 21:35:12 +01:00
|
|
|
void on_update_channel_bot_commands(ChannelId channel_id, BotCommands &&bot_commands);
|
2024-03-21 22:58:08 +01:00
|
|
|
void on_update_channel_permanent_invite_link(ChannelId channel_id, const DialogInviteLink &invite_link);
|
2021-02-19 00:16:50 +01:00
|
|
|
|
2019-03-12 15:52:10 +01:00
|
|
|
void speculative_add_channel_participants(ChannelId channel_id, const vector<UserId> &added_user_ids,
|
|
|
|
UserId inviter_user_id, int32 date, bool by_me);
|
2019-03-12 14:20:53 +01:00
|
|
|
|
|
|
|
void speculative_delete_channel_participant(ChannelId channel_id, UserId deleted_user_id, bool by_me);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-11-17 12:01:08 +01:00
|
|
|
void invalidate_channel_full(ChannelId channel_id, bool need_drop_slow_mode_delay, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-11-17 12:18:11 +01:00
|
|
|
bool on_get_channel_error(ChannelId channel_id, const Status &status, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-22 12:40:24 +02:00
|
|
|
void on_get_created_public_channels(PublicDialogType type, vector<tl_object_ptr<telegram_api::Chat>> &&chats);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2024-04-30 13:07:06 +02:00
|
|
|
bool are_created_public_broadcasts_inited() const;
|
|
|
|
|
|
|
|
const vector<ChannelId> &get_created_public_broadcasts() const;
|
|
|
|
|
2019-09-13 19:25:17 +02:00
|
|
|
void on_get_dialogs_for_discussion(vector<tl_object_ptr<telegram_api::Chat>> &&chats);
|
|
|
|
|
2022-09-21 17:55:21 +02:00
|
|
|
void on_get_inactive_channels(vector<tl_object_ptr<telegram_api::Chat>> &&chats, Promise<Unit> &&promise);
|
2019-12-13 15:27:44 +01:00
|
|
|
|
2019-12-13 15:57:00 +01:00
|
|
|
void remove_inactive_channel(ChannelId channel_id);
|
|
|
|
|
2023-09-21 18:11:17 +02:00
|
|
|
void register_message_channels(MessageFullId message_full_id, vector<ChannelId> channel_ids);
|
2023-03-17 16:51:04 +01:00
|
|
|
|
2023-09-21 18:11:17 +02:00
|
|
|
void unregister_message_channels(MessageFullId message_full_id, vector<ChannelId> channel_ids);
|
2023-03-17 16:51:04 +01:00
|
|
|
|
2024-01-23 17:05:39 +01:00
|
|
|
static ChannelId get_unsupported_channel_id();
|
2023-09-17 00:34:13 +02:00
|
|
|
|
2024-02-19 00:15:05 +01:00
|
|
|
void update_chat_online_member_count(ChatId chat_id, bool is_from_server);
|
|
|
|
|
2024-03-02 23:22:49 +01:00
|
|
|
void on_update_channel_bot_user_ids(ChannelId channel_id, vector<UserId> &&bot_user_ids);
|
|
|
|
|
2022-10-17 13:04:22 +02:00
|
|
|
void on_update_channel_username_is_active(ChannelId channel_id, string &&username, bool is_active,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2022-10-17 13:58:47 +02:00
|
|
|
void on_deactivate_channel_usernames(ChannelId channel_id, Promise<Unit> &&promise);
|
|
|
|
|
2022-10-14 14:32:54 +02:00
|
|
|
void on_update_channel_active_usernames_order(ChannelId channel_id, vector<string> &&usernames,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2019-03-18 03:24:25 +01:00
|
|
|
void set_chat_description(ChatId chat_id, const string &description, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void set_channel_username(ChannelId channel_id, const string &username, Promise<Unit> &&promise);
|
|
|
|
|
2022-10-17 13:04:22 +02:00
|
|
|
void toggle_channel_username_is_active(ChannelId channel_id, string &&username, bool is_active,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2022-10-17 13:58:47 +02:00
|
|
|
void disable_all_channel_usernames(ChannelId channel_id, Promise<Unit> &&promise);
|
|
|
|
|
2022-10-14 14:32:54 +02:00
|
|
|
void reorder_channel_usernames(ChannelId channel_id, vector<string> &&usernames, Promise<Unit> &&promise);
|
|
|
|
|
2023-10-18 18:43:14 +02:00
|
|
|
void set_channel_accent_color(ChannelId channel_id, AccentColorId accent_color_id,
|
|
|
|
CustomEmojiId background_custom_emoji_id, Promise<Unit> &&promise);
|
|
|
|
|
2023-12-17 21:34:58 +01:00
|
|
|
void set_channel_profile_accent_color(ChannelId channel_id, AccentColorId profile_accent_color_id,
|
|
|
|
CustomEmojiId profile_background_custom_emoji_id, Promise<Unit> &&promise);
|
|
|
|
|
2023-12-25 12:49:22 +01:00
|
|
|
void set_channel_emoji_status(ChannelId channel_id, const EmojiStatus &emoji_status, Promise<Unit> &&promise);
|
|
|
|
|
2019-09-18 05:55:43 +02:00
|
|
|
void set_channel_sticker_set(ChannelId channel_id, StickerSetId sticker_set_id, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2024-02-08 13:02:04 +01:00
|
|
|
void set_channel_emoji_sticker_set(ChannelId channel_id, StickerSetId sticker_set_id, Promise<Unit> &&promise);
|
|
|
|
|
2024-02-12 15:42:35 +01:00
|
|
|
void set_channel_unrestrict_boost_count(ChannelId channel_id, int32 unrestrict_boost_count, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void toggle_channel_sign_messages(ChannelId channel_id, bool sign_messages, Promise<Unit> &&promise);
|
|
|
|
|
2022-04-29 17:25:29 +02:00
|
|
|
void toggle_channel_join_to_send(ChannelId channel_id, bool joint_to_send, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void toggle_channel_join_request(ChannelId channel_id, bool join_request, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void toggle_channel_is_all_history_available(ChannelId channel_id, bool is_all_history_available,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2024-04-02 14:17:31 +02:00
|
|
|
void toggle_channel_can_have_sponsored_messages(ChannelId channel_id, bool can_have_sponsored_messages,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2022-12-20 13:51:37 +01:00
|
|
|
void toggle_channel_has_hidden_participants(ChannelId channel_id, bool has_hidden_participants,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2022-12-27 17:14:37 +01:00
|
|
|
void toggle_channel_has_aggressive_anti_spam_enabled(ChannelId channel_id, bool has_aggressive_anti_spam_enabled,
|
|
|
|
Promise<Unit> &&promise);
|
2022-11-25 14:06:04 +01:00
|
|
|
|
2022-10-25 10:52:45 +02:00
|
|
|
void toggle_channel_is_forum(ChannelId channel_id, bool is_forum, Promise<Unit> &&promise);
|
|
|
|
|
2021-02-16 23:06:35 +01:00
|
|
|
void convert_channel_to_gigagroup(ChannelId channel_id, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void set_channel_description(ChannelId channel_id, const string &description, Promise<Unit> &&promise);
|
|
|
|
|
2019-09-14 04:35:56 +02:00
|
|
|
void set_channel_discussion_group(DialogId dialog_id, DialogId discussion_dialog_id, Promise<Unit> &&promise);
|
|
|
|
|
2024-02-19 22:43:04 +01:00
|
|
|
void set_channel_location(ChannelId dialog_id, const DialogLocation &location, Promise<Unit> &&promise);
|
2019-10-14 18:07:31 +02:00
|
|
|
|
2019-11-15 14:48:01 +01:00
|
|
|
void set_channel_slow_mode_delay(DialogId dialog_id, int32 slow_mode_delay, Promise<Unit> &&promise);
|
|
|
|
|
2021-11-19 15:12:38 +01:00
|
|
|
void report_channel_spam(ChannelId channel_id, const vector<MessageId> &message_ids, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-11-25 14:38:00 +01:00
|
|
|
void report_channel_anti_spam_false_positive(ChannelId channel_id, MessageId message_id, Promise<Unit> &&promise);
|
|
|
|
|
2024-01-07 23:27:49 +01:00
|
|
|
void delete_chat(ChatId chat_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void delete_channel(ChannelId channel_id, Promise<Unit> &&promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-09-24 08:07:38 +02:00
|
|
|
void get_channel_statistics_dc_id(DialogId dialog_id, bool for_full_statistics, Promise<DcId> &&promise);
|
|
|
|
|
2024-03-17 21:47:47 +01:00
|
|
|
bool can_get_channel_message_statistics(ChannelId channel_id) const;
|
2020-08-01 04:19:54 +02:00
|
|
|
|
2024-03-17 22:03:00 +01:00
|
|
|
bool can_get_channel_story_statistics(ChannelId channel_id) const;
|
2023-11-17 12:58:51 +01:00
|
|
|
|
2024-03-23 21:15:04 +01:00
|
|
|
bool can_convert_channel_to_gigagroup(ChannelId channel_id) const;
|
|
|
|
|
2021-12-03 18:10:30 +01:00
|
|
|
void get_created_public_dialogs(PublicDialogType type, Promise<td_api::object_ptr<td_api::chats>> &&promise,
|
|
|
|
bool from_binlog);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-22 13:06:46 +02:00
|
|
|
void check_created_public_dialogs_limit(PublicDialogType type, Promise<Unit> &&promise);
|
|
|
|
|
2022-05-12 15:34:13 +02:00
|
|
|
void reload_created_public_dialogs(PublicDialogType type, Promise<td_api::object_ptr<td_api::chats>> &&promise);
|
|
|
|
|
2019-09-13 19:25:17 +02:00
|
|
|
vector<DialogId> get_dialogs_for_discussion(Promise<Unit> &&promise);
|
|
|
|
|
2019-12-13 15:27:44 +01:00
|
|
|
vector<DialogId> get_inactive_channels(Promise<Unit> &&promise);
|
|
|
|
|
2024-01-10 15:09:09 +01:00
|
|
|
void create_new_chat(const vector<UserId> &user_ids, const string &title, MessageTtl message_ttl,
|
2024-04-09 15:19:33 +02:00
|
|
|
Promise<td_api::object_ptr<td_api::createdBasicGroupChat>> &&promise);
|
2024-01-10 15:09:09 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool have_chat(ChatId chat_id) const;
|
2023-09-21 17:56:13 +02:00
|
|
|
bool have_chat_force(ChatId chat_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
bool get_chat(ChatId chat_id, int left_tries, Promise<Unit> &&promise);
|
2023-11-08 21:48:27 +01:00
|
|
|
void reload_chat(ChatId chat_id, Promise<Unit> &&promise, const char *source);
|
2021-09-23 17:52:39 +02:00
|
|
|
void load_chat_full(ChatId chat_id, bool force, Promise<Unit> &&promise, const char *source);
|
2020-07-06 14:26:29 +02:00
|
|
|
FileSourceId get_chat_full_file_source_id(ChatId chat_id);
|
2023-07-17 17:22:41 +02:00
|
|
|
void reload_chat_full(ChatId chat_id, Promise<Unit> &&promise, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-04-08 14:35:21 +02:00
|
|
|
int32 get_chat_date(ChatId chat_id) const;
|
2021-10-19 17:11:16 +02:00
|
|
|
int32 get_chat_participant_count(ChatId chat_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
bool get_chat_is_active(ChatId chat_id) const;
|
2020-10-12 10:33:16 +02:00
|
|
|
ChannelId get_chat_migrated_to_channel_id(ChatId chat_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
DialogParticipantStatus get_chat_status(ChatId chat_id) const;
|
2019-03-22 13:23:44 +01:00
|
|
|
DialogParticipantStatus get_chat_permissions(ChatId chat_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
bool is_appointed_chat_administrator(ChatId chat_id) const;
|
2024-02-24 22:45:19 +01:00
|
|
|
const DialogParticipant *get_chat_participant(ChatId chat_id, UserId user_id) const;
|
2024-03-02 01:02:34 +01:00
|
|
|
const vector<DialogParticipant> *get_chat_participants(ChatId chat_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2024-01-10 15:09:09 +01:00
|
|
|
void create_new_channel(const string &title, bool is_forum, bool is_megagroup, const string &description,
|
|
|
|
const DialogLocation &location, bool for_import, MessageTtl message_ttl,
|
|
|
|
Promise<td_api::object_ptr<td_api::chat>> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool have_min_channel(ChannelId channel_id) const;
|
2021-12-22 14:09:34 +01:00
|
|
|
const MinChannel *get_min_channel(ChannelId channel_id) const;
|
2021-12-22 18:15:18 +01:00
|
|
|
void add_min_channel(ChannelId channel_id, const MinChannel &min_channel);
|
2021-12-22 14:09:34 +01:00
|
|
|
|
|
|
|
bool have_channel(ChannelId channel_id) const;
|
2023-09-21 17:56:13 +02:00
|
|
|
bool have_channel_force(ChannelId channel_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
bool get_channel(ChannelId channel_id, int left_tries, Promise<Unit> &&promise);
|
2023-11-08 21:48:27 +01:00
|
|
|
void reload_channel(ChannelId channel_id, Promise<Unit> &&promise, const char *source);
|
2021-09-23 17:52:39 +02:00
|
|
|
void load_channel_full(ChannelId channel_id, bool force, Promise<Unit> &&promise, const char *source);
|
2020-07-06 14:26:29 +02:00
|
|
|
FileSourceId get_channel_full_file_source_id(ChannelId channel_id);
|
|
|
|
void reload_channel_full(ChannelId channel_id, Promise<Unit> &&promise, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-13 19:58:32 +02:00
|
|
|
bool is_channel_public(ChannelId channel_id) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
ChannelType get_channel_type(ChannelId channel_id) const;
|
2022-04-04 14:48:33 +02:00
|
|
|
bool is_broadcast_channel(ChannelId channel_id) const;
|
|
|
|
bool is_megagroup_channel(ChannelId channel_id) const;
|
2022-10-24 17:22:43 +02:00
|
|
|
bool is_forum_channel(ChannelId channel_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 get_channel_date(ChannelId channel_id) const;
|
|
|
|
DialogParticipantStatus get_channel_status(ChannelId channel_id) const;
|
2019-03-22 13:23:44 +01:00
|
|
|
DialogParticipantStatus get_channel_permissions(ChannelId channel_id) const;
|
2022-10-04 16:53:56 +02:00
|
|
|
bool get_channel_is_verified(ChannelId channel_id) const;
|
2024-01-08 11:25:31 +01:00
|
|
|
bool get_channel_is_scam(ChannelId channel_id) const;
|
|
|
|
bool get_channel_is_fake(ChannelId channel_id) const;
|
2019-03-12 20:05:33 +01:00
|
|
|
int32 get_channel_participant_count(ChannelId channel_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
bool get_channel_sign_messages(ChannelId channel_id) const;
|
2020-08-31 12:42:27 +02:00
|
|
|
bool get_channel_has_linked_channel(ChannelId channel_id) const;
|
2023-04-09 20:54:40 +02:00
|
|
|
bool get_channel_join_request(ChannelId channel_id) const;
|
2022-05-15 11:48:22 +02:00
|
|
|
bool get_channel_can_be_deleted(ChannelId channel_id) const;
|
2023-04-09 22:47:47 +02:00
|
|
|
ChannelId get_channel_linked_channel_id(ChannelId channel_id, const char *source);
|
|
|
|
int32 get_channel_slow_mode_delay(ChannelId channel_id, const char *source);
|
|
|
|
bool get_channel_effective_has_hidden_participants(ChannelId channel_id, const char *source);
|
2024-02-11 00:45:18 +01:00
|
|
|
int32 get_channel_my_boost_count(ChannelId channel_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2024-01-08 15:35:24 +01:00
|
|
|
void get_chat_participant(ChatId chat_id, UserId user_id, Promise<DialogParticipant> &&promise);
|
|
|
|
|
2024-01-08 16:44:13 +01:00
|
|
|
void speculative_add_channel_user(ChannelId channel_id, UserId user_id, const DialogParticipantStatus &new_status,
|
|
|
|
const DialogParticipantStatus &old_status);
|
|
|
|
|
2021-09-03 11:27:59 +02:00
|
|
|
int64 get_basic_group_id_object(ChatId chat_id, const char *source) const;
|
2018-01-27 14:57:59 +01:00
|
|
|
|
2018-02-03 00:48:50 +01:00
|
|
|
tl_object_ptr<td_api::basicGroup> get_basic_group_object(ChatId chat_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
tl_object_ptr<td_api::basicGroupFullInfo> get_basic_group_full_info_object(ChatId chat_id) const;
|
|
|
|
|
2021-09-03 11:27:59 +02:00
|
|
|
int64 get_supergroup_id_object(ChannelId channel_id, const char *source) const;
|
2018-01-27 14:57:59 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<td_api::supergroup> get_supergroup_object(ChannelId channel_id) const;
|
|
|
|
|
2018-09-20 20:37:35 +02:00
|
|
|
tl_object_ptr<td_api::supergroupFullInfo> get_supergroup_full_info_object(ChannelId channel_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2023-10-24 14:17:18 +02:00
|
|
|
tl_object_ptr<td_api::chatMember> get_chat_member_object(const DialogParticipant &dialog_participant,
|
|
|
|
const char *source) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-02-26 16:24:46 +01:00
|
|
|
void repair_chat_participants(ChatId chat_id);
|
|
|
|
|
2018-09-21 09:34:15 +02:00
|
|
|
void get_current_state(vector<td_api::object_ptr<td_api::Update>> &updates) const;
|
2018-09-20 20:37:35 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
private:
|
2021-02-12 14:53:40 +01:00
|
|
|
struct Chat {
|
|
|
|
string title;
|
|
|
|
DialogPhoto photo;
|
|
|
|
int32 participant_count = 0;
|
|
|
|
int32 date = 0;
|
|
|
|
int32 version = -1;
|
|
|
|
int32 default_permissions_version = -1;
|
|
|
|
int32 pinned_message_version = -1;
|
|
|
|
ChannelId migrated_to_channel_id;
|
|
|
|
|
|
|
|
DialogParticipantStatus status = DialogParticipantStatus::Banned(0);
|
2023-01-06 12:16:34 +01:00
|
|
|
RestrictedRights default_permissions{false, false, false, false, false, false, false, false, false,
|
2023-10-19 21:37:44 +02:00
|
|
|
false, false, false, false, false, false, false, false, ChannelType::Unknown};
|
2021-02-12 14:53:40 +01:00
|
|
|
|
2021-11-25 09:45:42 +01:00
|
|
|
static constexpr uint32 CACHE_VERSION = 4;
|
2021-02-12 14:53:40 +01:00
|
|
|
uint32 cache_version = 0;
|
|
|
|
|
|
|
|
bool is_active = false;
|
2021-11-25 09:45:42 +01:00
|
|
|
bool noforwards = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
|
|
|
|
bool is_title_changed = true;
|
|
|
|
bool is_photo_changed = true;
|
|
|
|
bool is_default_permissions_changed = true;
|
2021-10-12 18:39:03 +02:00
|
|
|
bool is_status_changed = true;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool is_is_active_changed = true;
|
2021-11-25 09:44:51 +01:00
|
|
|
bool is_noforwards_changed = true;
|
2023-08-07 22:19:28 +02:00
|
|
|
bool is_being_updated = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool is_changed = true; // have new changes that need to be sent to the client and database
|
|
|
|
bool need_save_to_database = true; // have new changes that need only to be saved to the database
|
|
|
|
bool is_update_basic_group_sent = false;
|
|
|
|
|
|
|
|
bool is_repaired = false; // whether cached value is rechecked
|
|
|
|
|
|
|
|
bool is_saved = false; // is current chat version being saved/is saved to the database
|
|
|
|
bool is_being_saved = false; // is current chat being saved to the database
|
|
|
|
|
|
|
|
bool is_received_from_server = false; // true, if the chat was received from the server and not the database
|
|
|
|
|
|
|
|
uint64 log_event_id = 0;
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
|
|
|
// do not forget to update drop_chat_full and on_get_chat_full
|
|
|
|
struct ChatFull {
|
|
|
|
int32 version = -1;
|
|
|
|
UserId creator_user_id;
|
|
|
|
vector<DialogParticipant> participants;
|
|
|
|
|
|
|
|
Photo photo;
|
|
|
|
vector<FileId> registered_photo_file_ids;
|
|
|
|
FileSourceId file_source_id;
|
|
|
|
|
|
|
|
string description;
|
|
|
|
|
|
|
|
DialogInviteLink invite_link;
|
|
|
|
|
2021-06-21 03:01:13 +02:00
|
|
|
vector<BotCommands> bot_commands;
|
|
|
|
|
2021-02-12 14:53:40 +01:00
|
|
|
bool can_set_username = false;
|
|
|
|
|
2023-08-07 22:19:28 +02:00
|
|
|
bool is_being_updated = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool is_changed = true; // have new changes that need to be sent to the client and database
|
|
|
|
bool need_send_update = true; // have new changes that need only to be sent to the client
|
|
|
|
bool need_save_to_database = true; // have new changes that need only to be saved to the database
|
2021-09-07 17:20:34 +02:00
|
|
|
bool is_update_chat_full_sent = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Channel {
|
|
|
|
int64 access_hash = 0;
|
|
|
|
string title;
|
|
|
|
DialogPhoto photo;
|
2023-12-21 19:05:42 +01:00
|
|
|
EmojiStatus emoji_status;
|
|
|
|
EmojiStatus last_sent_emoji_status;
|
2023-10-17 14:20:50 +02:00
|
|
|
AccentColorId accent_color_id;
|
2023-10-18 14:59:25 +02:00
|
|
|
CustomEmojiId background_custom_emoji_id;
|
2023-12-17 20:54:55 +01:00
|
|
|
AccentColorId profile_accent_color_id;
|
|
|
|
CustomEmojiId profile_background_custom_emoji_id;
|
2022-10-12 20:04:18 +02:00
|
|
|
Usernames usernames;
|
2021-02-12 14:53:40 +01:00
|
|
|
vector<RestrictionReason> restriction_reasons;
|
|
|
|
DialogParticipantStatus status = DialogParticipantStatus::Banned(0);
|
2023-01-06 12:16:34 +01:00
|
|
|
RestrictedRights default_permissions{false, false, false, false, false, false, false, false, false,
|
2023-10-19 21:37:44 +02:00
|
|
|
false, false, false, false, false, false, false, false, ChannelType::Unknown};
|
2021-02-12 14:53:40 +01:00
|
|
|
int32 date = 0;
|
|
|
|
int32 participant_count = 0;
|
2023-12-21 18:08:30 +01:00
|
|
|
int32 boost_level = 0;
|
2021-02-12 14:53:40 +01:00
|
|
|
|
2023-09-05 15:50:41 +02:00
|
|
|
double max_active_story_id_next_reload_time = 0.0;
|
|
|
|
StoryId max_active_story_id;
|
|
|
|
StoryId max_read_story_id;
|
|
|
|
|
2022-10-30 10:17:47 +01:00
|
|
|
static constexpr uint32 CACHE_VERSION = 10;
|
2021-02-12 14:53:40 +01:00
|
|
|
uint32 cache_version = 0;
|
|
|
|
|
|
|
|
bool has_linked_channel = false;
|
|
|
|
bool has_location = false;
|
|
|
|
bool sign_messages = false;
|
|
|
|
bool is_slow_mode_enabled = false;
|
2021-11-25 09:45:42 +01:00
|
|
|
bool noforwards = false;
|
2022-05-15 11:48:22 +02:00
|
|
|
bool can_be_deleted = false;
|
2022-04-29 16:54:28 +02:00
|
|
|
bool join_to_send = false;
|
|
|
|
bool join_request = false;
|
2023-09-05 17:17:45 +02:00
|
|
|
bool stories_hidden = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
|
|
|
|
bool is_megagroup = false;
|
2021-02-16 16:27:17 +01:00
|
|
|
bool is_gigagroup = false;
|
2022-10-18 13:23:09 +02:00
|
|
|
bool is_forum = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool is_verified = false;
|
|
|
|
bool is_scam = false;
|
|
|
|
bool is_fake = false;
|
|
|
|
|
|
|
|
bool is_title_changed = true;
|
|
|
|
bool is_username_changed = true;
|
|
|
|
bool is_photo_changed = true;
|
2023-12-21 19:05:42 +01:00
|
|
|
bool is_emoji_status_changed = true;
|
2023-12-16 09:49:26 +01:00
|
|
|
bool is_accent_color_changed = true;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool is_default_permissions_changed = true;
|
|
|
|
bool is_status_changed = true;
|
2023-09-05 17:17:45 +02:00
|
|
|
bool is_stories_hidden_changed = true;
|
2021-12-02 15:12:33 +01:00
|
|
|
bool is_has_location_changed = true;
|
2021-11-25 09:44:51 +01:00
|
|
|
bool is_noforwards_changed = true;
|
2021-12-02 16:10:14 +01:00
|
|
|
bool is_creator_changed = true;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool had_read_access = true;
|
|
|
|
bool was_member = false;
|
2023-08-07 22:19:28 +02:00
|
|
|
bool is_being_updated = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool is_changed = true; // have new changes that need to be sent to the client and database
|
|
|
|
bool need_save_to_database = true; // have new changes that need only to be saved to the database
|
|
|
|
bool is_update_supergroup_sent = false;
|
|
|
|
|
|
|
|
bool is_repaired = false; // whether cached value is rechecked
|
|
|
|
|
|
|
|
bool is_saved = false; // is current channel version being saved/is saved to the database
|
|
|
|
bool is_being_saved = false; // is current channel being saved to the database
|
|
|
|
|
|
|
|
bool is_received_from_server = false; // true, if the channel was received from the server and not the database
|
|
|
|
|
|
|
|
uint64 log_event_id = 0;
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
|
|
|
// do not forget to update invalidate_channel_full and on_get_chat_full
|
|
|
|
struct ChannelFull {
|
|
|
|
Photo photo;
|
|
|
|
vector<FileId> registered_photo_file_ids;
|
|
|
|
FileSourceId file_source_id;
|
|
|
|
|
|
|
|
string description;
|
|
|
|
int32 participant_count = 0;
|
|
|
|
int32 administrator_count = 0;
|
|
|
|
int32 restricted_count = 0;
|
|
|
|
int32 banned_count = 0;
|
2024-02-08 16:51:40 +01:00
|
|
|
int32 boost_count = 0;
|
2024-02-08 17:04:28 +01:00
|
|
|
int32 unrestrict_boost_count = 0;
|
2021-02-12 14:53:40 +01:00
|
|
|
|
|
|
|
DialogInviteLink invite_link;
|
|
|
|
|
2021-06-21 03:01:13 +02:00
|
|
|
vector<BotCommands> bot_commands;
|
|
|
|
|
2021-02-12 14:53:40 +01:00
|
|
|
uint32 speculative_version = 1;
|
|
|
|
uint32 repair_request_version = 0;
|
|
|
|
|
|
|
|
StickerSetId sticker_set_id;
|
2024-02-08 13:02:04 +01:00
|
|
|
StickerSetId emoji_sticker_set_id;
|
2021-02-12 14:53:40 +01:00
|
|
|
|
|
|
|
ChannelId linked_channel_id;
|
|
|
|
|
|
|
|
DialogLocation location;
|
|
|
|
|
|
|
|
DcId stats_dc_id;
|
|
|
|
|
|
|
|
int32 slow_mode_delay = 0;
|
|
|
|
int32 slow_mode_next_send_date = 0;
|
|
|
|
|
|
|
|
MessageId migrated_from_max_message_id;
|
|
|
|
ChatId migrated_from_chat_id;
|
|
|
|
|
|
|
|
vector<UserId> bot_user_ids;
|
|
|
|
|
|
|
|
bool can_get_participants = false;
|
2022-12-19 18:29:33 +01:00
|
|
|
bool has_hidden_participants = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool can_set_username = false;
|
|
|
|
bool can_set_sticker_set = false;
|
|
|
|
bool can_set_location = false;
|
|
|
|
bool can_view_statistics = false;
|
|
|
|
bool is_can_view_statistics_inited = false;
|
2024-04-03 04:13:19 +02:00
|
|
|
bool can_view_revenue = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool is_all_history_available = true;
|
2024-04-02 13:32:00 +02:00
|
|
|
bool can_have_sponsored_messages = true;
|
2022-12-27 17:14:37 +01:00
|
|
|
bool has_aggressive_anti_spam_enabled = false;
|
2022-03-29 11:14:21 +02:00
|
|
|
bool can_be_deleted = false;
|
2023-09-05 17:34:06 +02:00
|
|
|
bool has_pinned_stories = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
|
|
|
|
bool is_slow_mode_next_send_date_changed = true;
|
2023-08-07 22:19:28 +02:00
|
|
|
bool is_being_updated = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
bool is_changed = true; // have new changes that need to be sent to the client and database
|
|
|
|
bool need_send_update = true; // have new changes that need only to be sent to the client
|
|
|
|
bool need_save_to_database = true; // have new changes that need only to be saved to the database
|
2021-09-07 17:20:34 +02:00
|
|
|
bool is_update_channel_full_sent = false;
|
2021-02-12 14:53:40 +01:00
|
|
|
|
|
|
|
double expires_at = 0.0;
|
|
|
|
|
|
|
|
bool is_expired() const {
|
|
|
|
return expires_at < Time::now();
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-02-12 14:53:40 +01:00
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
2019-09-18 01:14:24 +02:00
|
|
|
|
2021-02-12 14:53:40 +01:00
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
2018-12-31 20:04:05 +01:00
|
|
|
class ChatLogEvent;
|
|
|
|
class ChannelLogEvent;
|
|
|
|
|
2024-03-02 23:22:49 +01: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/channel description
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2024-03-13 13:40:19 +01:00
|
|
|
static constexpr int32 MAX_ACTIVE_STORY_ID_RELOAD_TIME = 3600; // some reasonable limit
|
2021-06-12 22:53:14 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr int32 CHAT_FLAG_USER_IS_CREATOR = 1 << 0;
|
|
|
|
static constexpr int32 CHAT_FLAG_USER_HAS_LEFT = 1 << 2;
|
2019-03-15 14:52:55 +01:00
|
|
|
// static constexpr int32 CHAT_FLAG_ADMINISTRATORS_ENABLED = 1 << 3;
|
|
|
|
// static constexpr int32 CHAT_FLAG_IS_ADMINISTRATOR = 1 << 4;
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr int32 CHAT_FLAG_IS_DEACTIVATED = 1 << 5;
|
|
|
|
static constexpr int32 CHAT_FLAG_WAS_MIGRATED = 1 << 6;
|
2020-12-14 15:33:02 +01:00
|
|
|
static constexpr int32 CHAT_FLAG_HAS_ACTIVE_GROUP_CALL = 1 << 23;
|
|
|
|
static constexpr int32 CHAT_FLAG_IS_GROUP_CALL_NON_EMPTY = 1 << 24;
|
2021-12-12 13:12:19 +01:00
|
|
|
static constexpr int32 CHAT_FLAG_NOFORWARDS = 1 << 25;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static constexpr int32 CHANNEL_FLAG_USER_IS_CREATOR = 1 << 0;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_USER_HAS_LEFT = 1 << 2;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_BROADCAST = 1 << 5;
|
2022-10-12 20:04:18 +02:00
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_USERNAME = 1 << 6;
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_VERIFIED = 1 << 7;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_MEGAGROUP = 1 << 8;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_RESTRICTED = 1 << 9;
|
2019-03-15 14:52:55 +01:00
|
|
|
// static constexpr int32 CHANNEL_FLAG_ANYONE_CAN_INVITE = 1 << 10;
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr int32 CHANNEL_FLAG_SIGN_MESSAGES = 1 << 11;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_MIN = 1 << 12;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_ACCESS_HASH = 1 << 13;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_ADMIN_RIGHTS = 1 << 14;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_BANNED_RIGHTS = 1 << 15;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_UNBAN_DATE = 1 << 16;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_PARTICIPANT_COUNT = 1 << 17;
|
2019-06-18 15:41:53 +02:00
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_SCAM = 1 << 19;
|
2019-09-13 03:11:21 +02:00
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_LINKED_CHAT = 1 << 20;
|
2019-10-13 19:58:32 +02:00
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_LOCATION = 1 << 21;
|
2019-11-15 13:46:12 +01:00
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_SLOW_MODE_ENABLED = 1 << 22;
|
2020-11-25 15:04:32 +01:00
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_ACTIVE_GROUP_CALL = 1 << 23;
|
2020-12-05 19:28:57 +01:00
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_GROUP_CALL_NON_EMPTY = 1 << 24;
|
2021-01-21 11:40:22 +01:00
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_FAKE = 1 << 25;
|
2021-02-16 16:27:17 +01:00
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_GIGAGROUP = 1 << 26;
|
2021-12-12 13:12:19 +01:00
|
|
|
static constexpr int32 CHANNEL_FLAG_NOFORWARDS = 1 << 27;
|
2022-04-29 16:54:28 +02:00
|
|
|
static constexpr int32 CHANNEL_FLAG_JOIN_TO_SEND = 1 << 28;
|
|
|
|
static constexpr int32 CHANNEL_FLAG_JOIN_REQUEST = 1 << 29;
|
2022-10-18 13:23:09 +02:00
|
|
|
static constexpr int32 CHANNEL_FLAG_IS_FORUM = 1 << 30;
|
2022-10-12 20:04:18 +02:00
|
|
|
static constexpr int32 CHANNEL_FLAG_HAS_USERNAMES = 1 << 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static constexpr int32 CHANNEL_FULL_EXPIRE_TIME = 60;
|
|
|
|
|
2019-06-17 00:35:12 +02:00
|
|
|
static bool have_input_peer_chat(const Chat *c, AccessRights access_rights);
|
2024-04-02 02:52:34 +02:00
|
|
|
|
2019-09-13 04:40:02 +02:00
|
|
|
bool have_input_peer_channel(const Channel *c, ChannelId channel_id, AccessRights access_rights,
|
|
|
|
bool from_linked = false) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
const Chat *get_chat(ChatId chat_id) const;
|
|
|
|
Chat *get_chat(ChatId chat_id);
|
2023-09-21 17:56:13 +02:00
|
|
|
Chat *get_chat_force(ChatId chat_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Chat *add_chat(ChatId chat_id);
|
|
|
|
|
|
|
|
const ChatFull *get_chat_full(ChatId chat_id) const;
|
|
|
|
ChatFull *get_chat_full(ChatId chat_id);
|
2021-01-16 10:30:48 +01:00
|
|
|
ChatFull *get_chat_full_force(ChatId chat_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-21 16:03:23 +02:00
|
|
|
ChatFull *add_chat_full(ChatId chat_id);
|
|
|
|
|
2019-09-15 04:06:11 +02:00
|
|
|
void send_get_chat_full_query(ChatId chat_id, Promise<Unit> &&promise, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
const Channel *get_channel(ChannelId channel_id) const;
|
|
|
|
Channel *get_channel(ChannelId channel_id);
|
2023-09-21 17:56:13 +02:00
|
|
|
Channel *get_channel_force(ChannelId channel_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-07-08 15:32:05 +02:00
|
|
|
Channel *add_channel(ChannelId channel_id, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
const ChannelFull *get_channel_full(ChannelId channel_id) const;
|
2020-10-31 13:47:40 +01:00
|
|
|
const ChannelFull *get_channel_full_const(ChannelId channel_id) const;
|
2021-08-23 10:10:46 +02:00
|
|
|
ChannelFull *get_channel_full(ChannelId channel_id, bool only_local, const char *source);
|
|
|
|
ChannelFull *get_channel_full_force(ChannelId channel_id, bool only_local, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-21 16:03:23 +02:00
|
|
|
ChannelFull *add_channel_full(ChannelId channel_id);
|
|
|
|
|
2020-07-06 14:26:29 +02:00
|
|
|
void send_get_channel_full_query(ChannelFull *channel_full, ChannelId channel_id, Promise<Unit> &&promise,
|
2019-11-11 20:07:12 +01:00
|
|
|
const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static DialogParticipantStatus get_chat_status(const Chat *c);
|
2019-03-22 16:32:06 +01:00
|
|
|
DialogParticipantStatus get_chat_permissions(const Chat *c) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static ChannelType get_channel_type(const Channel *c);
|
|
|
|
static DialogParticipantStatus get_channel_status(const Channel *c);
|
2024-02-08 21:30:41 +01:00
|
|
|
DialogParticipantStatus get_channel_permissions(ChannelId channel_id, const Channel *c) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
static bool get_channel_sign_messages(const Channel *c);
|
2020-08-31 12:42:27 +02:00
|
|
|
static bool get_channel_has_linked_channel(const Channel *c);
|
2022-05-15 11:48:22 +02:00
|
|
|
static bool get_channel_can_be_deleted(const Channel *c);
|
2022-05-02 14:45:35 +02:00
|
|
|
static bool get_channel_join_to_send(const Channel *c);
|
|
|
|
static bool get_channel_join_request(const Channel *c);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-03-19 16:13:16 +01:00
|
|
|
void on_update_chat_status(Chat *c, ChatId chat_id, DialogParticipantStatus status);
|
2021-10-19 17:11:16 +02:00
|
|
|
static void on_update_chat_default_permissions(Chat *c, ChatId chat_id, RestrictedRights default_permissions,
|
|
|
|
int32 version);
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_update_chat_participant_count(Chat *c, ChatId chat_id, int32 participant_count, int32 version,
|
|
|
|
const string &debug_str);
|
|
|
|
void on_update_chat_photo(Chat *c, ChatId chat_id, tl_object_ptr<telegram_api::ChatPhoto> &&chat_photo_ptr);
|
2022-05-06 11:41:55 +02:00
|
|
|
void on_update_chat_photo(Chat *c, ChatId chat_id, DialogPhoto &&photo, bool invalidate_photo_cache);
|
2021-10-19 17:11:16 +02:00
|
|
|
static void on_update_chat_title(Chat *c, ChatId chat_id, string &&title);
|
|
|
|
static void on_update_chat_active(Chat *c, ChatId chat_id, bool is_active);
|
|
|
|
static void on_update_chat_migrated_to_channel_id(Chat *c, ChatId chat_id, ChannelId migrated_to_channel_id);
|
2021-11-25 09:44:51 +01:00
|
|
|
static void on_update_chat_noforwards(Chat *c, ChatId chat_id, bool noforwards);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-07-06 14:26:29 +02:00
|
|
|
void on_update_chat_full_photo(ChatFull *chat_full, ChatId chat_id, Photo photo);
|
2018-12-31 20:04:05 +01:00
|
|
|
bool on_update_chat_full_participants_short(ChatFull *chat_full, ChatId chat_id, int32 version);
|
|
|
|
void on_update_chat_full_participants(ChatFull *chat_full, ChatId chat_id, vector<DialogParticipant> participants,
|
2019-06-12 23:21:30 +02:00
|
|
|
int32 version, bool from_update);
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_update_chat_full_invite_link(ChatFull *chat_full,
|
2022-04-19 16:43:24 +02:00
|
|
|
tl_object_ptr<telegram_api::ExportedChatInvite> &&invite_link);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_update_channel_photo(Channel *c, ChannelId channel_id,
|
|
|
|
tl_object_ptr<telegram_api::ChatPhoto> &&chat_photo_ptr);
|
2022-05-06 11:41:55 +02:00
|
|
|
void on_update_channel_photo(Channel *c, ChannelId channel_id, DialogPhoto &&photo, bool invalidate_photo_cache);
|
2023-12-21 19:05:42 +01:00
|
|
|
void on_update_channel_emoji_status(Channel *c, ChannelId channel_id, EmojiStatus emoji_status);
|
2023-10-17 14:20:50 +02:00
|
|
|
void on_update_channel_accent_color_id(Channel *c, ChannelId channel_id, AccentColorId accent_color_id);
|
2023-10-18 14:59:25 +02:00
|
|
|
void on_update_channel_background_custom_emoji_id(Channel *c, ChannelId channel_id,
|
|
|
|
CustomEmojiId background_custom_emoji_id);
|
2023-12-17 20:54:55 +01:00
|
|
|
void on_update_channel_profile_accent_color_id(Channel *c, ChannelId channel_id,
|
|
|
|
AccentColorId profile_accent_color_id);
|
|
|
|
void on_update_channel_profile_background_custom_emoji_id(Channel *c, ChannelId channel_id,
|
|
|
|
CustomEmojiId profile_background_custom_emoji_id);
|
2021-10-19 17:11:16 +02:00
|
|
|
static void on_update_channel_title(Channel *c, ChannelId channel_id, string &&title);
|
2022-10-12 20:04:18 +02:00
|
|
|
void on_update_channel_usernames(Channel *c, ChannelId channel_id, Usernames &&usernames);
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_update_channel_status(Channel *c, ChannelId channel_id, DialogParticipantStatus &&status);
|
2021-10-19 17:11:16 +02:00
|
|
|
static void on_update_channel_default_permissions(Channel *c, ChannelId channel_id,
|
|
|
|
RestrictedRights default_permissions);
|
2021-12-02 15:12:33 +01:00
|
|
|
static void on_update_channel_has_location(Channel *c, ChannelId channel_id, bool has_location);
|
2021-11-25 09:44:51 +01:00
|
|
|
static void on_update_channel_noforwards(Channel *c, ChannelId channel_id, bool noforwards);
|
2023-09-05 17:17:45 +02:00
|
|
|
void on_update_channel_stories_hidden(Channel *c, ChannelId channel_id, bool stories_hidden);
|
2023-09-05 15:50:41 +02:00
|
|
|
void on_update_channel_story_ids_impl(Channel *c, ChannelId channel_id, StoryId max_active_story_id,
|
|
|
|
StoryId max_read_story_id);
|
|
|
|
void on_update_channel_max_read_story_id(Channel *c, ChannelId channel_id, StoryId max_read_story_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-07-06 14:26:29 +02:00
|
|
|
void on_update_channel_full_photo(ChannelFull *channel_full, ChannelId channel_id, Photo photo);
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_update_channel_full_invite_link(ChannelFull *channel_full,
|
2022-04-19 16:43:24 +02:00
|
|
|
tl_object_ptr<telegram_api::ExportedChatInvite> &&invite_link);
|
2019-09-13 03:11:21 +02:00
|
|
|
void on_update_channel_full_linked_channel_id(ChannelFull *channel_full, ChannelId channel_id,
|
|
|
|
ChannelId linked_channel_id);
|
2019-10-14 18:07:31 +02:00
|
|
|
void on_update_channel_full_location(ChannelFull *channel_full, ChannelId channel_id, const DialogLocation &location);
|
2019-11-20 19:25:00 +01:00
|
|
|
void on_update_channel_full_slow_mode_delay(ChannelFull *channel_full, ChannelId channel_id, int32 slow_mode_delay,
|
|
|
|
int32 slow_mode_next_send_date);
|
2021-10-19 17:11:16 +02:00
|
|
|
static void on_update_channel_full_slow_mode_next_send_date(ChannelFull *channel_full,
|
|
|
|
int32 slow_mode_next_send_date);
|
|
|
|
static void on_update_channel_full_bot_user_ids(ChannelFull *channel_full, ChannelId channel_id,
|
|
|
|
vector<UserId> &&bot_user_ids);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-12-02 16:10:14 +01:00
|
|
|
void on_channel_status_changed(Channel *c, ChannelId channel_id, const DialogParticipantStatus &old_status,
|
2020-07-07 15:34:47 +02:00
|
|
|
const DialogParticipantStatus &new_status);
|
2022-10-12 20:04:18 +02:00
|
|
|
void on_channel_usernames_changed(const Channel *c, ChannelId channel_id, const Usernames &old_usernames,
|
|
|
|
const Usernames &new_usernames);
|
2020-07-07 15:34:47 +02:00
|
|
|
|
2019-12-23 16:37:11 +01:00
|
|
|
void remove_linked_channel_id(ChannelId channel_id);
|
|
|
|
ChannelId get_linked_channel_id(ChannelId channel_id) const;
|
|
|
|
|
2021-01-05 13:18:15 +01:00
|
|
|
static bool speculative_add_count(int32 &count, int32 delta_count, int32 min_count = 0);
|
2019-03-12 12:52:37 +01:00
|
|
|
|
2021-03-29 21:35:27 +02:00
|
|
|
void speculative_add_channel_participant_count(ChannelId channel_id, int32 delta_participant_count, bool by_me);
|
2019-03-12 14:20:53 +01:00
|
|
|
|
2019-09-18 01:21:29 +02:00
|
|
|
void drop_chat_full(ChatId chat_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-12-01 21:31:10 +01:00
|
|
|
void do_invalidate_channel_full(ChannelFull *channel_full, ChannelId channel_id, bool need_drop_slow_mode_delay);
|
2021-05-09 02:21:18 +02:00
|
|
|
|
2019-03-05 13:49:10 +01:00
|
|
|
void update_chat_online_member_count(const ChatFull *chat_full, ChatId chat_id, bool is_from_server);
|
|
|
|
|
2023-09-21 13:53:33 +02:00
|
|
|
void on_get_chat_empty(telegram_api::chatEmpty &chat, const char *source);
|
|
|
|
void on_get_chat(telegram_api::chat &chat, const char *source);
|
|
|
|
void on_get_chat_forbidden(telegram_api::chatForbidden &chat, const char *source);
|
|
|
|
void on_get_channel(telegram_api::channel &channel, const char *source);
|
|
|
|
void on_get_channel_forbidden(telegram_api::channelForbidden &channel, const char *source);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void save_chat(Chat *c, ChatId chat_id, bool from_binlog);
|
|
|
|
static string get_chat_database_key(ChatId chat_id);
|
|
|
|
static string get_chat_database_value(const Chat *c);
|
|
|
|
void save_chat_to_database(Chat *c, ChatId chat_id);
|
|
|
|
void save_chat_to_database_impl(Chat *c, ChatId chat_id, string value);
|
|
|
|
void on_save_chat_to_database(ChatId chat_id, bool success);
|
|
|
|
void load_chat_from_database(Chat *c, ChatId chat_id, Promise<Unit> promise);
|
|
|
|
void load_chat_from_database_impl(ChatId chat_id, Promise<Unit> promise);
|
2021-07-19 03:27:44 +02:00
|
|
|
void on_load_chat_from_database(ChatId chat_id, string value, bool force);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void save_channel(Channel *c, ChannelId channel_id, bool from_binlog);
|
|
|
|
static string get_channel_database_key(ChannelId channel_id);
|
|
|
|
static string get_channel_database_value(const Channel *c);
|
|
|
|
void save_channel_to_database(Channel *c, ChannelId channel_id);
|
|
|
|
void save_channel_to_database_impl(Channel *c, ChannelId channel_id, string value);
|
|
|
|
void on_save_channel_to_database(ChannelId channel_id, bool success);
|
|
|
|
void load_channel_from_database(Channel *c, ChannelId channel_id, Promise<Unit> promise);
|
|
|
|
void load_channel_from_database_impl(ChannelId channel_id, Promise<Unit> promise);
|
2021-07-19 03:27:44 +02:00
|
|
|
void on_load_channel_from_database(ChannelId channel_id, string value, bool force);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-10-21 11:51:16 +02:00
|
|
|
static void save_chat_full(const ChatFull *chat_full, ChatId chat_id);
|
2019-09-18 01:14:24 +02:00
|
|
|
static string get_chat_full_database_key(ChatId chat_id);
|
|
|
|
static string get_chat_full_database_value(const ChatFull *chat_full);
|
2019-09-19 02:58:54 +02:00
|
|
|
void on_load_chat_full_from_database(ChatId chat_id, string value);
|
2019-09-18 01:14:24 +02:00
|
|
|
|
2021-10-21 11:51:16 +02:00
|
|
|
static void save_channel_full(const ChannelFull *channel_full, ChannelId channel_id);
|
2019-09-18 01:14:24 +02:00
|
|
|
static string get_channel_full_database_key(ChannelId channel_id);
|
|
|
|
static string get_channel_full_database_value(const ChannelFull *channel_full);
|
2021-04-12 03:51:01 +02:00
|
|
|
void on_load_channel_full_from_database(ChannelId channel_id, string value, const char *source);
|
2019-09-18 01:14:24 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void update_chat(Chat *c, ChatId chat_id, bool from_binlog = false, bool from_database = false);
|
|
|
|
void update_channel(Channel *c, ChannelId channel_id, bool from_binlog = false, bool from_database = false);
|
|
|
|
|
2021-09-07 16:41:56 +02:00
|
|
|
void update_chat_full(ChatFull *chat_full, ChatId chat_id, const char *source, bool from_database = false);
|
|
|
|
void update_channel_full(ChannelFull *channel_full, ChannelId channel_id, const char *source,
|
|
|
|
bool from_database = false);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-06-20 17:40:13 +02:00
|
|
|
bool is_chat_full_outdated(const ChatFull *chat_full, const Chat *c, ChatId chat_id, bool only_participants) const;
|
2019-03-14 22:57:09 +01:00
|
|
|
|
2019-10-13 19:58:32 +02:00
|
|
|
static bool is_channel_public(const Channel *c);
|
|
|
|
|
2023-09-20 18:51:17 +02:00
|
|
|
static bool is_suitable_created_public_channel(PublicDialogType type, const Channel *c);
|
|
|
|
|
2021-12-03 13:40:39 +01:00
|
|
|
static void return_created_public_dialogs(Promise<td_api::object_ptr<td_api::chats>> &&promise,
|
|
|
|
const vector<ChannelId> &channel_ids);
|
|
|
|
|
|
|
|
void finish_get_created_public_dialogs(PublicDialogType type, Result<Unit> &&result);
|
|
|
|
|
2021-12-02 15:12:33 +01:00
|
|
|
void update_created_public_channels(Channel *c, ChannelId channel_id);
|
|
|
|
|
2021-12-03 18:10:30 +01:00
|
|
|
void save_created_public_channels(PublicDialogType type);
|
|
|
|
|
2021-01-26 21:59:09 +01:00
|
|
|
bool update_permanent_invite_link(DialogInviteLink &invite_link, DialogInviteLink new_invite_link);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-03-26 00:39:24 +01:00
|
|
|
static const DialogParticipant *get_chat_full_participant(const ChatFull *chat_full, DialogId dialog_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-07-19 03:17:29 +02:00
|
|
|
void finish_get_chat_participant(ChatId chat_id, UserId user_id, Promise<DialogParticipant> &&promise);
|
|
|
|
|
2023-03-17 19:42:34 +01:00
|
|
|
td_api::object_ptr<td_api::updateBasicGroup> get_update_basic_group_object(ChatId chat_id, const Chat *c);
|
|
|
|
|
2020-07-07 17:48:17 +02:00
|
|
|
static td_api::object_ptr<td_api::updateBasicGroup> get_update_unknown_basic_group_object(ChatId chat_id);
|
|
|
|
|
2019-10-13 19:58:32 +02:00
|
|
|
tl_object_ptr<td_api::basicGroup> get_basic_group_object(ChatId chat_id, const Chat *c);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-10-13 19:58:32 +02:00
|
|
|
tl_object_ptr<td_api::basicGroup> get_basic_group_object_const(ChatId chat_id, const Chat *c) const;
|
2018-09-21 09:34:15 +02:00
|
|
|
|
2022-12-20 09:17:51 +01:00
|
|
|
tl_object_ptr<td_api::basicGroupFullInfo> get_basic_group_full_info_object(ChatId chat_id,
|
|
|
|
const ChatFull *chat_full) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2023-09-05 15:50:41 +02:00
|
|
|
bool need_poll_channel_active_stories(const Channel *c, ChannelId channel_id) const;
|
|
|
|
|
|
|
|
static bool get_channel_has_unread_stories(const Channel *c);
|
|
|
|
|
2023-03-17 19:42:34 +01:00
|
|
|
td_api::object_ptr<td_api::updateSupergroup> get_update_supergroup_object(ChannelId channel_id,
|
|
|
|
const Channel *c) const;
|
|
|
|
|
2021-12-22 14:48:23 +01:00
|
|
|
td_api::object_ptr<td_api::updateSupergroup> get_update_unknown_supergroup_object(ChannelId channel_id) const;
|
2020-07-07 17:48:17 +02:00
|
|
|
|
2021-10-19 17:11:16 +02:00
|
|
|
static tl_object_ptr<td_api::supergroup> get_supergroup_object(ChannelId channel_id, const Channel *c);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-12-20 09:17:51 +01:00
|
|
|
Status can_hide_chat_participants(ChatId chat_id) const;
|
|
|
|
|
2022-12-20 09:04:00 +01:00
|
|
|
Status can_hide_channel_participants(ChannelId channel_id, const ChannelFull *channel_full) const;
|
|
|
|
|
2022-12-20 09:17:51 +01:00
|
|
|
Status can_toggle_chat_aggressive_anti_spam(ChatId chat_id) const;
|
|
|
|
|
2022-12-19 11:59:09 +01:00
|
|
|
Status can_toggle_channel_aggressive_anti_spam(ChannelId channel_id, const ChannelFull *channel_full) const;
|
|
|
|
|
2022-12-20 09:27:38 +01:00
|
|
|
tl_object_ptr<td_api::supergroupFullInfo> get_supergroup_full_info_object(ChannelId channel_id,
|
|
|
|
const ChannelFull *channel_full) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-09-13 19:25:17 +02:00
|
|
|
vector<DialogId> get_dialog_ids(vector<tl_object_ptr<telegram_api::Chat>> &&chats, const char *source);
|
|
|
|
|
2022-09-21 17:55:21 +02:00
|
|
|
void on_create_inactive_channels(vector<ChannelId> &&channel_ids, Promise<Unit> &&promise);
|
|
|
|
|
2019-09-13 19:58:09 +02:00
|
|
|
void update_dialogs_for_discussion(DialogId dialog_id, bool is_suitable);
|
|
|
|
|
2020-07-28 01:57:23 +02:00
|
|
|
void get_channel_statistics_dc_id_impl(ChannelId channel_id, bool for_full_statistics, Promise<DcId> &&promise);
|
2020-04-07 22:11:44 +02:00
|
|
|
|
2024-04-02 12:06:22 +02:00
|
|
|
static void on_channel_emoji_status_timeout_callback(void *chat_manager_ptr, int64 channel_id_long);
|
2023-12-21 19:05:42 +01:00
|
|
|
|
2024-04-02 12:06:22 +02:00
|
|
|
static void on_channel_unban_timeout_callback(void *chat_manager_ptr, int64 channel_id_long);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2024-04-02 12:06:22 +02:00
|
|
|
static void on_slow_mode_delay_timeout_callback(void *chat_manager_ptr, int64 channel_id_long);
|
2019-11-20 22:40:34 +01:00
|
|
|
|
2023-12-21 19:05:42 +01:00
|
|
|
void on_channel_emoji_status_timeout(ChannelId channel_id);
|
|
|
|
|
2021-06-10 20:56:05 +02:00
|
|
|
void on_channel_unban_timeout(ChannelId channel_id);
|
|
|
|
|
2019-11-20 22:40:34 +01:00
|
|
|
void on_slow_mode_delay_timeout(ChannelId channel_id);
|
|
|
|
|
2021-07-03 22:51:36 +02:00
|
|
|
void tear_down() final;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Td *td_;
|
|
|
|
ActorShared<> parent_;
|
|
|
|
|
2022-08-04 15:18:41 +02:00
|
|
|
WaitFreeHashMap<ChatId, unique_ptr<Chat>, ChatIdHash> chats_;
|
|
|
|
WaitFreeHashMap<ChatId, unique_ptr<ChatFull>, ChatIdHash> chats_full_;
|
2022-03-11 19:38:48 +01:00
|
|
|
mutable FlatHashSet<ChatId, ChatIdHash> unknown_chats_;
|
2022-08-04 15:18:41 +02:00
|
|
|
WaitFreeHashMap<ChatId, FileSourceId, ChatIdHash> chat_full_file_source_ids_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-08-04 15:18:41 +02:00
|
|
|
WaitFreeHashMap<ChannelId, unique_ptr<MinChannel>, ChannelIdHash> min_channels_;
|
|
|
|
WaitFreeHashMap<ChannelId, unique_ptr<Channel>, ChannelIdHash> channels_;
|
|
|
|
WaitFreeHashMap<ChannelId, unique_ptr<ChannelFull>, ChannelIdHash> channels_full_;
|
2022-03-11 19:38:48 +01:00
|
|
|
mutable FlatHashSet<ChannelId, ChannelIdHash> unknown_channels_;
|
2022-08-20 23:20:57 +02:00
|
|
|
WaitFreeHashSet<ChannelId, ChannelIdHash> invalidated_channels_full_;
|
2022-08-04 15:18:41 +02:00
|
|
|
WaitFreeHashMap<ChannelId, FileSourceId, ChannelIdHash> channel_full_file_source_ids_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2024-03-28 21:39:26 +01:00
|
|
|
bool created_public_channels_inited_[3] = {false, false, false};
|
|
|
|
vector<ChannelId> created_public_channels_[3];
|
|
|
|
vector<Promise<td_api::object_ptr<td_api::chats>>> get_created_public_channels_queries_[3];
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-09-13 19:25:17 +02:00
|
|
|
bool dialogs_for_discussion_inited_ = false;
|
|
|
|
vector<DialogId> dialogs_for_discussion_;
|
|
|
|
|
2022-09-21 17:55:21 +02:00
|
|
|
bool inactive_channel_ids_inited_ = false;
|
|
|
|
vector<ChannelId> inactive_channel_ids_;
|
2019-12-13 15:27:44 +01:00
|
|
|
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<ChatId, vector<Promise<Unit>>, ChatIdHash> load_chat_from_database_queries_;
|
2022-03-11 19:38:48 +01:00
|
|
|
FlatHashSet<ChatId, ChatIdHash> loaded_from_database_chats_;
|
|
|
|
FlatHashSet<ChatId, ChatIdHash> unavailable_chat_fulls_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<ChannelId, vector<Promise<Unit>>, ChannelIdHash> load_channel_from_database_queries_;
|
2022-03-11 19:38:48 +01:00
|
|
|
FlatHashSet<ChannelId, ChannelIdHash> loaded_from_database_channels_;
|
|
|
|
FlatHashSet<ChannelId, ChannelIdHash> unavailable_channel_fulls_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2023-01-13 12:45:53 +01:00
|
|
|
QueryMerger get_chat_queries_{"GetChatMerger", 3, 50};
|
2023-01-13 13:42:15 +01:00
|
|
|
QueryMerger get_channel_queries_{"GetChannelMerger", 100, 1}; // can't merge getChannel queries without access hash
|
2023-01-13 12:29:47 +01:00
|
|
|
|
2019-02-25 18:44:28 +01:00
|
|
|
QueryCombiner get_chat_full_queries_{"GetChatFullCombiner", 2.0};
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2023-09-21 18:11:17 +02:00
|
|
|
FlatHashMap<ChannelId, FlatHashSet<MessageFullId, MessageFullIdHash>, ChannelIdHash> channel_messages_;
|
2023-03-17 16:51:04 +01:00
|
|
|
|
2022-08-04 15:18:41 +02:00
|
|
|
WaitFreeHashMap<ChannelId, ChannelId, ChannelIdHash> linked_channel_ids_;
|
2019-12-23 16:37:11 +01:00
|
|
|
|
2022-08-20 23:20:57 +02:00
|
|
|
WaitFreeHashSet<ChannelId, ChannelIdHash> restricted_channel_ids_;
|
2019-12-20 14:11:58 +01:00
|
|
|
|
2023-12-21 19:05:42 +01:00
|
|
|
MultiTimeout channel_emoji_status_timeout_{"ChannelEmojiStatusTimeout"};
|
2018-08-01 19:31:20 +02:00
|
|
|
MultiTimeout channel_unban_timeout_{"ChannelUnbanTimeout"};
|
2019-11-20 22:40:34 +01:00
|
|
|
MultiTimeout slow_mode_delay_timeout_{"SlowModeDelayTimeout"};
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|