2022-10-25 14:03:35 +02:00
|
|
|
//
|
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
2022-10-27 15:53:23 +02:00
|
|
|
#include "td/telegram/CustomEmojiId.h"
|
2022-10-25 15:10:15 +02:00
|
|
|
#include "td/telegram/DialogId.h"
|
2022-10-27 18:03:58 +02:00
|
|
|
#include "td/telegram/ForumTopicEditedData.h"
|
2022-10-25 15:10:15 +02:00
|
|
|
#include "td/telegram/ForumTopicInfo.h"
|
2022-11-02 17:51:41 +01:00
|
|
|
#include "td/telegram/MessageId.h"
|
2022-10-25 15:10:15 +02:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
|
2022-10-25 14:03:35 +02:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Promise.h"
|
2022-11-02 17:51:41 +01:00
|
|
|
#include "td/utils/Status.h"
|
2022-10-27 13:58:21 +02:00
|
|
|
#include "td/utils/WaitFreeHashMap.h"
|
2022-10-25 14:03:35 +02:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class Td;
|
|
|
|
|
|
|
|
class ForumTopicManager final : public Actor {
|
|
|
|
public:
|
|
|
|
ForumTopicManager(Td *td, ActorShared<> parent);
|
|
|
|
ForumTopicManager(const ForumTopicManager &) = delete;
|
|
|
|
ForumTopicManager &operator=(const ForumTopicManager &) = delete;
|
|
|
|
ForumTopicManager(ForumTopicManager &&) = delete;
|
|
|
|
ForumTopicManager &operator=(ForumTopicManager &&) = delete;
|
|
|
|
~ForumTopicManager() final;
|
|
|
|
|
2022-10-25 15:10:15 +02:00
|
|
|
void create_forum_topic(DialogId dialog_id, string &&title, td_api::object_ptr<td_api::forumTopicIcon> &&icon,
|
|
|
|
Promise<td_api::object_ptr<td_api::forumTopicInfo>> &&promise);
|
|
|
|
|
2022-10-27 13:58:21 +02:00
|
|
|
void on_forum_topic_created(DialogId dialog_id, unique_ptr<ForumTopicInfo> &&forum_topic_info,
|
2022-10-25 15:10:15 +02:00
|
|
|
Promise<td_api::object_ptr<td_api::forumTopicInfo>> &&promise);
|
|
|
|
|
2022-10-27 15:53:23 +02:00
|
|
|
void edit_forum_topic(DialogId dialog_id, MessageId top_thread_message_id, string &&title,
|
|
|
|
CustomEmojiId icon_custom_emoji_id, Promise<Unit> &&promise);
|
|
|
|
|
2022-10-27 16:31:05 +02:00
|
|
|
void toggle_forum_topic_is_closed(DialogId dialog_id, MessageId top_thread_message_id, bool is_closed,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2022-10-29 23:35:37 +02:00
|
|
|
void delete_forum_topic(DialogId dialog_id, MessageId top_thread_message_id, Promise<Unit> &&promise);
|
|
|
|
|
2022-10-27 18:03:58 +02:00
|
|
|
void on_forum_topic_edited(DialogId dialog_id, MessageId top_thread_message_id,
|
|
|
|
const ForumTopicEditedData &edited_data);
|
|
|
|
|
2022-10-25 14:03:35 +02:00
|
|
|
private:
|
2022-10-25 15:10:15 +02:00
|
|
|
static constexpr size_t MAX_FORUM_TOPIC_TITLE_LENGTH = 128; // server side limit for forum topic title
|
|
|
|
|
2022-10-27 13:58:21 +02:00
|
|
|
struct DialogTopics {
|
|
|
|
WaitFreeHashMap<MessageId, unique_ptr<ForumTopicInfo>, MessageIdHash> topic_infos_;
|
|
|
|
};
|
|
|
|
|
2022-10-25 14:03:35 +02:00
|
|
|
void tear_down() final;
|
|
|
|
|
2022-10-25 15:10:15 +02:00
|
|
|
Status is_forum(DialogId dialog_id);
|
|
|
|
|
2022-10-27 22:30:24 +02:00
|
|
|
ForumTopicInfo *add_topic_info(DialogId dialog_id, unique_ptr<ForumTopicInfo> &&forum_topic_info);
|
|
|
|
|
2022-10-27 13:58:21 +02:00
|
|
|
ForumTopicInfo *get_topic_info(DialogId dialog_id, MessageId top_thread_message_id);
|
|
|
|
|
|
|
|
const ForumTopicInfo *get_topic_info(DialogId dialog_id, MessageId top_thread_message_id) const;
|
|
|
|
|
2022-10-27 23:12:44 +02:00
|
|
|
td_api::object_ptr<td_api::updateForumTopicInfo> get_update_forum_topic_info(DialogId dialog_id,
|
|
|
|
const ForumTopicInfo *topic_info) const;
|
|
|
|
|
|
|
|
void send_update_forum_topic_info(DialogId dialog_id, const ForumTopicInfo *topic_info) const;
|
|
|
|
|
2022-10-25 14:03:35 +02:00
|
|
|
Td *td_;
|
|
|
|
ActorShared<> parent_;
|
2022-10-27 13:58:21 +02:00
|
|
|
|
|
|
|
WaitFreeHashMap<DialogId, unique_ptr<DialogTopics>, DialogIdHash> dialog_topics_;
|
2022-10-25 14:03:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|