52 lines
1.7 KiB
C++
52 lines
1.7 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)
|
|
//
|
|
#pragma once
|
|
|
|
#include "td/telegram/DialogId.h"
|
|
#include "td/telegram/td_api.h"
|
|
#include "td/telegram/telegram_api.h"
|
|
#include "td/telegram/UserId.h"
|
|
|
|
#include "td/actor/actor.h"
|
|
|
|
#include "td/utils/common.h"
|
|
#include "td/utils/Promise.h"
|
|
|
|
namespace td {
|
|
|
|
class Td;
|
|
|
|
class StarManager final : public Actor {
|
|
public:
|
|
StarManager(Td *td, ActorShared<> parent);
|
|
|
|
void get_star_payment_options(Promise<td_api::object_ptr<td_api::starPaymentOptions>> &&promise);
|
|
|
|
void get_star_transactions(td_api::object_ptr<td_api::MessageSender> owner_id, const string &offset, int32 limit,
|
|
td_api::object_ptr<td_api::StarTransactionDirection> &&direction,
|
|
Promise<td_api::object_ptr<td_api::starTransactions>> &&promise);
|
|
|
|
void refund_star_payment(UserId user_id, const string &telegram_payment_charge_id, Promise<Unit> &&promise);
|
|
|
|
void get_star_withdrawal_url(const td_api::object_ptr<td_api::MessageSender> &owner_id, int64 star_count,
|
|
const string &password, Promise<string> &&promise);
|
|
|
|
private:
|
|
void tear_down() final;
|
|
|
|
Status can_manage_stars(DialogId dialog_id) const;
|
|
|
|
void send_get_star_withdrawal_url_query(
|
|
DialogId dialog_id, int64 star_count,
|
|
telegram_api::object_ptr<telegram_api::InputCheckPasswordSRP> input_check_password, Promise<string> &&promise);
|
|
|
|
Td *td_;
|
|
ActorShared<> parent_;
|
|
};
|
|
|
|
} // namespace td
|