-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_input_secure_file_gen.go
545 lines (491 loc) · 12.9 KB
/
tl_input_secure_file_gen.go
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
// Code generated by gotdgen, DO NOT EDIT.
package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
// No-op definition for keeping imports.
var (
_ = bin.Buffer{}
_ = context.Background()
_ = fmt.Stringer(nil)
_ = strings.Builder{}
_ = errors.Is
_ = multierr.AppendInto
_ = sort.Ints
_ = tdp.Format
_ = tgerr.Error{}
_ = tdjson.Encoder{}
)
// InputSecureFileUploaded represents TL type `inputSecureFileUploaded#3334b0f0`.
// Uploaded secure file, for more info see the passport docs »¹
//
// Links:
// 1. https://core.telegram.org/passport/encryption#inputsecurefile
//
// See https://core.telegram.org/constructor/inputSecureFileUploaded for reference.
type InputSecureFileUploaded struct {
// Secure file ID
ID int64
// Secure file part count
Parts int
// MD5 hash of encrypted uploaded file, to be checked server-side
MD5Checksum string
// File hash
FileHash []byte
// Secret
Secret []byte
}
// InputSecureFileUploadedTypeID is TL type id of InputSecureFileUploaded.
const InputSecureFileUploadedTypeID = 0x3334b0f0
// construct implements constructor of InputSecureFileClass.
func (i InputSecureFileUploaded) construct() InputSecureFileClass { return &i }
// Ensuring interfaces in compile-time for InputSecureFileUploaded.
var (
_ bin.Encoder = &InputSecureFileUploaded{}
_ bin.Decoder = &InputSecureFileUploaded{}
_ bin.BareEncoder = &InputSecureFileUploaded{}
_ bin.BareDecoder = &InputSecureFileUploaded{}
_ InputSecureFileClass = &InputSecureFileUploaded{}
)
func (i *InputSecureFileUploaded) Zero() bool {
if i == nil {
return true
}
if !(i.ID == 0) {
return false
}
if !(i.Parts == 0) {
return false
}
if !(i.MD5Checksum == "") {
return false
}
if !(i.FileHash == nil) {
return false
}
if !(i.Secret == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (i *InputSecureFileUploaded) String() string {
if i == nil {
return "InputSecureFileUploaded(nil)"
}
type Alias InputSecureFileUploaded
return fmt.Sprintf("InputSecureFileUploaded%+v", Alias(*i))
}
// FillFrom fills InputSecureFileUploaded from given interface.
func (i *InputSecureFileUploaded) FillFrom(from interface {
GetID() (value int64)
GetParts() (value int)
GetMD5Checksum() (value string)
GetFileHash() (value []byte)
GetSecret() (value []byte)
}) {
i.ID = from.GetID()
i.Parts = from.GetParts()
i.MD5Checksum = from.GetMD5Checksum()
i.FileHash = from.GetFileHash()
i.Secret = from.GetSecret()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*InputSecureFileUploaded) TypeID() uint32 {
return InputSecureFileUploadedTypeID
}
// TypeName returns name of type in TL schema.
func (*InputSecureFileUploaded) TypeName() string {
return "inputSecureFileUploaded"
}
// TypeInfo returns info about TL type.
func (i *InputSecureFileUploaded) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "inputSecureFileUploaded",
ID: InputSecureFileUploadedTypeID,
}
if i == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "ID",
SchemaName: "id",
},
{
Name: "Parts",
SchemaName: "parts",
},
{
Name: "MD5Checksum",
SchemaName: "md5_checksum",
},
{
Name: "FileHash",
SchemaName: "file_hash",
},
{
Name: "Secret",
SchemaName: "secret",
},
}
return typ
}
// Encode implements bin.Encoder.
func (i *InputSecureFileUploaded) Encode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputSecureFileUploaded#3334b0f0 as nil")
}
b.PutID(InputSecureFileUploadedTypeID)
return i.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (i *InputSecureFileUploaded) EncodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputSecureFileUploaded#3334b0f0 as nil")
}
b.PutLong(i.ID)
b.PutInt(i.Parts)
b.PutString(i.MD5Checksum)
b.PutBytes(i.FileHash)
b.PutBytes(i.Secret)
return nil
}
// Decode implements bin.Decoder.
func (i *InputSecureFileUploaded) Decode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputSecureFileUploaded#3334b0f0 to nil")
}
if err := b.ConsumeID(InputSecureFileUploadedTypeID); err != nil {
return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: %w", err)
}
return i.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (i *InputSecureFileUploaded) DecodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputSecureFileUploaded#3334b0f0 to nil")
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field id: %w", err)
}
i.ID = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field parts: %w", err)
}
i.Parts = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field md5_checksum: %w", err)
}
i.MD5Checksum = value
}
{
value, err := b.Bytes()
if err != nil {
return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field file_hash: %w", err)
}
i.FileHash = value
}
{
value, err := b.Bytes()
if err != nil {
return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field secret: %w", err)
}
i.Secret = value
}
return nil
}
// GetID returns value of ID field.
func (i *InputSecureFileUploaded) GetID() (value int64) {
if i == nil {
return
}
return i.ID
}
// GetParts returns value of Parts field.
func (i *InputSecureFileUploaded) GetParts() (value int) {
if i == nil {
return
}
return i.Parts
}
// GetMD5Checksum returns value of MD5Checksum field.
func (i *InputSecureFileUploaded) GetMD5Checksum() (value string) {
if i == nil {
return
}
return i.MD5Checksum
}
// GetFileHash returns value of FileHash field.
func (i *InputSecureFileUploaded) GetFileHash() (value []byte) {
if i == nil {
return
}
return i.FileHash
}
// GetSecret returns value of Secret field.
func (i *InputSecureFileUploaded) GetSecret() (value []byte) {
if i == nil {
return
}
return i.Secret
}
// InputSecureFile represents TL type `inputSecureFile#5367e5be`.
// Pre-uploaded passport¹ file, for more info see the passport docs »²
//
// Links:
// 1. https://core.telegram.org/passport
// 2. https://core.telegram.org/passport/encryption#inputsecurefile
//
// See https://core.telegram.org/constructor/inputSecureFile for reference.
type InputSecureFile struct {
// Secure file ID
ID int64
// Secure file access hash
AccessHash int64
}
// InputSecureFileTypeID is TL type id of InputSecureFile.
const InputSecureFileTypeID = 0x5367e5be
// construct implements constructor of InputSecureFileClass.
func (i InputSecureFile) construct() InputSecureFileClass { return &i }
// Ensuring interfaces in compile-time for InputSecureFile.
var (
_ bin.Encoder = &InputSecureFile{}
_ bin.Decoder = &InputSecureFile{}
_ bin.BareEncoder = &InputSecureFile{}
_ bin.BareDecoder = &InputSecureFile{}
_ InputSecureFileClass = &InputSecureFile{}
)
func (i *InputSecureFile) Zero() bool {
if i == nil {
return true
}
if !(i.ID == 0) {
return false
}
if !(i.AccessHash == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (i *InputSecureFile) String() string {
if i == nil {
return "InputSecureFile(nil)"
}
type Alias InputSecureFile
return fmt.Sprintf("InputSecureFile%+v", Alias(*i))
}
// FillFrom fills InputSecureFile from given interface.
func (i *InputSecureFile) FillFrom(from interface {
GetID() (value int64)
GetAccessHash() (value int64)
}) {
i.ID = from.GetID()
i.AccessHash = from.GetAccessHash()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*InputSecureFile) TypeID() uint32 {
return InputSecureFileTypeID
}
// TypeName returns name of type in TL schema.
func (*InputSecureFile) TypeName() string {
return "inputSecureFile"
}
// TypeInfo returns info about TL type.
func (i *InputSecureFile) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "inputSecureFile",
ID: InputSecureFileTypeID,
}
if i == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "ID",
SchemaName: "id",
},
{
Name: "AccessHash",
SchemaName: "access_hash",
},
}
return typ
}
// Encode implements bin.Encoder.
func (i *InputSecureFile) Encode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputSecureFile#5367e5be as nil")
}
b.PutID(InputSecureFileTypeID)
return i.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (i *InputSecureFile) EncodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputSecureFile#5367e5be as nil")
}
b.PutLong(i.ID)
b.PutLong(i.AccessHash)
return nil
}
// Decode implements bin.Decoder.
func (i *InputSecureFile) Decode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputSecureFile#5367e5be to nil")
}
if err := b.ConsumeID(InputSecureFileTypeID); err != nil {
return fmt.Errorf("unable to decode inputSecureFile#5367e5be: %w", err)
}
return i.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (i *InputSecureFile) DecodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputSecureFile#5367e5be to nil")
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode inputSecureFile#5367e5be: field id: %w", err)
}
i.ID = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode inputSecureFile#5367e5be: field access_hash: %w", err)
}
i.AccessHash = value
}
return nil
}
// GetID returns value of ID field.
func (i *InputSecureFile) GetID() (value int64) {
if i == nil {
return
}
return i.ID
}
// GetAccessHash returns value of AccessHash field.
func (i *InputSecureFile) GetAccessHash() (value int64) {
if i == nil {
return
}
return i.AccessHash
}
// InputSecureFileClassName is schema name of InputSecureFileClass.
const InputSecureFileClassName = "InputSecureFile"
// InputSecureFileClass represents InputSecureFile generic type.
//
// See https://core.telegram.org/type/InputSecureFile for reference.
//
// Example:
//
// g, err := tg.DecodeInputSecureFile(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *tg.InputSecureFileUploaded: // inputSecureFileUploaded#3334b0f0
// case *tg.InputSecureFile: // inputSecureFile#5367e5be
// default: panic(v)
// }
type InputSecureFileClass interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() InputSecureFileClass
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
TypeID() uint32
// TypeName returns name of type in TL schema.
TypeName() string
// String implements fmt.Stringer.
String() string
// Zero returns true if current object has a zero value.
Zero() bool
// Secure file ID
GetID() (value int64)
}
// AsInputSecureFileLocation tries to map InputSecureFile to InputSecureFileLocation.
func (i *InputSecureFile) AsInputSecureFileLocation() *InputSecureFileLocation {
value := new(InputSecureFileLocation)
value.ID = i.GetID()
value.AccessHash = i.GetAccessHash()
return value
}
// DecodeInputSecureFile implements binary de-serialization for InputSecureFileClass.
func DecodeInputSecureFile(buf *bin.Buffer) (InputSecureFileClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case InputSecureFileUploadedTypeID:
// Decoding inputSecureFileUploaded#3334b0f0.
v := InputSecureFileUploaded{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode InputSecureFileClass: %w", err)
}
return &v, nil
case InputSecureFileTypeID:
// Decoding inputSecureFile#5367e5be.
v := InputSecureFile{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode InputSecureFileClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode InputSecureFileClass: %w", bin.NewUnexpectedID(id))
}
}
// InputSecureFile boxes the InputSecureFileClass providing a helper.
type InputSecureFileBox struct {
InputSecureFile InputSecureFileClass
}
// Decode implements bin.Decoder for InputSecureFileBox.
func (b *InputSecureFileBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode InputSecureFileBox to nil")
}
v, err := DecodeInputSecureFile(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.InputSecureFile = v
return nil
}
// Encode implements bin.Encode for InputSecureFileBox.
func (b *InputSecureFileBox) Encode(buf *bin.Buffer) error {
if b == nil || b.InputSecureFile == nil {
return fmt.Errorf("unable to encode InputSecureFileClass as nil")
}
return b.InputSecureFile.Encode(buf)
}