// // 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/ChannelId.h" #include "td/telegram/DialogId.h" #include "td/telegram/FullMessageId.h" #include "td/telegram/MessageId.h" #include "td/telegram/MinChannel.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/Promise.h" #include "td/utils/StringBuilder.h" #include namespace td { class Td; class MessageReaction { string reaction_; int32 choose_count_ = 0; bool is_chosen_ = false; vector recent_chooser_dialog_ids_; vector> recent_chooser_min_channels_; friend bool operator==(const MessageReaction &lhs, const MessageReaction &rhs); friend StringBuilder &operator<<(StringBuilder &string_builder, const MessageReaction &message_reaction); friend struct MessageReactions; MessageReaction(string reaction, int32 choose_count, bool is_chosen, vector &&recent_chooser_dialog_ids, vector> &&recent_chooser_min_channels) : reaction_(std::move(reaction)) , choose_count_(choose_count) , is_chosen_(is_chosen) , recent_chooser_dialog_ids_(std::move(recent_chooser_dialog_ids)) , recent_chooser_min_channels_(std::move(recent_chooser_min_channels)) { } bool is_empty() const { return choose_count_ <= 0; } bool is_chosen() const { return is_chosen_; } void set_is_chosen(bool is_chosen, DialogId chooser_dialog_id, bool have_recent_choosers); void add_recent_chooser_dialog_id(DialogId dialog_id); bool remove_recent_chooser_dialog_id(DialogId dialog_id); void update_recent_chooser_dialog_ids(const MessageReaction &old_reaction); public: static constexpr size_t MAX_RECENT_CHOOSERS = 3; static constexpr int32 MAX_CHOOSE_COUNT = 2147483640; MessageReaction() = default; const string &get_reaction() const { return reaction_; } int32 get_choose_count() const { return choose_count_; } const vector &get_recent_chooser_dialog_ids() const { return recent_chooser_dialog_ids_; } const vector> &get_recent_chooser_min_channels() const { return recent_chooser_min_channels_; } td_api::object_ptr get_message_reaction_object(Td *td, UserId my_user_id, UserId peer_user_id) const; template void store(StorerT &storer) const; template void parse(ParserT &parser); }; bool operator==(const MessageReaction &lhs, const MessageReaction &rhs); inline bool operator!=(const MessageReaction &lhs, const MessageReaction &rhs) { return !(lhs == rhs); } StringBuilder &operator<<(StringBuilder &string_builder, const MessageReaction &reaction); class UnreadMessageReaction { string reaction_; DialogId sender_dialog_id_; bool is_big_ = false; friend bool operator==(const UnreadMessageReaction &lhs, const UnreadMessageReaction &rhs); friend StringBuilder &operator<<(StringBuilder &string_builder, const UnreadMessageReaction &message_reaction); public: UnreadMessageReaction() = default; UnreadMessageReaction(string reaction, DialogId sender_dialog_id, bool is_big) : reaction_(std::move(reaction)), sender_dialog_id_(sender_dialog_id), is_big_(is_big) { } td_api::object_ptr get_unread_reaction_object(Td *td) const; template void store(StorerT &storer) const; template void parse(ParserT &parser); }; bool operator==(const UnreadMessageReaction &lhs, const UnreadMessageReaction &rhs); inline bool operator!=(const UnreadMessageReaction &lhs, const UnreadMessageReaction &rhs) { return !(lhs == rhs); } StringBuilder &operator<<(StringBuilder &string_builder, const UnreadMessageReaction &unread_reaction); struct MessageReactions { vector reactions_; vector unread_reactions_; vector chosen_reaction_order_; bool is_min_ = false; bool need_polling_ = true; bool can_get_added_reactions_ = false; MessageReactions() = default; static unique_ptr get_message_reactions(Td *td, tl_object_ptr &&reactions, bool is_bot); MessageReaction *get_reaction(const string &reaction); const MessageReaction *get_reaction(const string &reaction) const; void update_from(const MessageReactions &old_reactions); bool add_reaction(const string &reaction, bool is_big, DialogId chooser_dialog_id, bool have_recent_choosers); bool remove_reaction(const string &reaction, DialogId chooser_dialog_id, bool have_recent_choosers); void sort_reactions(const FlatHashMap &active_reaction_pos); void fix_chosen_reaction(DialogId my_dialog_id); vector get_chosen_reactions() const; static bool need_update_message_reactions(const MessageReactions *old_reactions, const MessageReactions *new_reactions); static bool need_update_unread_reactions(const MessageReactions *old_reactions, const MessageReactions *new_reactions); template void store(StorerT &storer) const; template void parse(ParserT &parser); private: bool do_remove_reaction(const string &reaction, DialogId chooser_dialog_id, bool have_recent_choosers); }; StringBuilder &operator<<(StringBuilder &string_builder, const MessageReactions &reactions); StringBuilder &operator<<(StringBuilder &string_builder, const unique_ptr &reactions); telegram_api::object_ptr get_input_reaction(const string &reaction); td_api::object_ptr get_reaction_type_object(const string &reaction); string get_message_reaction_string(const telegram_api::object_ptr &reaction); string get_message_reaction_string(const td_api::object_ptr &type); bool is_custom_reaction(const string &reaction); bool is_active_reaction(const string &reaction, const FlatHashMap &active_reaction_pos); void reload_message_reactions(Td *td, DialogId dialog_id, vector &&message_ids); void send_message_reaction(Td *td, FullMessageId full_message_id, vector reactions, bool is_big, bool add_to_recent, Promise &&promise); void get_message_added_reactions(Td *td, FullMessageId full_message_id, string reaction, string offset, int32 limit, Promise> &&promise); void set_default_reaction(Td *td, string reaction, Promise &&promise); void send_set_default_reaction_query(Td *td); void send_update_default_reaction_type(const string &default_reaction); void report_message_reactions(Td *td, FullMessageId full_message_id, DialogId chooser_dialog_id, Promise &&promise); vector get_recent_reactions(Td *td); vector get_top_reactions(Td *td); void add_recent_reaction(Td *td, const string &reaction); int64 get_reactions_hash(const vector &reactions); } // namespace td