1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
use std::ops::Not;
use crate::types::*;
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
#[serde(untagged)]
pub enum ReplyMarkup {
InlineKeyboardMarkup(InlineKeyboardMarkup),
ReplyKeyboardMarkup(ReplyKeyboardMarkup),
ReplyKeyboardRemove(ReplyKeyboardRemove),
ForceReply(ForceReply),
}
impl From<InlineKeyboardMarkup> for ReplyMarkup {
fn from(value: InlineKeyboardMarkup) -> ReplyMarkup {
ReplyMarkup::InlineKeyboardMarkup(value)
}
}
impl From<Vec<Vec<InlineKeyboardButton>>> for ReplyMarkup {
fn from(value: Vec<Vec<InlineKeyboardButton>>) -> ReplyMarkup {
ReplyMarkup::InlineKeyboardMarkup(value.into())
}
}
impl From<ReplyKeyboardMarkup> for ReplyMarkup {
fn from(value: ReplyKeyboardMarkup) -> ReplyMarkup {
ReplyMarkup::ReplyKeyboardMarkup(value)
}
}
impl From<ReplyKeyboardRemove> for ReplyMarkup {
fn from(value: ReplyKeyboardRemove) -> ReplyMarkup {
ReplyMarkup::ReplyKeyboardRemove(value)
}
}
impl From<ForceReply> for ReplyMarkup {
fn from(value: ForceReply) -> ReplyMarkup {
ReplyMarkup::ForceReply(value)
}
}
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
pub struct ReplyKeyboardMarkup {
keyboard: Vec<Vec<KeyboardButton>>,
#[serde(skip_serializing_if = "Not::not")]
resize_keyboard: bool,
#[serde(skip_serializing_if = "Not::not")]
one_time_keyboard: bool,
#[serde(skip_serializing_if = "Not::not")]
selective: bool,
}
impl ReplyKeyboardMarkup {
pub fn new() -> Self {
ReplyKeyboardMarkup {
keyboard: Vec::new(),
resize_keyboard: false,
one_time_keyboard: false,
selective: false,
}
}
fn init(rows: Vec<Vec<KeyboardButton>>) -> Self {
let mut keyboard = Self::new();
keyboard.keyboard = rows;
keyboard
}
pub fn resize_keyboard(&mut self) -> &mut Self {
self.resize_keyboard = true;
self
}
pub fn one_time_keyboard(&mut self) -> &mut Self {
self.one_time_keyboard = true;
self
}
pub fn selective(&mut self) -> &mut Self {
self.selective = true;
self
}
pub fn add_row(&mut self, row: Vec<KeyboardButton>) -> &mut Vec<KeyboardButton> {
self.keyboard.push(row);
self.keyboard.last_mut().unwrap()
}
pub fn add_empty_row(&mut self) -> &mut Vec<KeyboardButton> {
self.add_row(Default::default())
}
}
impl From<Vec<Vec<KeyboardButton>>> for ReplyKeyboardMarkup {
fn from(value: Vec<Vec<KeyboardButton>>) -> Self {
Self::init(value)
}
}
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
pub struct KeyboardButton {
text: String,
#[serde(skip_serializing_if = "Not::not")]
request_contact: bool,
#[serde(skip_serializing_if = "Not::not")]
request_location: bool,
}
impl KeyboardButton {
pub fn new<S: AsRef<str>>(text: S) -> Self {
Self {
text: text.as_ref().to_string(),
request_contact: false,
request_location: false,
}
}
pub fn request_contact(&mut self) -> &mut Self {
self.request_location = false;
self.request_contact = true;
self
}
pub fn request_location(&mut self) -> &mut Self {
self.request_contact = false;
self.request_location = true;
self
}
}
impl<'a> From<&'a str> for KeyboardButton {
fn from(value: &'a str) -> KeyboardButton {
KeyboardButton::new(value)
}
}
impl From<String> for KeyboardButton {
fn from(value: String) -> KeyboardButton {
KeyboardButton::new(value)
}
}
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
pub struct ReplyKeyboardRemove {
remove_keyboard: True,
#[serde(skip_serializing_if = "Not::not")]
selective: bool,
}
impl ReplyKeyboardRemove {
pub fn new() -> Self {
Self {
remove_keyboard: True,
selective: false,
}
}
pub fn selective(&mut self) -> &mut Self {
self.selective = true;
self
}
}
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
pub struct InlineKeyboardMarkup {
inline_keyboard: Vec<Vec<InlineKeyboardButton>>,
}
impl InlineKeyboardMarkup {
pub fn new() -> Self {
Self {
inline_keyboard: Default::default(),
}
}
fn init(inline_keyboard: Vec<Vec<InlineKeyboardButton>>) -> Self {
Self { inline_keyboard }
}
pub fn add_row(&mut self, row: Vec<InlineKeyboardButton>) -> &mut Vec<InlineKeyboardButton> {
self.inline_keyboard.push(row);
self.inline_keyboard.last_mut().unwrap()
}
pub fn add_empty_row(&mut self) -> &mut Vec<InlineKeyboardButton> {
self.add_row(Default::default())
}
}
impl From<Vec<Vec<InlineKeyboardButton>>> for InlineKeyboardMarkup {
fn from(value: Vec<Vec<InlineKeyboardButton>>) -> Self {
Self::init(value)
}
}
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
pub struct InlineKeyboardButton {
text: String,
#[serde(flatten)]
kind: InlineKeyboardButtonKind,
}
impl InlineKeyboardButton {
pub fn callback<T: AsRef<str>, C: AsRef<str>>(text: T, callback: C) -> Self {
Self {
text: text.as_ref().to_string(),
kind: InlineKeyboardButtonKind::CallbackData(callback.as_ref().to_string()),
}
}
pub fn url<T: AsRef<str>, U: AsRef<str>>(text: T, url: U) -> Self {
Self {
text: text.as_ref().to_string(),
kind: InlineKeyboardButtonKind::Url(url.as_ref().to_string()),
}
}
pub fn switch_inline_query<T: AsRef<str>, Q: AsRef<str>>(text: T, query: Q) -> Self {
Self {
text: text.as_ref().to_string(),
kind: InlineKeyboardButtonKind::SwitchInlineQuery(query.as_ref().to_string()),
}
}
pub fn switch_inline_query_current_chat<T: AsRef<str>, Q: AsRef<str>>(
text: T,
query: Q,
) -> Self {
Self {
text: text.as_ref().to_string(),
kind: InlineKeyboardButtonKind::SwitchInlineQueryCurrentChat(
query.as_ref().to_string(),
),
}
}
}
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
pub enum InlineKeyboardButtonKind {
#[serde(rename = "url")]
Url(String),
#[serde(rename = "callback_data")]
CallbackData(String),
#[serde(rename = "switch_inline_query")]
SwitchInlineQuery(String),
#[serde(rename = "switch_inline_query_current_chat")]
SwitchInlineQueryCurrentChat(String),
}
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
pub struct ForceReply {
force_reply: True,
#[serde(skip_serializing_if = "Not::not")]
selective: bool,
}
impl ForceReply {
pub fn new() -> Self {
Self {
force_reply: True,
selective: false,
}
}
pub fn selective(&mut self) -> &mut Self {
self.selective = true;
self
}
}