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
use is_macro::Is;
use serde::{ser::SerializeMap, Serialize};
pub type Markup = Vec<Vec<Button>>;
const REGULAR: &str = "regular";
const QUIZ: &str = "quiz";
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Is)]
#[must_use]
pub enum RequestPollKind {
Any,
Regular,
Quiz,
}
impl serde::Serialize for RequestPollKind {
fn serialize<S: serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
#[allow(clippy::bool_to_int_with_if)]
let mut map =
s.serialize_map(Some(if *self == Self::Any { 0 } else { 1 }))?;
match self {
Self::Any => Ok(()),
Self::Regular => map.serialize_entry("type", REGULAR),
Self::Quiz => map.serialize_entry("type", QUIZ),
}?;
map.end()
}
}
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Is)]
#[must_use]
pub enum RequestKind {
Location,
Contact,
Poll(RequestPollKind),
}
#[derive(Debug, PartialEq, Eq, Clone, Hash)]
#[must_use]
pub struct Button {
text: String,
request: Option<RequestKind>,
}
#[derive(Debug, PartialEq, Eq, Clone, Hash, Serialize)]
#[must_use]
pub struct Keyboard {
keyboard: Markup,
#[serde(skip_serializing_if = "Option::is_none")]
resize_keyboard: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
one_time_keyboard: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
selective: Option<bool>,
}
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Default)]
#[must_use]
pub struct Remove {
selective: Option<bool>,
}
impl Button {
pub fn new(text: impl Into<String>) -> Self {
Self {
text: text.into(),
request: None,
}
}
pub const fn request(mut self, request: RequestKind) -> Self {
self.request = Some(request);
self
}
}
impl serde::Serialize for Button {
fn serialize<S: serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let len = if self.request.is_some() { 2 } else { 1 };
let mut map = s.serialize_map(Some(len))?;
map.serialize_entry("text", &self.text)?;
match self.request {
Some(RequestKind::Location) => {
map.serialize_entry("request_location", &true)
}
Some(RequestKind::Contact) => {
map.serialize_entry("request_contact", &true)
}
Some(RequestKind::Poll(poll_kind)) => {
map.serialize_entry("request_poll", &poll_kind)
}
None => Ok(()),
}?;
map.end()
}
}
impl Keyboard {
pub fn new(markup: impl Into<Markup>) -> Self {
Self {
keyboard: markup.into(),
resize_keyboard: None,
one_time_keyboard: None,
selective: None,
}
}
pub const fn is_resizable(mut self, is_resized: bool) -> Self {
self.resize_keyboard = Some(is_resized);
self
}
pub const fn is_one_time(mut self, is_one_time: bool) -> Self {
self.one_time_keyboard = Some(is_one_time);
self
}
pub const fn is_selective(mut self, is_selective: bool) -> Self {
self.selective = Some(is_selective);
self
}
}
impl From<Markup> for Keyboard {
fn from(markup: Markup) -> Self {
Self::new(markup)
}
}
impl Remove {
pub const fn new() -> Self {
Self { selective: None }
}
pub const fn selective(mut self, is_selective: bool) -> Self {
self.selective = Some(is_selective);
self
}
}
impl serde::Serialize for Remove {
fn serialize<S: serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let len = if self.selective.is_some() { 2 } else { 1 };
let mut map = s.serialize_map(Some(len))?;
map.serialize_entry("remove_keyboard", &true)?;
if let Some(selective) = self.selective {
map.serialize_entry("selective", &selective)?;
}
map.end()
}
}