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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
use crate::types::passport::PassportFile;
use serde::{de::Error, Deserialize, Deserializer, Serialize};

/// Information about documents or other Telegram Passport elements shared with the bot by the user
#[derive(Clone, Debug)]
#[allow(clippy::large_enum_variant)]
pub enum EncryptedPassportElement {
    /// Address
    Address(EncryptedPassportElementAddress),
    /// Bank statement
    BankStatement(EncryptedPassportElementBankStatement),
    /// Driver license
    DriverLicense(EncryptedPassportElementDriverLicense),
    /// E-Mail
    Email(EncryptedPassportElementEmail),
    /// Identity card
    IdentityCard(EncryptedPassportElementIdentityCard),
    /// Internal passport
    InternalPassport(EncryptedPassportElementInternalPassport),
    /// Passport
    Passport(EncryptedPassportElementPassport),
    /// Passport registration
    PassportRegistration(EncryptedPassportElementPassportRegistration),
    /// Personal details
    PersonalDetails(EncryptedPassportElementPersonalDetails),
    /// Phone number
    PhoneNumber(EncryptedPassportElementPhoneNumber),
    /// Rental agreement
    RentalAgreement(EncryptedPassportElementRentalAgreement),
    /// Temporary registration
    TemporaryRegistration(EncryptedPassportElementTemporaryRegistration),
    /// Utility bill
    UtilityBill(EncryptedPassportElementUtilityBill),
}

impl<'de> Deserialize<'de> for EncryptedPassportElement {
    fn deserialize<D>(deserializer: D) -> Result<EncryptedPassportElement, D::Error>
    where
        D: Deserializer<'de>,
    {
        let raw: RawEncryptedPassportElement = Deserialize::deserialize(deserializer)?;
        use self::EncryptedPassportElementKind::*;
        macro_rules! required {
            ($name:ident) => {{
                match raw.$name {
                    Some(val) => val,
                    None => return Err(D::Error::missing_field(stringify!($name))),
                }
            }};
        }
        Ok(match raw.kind {
            Address => EncryptedPassportElement::Address(EncryptedPassportElementAddress {
                data: required!(data),
                hash: raw.hash,
            }),
            BankStatement => EncryptedPassportElement::BankStatement(EncryptedPassportElementBankStatement {
                files: required!(files),
                translation: raw.translation,
                hash: raw.hash,
            }),
            DriverLicense => EncryptedPassportElement::DriverLicense(EncryptedPassportElementDriverLicense {
                data: required!(data),
                front_side: required!(front_side),
                reverse_side: required!(reverse_side),
                selfie: required!(selfie),
                translation: raw.translation,
                hash: raw.hash,
            }),
            Email => EncryptedPassportElement::Email(EncryptedPassportElementEmail {
                email: required!(email),
                hash: raw.hash,
            }),
            IdentityCard => EncryptedPassportElement::IdentityCard(EncryptedPassportElementIdentityCard {
                data: required!(data),
                front_side: required!(front_side),
                reverse_side: required!(reverse_side),
                selfie: required!(selfie),
                translation: raw.translation,
                hash: raw.hash,
            }),
            InternalPassport => EncryptedPassportElement::InternalPassport(EncryptedPassportElementInternalPassport {
                data: required!(data),
                front_side: required!(front_side),
                selfie: required!(selfie),
                translation: raw.translation,
                hash: raw.hash,
            }),
            Passport => EncryptedPassportElement::Passport(EncryptedPassportElementPassport {
                data: required!(data),
                front_side: required!(front_side),
                selfie: required!(selfie),
                translation: raw.translation,
                hash: raw.hash,
            }),
            PassportRegistration => {
                EncryptedPassportElement::PassportRegistration(EncryptedPassportElementPassportRegistration {
                    files: required!(files),
                    translation: raw.translation,
                    hash: raw.hash,
                })
            }
            PersonalDetails => EncryptedPassportElement::PersonalDetails(EncryptedPassportElementPersonalDetails {
                data: required!(data),
                hash: raw.hash,
            }),
            PhoneNumber => EncryptedPassportElement::PhoneNumber(EncryptedPassportElementPhoneNumber {
                phone_number: required!(phone_number),
                hash: raw.hash,
            }),
            RentalAgreement => EncryptedPassportElement::RentalAgreement(EncryptedPassportElementRentalAgreement {
                files: required!(files),
                translation: raw.translation,
                hash: raw.hash,
            }),
            TemporaryRegistration => {
                EncryptedPassportElement::TemporaryRegistration(EncryptedPassportElementTemporaryRegistration {
                    files: required!(files),
                    translation: raw.translation,
                    hash: raw.hash,
                })
            }
            UtilityBill => EncryptedPassportElement::UtilityBill(EncryptedPassportElementUtilityBill {
                files: required!(files),
                translation: raw.translation,
                hash: raw.hash,
            }),
        })
    }
}

