43 lines
1.6 KiB
C++
43 lines
1.6 KiB
C++
//
|
|
// 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)
|
|
//
|
|
#include "td/telegram/MessageReactor.h"
|
|
|
|
#include "td/telegram/Dependencies.h"
|
|
#include "td/telegram/MessageSender.h"
|
|
|
|
namespace td {
|
|
|
|
MessageReactor::MessageReactor(telegram_api::object_ptr<telegram_api::messageReactor> &&reactor)
|
|
: dialog_id_(reactor->peer_id_ == nullptr ? DialogId() : DialogId(reactor->peer_id_))
|
|
, count_(reactor->count_)
|
|
, is_top_(reactor->top_)
|
|
, is_me_(reactor->my_)
|
|
, is_anonymous_(reactor->anonymous_) {
|
|
}
|
|
|
|
td_api::object_ptr<td_api::paidReactor> MessageReactor::get_paid_reactor_object(Td *td) const {
|
|
return td_api::make_object<td_api::paidReactor>(
|
|
dialog_id_ == DialogId() ? nullptr : get_message_sender_object(td, dialog_id_, "paidReactor"), count_, is_top_,
|
|
is_me_, is_anonymous_);
|
|
}
|
|
|
|
void MessageReactor::add_dependencies(Dependencies &dependencies) const {
|
|
dependencies.add_message_sender_dependencies(dialog_id_);
|
|
}
|
|
|
|
bool operator==(const MessageReactor &lhs, const MessageReactor &rhs) {
|
|
return lhs.dialog_id_ == rhs.dialog_id_ && lhs.count_ == rhs.count_ && lhs.is_top_ == rhs.is_top_ &&
|
|
lhs.is_me_ == rhs.is_me_ && lhs.is_anonymous_ == rhs.is_anonymous_;
|
|
}
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const MessageReactor &reactor) {
|
|
return string_builder << "PaidReactor[" << reactor.dialog_id_ << " - " << reactor.count_
|
|
<< (reactor.is_me_ ? " by me" : "") << ']';
|
|
}
|
|
|
|
} // namespace td
|