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
117
118
119
120
121
122
123
|
//
// 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/ChannelId.h"
#include "td/telegram/DialogId.h"
#include "td/telegram/files/FileId.h"
#include "td/telegram/MessageContent.h"
#include "td/telegram/MessageFullId.h"
#include "td/telegram/MessageId.h"
#include "td/telegram/MessageInputReplyTo.h"
#include "td/telegram/MessageOrigin.h"
#include "td/telegram/MessageQuote.h"
#include "td/telegram/td_api.h"
#include "td/telegram/telegram_api.h"
#include "td/telegram/UserId.h"
#include "td/utils/common.h"
#include "td/utils/StringBuilder.h"
#include <functional>
namespace td {
class Dependencies;
class MessageTopic;
class Td;
class RepliedMessageInfo {
MessageId message_id_;
DialogId dialog_id_; // for replies from another known chats
int32 origin_date_ = 0; // for replies in other chats
MessageOrigin origin_; // for replies in other chats
unique_ptr<MessageContent> content_; // for replies in other chats
MessageQuote quote_;
int32 todo_item_id_ = 0;
string poll_option_id_;
friend bool operator==(const RepliedMessageInfo &lhs, const RepliedMessageInfo &rhs);
friend StringBuilder &operator<<(StringBuilder &string_builder, const RepliedMessageInfo &info);
public:
RepliedMessageInfo() = default;
RepliedMessageInfo(const RepliedMessageInfo &) = delete;
RepliedMessageInfo &operator=(const RepliedMessageInfo &) = delete;
RepliedMessageInfo(RepliedMessageInfo &&) = default;
RepliedMessageInfo &operator=(RepliedMessageInfo &&) = default;
~RepliedMessageInfo();
static RepliedMessageInfo legacy(MessageId reply_to_message_id, DialogId reply_in_dialog_id = DialogId()) {
RepliedMessageInfo result;
result.message_id_ = reply_to_message_id;
result.dialog_id_ = reply_in_dialog_id;
return result;
}
RepliedMessageInfo(Td *td, tl_object_ptr<telegram_api::messageReplyHeader> &&reply_header, DialogId dialog_id,
MessageId message_id, int32 date);
RepliedMessageInfo(Td *td, const MessageInputReplyTo &input_reply_to, const MessageTopic &topic);
RepliedMessageInfo clone(Td *td) const;
bool is_empty() const {
return message_id_ == MessageId() && origin_.is_empty();
}
bool is_external() const {
return origin_date_ != 0;
}
bool need_reget(const Td *td) const;
static bool need_reply_changed_warning(
const Td *td, const RepliedMessageInfo &old_info, const RepliedMessageInfo &new_info,
MessageId old_top_thread_message_id, bool is_yet_unsent,
std::function<bool(const RepliedMessageInfo &info)> is_reply_to_deleted_message);
vector<FileId> get_file_ids(Td *td) const;
vector<UserId> get_min_user_ids(Td *td) const;
vector<ChannelId> get_min_channel_ids(Td *td) const;
void add_dependencies(Dependencies &dependencies, UserId my_user_id, bool is_bot) const;
td_api::object_ptr<td_api::messageReplyToMessage> get_message_reply_to_message_object(Td *td, DialogId dialog_id,
MessageId message_id) const;
MessageInputReplyTo get_message_input_reply_to() const;
void set_message_id(MessageId new_message_id) {
CHECK(message_id_.is_valid() || message_id_.is_valid_scheduled());
message_id_ = new_message_id;
}
MessageId get_same_chat_reply_to_message_id(bool ignore_external) const;
MessageFullId get_reply_message_full_id(DialogId owner_dialog_id, bool ignore_external) const;
void register_content(Td *td) const;
void unregister_content(Td *td) const;
template <class StorerT>
void store(StorerT &storer) const;
template <class ParserT>
void parse(ParserT &parser);
};
bool operator==(const RepliedMessageInfo &lhs, const RepliedMessageInfo &rhs);
bool operator!=(const RepliedMessageInfo &lhs, const RepliedMessageInfo &rhs);
StringBuilder &operator<<(StringBuilder &string_builder, const RepliedMessageInfo &info);
} // namespace td
|