Add td_api::starTransactionPartnerUser.
This commit is contained in:
parent
a40f104470
commit
8dd540ca71
@ -891,6 +891,10 @@ starTransactionPartnerBot bot_user_id:int53 product_info:productInfo invoice_pay
|
||||
//@media Information about the bought media
|
||||
starTransactionPartnerChannel chat_id:int53 paid_media_message_id:int53 media:vector<PaidMedia> = StarTransactionPartner;
|
||||
|
||||
//@description The transaction is a gift of Telegram Stars from another user
|
||||
//@user_id Identifier of the user; 0 if the gift was anonymous
|
||||
starTransactionPartnerUser user_id:int53 = StarTransactionPartner;
|
||||
|
||||
//@description The transaction is a transaction with unknown partner
|
||||
starTransactionPartnerUnsupported = StarTransactionPartner;
|
||||
|
||||
|
@ -169,6 +169,10 @@ class GetStarsTransactionsQuery final : public Td::ResultHandler {
|
||||
case telegram_api::starsTransactionPeerPlayMarket::ID:
|
||||
return td_api::make_object<td_api::starTransactionPartnerGooglePlay>();
|
||||
case telegram_api::starsTransactionPeerFragment::ID: {
|
||||
if (transaction->gift_) {
|
||||
transaction->gift_ = false;
|
||||
return td_api::make_object<td_api::starTransactionPartnerUser>(0);
|
||||
}
|
||||
auto state = [&]() -> td_api::object_ptr<td_api::RevenueWithdrawalState> {
|
||||
if (transaction->transaction_date_ > 0) {
|
||||
SCOPE_EXIT {
|
||||
@ -203,6 +207,13 @@ class GetStarsTransactionsQuery final : public Td::ResultHandler {
|
||||
if (dialog_id.get_type() == DialogType::User) {
|
||||
auto user_id = dialog_id.get_user_id();
|
||||
if (td_->auth_manager_->is_bot() == td_->user_manager_->is_user_bot(user_id)) {
|
||||
if (transaction->gift_ && !td_->auth_manager_->is_bot()) {
|
||||
transaction->gift_ = false;
|
||||
return td_api::make_object<td_api::starTransactionPartnerUser>(
|
||||
user_id == UserManager::get_service_notifications_user_id()
|
||||
? 0
|
||||
: td_->user_manager_->get_user_id_object(user_id, "starTransactionPartnerUser"));
|
||||
}
|
||||
LOG(ERROR) << "Receive star transaction with " << user_id;
|
||||
return td_api::make_object<td_api::starTransactionPartnerUnsupported>();
|
||||
}
|
||||
@ -264,6 +275,9 @@ class GetStarsTransactionsQuery final : public Td::ResultHandler {
|
||||
if (transaction->msg_id_ != 0) {
|
||||
LOG(ERROR) << "Receive message identifier with " << to_string(star_transaction);
|
||||
}
|
||||
if (transaction->gift_) {
|
||||
LOG(ERROR) << "Receive gift with " << to_string(star_transaction);
|
||||
}
|
||||
}
|
||||
if (!file_ids.empty()) {
|
||||
auto file_source_id =
|
||||
|
Loading…
Reference in New Issue
Block a user