// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024 // // 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/ReactionType.h" #include "td/telegram/td_api.h" #include "td/telegram/telegram_api.h" #include "td/utils/common.h" #include "td/utils/FlatHashMap.h" #include "td/utils/StringBuilder.h" namespace td { struct ChatReactions { vector reaction_types_; bool allow_all_regular_ = false; // implies empty reaction_types_ bool allow_all_custom_ = false; // implies allow_all_regular_ ChatReactions() = default; explicit ChatReactions(vector &&reactions) : reaction_types_(std::move(reactions)) { } explicit ChatReactions(telegram_api::object_ptr &&chat_reactions_ptr); ChatReactions(td_api::object_ptr &&chat_reactions_ptr, bool allow_all_custom); ChatReactions(bool allow_all_regular, bool allow_all_custom) : allow_all_regular_(allow_all_regular), allow_all_custom_(allow_all_custom) { } ChatReactions get_active_reactions( const FlatHashMap &active_reaction_pos) const; bool is_allowed_reaction_type(const ReactionType &reaction) const; telegram_api::object_ptr get_input_chat_reactions() const; td_api::object_ptr get_chat_available_reactions_object() const; bool empty() const { return reaction_types_.empty() && !allow_all_regular_; } template void store(StorerT &storer) const; template void parse(ParserT &parser); }; bool operator==(const ChatReactions &lhs, const ChatReactions &rhs); inline bool operator!=(const ChatReactions &lhs, const ChatReactions &rhs) { return !(lhs == rhs); } StringBuilder &operator<<(StringBuilder &string_builder, const ChatReactions &reactions); } // namespace td