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
use super::{
callback, chat, poll::Answer, shipping, ChosenInlineResult, InlineQuery,
Message, Poll, PreCheckoutQuery,
};
use is_macro::Is;
use serde::{
de::{Deserializer, Error, IgnoredAny, MapAccess, Visitor},
Deserialize,
};
use std::{
convert::TryFrom,
fmt::{self, Formatter},
};
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Deserialize)]
#[serde(transparent)]
pub struct Id(pub isize);
#[derive(Debug, PartialEq, Clone, Is)]
#[allow(clippy::large_enum_variant)]
#[non_exhaustive]
pub enum Kind {
Message(Message),
EditedMessage(Message),
ChannelPost(Message),
EditedChannelPost(Message),
InlineQuery(InlineQuery),
CallbackQuery(callback::Query),
Poll(Poll),
PollAnswer(Answer),
ChosenInlineResult(ChosenInlineResult),
ShippingQuery(shipping::Query),
PreCheckoutQuery(PreCheckoutQuery),
MyChatMember(chat::member::Updated),
ChatMember(chat::member::Updated),
Unknown,
}
#[derive(Debug, Clone)]
#[non_exhaustive]
pub struct Update {
pub id: Id,
pub kind: Kind,
}
#[derive(Debug)]
pub(crate) struct RawUpdate {
pub id: Id,
pub kind: Result<Kind, String>,
}
impl TryFrom<RawUpdate> for Update {
type Error = String;
fn try_from(raw_update: RawUpdate) -> Result<Self, Self::Error> {
Ok(Self {
id: raw_update.id,
kind: raw_update.kind?,
})
}
}
const UPDATE_ID: &str = "update_id";
const MESSAGE: &str = "message";
const EDITED_MESSAGE: &str = "edited_message";
const CHANNEL_POST: &str = "channel_post";
const EDITED_CHANNEL_POST: &str = "edited_channel_post";
const INLINE_QUERY: &str = "inline_query";
const CALLBACK_QUERY: &str = "callback_query";
const CHOSEN_INLINE_RESULT: &str = "chosen_inline_result";
const SHIPPING_QUERY: &str = "shipping_query";
const PRE_CHECKOUT_QUERY: &str = "pre_checkout_query";
const CHAT_MEMBER: &str = "chat_member";
const MY_CHAT_MEMBER: &str = "my_chat_member";
const POLL: &str = "poll";
const POLL_ANSWER: &str = "poll_answer";
struct RawUpdateVisitor;
impl<'v> Visitor<'v> for RawUpdateVisitor {
type Value = RawUpdate;
fn expecting(&self, fmt: &mut Formatter) -> fmt::Result {
write!(fmt, "struct RawUpdate")
}
fn visit_map<V>(self, mut map: V) -> Result<Self::Value, V::Error>
where
V: MapAccess<'v>,
{
let mut id = None;
let mut kind = Ok(Kind::Unknown);
while let Some(key) = map.next_key()? {
kind = match key {
UPDATE_ID => {
id = Some(map.next_value()?);
continue;
}
MESSAGE => map.next_value().map(Kind::Message),
EDITED_MESSAGE => map.next_value().map(Kind::EditedMessage),
CHANNEL_POST => map.next_value().map(Kind::ChannelPost),
EDITED_CHANNEL_POST => {
map.next_value().map(Kind::EditedChannelPost)
}
INLINE_QUERY => map.next_value().map(Kind::InlineQuery),
CALLBACK_QUERY => map.next_value().map(Kind::CallbackQuery),
CHOSEN_INLINE_RESULT => {
map.next_value().map(Kind::ChosenInlineResult)
}
SHIPPING_QUERY => map.next_value().map(Kind::ShippingQuery),
PRE_CHECKOUT_QUERY => {
map.next_value().map(Kind::PreCheckoutQuery)
}
POLL => map.next_value().map(Kind::Poll),
POLL_ANSWER => map.next_value().map(Kind::PollAnswer),
CHAT_MEMBER => map.next_value().map(Kind::ChatMember),
MY_CHAT_MEMBER => map.next_value().map(Kind::MyChatMember),
_ => {
let _: IgnoredAny = map.next_value()?;
Ok(Kind::Unknown)
}
};
}
Ok(RawUpdate {
id: id.ok_or_else(|| Error::missing_field(UPDATE_ID))?,
kind: kind.map_err(|x| x.to_string()),
})
}
}
impl<'de> Deserialize<'de> for RawUpdate {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
deserializer.deserialize_struct(
"RawUpdate",
&[
UPDATE_ID,
MESSAGE,
EDITED_MESSAGE,
CHANNEL_POST,
EDITED_CHANNEL_POST,
INLINE_QUERY,
CHOSEN_INLINE_RESULT,
SHIPPING_QUERY,
PRE_CHECKOUT_QUERY,
POLL,
POLL_ANSWER,
],
RawUpdateVisitor,
)
}
}
impl<'de> Deserialize<'de> for Update {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
Self::try_from(RawUpdate::deserialize(deserializer)?)
.map_err(Error::custom)
}
}