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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
use crate::errors::Result;
use crate::types::*;
use uuid::Uuid;

use std::fmt::Debug;

/// Represents the type of a user. The following types are possible: regular users, deleted users and bots
pub trait TDUserType: Debug + RObject {}

/// Represents the type of a user. The following types are possible: regular users, deleted users and bots
#[derive(Debug, Clone, Deserialize, Serialize, Default)]
#[serde(tag = "@type")]
pub enum UserType {
    #[doc(hidden)]
    #[default]
    _Default,
    /// A bot (see https://core.telegram.org/bots)
    #[serde(rename = "userTypeBot")]
    Bot(UserTypeBot),
    /// A deleted user or deleted bot. No information on the user besides the user identifier is available. It is not possible to perform any active actions on this type of user
    #[serde(rename = "userTypeDeleted")]
    Deleted(UserTypeDeleted),
    /// A regular user
    #[serde(rename = "userTypeRegular")]
    Regular(UserTypeRegular),
    /// No information on the user besides the user identifier is available, yet this user has not been deleted. This object is extremely rare and must be handled like a deleted user. It is not possible to perform any actions on users of this type
    #[serde(rename = "userTypeUnknown")]
    Unknown(UserTypeUnknown),
}

impl RObject for UserType {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        match self {
            UserType::Bot(t) => t.extra(),
            UserType::Deleted(t) => t.extra(),
            UserType::Regular(t) => t.extra(),
            UserType::Unknown(t) => t.extra(),

            _ => None,
        }
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        match self {
            UserType::Bot(t) => t.client_id(),
            UserType::Deleted(t) => t.client_id(),
            UserType::Regular(t) => t.client_id(),
            UserType::Unknown(t) => t.client_id(),

            _ => None,
        }
    }
}

impl UserType {
    pub fn from_json<S: AsRef<str>>(json: S) -> Result<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    #[doc(hidden)]
    pub fn _is_default(&self) -> bool {
        matches!(self, UserType::_Default)
    }
}

impl AsRef<UserType> for UserType {
    fn as_ref(&self) -> &UserType {
        self
    }
}

/// A bot (see https://core.telegram.org/bots)
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct UserTypeBot {
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    #[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
    client_id: Option<i32>,
    /// True, if the bot can be invited to basic group and supergroup chats

    #[serde(default)]
    can_join_groups: bool,
    /// True, if the bot can read all messages in basic group or supergroup chats and not just those addressed to the bot. In private and channel chats a bot can always read all messages

    #[serde(default)]
    can_read_all_group_messages: bool,
    /// True, if the bot supports inline queries

    #[serde(default)]
    is_inline: bool,
    /// Placeholder for inline queries (displayed on the application input field)

    #[serde(default)]
    inline_query_placeholder: String,
    /// True, if the location of the user is expected to be sent with every inline query to this bot

    #[serde(default)]
    need_location: bool,
}

impl RObject for UserTypeBot {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        self.extra.as_deref()
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        self.client_id
    }
}

impl TDUserType for UserTypeBot {}

impl UserTypeBot {
    pub fn from_json<S: AsRef<str>>(json: S) -> Result<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    pub fn builder() -> UserTypeBotBuilder {
        let mut inner = UserTypeBot::default();
        inner.extra = Some(Uuid::new_v4().to_string());

        UserTypeBotBuilder { inner }
    }

    pub fn can_join_groups(&self) -> bool {
        self.can_join_groups
    }

    pub fn can_read_all_group_messages(&self) -> bool {
        self.can_read_all_group_messages
    }

    pub fn is_inline(&self) -> bool {
        self.is_inline
    }

    pub fn inline_query_placeholder(&self) -> &String {
        &self.inline_query_placeholder
    }

    pub fn need_location(&self) -> bool {
        self.need_location
    }
}

#[doc(hidden)]
pub struct UserTypeBotBuilder {
    inner: UserTypeBot,
}

#[deprecated]
pub type RTDUserTypeBotBuilder = UserTypeBotBuilder;

impl UserTypeBotBuilder {
    pub fn build(&self) -> UserTypeBot {
        self.inner.clone()
    }

    pub fn can_join_groups(&mut self, can_join_groups: bool) -> &mut Self {
        self.inner.can_join_groups = can_join_groups;
        self
    }

    pub fn can_read_all_group_messages(&mut self, can_read_all_group_messages: bool) -> &mut Self {
        self.inner.can_read_all_group_messages = can_read_all_group_messages;
        self
    }

    pub fn is_inline(&mut self, is_inline: bool) -> &mut Self {
        self.inner.is_inline = is_inline;
        self
    }

