2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// 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/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
2021-11-10 15:14:00 +01:00
|
|
|
#include "td/telegram/UserId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2022-06-28 17:34:53 +02:00
|
|
|
class ContactsManager;
|
2022-03-11 13:10:24 +01:00
|
|
|
class Dependencies;
|
2021-11-10 15:14:00 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
struct KeyboardButton {
|
|
|
|
// append only
|
2020-01-14 18:18:35 +01:00
|
|
|
enum class Type : int32 {
|
|
|
|
Text,
|
|
|
|
RequestPhoneNumber,
|
|
|
|
RequestLocation,
|
|
|
|
RequestPoll,
|
|
|
|
RequestPollQuiz,
|
2022-03-27 00:20:26 +01:00
|
|
|
RequestPollRegular,
|
|
|
|
WebView
|
2020-01-14 18:18:35 +01:00
|
|
|
};
|
2018-12-31 20:04:05 +01:00
|
|
|
Type type;
|
|
|
|
string text;
|
2022-03-27 00:20:26 +01:00
|
|
|
string url; // WebView only
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct InlineKeyboardButton {
|
|
|
|
// append only
|
2020-08-18 08:32:37 +02:00
|
|
|
enum class Type : int32 {
|
|
|
|
Url,
|
|
|
|
Callback,
|
|
|
|
CallbackGame,
|
|
|
|
SwitchInline,
|
|
|
|
SwitchInlineCurrentDialog,
|
|
|
|
Buy,
|
|
|
|
UrlAuth,
|
2021-11-10 15:14:00 +01:00
|
|
|
CallbackWithPassword,
|
2022-03-24 22:32:38 +01:00
|
|
|
User,
|
|
|
|
WebView
|
2020-08-18 08:32:37 +02:00
|
|
|
};
|
2018-12-31 20:04:05 +01:00
|
|
|
Type type;
|
2021-11-10 15:14:00 +01:00
|
|
|
int64 id = 0; // UrlAuth only, button_id or (2 * request_write_access - 1) * bot_user_id
|
|
|
|
UserId user_id; // User only
|
2018-12-31 20:04:05 +01:00
|
|
|
string text;
|
2019-05-27 16:48:15 +02:00
|
|
|
string forward_text; // UrlAuth only
|
2018-12-31 20:04:05 +01:00
|
|
|
string data;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ReplyMarkup {
|
|
|
|
// append only
|
|
|
|
enum class Type : int32 { InlineKeyboard, ShowKeyboard, RemoveKeyboard, ForceReply };
|
|
|
|
Type type;
|
|
|
|
|
|
|
|
bool is_personal = false; // for ShowKeyboard, RemoveKeyboard, ForceReply
|
|
|
|
|
|
|
|
bool need_resize_keyboard = false; // for ShowKeyboard
|
|
|
|
bool is_one_time_keyboard = false; // for ShowKeyboard
|
|
|
|
vector<vector<KeyboardButton>> keyboard; // for ShowKeyboard
|
2021-06-19 04:20:27 +02:00
|
|
|
string placeholder; // for ShowKeyboard, ForceReply
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
vector<vector<InlineKeyboardButton>> inline_keyboard; // for InlineKeyboard
|
|
|
|
|
|
|
|
StringBuilder &print(StringBuilder &string_builder) const;
|
|
|
|
|
2022-06-28 17:34:53 +02:00
|
|
|
tl_object_ptr<telegram_api::ReplyMarkup> get_input_reply_markup(ContactsManager *contacts_manager) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-06-28 17:34:53 +02:00
|
|
|
tl_object_ptr<td_api::ReplyMarkup> get_reply_markup_object(ContactsManager *contacts_manager) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
bool operator==(const ReplyMarkup &lhs, const ReplyMarkup &rhs);
|
|
|
|
bool operator!=(const ReplyMarkup &lhs, const ReplyMarkup &rhs);
|
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const ReplyMarkup &reply_markup);
|
|
|
|
|
|
|
|
unique_ptr<ReplyMarkup> get_reply_markup(tl_object_ptr<telegram_api::ReplyMarkup> &&reply_markup_ptr, bool is_bot,
|
|
|
|
bool only_inline_keyboard, bool message_contains_mention);
|
|
|
|
|
|
|
|
Result<unique_ptr<ReplyMarkup>> get_reply_markup(tl_object_ptr<td_api::ReplyMarkup> &&reply_markup_ptr, bool is_bot,
|
|
|
|
bool only_inline_keyboard, bool request_buttons_allowed,
|
2018-11-05 12:29:43 +01:00
|
|
|
bool switch_inline_buttons_allowed) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-06-28 17:34:53 +02:00
|
|
|
tl_object_ptr<telegram_api::ReplyMarkup> get_input_reply_markup(ContactsManager *contacts_manager,
|
|
|
|
const unique_ptr<ReplyMarkup> &reply_markup);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-06-28 17:34:53 +02:00
|
|
|
tl_object_ptr<td_api::ReplyMarkup> get_reply_markup_object(ContactsManager *contacts_manager,
|
|
|
|
const unique_ptr<ReplyMarkup> &reply_markup);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-11-10 15:14:00 +01:00
|
|
|
void add_reply_markup_dependencies(Dependencies &dependencies, const ReplyMarkup *reply_markup);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|