// // 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) // #include "td/telegram/ForumTopicInfo.h" #include "td/telegram/MessageSender.h" #include "td/telegram/ServerMessageId.h" #include "td/utils/logging.h" namespace td { ForumTopicInfo::ForumTopicInfo(const tl_object_ptr &forum_topic_ptr) { CHECK(forum_topic_ptr != nullptr); if (forum_topic_ptr->get_id() != telegram_api::forumTopic::ID) { LOG(ERROR) << "Receive " << to_string(forum_topic_ptr); return; } const auto *forum_topic = static_cast(forum_topic_ptr.get()); top_thread_message_id_ = MessageId(ServerMessageId(forum_topic->id_)); title_ = forum_topic->title_; icon_ = ForumTopicIcon(forum_topic->icon_color_, forum_topic->icon_emoji_id_); creation_date_ = forum_topic->date_; creator_dialog_id_ = DialogId(forum_topic->from_id_); is_outgoing_ = forum_topic->my_; is_closed_ = forum_topic->closed_; if (creation_date_ <= 0 || !top_thread_message_id_.is_valid() || !creator_dialog_id_.is_valid()) { LOG(ERROR) << "Receive " << to_string(forum_topic_ptr); *this = ForumTopicInfo(); } } bool ForumTopicInfo::apply_edited_data(const ForumTopicEditedData &edited_data) { bool is_changed = false; if (!edited_data.title_.empty() && edited_data.title_ != title_) { title_ = edited_data.title_; is_changed = true; } if (edited_data.edit_icon_custom_emoji_id_ && icon_.edit_custom_emoji_id(edited_data.icon_custom_emoji_id_)) { is_changed = true; } if (edited_data.edit_is_closed_ && edited_data.is_closed_ != is_closed_) { is_closed_ = edited_data.is_closed_; is_changed = true; } return is_changed; } td_api::object_ptr ForumTopicInfo::get_forum_topic_info_object(Td *td) const { if (is_empty()) { return nullptr; } auto creator_id = get_message_sender_object_const(td, creator_dialog_id_, "get_forum_topic_info_object"); return td_api::make_object(top_thread_message_id_.get(), title_, icon_.get_forum_topic_icon_object(), creation_date_, std::move(creator_id), is_outgoing_, is_closed_); } StringBuilder &operator<<(StringBuilder &string_builder, const ForumTopicInfo &topic_info) { return string_builder << "Forum topic " << topic_info.top_thread_message_id_.get() << '/' << topic_info.title_ << " by " << topic_info.creator_dialog_id_ << " with " << topic_info.icon_; } } // namespace td