2022-05-31 17:11:59 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2022-08-25 12:40:00 +00:00
|
|
|
#include "data/data_subscription_option.h"
|
2022-05-31 17:11:59 +00:00
|
|
|
#include "mtproto/sender.h"
|
|
|
|
|
|
|
|
class ApiWrap;
|
|
|
|
|
|
|
|
namespace Main {
|
|
|
|
class Session;
|
|
|
|
} // namespace Main
|
|
|
|
|
|
|
|
namespace Api {
|
|
|
|
|
2023-09-28 18:44:22 +00:00
|
|
|
struct GiftCode {
|
|
|
|
PeerId from = 0;
|
|
|
|
PeerId to = 0;
|
2023-10-11 09:47:21 +00:00
|
|
|
MsgId giveawayId = 0;
|
2023-09-28 18:44:22 +00:00
|
|
|
TimeId date = 0;
|
|
|
|
TimeId used = 0; // 0 if not used.
|
|
|
|
int months = 0;
|
2023-10-11 09:47:21 +00:00
|
|
|
bool giveaway = false;
|
2023-09-28 18:44:22 +00:00
|
|
|
|
|
|
|
explicit operator bool() const {
|
|
|
|
return months != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend inline bool operator==(
|
|
|
|
const GiftCode&,
|
|
|
|
const GiftCode&) = default;
|
|
|
|
};
|
|
|
|
|
2023-10-11 09:29:02 +00:00
|
|
|
enum class GiveawayState {
|
|
|
|
Invalid,
|
|
|
|
Running,
|
|
|
|
Preparing,
|
|
|
|
Finished,
|
|
|
|
Refunded,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GiveawayInfo {
|
|
|
|
QString giftCode;
|
2023-10-13 12:17:02 +00:00
|
|
|
QString disallowedCountry;
|
2023-10-11 09:29:02 +00:00
|
|
|
ChannelId adminChannelId = 0;
|
|
|
|
GiveawayState state = GiveawayState::Invalid;
|
|
|
|
TimeId tooEarlyDate = 0;
|
|
|
|
TimeId finishDate = 0;
|
2023-10-13 12:17:02 +00:00
|
|
|
TimeId startDate = 0;
|
2023-10-11 09:29:02 +00:00
|
|
|
int winnersCount = 0;
|
|
|
|
int activatedCount = 0;
|
|
|
|
bool participating = false;
|
|
|
|
|
|
|
|
explicit operator bool() const {
|
|
|
|
return state != GiveawayState::Invalid;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-05-31 17:11:59 +00:00
|
|
|
class Premium final {
|
|
|
|
public:
|
|
|
|
explicit Premium(not_null<ApiWrap*> api);
|
|
|
|
|
|
|
|
void reload();
|
|
|
|
[[nodiscard]] rpl::producer<TextWithEntities> statusTextValue() const;
|
|
|
|
|
2022-06-10 08:03:47 +00:00
|
|
|
[[nodiscard]] auto videos() const
|
|
|
|
-> const base::flat_map<QString, not_null<DocumentData*>> &;
|
|
|
|
[[nodiscard]] rpl::producer<> videosUpdated() const;
|
|
|
|
|
|
|
|
[[nodiscard]] auto stickers() const
|
|
|
|
-> const std::vector<not_null<DocumentData*>> &;
|
|
|
|
[[nodiscard]] rpl::producer<> stickersUpdated() const;
|
|
|
|
|
2022-08-04 14:48:36 +00:00
|
|
|
[[nodiscard]] auto cloudSet() const
|
|
|
|
-> const std::vector<not_null<DocumentData*>> &;
|
|
|
|
[[nodiscard]] rpl::producer<> cloudSetUpdated() const;
|
|
|
|
|
2022-06-03 11:57:06 +00:00
|
|
|
[[nodiscard]] int64 monthlyAmount() const;
|
|
|
|
[[nodiscard]] QString monthlyCurrency() const;
|
|
|
|
|
2023-09-28 18:44:22 +00:00
|
|
|
void checkGiftCode(
|
|
|
|
const QString &slug,
|
|
|
|
Fn<void(GiftCode)> done);
|
|
|
|
GiftCode updateGiftCode(const QString &slug, const GiftCode &code);
|
|
|
|
[[nodiscard]] rpl::producer<GiftCode> giftCodeValue(
|
|
|
|
const QString &slug) const;
|
2023-10-11 09:29:02 +00:00
|
|
|
void applyGiftCode(const QString &slug, Fn<void(QString)> done);
|
|
|
|
|
|
|
|
void resolveGiveawayInfo(
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
MsgId messageId,
|
|
|
|
Fn<void(GiveawayInfo)> done);
|
2023-09-28 18:44:22 +00:00
|
|
|
|
2022-08-25 12:40:00 +00:00
|
|
|
[[nodiscard]] auto subscriptionOptions() const
|
|
|
|
-> const Data::SubscriptionOptions &;
|
|
|
|
|
2022-05-31 17:11:59 +00:00
|
|
|
private:
|
2022-06-10 08:03:47 +00:00
|
|
|
void reloadPromo();
|
|
|
|
void reloadStickers();
|
2022-08-04 14:48:36 +00:00
|
|
|
void reloadCloudSet();
|
2022-06-10 08:03:47 +00:00
|
|
|
|
2022-05-31 17:11:59 +00:00
|
|
|
const not_null<Main::Session*> _session;
|
|
|
|
MTP::Sender _api;
|
|
|
|
|
2022-06-10 08:03:47 +00:00
|
|
|
mtpRequestId _promoRequestId = 0;
|
2022-05-31 17:11:59 +00:00
|
|
|
std::optional<TextWithEntities> _statusText;
|
|
|
|
rpl::event_stream<TextWithEntities> _statusTextUpdates;
|
|
|
|
|
2022-06-10 08:03:47 +00:00
|
|
|
base::flat_map<QString, not_null<DocumentData*>> _videos;
|
|
|
|
rpl::event_stream<> _videosUpdated;
|
|
|
|
|
|
|
|
mtpRequestId _stickersRequestId = 0;
|
|
|
|
uint64 _stickersHash = 0;
|
|
|
|
std::vector<not_null<DocumentData*>> _stickers;
|
|
|
|
rpl::event_stream<> _stickersUpdated;
|
|
|
|
|
2022-08-04 14:48:36 +00:00
|
|
|
mtpRequestId _cloudSetRequestId = 0;
|
|
|
|
uint64 _cloudSetHash = 0;
|
|
|
|
std::vector<not_null<DocumentData*>> _cloudSet;
|
|
|
|
rpl::event_stream<> _cloudSetUpdated;
|
|
|
|
|
2022-06-03 11:57:06 +00:00
|
|
|
int64 _monthlyAmount = 0;
|
|
|
|
QString _monthlyCurrency;
|
|
|
|
|
2023-09-28 18:44:22 +00:00
|
|
|
mtpRequestId _giftCodeRequestId = 0;
|
|
|
|
QString _giftCodeSlug;
|
|
|
|
base::flat_map<QString, GiftCode> _giftCodes;
|
|
|
|
rpl::event_stream<QString> _giftCodeUpdated;
|
|
|
|
|
2023-10-11 09:29:02 +00:00
|
|
|
mtpRequestId _giveawayInfoRequestId = 0;
|
|
|
|
PeerData *_giveawayInfoPeer = nullptr;
|
|
|
|
MsgId _giveawayInfoMessageId = 0;
|
|
|
|
Fn<void(GiveawayInfo)> _giveawayInfoDone;
|
|
|
|
|
2022-08-25 12:40:00 +00:00
|
|
|
Data::SubscriptionOptions _subscriptionOptions;
|
|
|
|
|
2022-05-31 17:11:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Api
|