2023-10-12 16:05:03 +02:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2023-10-12 16:05:03 +02:00
|
|
|
//
|
|
|
|
// 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/GiveawayParameters.h"
|
|
|
|
|
|
|
|
#include "td/utils/tl_helpers.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void GiveawayParameters::store(StorerT &storer) const {
|
|
|
|
bool has_additional_channel_ids = !additional_channel_ids_.empty();
|
2023-10-12 17:58:40 +02:00
|
|
|
bool has_country_codes = !country_codes_.empty();
|
2023-12-05 11:45:32 +01:00
|
|
|
bool has_prize_description = !prize_description_.empty();
|
2023-10-12 16:05:03 +02:00
|
|
|
BEGIN_STORE_FLAGS();
|
|
|
|
STORE_FLAG(only_new_subscribers_);
|
|
|
|
STORE_FLAG(has_additional_channel_ids);
|
2023-10-12 17:58:40 +02:00
|
|
|
STORE_FLAG(has_country_codes);
|
2023-12-05 11:45:32 +01:00
|
|
|
STORE_FLAG(winners_are_visible_);
|
|
|
|
STORE_FLAG(has_prize_description);
|
2023-10-12 16:05:03 +02:00
|
|
|
END_STORE_FLAGS();
|
|
|
|
td::store(boosted_channel_id_, storer);
|
|
|
|
if (has_additional_channel_ids) {
|
|
|
|
td::store(additional_channel_ids_, storer);
|
|
|
|
}
|
|
|
|
td::store(date_, storer);
|
2023-10-12 17:58:40 +02:00
|
|
|
if (has_country_codes) {
|
|
|
|
td::store(country_codes_, storer);
|
|
|
|
}
|
2023-12-05 11:45:32 +01:00
|
|
|
if (has_prize_description) {
|
|
|
|
td::store(prize_description_, storer);
|
|
|
|
}
|
2023-10-12 16:05:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void GiveawayParameters::parse(ParserT &parser) {
|
|
|
|
bool has_additional_channel_ids;
|
2023-10-12 17:58:40 +02:00
|
|
|
bool has_country_codes;
|
2023-12-05 11:45:32 +01:00
|
|
|
bool has_prize_description;
|
2023-10-12 16:05:03 +02:00
|
|
|
BEGIN_PARSE_FLAGS();
|
|
|
|
PARSE_FLAG(only_new_subscribers_);
|
|
|
|
PARSE_FLAG(has_additional_channel_ids);
|
2023-10-12 17:58:40 +02:00
|
|
|
PARSE_FLAG(has_country_codes);
|
2023-12-05 11:45:32 +01:00
|
|
|
PARSE_FLAG(winners_are_visible_);
|
|
|
|
PARSE_FLAG(has_prize_description);
|
2023-10-12 16:05:03 +02:00
|
|
|
END_PARSE_FLAGS();
|
|
|
|
td::parse(boosted_channel_id_, parser);
|
|
|
|
if (has_additional_channel_ids) {
|
|
|
|
td::parse(additional_channel_ids_, parser);
|
|
|
|
}
|
|
|
|
td::parse(date_, parser);
|
2023-10-12 17:58:40 +02:00
|
|
|
if (has_country_codes) {
|
|
|
|
td::parse(country_codes_, parser);
|
|
|
|
}
|
2023-12-05 11:45:32 +01:00
|
|
|
if (has_prize_description) {
|
|
|
|
td::parse(prize_description_, parser);
|
|
|
|
}
|
2023-10-12 16:05:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|