2022-01-20 20:54:34 +01: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-01-21 11:15:27 +01:00
|
|
|
#include "td/telegram/ChannelId.h"
|
|
|
|
#include "td/telegram/DialogId.h"
|
2022-01-21 14:46:16 +01:00
|
|
|
#include "td/telegram/FullMessageId.h"
|
2022-01-26 18:06:27 +01:00
|
|
|
#include "td/telegram/MessageId.h"
|
2022-01-21 11:15:27 +01:00
|
|
|
#include "td/telegram/MinChannel.h"
|
2022-01-20 20:54:34 +01:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2022-02-07 22:04:34 +01:00
|
|
|
#include "td/utils/FlatHashMap.h"
|
2022-06-27 12:30:18 +02:00
|
|
|
#include "td/utils/Promise.h"
|
2022-01-20 20:54:34 +01:00
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
|
2022-01-21 11:15:27 +01:00
|
|
|
#include <utility>
|
|
|
|
|
2022-01-20 20:54:34 +01:00
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class Td;
|
|
|
|
|
|
|
|
class MessageReaction {
|
|
|
|
string reaction_;
|
|
|
|
int32 choose_count_ = 0;
|
|
|
|
bool is_chosen_ = false;
|
2022-01-21 11:15:27 +01:00
|
|
|
vector<DialogId> recent_chooser_dialog_ids_;
|
|
|
|
vector<std::pair<ChannelId, MinChannel>> recent_chooser_min_channels_;
|
2022-01-20 20:54:34 +01:00
|
|
|
|
|
|
|
friend bool operator==(const MessageReaction &lhs, const MessageReaction &rhs);
|
|
|
|
|
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const MessageReaction &message_reaction);
|
|
|
|
|
|
|
|
public:
|
|
|
|
static constexpr size_t MAX_RECENT_CHOOSERS = 3;
|
|
|
|
static constexpr int32 MAX_CHOOSE_COUNT = 2147483640;
|
|
|
|
|
|
|
|
MessageReaction() = default;
|
|
|
|
|
2022-01-21 18:39:55 +01:00
|
|
|
MessageReaction(string reaction, int32 choose_count, bool is_chosen, vector<DialogId> &&recent_chooser_dialog_ids,
|
2022-01-21 11:15:27 +01:00
|
|
|
vector<std::pair<ChannelId, MinChannel>> &&recent_chooser_min_channels)
|
2022-01-20 20:54:34 +01:00
|
|
|
: reaction_(std::move(reaction))
|
|
|
|
, choose_count_(choose_count)
|
|
|
|
, is_chosen_(is_chosen)
|
2022-01-21 11:15:27 +01:00
|
|
|
, recent_chooser_dialog_ids_(std::move(recent_chooser_dialog_ids))
|
|
|
|
, recent_chooser_min_channels_(std::move(recent_chooser_min_channels)) {
|
2022-01-20 20:54:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool is_empty() const {
|
|
|
|
return choose_count_ <= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const string &get_reaction() const {
|
|
|
|
return reaction_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_chosen() const {
|
|
|
|
return is_chosen_;
|
|
|
|
}
|
|
|
|
|
2022-01-30 11:24:27 +01:00
|
|
|
void set_is_chosen(bool is_chosen, DialogId chooser_dialog_id, bool can_get_added_reactions);
|
2022-01-20 20:54:34 +01:00
|
|
|
|
2022-01-26 10:01:14 +01:00
|
|
|
int32 get_choose_count() const {
|
|
|
|
return choose_count_;
|
|
|
|
}
|
|
|
|
|
2022-01-21 11:15:27 +01:00
|
|
|
const vector<DialogId> &get_recent_chooser_dialog_ids() const {
|
|
|
|
return recent_chooser_dialog_ids_;
|
|
|
|
}
|
|
|
|
|
|
|
|
const vector<std::pair<ChannelId, MinChannel>> &get_recent_chooser_min_channels() const {
|
|
|
|
return recent_chooser_min_channels_;
|
2022-01-20 20:54:34 +01:00
|
|
|
}
|
|
|
|
|
2022-04-27 21:13:05 +02:00
|
|
|
void add_recent_chooser_dialog_id(DialogId dialog_id);
|
|
|
|
|
|
|
|
bool remove_recent_chooser_dialog_id(DialogId dialog_id);
|
|
|
|
|
2022-08-07 14:28:55 +02:00
|
|
|
void update_recent_chooser_dialog_ids(const MessageReaction &old_reaction);
|
|
|
|
|
2022-01-20 20:54:34 +01:00
|
|
|
td_api::object_ptr<td_api::messageReaction> get_message_reaction_object(Td *td) const;
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool operator==(const MessageReaction &lhs, const MessageReaction &rhs);
|
|
|
|
|
|
|
|
inline bool operator!=(const MessageReaction &lhs, const MessageReaction &rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
2022-01-28 15:10:17 +01:00
|
|
|
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<td_api::unreadReaction> get_unread_reaction_object(Td *td) const;
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
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);
|
2022-01-20 20:54:34 +01:00
|
|
|
|
|
|
|
struct MessageReactions {
|
|
|
|
vector<MessageReaction> reactions_;
|
2022-01-28 15:10:17 +01:00
|
|
|
vector<UnreadMessageReaction> unread_reactions_;
|
2022-01-20 20:54:34 +01:00
|
|
|
bool is_min_ = false;
|
|
|
|
bool need_polling_ = true;
|
2022-01-30 11:24:27 +01:00
|
|
|
bool can_get_added_reactions_ = false;
|
2022-01-20 20:54:34 +01:00
|
|
|
|
|
|
|
MessageReactions() = default;
|
|
|
|
|
|
|
|
static unique_ptr<MessageReactions> get_message_reactions(Td *td,
|
|
|
|
tl_object_ptr<telegram_api::messageReactions> &&reactions,
|
|
|
|
bool is_bot);
|
|
|
|
|
2022-01-26 13:25:03 +01:00
|
|
|
MessageReaction *get_reaction(const string &reaction);
|
|
|
|
|
2022-01-26 14:51:47 +01:00
|
|
|
const MessageReaction *get_reaction(const string &reaction) const;
|
|
|
|
|
2022-01-20 20:54:34 +01:00
|
|
|
void update_from(const MessageReactions &old_reactions);
|
|
|
|
|
2022-02-07 20:41:07 +01:00
|
|
|
void sort_reactions(const FlatHashMap<string, size_t> &active_reaction_pos);
|
2022-01-26 10:01:14 +01:00
|
|
|
|
2022-04-27 21:13:05 +02:00
|
|
|
void fix_chosen_reaction(DialogId my_dialog_id);
|
|
|
|
|
2022-01-20 20:54:34 +01:00
|
|
|
static bool need_update_message_reactions(const MessageReactions *old_reactions,
|
|
|
|
const MessageReactions *new_reactions);
|
|
|
|
|
2022-01-28 15:10:17 +01:00
|
|
|
static bool need_update_unread_reactions(const MessageReactions *old_reactions,
|
|
|
|
const MessageReactions *new_reactions);
|
|
|
|
|
2022-01-20 20:54:34 +01:00
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
2022-01-30 11:24:27 +01:00
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const MessageReactions &reactions);
|
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const unique_ptr<MessageReactions> &reactions);
|
|
|
|
|
2022-01-26 16:48:46 +01:00
|
|
|
void reload_message_reactions(Td *td, DialogId dialog_id, vector<MessageId> &&message_ids);
|
|
|
|
|
2022-01-26 14:41:41 +01:00
|
|
|
void set_message_reaction(Td *td, FullMessageId full_message_id, string reaction, bool is_big, Promise<Unit> &&promise);
|
2022-01-21 18:39:55 +01:00
|
|
|
|
2022-01-26 23:52:21 +01:00
|
|
|
void get_message_added_reactions(Td *td, FullMessageId full_message_id, string reaction, string offset, int32 limit,
|
|
|
|
Promise<td_api::object_ptr<td_api::addedReactions>> &&promise);
|
2022-01-21 14:46:16 +01:00
|
|
|
|
2022-08-15 21:47:02 +02:00
|
|
|
void set_default_reaction(Td *td, string reaction, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void send_set_default_reaction_query(Td *td);
|
|
|
|
|
2022-01-20 20:54:34 +01:00
|
|
|
} // namespace td
|