-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_photo_gen.go
664 lines (600 loc) · 14.6 KB
/
tl_photo_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
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
// 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{}
)
// PhotoEmpty represents TL type `photoEmpty#2331b22d`.
// Empty constructor, non-existent photo
//
// See https://core.telegram.org/constructor/photoEmpty for reference.
type PhotoEmpty struct {
// Photo identifier
ID int64
}
// PhotoEmptyTypeID is TL type id of PhotoEmpty.
const PhotoEmptyTypeID = 0x2331b22d
// construct implements constructor of PhotoClass.
func (p PhotoEmpty) construct() PhotoClass { return &p }
// Ensuring interfaces in compile-time for PhotoEmpty.
var (
_ bin.Encoder = &PhotoEmpty{}
_ bin.Decoder = &PhotoEmpty{}
_ bin.BareEncoder = &PhotoEmpty{}
_ bin.BareDecoder = &PhotoEmpty{}
_ PhotoClass = &PhotoEmpty{}
)
func (p *PhotoEmpty) Zero() bool {
if p == nil {
return true
}
if !(p.ID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *PhotoEmpty) String() string {
if p == nil {
return "PhotoEmpty(nil)"
}
type Alias PhotoEmpty
return fmt.Sprintf("PhotoEmpty%+v", Alias(*p))
}
// FillFrom fills PhotoEmpty from given interface.
func (p *PhotoEmpty) FillFrom(from interface {
GetID() (value int64)
}) {
p.ID = from.GetID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PhotoEmpty) TypeID() uint32 {
return PhotoEmptyTypeID
}
// TypeName returns name of type in TL schema.
func (*PhotoEmpty) TypeName() string {
return "photoEmpty"
}
// TypeInfo returns info about TL type.
func (p *PhotoEmpty) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "photoEmpty",
ID: PhotoEmptyTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "ID",
SchemaName: "id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *PhotoEmpty) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode photoEmpty#2331b22d as nil")
}
b.PutID(PhotoEmptyTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *PhotoEmpty) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode photoEmpty#2331b22d as nil")
}
b.PutLong(p.ID)
return nil
}
// Decode implements bin.Decoder.
func (p *PhotoEmpty) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode photoEmpty#2331b22d to nil")
}
if err := b.ConsumeID(PhotoEmptyTypeID); err != nil {
return fmt.Errorf("unable to decode photoEmpty#2331b22d: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *PhotoEmpty) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode photoEmpty#2331b22d to nil")
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode photoEmpty#2331b22d: field id: %w", err)
}
p.ID = value
}
return nil
}
// GetID returns value of ID field.
func (p *PhotoEmpty) GetID() (value int64) {
return p.ID
}
// Photo represents TL type `photo#fb197a65`.
// Photo
//
// See https://core.telegram.org/constructor/photo for reference.
type Photo struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// Whether the photo has mask stickers attached to it
HasStickers bool
// ID
ID int64
// Access hash
AccessHash int64
// file reference¹
//
// Links:
// 1) https://core.telegram.org/api/file_reference
FileReference []byte
// Date of upload
Date int
// Available sizes for download
Sizes []PhotoSizeClass
// For animated profiles¹, the MPEG4 videos
//
// Links:
// 1) https://core.telegram.org/api/files#animated-profile-pictures
//
// Use SetVideoSizes and GetVideoSizes helpers.
VideoSizes []VideoSize
// DC ID to use for download
DCID int
}
// PhotoTypeID is TL type id of Photo.
const PhotoTypeID = 0xfb197a65
// construct implements constructor of PhotoClass.
func (p Photo) construct() PhotoClass { return &p }
// Ensuring interfaces in compile-time for Photo.
var (
_ bin.Encoder = &Photo{}
_ bin.Decoder = &Photo{}
_ bin.BareEncoder = &Photo{}
_ bin.BareDecoder = &Photo{}
_ PhotoClass = &Photo{}
)
func (p *Photo) Zero() bool {
if p == nil {
return true
}
if !(p.Flags.Zero()) {
return false
}
if !(p.HasStickers == false) {
return false
}
if !(p.ID == 0) {
return false
}
if !(p.AccessHash == 0) {
return false
}
if !(p.FileReference == nil) {
return false
}
if !(p.Date == 0) {
return false
}
if !(p.Sizes == nil) {
return false
}
if !(p.VideoSizes == nil) {
return false
}
if !(p.DCID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *Photo) String() string {
if p == nil {
return "Photo(nil)"
}
type Alias Photo
return fmt.Sprintf("Photo%+v", Alias(*p))
}
// FillFrom fills Photo from given interface.
func (p *Photo) FillFrom(from interface {
GetHasStickers() (value bool)
GetID() (value int64)
GetAccessHash() (value int64)
GetFileReference() (value []byte)
GetDate() (value int)
GetSizes() (value []PhotoSizeClass)
GetVideoSizes() (value []VideoSize, ok bool)
GetDCID() (value int)
}) {
p.HasStickers = from.GetHasStickers()
p.ID = from.GetID()
p.AccessHash = from.GetAccessHash()
p.FileReference = from.GetFileReference()
p.Date = from.GetDate()
p.Sizes = from.GetSizes()
if val, ok := from.GetVideoSizes(); ok {
p.VideoSizes = val
}
p.DCID = from.GetDCID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*Photo) TypeID() uint32 {
return PhotoTypeID
}
// TypeName returns name of type in TL schema.
func (*Photo) TypeName() string {
return "photo"
}
// TypeInfo returns info about TL type.
func (p *Photo) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "photo",
ID: PhotoTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "HasStickers",
SchemaName: "has_stickers",
Null: !p.Flags.Has(0),
},
{
Name: "ID",
SchemaName: "id",
},
{
Name: "AccessHash",
SchemaName: "access_hash",
},
{
Name: "FileReference",
SchemaName: "file_reference",
},
{
Name: "Date",
SchemaName: "date",
},
{
Name: "Sizes",
SchemaName: "sizes",
},
{
Name: "VideoSizes",
SchemaName: "video_sizes",
Null: !p.Flags.Has(1),
},
{
Name: "DCID",
SchemaName: "dc_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *Photo) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode photo#fb197a65 as nil")
}
b.PutID(PhotoTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *Photo) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode photo#fb197a65 as nil")
}
if !(p.HasStickers == false) {
p.Flags.Set(0)
}
if !(p.VideoSizes == nil) {
p.Flags.Set(1)
}
if err := p.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode photo#fb197a65: field flags: %w", err)
}
b.PutLong(p.ID)
b.PutLong(p.AccessHash)
b.PutBytes(p.FileReference)
b.PutInt(p.Date)
b.PutVectorHeader(len(p.Sizes))
for idx, v := range p.Sizes {
if v == nil {
return fmt.Errorf("unable to encode photo#fb197a65: field sizes element with index %d is nil", idx)
}
if err := v.Encode(b); err != nil {
return fmt.Errorf("unable to encode photo#fb197a65: field sizes element with index %d: %w", idx, err)
}
}
if p.Flags.Has(1) {
b.PutVectorHeader(len(p.VideoSizes))
for idx, v := range p.VideoSizes {
if err := v.Encode(b); err != nil {
return fmt.Errorf("unable to encode photo#fb197a65: field video_sizes element with index %d: %w", idx, err)
}
}
}
b.PutInt(p.DCID)
return nil
}
// Decode implements bin.Decoder.
func (p *Photo) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode photo#fb197a65 to nil")
}
if err := b.ConsumeID(PhotoTypeID); err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *Photo) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode photo#fb197a65 to nil")
}
{
if err := p.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field flags: %w", err)
}
}
p.HasStickers = p.Flags.Has(0)
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field id: %w", err)
}
p.ID = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field access_hash: %w", err)
}
p.AccessHash = value
}
{
value, err := b.Bytes()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field file_reference: %w", err)
}
p.FileReference = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field date: %w", err)
}
p.Date = value
}
{
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field sizes: %w", err)
}
if headerLen > 0 {
p.Sizes = make([]PhotoSizeClass, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
value, err := DecodePhotoSize(b)
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field sizes: %w", err)
}
p.Sizes = append(p.Sizes, value)
}
}
if p.Flags.Has(1) {
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field video_sizes: %w", err)
}
if headerLen > 0 {
p.VideoSizes = make([]VideoSize, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
var value VideoSize
if err := value.Decode(b); err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field video_sizes: %w", err)
}
p.VideoSizes = append(p.VideoSizes, value)
}
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field dc_id: %w", err)
}
p.DCID = value
}
return nil
}
// SetHasStickers sets value of HasStickers conditional field.
func (p *Photo) SetHasStickers(value bool) {
if value {
p.Flags.Set(0)
p.HasStickers = true
} else {
p.Flags.Unset(0)
p.HasStickers = false
}
}
// GetHasStickers returns value of HasStickers conditional field.
func (p *Photo) GetHasStickers() (value bool) {
return p.Flags.Has(0)
}
// GetID returns value of ID field.
func (p *Photo) GetID() (value int64) {
return p.ID
}
// GetAccessHash returns value of AccessHash field.
func (p *Photo) GetAccessHash() (value int64) {
return p.AccessHash
}
// GetFileReference returns value of FileReference field.
func (p *Photo) GetFileReference() (value []byte) {
return p.FileReference
}
// GetDate returns value of Date field.
func (p *Photo) GetDate() (value int) {
return p.Date
}
// GetSizes returns value of Sizes field.
func (p *Photo) GetSizes() (value []PhotoSizeClass) {
return p.Sizes
}
// SetVideoSizes sets value of VideoSizes conditional field.
func (p *Photo) SetVideoSizes(value []VideoSize) {
p.Flags.Set(1)
p.VideoSizes = value
}
// GetVideoSizes returns value of VideoSizes conditional field and
// boolean which is true if field was set.
func (p *Photo) GetVideoSizes() (value []VideoSize, ok bool) {
if !p.Flags.Has(1) {
return value, false
}
return p.VideoSizes, true
}
// GetDCID returns value of DCID field.
func (p *Photo) GetDCID() (value int) {
return p.DCID
}
// MapSizes returns field Sizes wrapped in PhotoSizeClassArray helper.
func (p *Photo) MapSizes() (value PhotoSizeClassArray) {
return PhotoSizeClassArray(p.Sizes)
}
// PhotoClass represents Photo generic type.
//
// See https://core.telegram.org/type/Photo for reference.
//
// Example:
// g, err := tg.DecodePhoto(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *tg.PhotoEmpty: // photoEmpty#2331b22d
// case *tg.Photo: // photo#fb197a65
// default: panic(v)
// }
type PhotoClass interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() PhotoClass
// 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
// Photo identifier
GetID() (value int64)
// AsNotEmpty tries to map PhotoClass to Photo.
AsNotEmpty() (*Photo, bool)
}
// AsInput tries to map Photo to InputPhoto.
func (p *Photo) AsInput() *InputPhoto {
value := new(InputPhoto)
value.ID = p.GetID()
value.AccessHash = p.GetAccessHash()
value.FileReference = p.GetFileReference()
return value
}
// AsNotEmpty tries to map PhotoEmpty to Photo.
func (p *PhotoEmpty) AsNotEmpty() (*Photo, bool) {
return nil, false
}
// AsNotEmpty tries to map Photo to Photo.
func (p *Photo) AsNotEmpty() (*Photo, bool) {
return p, true
}
// DecodePhoto implements binary de-serialization for PhotoClass.
func DecodePhoto(buf *bin.Buffer) (PhotoClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case PhotoEmptyTypeID:
// Decoding photoEmpty#2331b22d.
v := PhotoEmpty{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode PhotoClass: %w", err)
}
return &v, nil
case PhotoTypeID:
// Decoding photo#fb197a65.
v := Photo{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode PhotoClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode PhotoClass: %w", bin.NewUnexpectedID(id))
}
}
// Photo boxes the PhotoClass providing a helper.
type PhotoBox struct {
Photo PhotoClass
}
// Decode implements bin.Decoder for PhotoBox.
func (b *PhotoBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode PhotoBox to nil")
}
v, err := DecodePhoto(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.Photo = v
return nil
}
// Encode implements bin.Encode for PhotoBox.
func (b *PhotoBox) Encode(buf *bin.Buffer) error {
if b == nil || b.Photo == nil {
return fmt.Errorf("unable to encode PhotoClass as nil")
}
return b.Photo.Encode(buf)
}