/// Address
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementAddress {
    /// Base64-encoded encrypted
    /// Telegram Passport element data provided by the user
    /// Can be decrypted and verified using
    /// the accompanying EncryptedCredentials
    pub data: String,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Bank statement
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementBankStatement {
    /// Array of encrypted files with
    /// documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub files: Vec<PassportFile>,
    /// Array of encrypted files with translated
    /// versions of documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Driver license
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementDriverLicense {
    /// Base64-encoded encrypted
    /// Telegram Passport element data provided by the user
    /// Can be decrypted and verified using
    /// the accompanying EncryptedCredentials
    pub data: String,
    /// Encrypted file with the front side
    /// of the document, provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub front_side: PassportFile,
    /// Encrypted file with the reverse side of the document,
    /// provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub reverse_side: PassportFile,
    /// Encrypted file with the selfie of the user
    /// holding a document, provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub selfie: PassportFile,
    /// Array of encrypted files with translated
    /// versions of documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// E-Mail
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementEmail {
    /// User's verified email address
    pub email: String,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Identity card
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementIdentityCard {
    /// Base64-encoded encrypted
    /// Telegram Passport element data provided by the user
    /// Can be decrypted and verified using
    /// the accompanying EncryptedCredentials
    pub data: String,
    /// Encrypted file with the front side
    /// of the document, provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub front_side: PassportFile,
    /// Encrypted file with the reverse side of the document,
    /// provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub reverse_side: PassportFile,
    /// Encrypted file with the selfie of the user
    /// holding a document, provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub selfie: PassportFile,
    /// Array of encrypted files with translated
    /// versions of documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Internal passport
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementInternalPassport {
    /// Base64-encoded encrypted
    /// Telegram Passport element data provided by the user
    /// Can be decrypted and verified using
    /// the accompanying EncryptedCredentials
    pub data: String,
    /// Encrypted file with the front side
    /// of the document, provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub front_side: PassportFile,
    /// Encrypted file with the selfie of the user
    /// holding a document, provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub selfie: PassportFile,
    /// Array of encrypted files with translated
    /// versions of documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Passport
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementPassport {
    /// Base64-encoded encrypted
    /// Telegram Passport element data provided by the user
    /// Can be decrypted and verified using
    /// the accompanying EncryptedCredentials
    pub data: String,
    /// Encrypted file with the front side
    /// of the document, provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub front_side: PassportFile,
    /// Encrypted file with the selfie of the user
    /// holding a document, provided by the user
    /// The file can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub selfie: PassportFile,
    /// Array of encrypted files with translated
    /// versions of documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Passport registration
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementPassportRegistration {
    /// Array of encrypted files with
    /// documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub files: Vec<PassportFile>,
    /// Array of encrypted files with translated
    /// versions of documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Personal details
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementPersonalDetails {
    /// Base64-encoded encrypted
    /// Telegram Passport element data provided by the user
    /// Can be decrypted and verified using
    /// the accompanying EncryptedCredentials
    pub data: String,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Phone number
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementPhoneNumber {
    /// User's verified phone number
    pub phone_number: String,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Rental agreement
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementRentalAgreement {
    /// Array of encrypted files with
    /// documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub files: Vec<PassportFile>,
    /// Array of encrypted files with translated
    /// versions of documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Temporary registration
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementTemporaryRegistration {
    /// Array of encrypted files with
    /// documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub files: Vec<PassportFile>,
    /// Array of encrypted files with translated
    /// versions of documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

/// Utility bill
#[derive(Clone, Debug)]
pub struct EncryptedPassportElementUtilityBill {
    /// Array of encrypted files with
    /// documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub files: Vec<PassportFile>,
    /// Array of encrypted files with translated
    /// versions of documents provided by the user
    /// Files can be decrypted and verified
    /// using the accompanying EncryptedCredentials
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for
    /// using in PassportElementErrorUnspecified
    pub hash: String,
}

#[derive(Debug, Deserialize)]
struct RawEncryptedPassportElement {
    #[serde(rename = "type")]
    kind: EncryptedPassportElementKind,
    data: Option<String>,
    phone_number: Option<String>,
    email: Option<String>,
    files: Option<Vec<PassportFile>>,
    front_side: Option<PassportFile>,
    reverse_side: Option<PassportFile>,
    selfie: Option<PassportFile>,
    translation: Option<Vec<PassportFile>>,
    hash: String,
}

/// Type of encrypted passport element
#[derive(Clone, Debug, Deserialize, Serialize)]
pub enum EncryptedPassportElementKind {
    /// Address
    #[serde(rename = "address")]
    Address,
    /// Bank statement
    #[serde(rename = "bank_statement")]
    BankStatement,
    /// Driver license
    #[serde(rename = "driver_license")]
    DriverLicense,
    /// E-Mail
    #[serde(rename = "email")]
    Email,
    /// Identity card
    #[serde(rename = "identity_card")]
    IdentityCard,
    /// Internal passport
    #[serde(rename = "internal_passport")]
    InternalPassport,
    /// Passport
    #[serde(rename = "passport")]
    Passport,
    /// Passport registration
    #[serde(rename = "passport_registration")]
    PassportRegistration,
    /// Personal details
    #[serde(rename = "personal_details")]
    PersonalDetails,
    /// Phone number
    #[serde(rename = "phone_number")]
    PhoneNumber,
    /// Rental agreement
    #[serde(rename = "rental_agreement")]
    RentalAgreement,
    /// Temporary registration
    #[serde(rename = "temporary_registration")]
    TemporaryRegistration,
    /// Utility bill
    #[serde(rename = "utility_bill")]
    UtilityBill,
}