2022-09-22 18:08:06 +02:00
|
|
|
//
|
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2022-10-12 14:59:58 +02:00
|
|
|
#include "td/telegram/DialogId.h"
|
2022-09-22 18:08:06 +02:00
|
|
|
#include "td/telegram/files/FileId.h"
|
|
|
|
#include "td/telegram/LabeledPricePart.h"
|
|
|
|
#include "td/telegram/MessageExtendedMedia.h"
|
|
|
|
#include "td/telegram/MessageId.h"
|
|
|
|
#include "td/telegram/Photo.h"
|
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class Td;
|
|
|
|
|
2022-09-24 22:09:40 +02:00
|
|
|
class InputInvoice {
|
|
|
|
struct Invoice {
|
|
|
|
string currency_;
|
|
|
|
vector<LabeledPricePart> price_parts_;
|
|
|
|
int64 max_tip_amount_ = 0;
|
|
|
|
vector<int64> suggested_tip_amounts_;
|
|
|
|
string recurring_payment_terms_of_service_url_;
|
|
|
|
bool is_test_ = false;
|
|
|
|
bool need_name_ = false;
|
|
|
|
bool need_phone_number_ = false;
|
|
|
|
bool need_email_address_ = false;
|
|
|
|
bool need_shipping_address_ = false;
|
|
|
|
bool send_phone_number_to_provider_ = false;
|
|
|
|
bool send_email_address_to_provider_ = false;
|
|
|
|
bool is_flexible_ = false;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-24 22:09:40 +02:00
|
|
|
Invoice() = default;
|
|
|
|
Invoice(string &¤cy, bool is_test, bool need_shipping_address)
|
|
|
|
: currency_(std::move(currency)), is_test_(is_test), need_shipping_address_(need_shipping_address) {
|
|
|
|
}
|
2022-09-24 22:00:49 +02:00
|
|
|
|
2022-09-24 22:09:40 +02:00
|
|
|
tl_object_ptr<telegram_api::invoice> get_input_invoice() const;
|
2022-09-24 22:00:49 +02:00
|
|
|
|
2022-09-24 22:09:40 +02:00
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:30:26 +02:00
|
|
|
string title_;
|
|
|
|
string description_;
|
|
|
|
Photo photo_;
|
|
|
|
string start_parameter_;
|
|
|
|
Invoice invoice_;
|
|
|
|
string payload_;
|
|
|
|
string provider_token_;
|
|
|
|
string provider_data_;
|
|
|
|
MessageExtendedMedia extended_media_;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:30:26 +02:00
|
|
|
int64 total_amount_ = 0;
|
|
|
|
MessageId receipt_message_id_;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-24 22:04:04 +02:00
|
|
|
friend bool operator==(const InputInvoice &lhs, const InputInvoice &rhs);
|
|
|
|
|
|
|
|
public:
|
2022-09-23 11:52:54 +02:00
|
|
|
InputInvoice() = default;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
InputInvoice(tl_object_ptr<telegram_api::messageMediaInvoice> &&message_invoice, Td *td, DialogId owner_dialog_id,
|
|
|
|
FormattedText &&message);
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
InputInvoice(tl_object_ptr<telegram_api::botInlineMessageMediaInvoice> &&message_invoice, Td *td,
|
|
|
|
DialogId owner_dialog_id);
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
static Result<InputInvoice> process_input_message_invoice(
|
2022-09-23 15:16:56 +02:00
|
|
|
td_api::object_ptr<td_api::InputMessageContent> &&input_message_content, Td *td, DialogId owner_dialog_id,
|
|
|
|
bool is_premium);
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
tl_object_ptr<td_api::messageInvoice> get_message_invoice_object(Td *td, bool skip_bot_commands,
|
|
|
|
int32 max_media_timestamp) const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 15:16:56 +02:00
|
|
|
tl_object_ptr<telegram_api::inputMediaInvoice> get_input_media_invoice(
|
|
|
|
Td *td, tl_object_ptr<telegram_api::InputFile> input_file,
|
|
|
|
tl_object_ptr<telegram_api::InputFile> input_thumbnail) const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
tl_object_ptr<telegram_api::inputBotInlineMessageMediaInvoice> get_input_bot_inline_message_media_invoice(
|
|
|
|
tl_object_ptr<telegram_api::ReplyMarkup> &&reply_markup, Td *td) const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
vector<FileId> get_file_ids(const Td *td) const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
void delete_thumbnail(Td *td);
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-24 21:45:29 +02:00
|
|
|
bool need_reget() const;
|
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
bool has_media_timestamp() const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-24 21:55:03 +02:00
|
|
|
bool is_equal_but_different(const InputInvoice &other) const;
|
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
const FormattedText *get_caption() const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
int32 get_duration(const Td *td) const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
FileId get_upload_file_id() const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
FileId get_any_file_id() const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
FileId get_thumbnail_file_id(const Td *td) const;
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-24 21:42:47 +02:00
|
|
|
void update_from(const InputInvoice &old_input_invoice);
|
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
bool update_extended_media(telegram_api::object_ptr<telegram_api::MessageExtendedMedia> extended_media,
|
|
|
|
DialogId owner_dialog_id, Td *td);
|
2022-09-24 21:17:17 +02:00
|
|
|
|
|
|
|
bool need_poll_extended_media() const;
|
2022-09-24 22:00:49 +02:00
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
2022-09-23 11:52:54 +02:00
|
|
|
};
|
2022-09-22 18:08:06 +02:00
|
|
|
|
2022-09-23 11:52:54 +02:00
|
|
|
bool operator==(const InputInvoice &lhs, const InputInvoice &rhs);
|
|
|
|
bool operator!=(const InputInvoice &lhs, const InputInvoice &rhs);
|
2022-09-23 11:07:07 +02:00
|
|
|
|
2022-09-22 18:37:02 +02:00
|
|
|
tl_object_ptr<td_api::formattedText> get_product_description_object(const string &description);
|
|
|
|
|
2022-09-22 18:08:06 +02:00
|
|
|
} // namespace td
|