Add td_api::messagePremiumGiveaway.

This commit is contained in:
levlam 2023-09-30 00:32:39 +03:00
parent 1ebbd360db
commit d20ddeb65c
5 changed files with 125 additions and 5 deletions

View File

@ -2747,6 +2747,14 @@ messageGiftedPremium gifter_user_id:int53 currency:string amount:int53 cryptocur
//@code The gift code //@code The gift code
messagePremiumGiftCode creator_id:MessageSender is_from_giveaway:Bool month_count:int32 code:string = MessageContent; messagePremiumGiftCode creator_id:MessageSender is_from_giveaway:Bool month_count:int32 code:string = MessageContent;
//@description A Telegram Premium giveaway is scheduled by channel chats
//@chat_ids Identifiers of chats that started the giveaway
//@only_new_subscribers True, if only new subscribers of the chats will be eligible for the giveaway
//@quantity Number of users which will receive Telegram Premium subscription gift codes
//@month_count Number of month the Telegram Premium subscription will be active after code activation
//@date Point in time (Unix timestamp) when the giveaway starts
messagePremiumGiveaway chat_ids:vector<int53> only_new_subscribers:Bool quantity:int32 month_count:int32 date:int32 = MessageContent;
//@description A contact has registered with Telegram //@description A contact has registered with Telegram
messageContactRegistered = MessageContent; messageContactRegistered = MessageContent;
@ -4409,7 +4417,7 @@ storePaymentPurposePremiumGiftCodes user_ids:vector<int53> boosted_chat_id:int53
//@boosted_chat_id Identifier of the channel chat, which will be automatically boosted by the users for duration of the Premium subscription and which is administered by the user //@boosted_chat_id Identifier of the channel chat, which will be automatically boosted by the users for duration of the Premium subscription and which is administered by the user
//@additional_chat_ids Identifiers of other channel chats that must be subscribed by the users to be eligible //@additional_chat_ids Identifiers of other channel chats that must be subscribed by the users to be eligible
//@date Point in time (Unix timestamp) when the giveaway will be performed; must be from 1 minute to 365 days in the future //@date Point in time (Unix timestamp) when the giveaway will be performed; must be from 1 minute to 365 days in the future
//@only_new_subscribers Pass true, if only new subscribers of the chats will be eligible for the giveaway //@only_new_subscribers Pass true if only new subscribers of the chats will be eligible for the giveaway
//@currency ISO 4217 currency code of the payment currency //@currency ISO 4217 currency code of the payment currency
//@amount Paid amount, in the smallest units of the currency //@amount Paid amount, in the smallest units of the currency
storePaymentPurposePremiumGiveaway boosted_chat_id:int53 additional_chat_ids:vector<int53> date:int32 only_new_subscribers:Bool currency:string amount:int53 = StorePaymentPurpose; storePaymentPurposePremiumGiveaway boosted_chat_id:int53 additional_chat_ids:vector<int53> date:int32 only_new_subscribers:Bool currency:string amount:int53 = StorePaymentPurpose;

View File

