blob: f6fda3f1f32a4f22170540d0b268f4405a1d8b17 (
plain)
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
|
//
// 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)
//
#include "td/telegram/StarGiftSettings.h"
namespace td {
StarGiftSettings::StarGiftSettings(bool display_gifts_button,
telegram_api::object_ptr<telegram_api::disallowedGiftsSettings> &&settings)
: display_gifts_button_(display_gifts_button), disallowed_gifts_(std::move(settings)) {
}
StarGiftSettings::StarGiftSettings(const td_api::object_ptr<td_api::giftSettings> &settings) {
if (settings != nullptr) {
display_gifts_button_ = settings->show_gift_button_;
disallowed_gifts_ = DisallowedGiftsSettings(settings->accepted_gift_types_);
}
}
StarGiftSettings StarGiftSettings::allow_nothing() {
StarGiftSettings result;
result.disallowed_gifts_ = DisallowedGiftsSettings::allow_nothing();
return result;
}
td_api::object_ptr<td_api::giftSettings> StarGiftSettings::get_gift_settings_object() const {
return td_api::make_object<td_api::giftSettings>(display_gifts_button_,
disallowed_gifts_.get_accepted_gift_types_object());
}
bool operator==(const StarGiftSettings &lhs, const StarGiftSettings &rhs) {
return lhs.display_gifts_button_ == rhs.display_gifts_button_ && lhs.disallowed_gifts_ == rhs.disallowed_gifts_;
}
StringBuilder &operator<<(StringBuilder &string_builder, const StarGiftSettings &settings) {
if (settings.display_gifts_button_) {
string_builder << "(show button)";
}
return string_builder << settings.disallowed_gifts_;
}
} // namespace td
|