2022-10-17 19:07:06 +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
|
|
|
|
|
|
|
|
#include "td/telegram/DialogId.h"
|
2022-10-18 14:04:52 +02:00
|
|
|
#include "td/telegram/ForumTopicIcon.h"
|
2022-10-17 19:07:06 +02:00
|
|
|
#include "td/telegram/MessageId.h"
|
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class Td;
|
|
|
|
|
|
|
|
class ForumTopicInfo {
|
|
|
|
MessageId top_thread_message_id_;
|
|
|
|
string title_;
|
2022-10-18 14:04:52 +02:00
|
|
|
ForumTopicIcon icon_;
|
2022-10-17 19:07:06 +02:00
|
|
|
int32 creation_date_ = 0;
|
|
|
|
DialogId creator_dialog_id_;
|
|
|
|
bool is_outgoing_ = false;
|
|
|
|
bool is_closed_ = false;
|
|
|
|
|
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const ForumTopicInfo &topic_info);
|
|
|
|
|
|
|
|
public:
|
|
|
|
ForumTopicInfo() = default;
|
|
|
|
|
2022-10-20 12:28:07 +02:00
|
|
|
explicit ForumTopicInfo(const tl_object_ptr<telegram_api::ForumTopic> &forum_topic_ptr);
|
2022-10-17 19:07:06 +02:00
|
|
|
|
|
|
|
bool is_empty() const {
|
|
|
|
return !top_thread_message_id_.is_valid();
|
|
|
|
}
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::forumTopicInfo> get_forum_topic_info_object(Td *td) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const ForumTopicInfo &topic_info);
|
|
|
|
|
|
|
|
} // namespace td
|