@ -414,6 +414,7 @@ bool DialogAction::is_canceled_by_message_of_type(MessageContentType message_con
case MessageContentType::Story: case MessageContentType::Story:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
return false; return false;
default: default:
UNREACHABLE(); UNREACHABLE();

View File

@ -476,7 +476,7 @@ class MessageChatSetTtl final : public MessageContent {
class MessageUnsupported final : public MessageContent { class MessageUnsupported final : public MessageContent {
public: public:
static constexpr int32 CURRENT_VERSION = 21; static constexpr int32 CURRENT_VERSION = 22;
int32 version = CURRENT_VERSION; int32 version = CURRENT_VERSION;
MessageUnsupported() = default; MessageUnsupported() = default;
@ -954,6 +954,29 @@ class MessageGiftCode final : public MessageContent {
} }
}; };
class MessageGiveaway final : public MessageContent {
public:
vector<ChannelId> channel_ids;
bool only_new_subscribers = false;
int32 quantity = 0;
int32 months = 0;
int32 until_date = 0;
MessageGiveaway() = default;
MessageGiveaway(vector<ChannelId> channel_ids, bool only_new_subscribers, int32 quantity, int32 months,
int32 until_date)
: channel_ids(std::move(channel_ids))
, only_new_subscribers(only_new_subscribers)
, quantity(quantity)
, months(months)
, until_date(until_date) {
}
MessageContentType get_type() const final {
return MessageContentType::Giveaway;
}
};
template <class StorerT> template <class StorerT>
static void store(const MessageContent *content, StorerT &storer) { static void store(const MessageContent *content, StorerT &storer) {
CHECK(content != nullptr); CHECK(content != nullptr);
@ -1370,6 +1393,17 @@ static void store(const MessageContent *content, StorerT &storer) {
store(m->code, storer); store(m->code, storer);
break; break;
} }
case MessageContentType::Giveaway: {
const auto *m = static_cast<const MessageGiveaway *>(content);
BEGIN_STORE_FLAGS();
STORE_FLAG(m->only_new_subscribers);
END_STORE_FLAGS();
store(m->channel_ids, storer);
store(m->quantity, storer);
store(m->months, storer);
store(m->until_date, storer);
break;
}
default: default:
UNREACHABLE(); UNREACHABLE();
} }
@ -1931,6 +1965,23 @@ static void parse(unique_ptr<MessageContent> &content, ParserT &parser) {
content = std::move(m); content = std::move(m);
break; break;
} }
case MessageContentType::Giveaway: {
auto m = make_unique<MessageGiveaway>();
BEGIN_PARSE_FLAGS();
PARSE_FLAG(m->only_new_subscribers);
END_PARSE_FLAGS();
parse(m->channel_ids, parser);
parse(m->quantity, parser);
parse(m->months, parser);
parse(m->until_date, parser);
for (auto channel_id : m->channel_ids) {
if (!channel_id.is_valid()) {
is_bad = true;
}
}
content = std::move(m);
break;
}
default: default:
is_bad = true; is_bad = true;
@ -2552,6 +2603,7 @@ bool can_have_input_media(const Td *td, const MessageContent *content, bool is_s
case MessageContentType::SetBackground: case MessageContentType::SetBackground:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
return false; return false;
case MessageContentType::Animation: case MessageContentType::Animation:
case MessageContentType::Audio: case MessageContentType::Audio:
@ -2683,6 +2735,7 @@ SecretInputMedia get_secret_input_media(const MessageContent *content, Td *td,
case MessageContentType::SetBackground: case MessageContentType::SetBackground:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
break; break;
default: default:
UNREACHABLE(); UNREACHABLE();
@ -2817,6 +2870,7 @@ static tl_object_ptr<telegram_api::InputMedia> get_input_media_impl(
case MessageContentType::SetBackground: case MessageContentType::SetBackground:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
break; break;
default: default:
UNREACHABLE(); UNREACHABLE();
@ -2991,6 +3045,7 @@ void delete_message_content_thumbnail(MessageContent *content, Td *td) {
case MessageContentType::SetBackground: case MessageContentType::SetBackground:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
break; break;
default: default:
UNREACHABLE(); UNREACHABLE();
@ -3190,6 +3245,7 @@ Status can_send_message_content(DialogId dialog_id, const MessageContent *conten
case MessageContentType::SetBackground: case MessageContentType::SetBackground:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
UNREACHABLE(); UNREACHABLE();
} }
return Status::OK(); return Status::OK();
@ -3329,6 +3385,7 @@ static int32 get_message_content_media_index_mask(const MessageContent *content,
case MessageContentType::SetBackground: case MessageContentType::SetBackground:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
return 0; return 0;
default: default:
UNREACHABLE(); UNREACHABLE();
@ -3557,6 +3614,8 @@ vector<UserId> get_message_content_min_user_ids(const Td *td, const MessageConte
break; break;
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
break; break;
case MessageContentType::Giveaway:
break;
default: default:
UNREACHABLE(); UNREACHABLE();
break; break;
@ -4271,6 +4330,15 @@ void merge_message_contents(Td *td, const MessageContent *old_content, MessageCo
} }
break; break;
} }
case MessageContentType::Giveaway: {
const auto *old_ = static_cast<const MessageGiveaway *>(old_content);
const auto *new_ = static_cast<const MessageGiveaway *>(new_content);
if (old_->channel_ids != new_->channel_ids || old_->only_new_subscribers != new_->only_new_subscribers ||
old_->quantity != new_->quantity || old_->months != new_->months || old_->until_date != new_->until_date) {
need_update = true;
}
break;
}
default: default:
UNREACHABLE(); UNREACHABLE();
break; break;
@ -4413,6 +4481,7 @@ bool merge_message_content_file_id(Td *td, MessageContent *message_content, File
case MessageContentType::SetBackground: case MessageContentType::SetBackground:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
LOG(ERROR) << "Receive new file " << new_file_id << " in a sent message of the type " << content_type; LOG(ERROR) << "Receive new file " << new_file_id << " in a sent message of the type " << content_type;
break; break;
default: default:
@ -5162,8 +5231,23 @@ unique_ptr<MessageContent> get_message_content(Td *td, FormattedText message,
td->messages_manager_->force_create_dialog(dialog_id, "messageMediaStory"); td->messages_manager_->force_create_dialog(dialog_id, "messageMediaStory");
return make_unique<MessageStory>(story_full_id, media->via_mention_); return make_unique<MessageStory>(story_full_id, media->via_mention_);
} }
case telegram_api::messageMediaGiveaway::ID: case telegram_api::messageMediaGiveaway::ID: {
return make_unique<MessageUnsupported>(); auto media = move_tl_object_as<telegram_api::messageMediaGiveaway>(media_ptr);
vector<ChannelId> channel_ids;
for (auto channel : media->channels_) {
ChannelId channel_id(channel);
if (channel_id.is_valid()) {
channel_ids.push_back(channel_id);
td->messages_manager_->force_create_dialog(DialogId(channel_id), "messageMediaGiveaway", true);
}
}
if (channel_ids.empty() || media->quantity_ <= 0 || media->months_ <= 0 || media->until_date_ < 0) {
LOG(ERROR) << "Receive " << to_string(media);
break;
}
return td::make_unique<MessageGiveaway>(std::move(channel_ids), media->only_new_subscribers_, media->quantity_,
media->months_, media->until_date_);
}
case telegram_api::messageMediaUnsupported::ID: case telegram_api::messageMediaUnsupported::ID:
return make_unique<MessageUnsupported>(); return make_unique<MessageUnsupported>();
default: default:
@ -5439,6 +5523,7 @@ unique_ptr<MessageContent> dup_message_content(Td *td, DialogId dialog_id, const
case MessageContentType::SetBackground: case MessageContentType::SetBackground:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
return nullptr; return nullptr;
default: default:
UNREACHABLE(); UNREACHABLE();
@ -6189,6 +6274,17 @@ tl_object_ptr<td_api::MessageContent> get_message_content_object(const MessageCo
get_message_sender_object(td, m->creator_dialog_id, "messagePremiumGiftCode"), m->via_giveaway, m->months, get_message_sender_object(td, m->creator_dialog_id, "messagePremiumGiftCode"), m->via_giveaway, m->months,
m->code); m->code);
} }
case MessageContentType::Giveaway: {
const auto *m = static_cast<const MessageGiveaway *>(content);
vector<int64> chat_ids;
for (auto channel_id : m->channel_ids) {
DialogId boosted_dialog_id(channel_id);
td->messages_manager_->force_create_dialog(boosted_dialog_id, "messageGiveaway", true);
chat_ids.push_back(td->messages_manager_->get_chat_id_object(boosted_dialog_id, "messageGiveaway"));
}
return td_api::make_object<td_api::messagePremiumGiveaway>(std::move(chat_ids), m->only_new_subscribers,
m->quantity, m->months, m->until_date);
}
default: default:
UNREACHABLE(); UNREACHABLE();
return nullptr; return nullptr;
@ -6616,6 +6712,7 @@ string get_message_content_search_text(const Td *td, const MessageContent *conte
case MessageContentType::SetBackground: case MessageContentType::SetBackground:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
return string(); return string();
default: default:
UNREACHABLE(); UNREACHABLE();
@ -6928,6 +7025,13 @@ void add_message_content_dependencies(Dependencies &dependencies, const MessageC
dependencies.add_message_sender_dependencies(content->creator_dialog_id); dependencies.add_message_sender_dependencies(content->creator_dialog_id);
break; break;
} }
case MessageContentType::Giveaway: {
const auto *content = static_cast<const MessageGiveaway *>(message_content);
for (auto channel_id : content->channel_ids) {
dependencies.add_dialog_and_dependencies(DialogId(channel_id));
}
break;
}
default: default:
UNREACHABLE(); UNREACHABLE();
break; break;

