-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_cdn_config_gen.go
174 lines (154 loc) · 3.81 KB
/
tl_cdn_config_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
// 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/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{}
)
// CDNConfig represents TL type `cdnConfig#5725e40a`.
// Configuration for CDN¹ file downloads.
//
// Links:
// 1) https://core.telegram.org/cdn
//
// See https://core.telegram.org/constructor/cdnConfig for reference.
type CDNConfig struct {
// Vector of public keys to use only during handshakes to CDN¹ DCs.
//
// Links:
// 1) https://core.telegram.org/cdn
PublicKeys []CDNPublicKey
}
// CDNConfigTypeID is TL type id of CDNConfig.
const CDNConfigTypeID = 0x5725e40a
func (c *CDNConfig) Zero() bool {
if c == nil {
return true
}
if !(c.PublicKeys == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (c *CDNConfig) String() string {
if c == nil {
return "CDNConfig(nil)"
}
type Alias CDNConfig
return fmt.Sprintf("CDNConfig%+v", Alias(*c))
}
// FillFrom fills CDNConfig from given interface.
func (c *CDNConfig) FillFrom(from interface {
GetPublicKeys() (value []CDNPublicKey)
}) {
c.PublicKeys = from.GetPublicKeys()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*CDNConfig) TypeID() uint32 {
return CDNConfigTypeID
}
// TypeName returns name of type in TL schema.
func (*CDNConfig) TypeName() string {
return "cdnConfig"
}
// TypeInfo returns info about TL type.
func (c *CDNConfig) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "cdnConfig",
ID: CDNConfigTypeID,
}
if c == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "PublicKeys",
SchemaName: "public_keys",
},
}
return typ
}
// Encode implements bin.Encoder.
func (c *CDNConfig) Encode(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't encode cdnConfig#5725e40a as nil")
}
b.PutID(CDNConfigTypeID)
return c.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (c *CDNConfig) EncodeBare(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't encode cdnConfig#5725e40a as nil")
}
b.PutVectorHeader(len(c.PublicKeys))
for idx, v := range c.PublicKeys {
if err := v.Encode(b); err != nil {
return fmt.Errorf("unable to encode cdnConfig#5725e40a: field public_keys element with index %d: %w", idx, err)
}
}
return nil
}
// GetPublicKeys returns value of PublicKeys field.
func (c *CDNConfig) GetPublicKeys() (value []CDNPublicKey) {
return c.PublicKeys
}
// Decode implements bin.Decoder.
func (c *CDNConfig) Decode(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't decode cdnConfig#5725e40a to nil")
}
if err := b.ConsumeID(CDNConfigTypeID); err != nil {
return fmt.Errorf("unable to decode cdnConfig#5725e40a: %w", err)
}
return c.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (c *CDNConfig) DecodeBare(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't decode cdnConfig#5725e40a to nil")
}
{
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode cdnConfig#5725e40a: field public_keys: %w", err)
}
for idx := 0; idx < headerLen; idx++ {
var value CDNPublicKey
if err := value.Decode(b); err != nil {
return fmt.Errorf("unable to decode cdnConfig#5725e40a: field public_keys: %w", err)
}
c.PublicKeys = append(c.PublicKeys, value)
}
}
return nil
}
// Ensuring interfaces in compile-time for CDNConfig.
var (
_ bin.Encoder = &CDNConfig{}
_ bin.Decoder = &CDNConfig{}
_ bin.BareEncoder = &CDNConfig{}
_ bin.BareDecoder = &CDNConfig{}
)