    pub fn inline_query_placeholder<T: AsRef<str>>(
        &mut self,
        inline_query_placeholder: T,
    ) -> &mut Self {
        self.inner.inline_query_placeholder = inline_query_placeholder.as_ref().to_string();
        self
    }

    pub fn need_location(&mut self, need_location: bool) -> &mut Self {
        self.inner.need_location = need_location;
        self
    }
}

impl AsRef<UserTypeBot> for UserTypeBot {
    fn as_ref(&self) -> &UserTypeBot {
        self
    }
}

impl AsRef<UserTypeBot> for UserTypeBotBuilder {
    fn as_ref(&self) -> &UserTypeBot {
        &self.inner
    }
}

/// A deleted user or deleted bot. No information on the user besides the user identifier is available. It is not possible to perform any active actions on this type of user
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct UserTypeDeleted {
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    #[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
    client_id: Option<i32>,
}

impl RObject for UserTypeDeleted {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        self.extra.as_deref()
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        self.client_id
    }
}

impl TDUserType for UserTypeDeleted {}

impl UserTypeDeleted {
    pub fn from_json<S: AsRef<str>>(json: S) -> Result<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    pub fn builder() -> UserTypeDeletedBuilder {
        let mut inner = UserTypeDeleted::default();
        inner.extra = Some(Uuid::new_v4().to_string());

        UserTypeDeletedBuilder { inner }
    }
}

#[doc(hidden)]
pub struct UserTypeDeletedBuilder {
    inner: UserTypeDeleted,
}

#[deprecated]
pub type RTDUserTypeDeletedBuilder = UserTypeDeletedBuilder;

impl UserTypeDeletedBuilder {
    pub fn build(&self) -> UserTypeDeleted {
        self.inner.clone()
    }
}

impl AsRef<UserTypeDeleted> for UserTypeDeleted {
    fn as_ref(&self) -> &UserTypeDeleted {
        self
    }
}

impl AsRef<UserTypeDeleted> for UserTypeDeletedBuilder {
    fn as_ref(&self) -> &UserTypeDeleted {
        &self.inner
    }
}

/// A regular user
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct UserTypeRegular {
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    #[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
    client_id: Option<i32>,
}

impl RObject for UserTypeRegular {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        self.extra.as_deref()
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        self.client_id
    }
}

impl TDUserType for UserTypeRegular {}

impl UserTypeRegular {
    pub fn from_json<S: AsRef<str>>(json: S) -> Result<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    pub fn builder() -> UserTypeRegularBuilder {
        let mut inner = UserTypeRegular::default();
        inner.extra = Some(Uuid::new_v4().to_string());

        UserTypeRegularBuilder { inner }
    }
}

#[doc(hidden)]
pub struct UserTypeRegularBuilder {
    inner: UserTypeRegular,
}

#[deprecated]
pub type RTDUserTypeRegularBuilder = UserTypeRegularBuilder;

impl UserTypeRegularBuilder {
    pub fn build(&self) -> UserTypeRegular {
        self.inner.clone()
    }
}

impl AsRef<UserTypeRegular> for UserTypeRegular {
    fn as_ref(&self) -> &UserTypeRegular {
        self
    }
}

impl AsRef<UserTypeRegular> for UserTypeRegularBuilder {
    fn as_ref(&self) -> &UserTypeRegular {
        &self.inner
    }
}

/// No information on the user besides the user identifier is available, yet this user has not been deleted. This object is extremely rare and must be handled like a deleted user. It is not possible to perform any actions on users of this type
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct UserTypeUnknown {
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    #[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
    client_id: Option<i32>,
}

impl RObject for UserTypeUnknown {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        self.extra.as_deref()
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        self.client_id
    }
}

impl TDUserType for UserTypeUnknown {}

impl UserTypeUnknown {
    pub fn from_json<S: AsRef<str>>(json: S) -> Result<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    pub fn builder() -> UserTypeUnknownBuilder {
        let mut inner = UserTypeUnknown::default();
        inner.extra = Some(Uuid::new_v4().to_string());

        UserTypeUnknownBuilder { inner }
    }
}

#[doc(hidden)]
pub struct UserTypeUnknownBuilder {
    inner: UserTypeUnknown,
}

#[deprecated]
pub type RTDUserTypeUnknownBuilder = UserTypeUnknownBuilder;

impl UserTypeUnknownBuilder {
    pub fn build(&self) -> UserTypeUnknown {
        self.inner.clone()
    }
}

impl AsRef<UserTypeUnknown> for UserTypeUnknown {
    fn as_ref(&self) -> &UserTypeUnknown {
        self
    }
}

impl AsRef<UserTypeUnknown> for UserTypeUnknownBuilder {
    fn as_ref(&self) -> &UserTypeUnknown {
        &self.inner
    }
}