View File

@ -130,6 +130,8 @@ StringBuilder &operator<<(StringBuilder &string_builder, MessageContentType cont
return string_builder << "WriteAccessAllowedByRequest"; return string_builder << "WriteAccessAllowedByRequest";
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
return string_builder << "GiftCode"; return string_builder << "GiftCode";
case MessageContentType::Giveaway:
return string_builder << "Giveaway";
default: default:
return string_builder << "Invalid type " << static_cast<int32>(content_type); return string_builder << "Invalid type " << static_cast<int32>(content_type);
} }
@ -197,6 +199,7 @@ bool is_allowed_media_group_content(MessageContentType content_type) {
case MessageContentType::Story: case MessageContentType::Story:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
return false; return false;
default: default:
UNREACHABLE(); UNREACHABLE();
@ -273,6 +276,7 @@ bool is_secret_message_content(int32 ttl, MessageContentType content_type) {
case MessageContentType::Story: case MessageContentType::Story:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
return false; return false;
default: default:
UNREACHABLE(); UNREACHABLE();
@ -303,6 +307,7 @@ bool is_service_message_content(MessageContentType content_type) {
case MessageContentType::Poll: case MessageContentType::Poll:
case MessageContentType::Dice: case MessageContentType::Dice:
case MessageContentType::Story: case MessageContentType::Story:
case MessageContentType::Giveaway:
return false; return false;
case MessageContentType::ChatCreate: case MessageContentType::ChatCreate:
case MessageContentType::ChatChangeTitle: case MessageContentType::ChatChangeTitle:
@ -411,6 +416,7 @@ bool can_have_message_content_caption(MessageContentType content_type) {
case MessageContentType::Story: case MessageContentType::Story:
case MessageContentType::WriteAccessAllowedByRequest: case MessageContentType::WriteAccessAllowedByRequest:
case MessageContentType::GiftCode: case MessageContentType::GiftCode:
case MessageContentType::Giveaway:
return false; return false;
default: default:
UNREACHABLE(); UNREACHABLE();

View File

@ -72,7 +72,8 @@ enum class MessageContentType : int32 {
SetBackground, SetBackground,
Story, Story,
WriteAccessAllowedByRequest, WriteAccessAllowedByRequest,
GiftCode GiftCode,
Giveaway
}; };
// increase MessageUnsupported::CURRENT_VERSION each time a new message content type is added // increase MessageUnsupported::CURRENT_VERSION each time a new message content type is added