1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2026
//
// 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"
#include "td/telegram/MinChannel.h"
#include "td/telegram/PaidReactionType.h"
#include "td/telegram/td_api.h"
#include "td/telegram/telegram_api.h"
#include "td/utils/common.h"
#include "td/utils/StringBuilder.h"
#include "td/utils/unique_value_ptr.h"
namespace td {
class Dependencies;
class Td;
class MessageReactor {
DialogId dialog_id_; // self for anonymous reactions by the current user
unique_value_ptr<MinChannel> min_channel_;
int32 count_ = 0;
bool is_top_ = false;
bool is_me_ = false;
bool is_anonymous_ = false;
friend bool operator<(const MessageReactor &lhs, const MessageReactor &rhs);
friend bool operator==(const MessageReactor &lhs, const MessageReactor &rhs);
friend StringBuilder &operator<<(StringBuilder &string_builder, const MessageReactor &reactor);
void store_min_channel(Td *td);
public:
MessageReactor() = default;
MessageReactor(Td *td, telegram_api::object_ptr<telegram_api::messageReactor> &&reactor);
MessageReactor(Td *td, telegram_api::object_ptr<telegram_api::groupCallDonor> &&donor);
MessageReactor(DialogId dialog_id, int32 count, bool is_me, bool is_anonymous)
: dialog_id_(dialog_id), count_(count), is_me_(is_me), is_anonymous_(is_anonymous) {
}
bool is_valid() const {
return count_ > 0 && (is_me_ ? dialog_id_.is_valid() : (dialog_id_.is_valid() || is_anonymous_) && is_top_);
}
bool is_me() const {
return is_me_;
}
bool is_same(DialogId dialog_id) const {
return dialog_id_ == dialog_id;
}
bool is_anonymous() const {
return is_anonymous_;
}
PaidReactionType get_paid_reaction_type(DialogId my_dialog_id) const;
bool fix_is_me(DialogId my_dialog_id);
int32 get_count() const {
return count_;
}
void add_count(int32 count, DialogId reactor_dialog_id, DialogId my_dialog_id) {
count_ += count;
if (reactor_dialog_id == DialogId()) {
dialog_id_ = my_dialog_id;
is_anonymous_ = true;
} else {
dialog_id_ = reactor_dialog_id;
is_anonymous_ = false;
}
}
void remove_count(int32 count) {
count_ = max(count_ - count, 0);
}
td_api::object_ptr<td_api::paidReactor> get_paid_reactor_object(Td *td) const;
void add_min_channel(Td *td) const;
void add_dependencies(Dependencies &dependencies) const;
static void fix_message_reactors(vector<MessageReactor> &reactors, bool need_warning, bool for_group_call);
template <class StorerT>
void store(StorerT &storer) const;
template <class ParserT>
void parse(ParserT &parser);
};
bool operator<(const MessageReactor &lhs, const MessageReactor &rhs);
bool operator==(const MessageReactor &lhs, const MessageReactor &rhs);
inline bool operator!=(const MessageReactor &lhs, const MessageReactor &rhs) {
return !(lhs == rhs);
}
StringBuilder &operator<<(StringBuilder &string_builder, const MessageReactor &reactor);
} // namespace td
|