-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_sponsored_web_page_gen.go
272 lines (246 loc) · 6 KB
/
tl_sponsored_web_page_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
// 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{}
)
// SponsoredWebPage represents TL type `sponsoredWebPage#3db8ec63`.
// Represents a sponsored website.
//
// See https://core.telegram.org/constructor/sponsoredWebPage for reference.
type SponsoredWebPage struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// Web page URL.
URL string
// Website name.
SiteName string
// Optional image preview.
//
// Use SetPhoto and GetPhoto helpers.
Photo PhotoClass
}
// SponsoredWebPageTypeID is TL type id of SponsoredWebPage.
const SponsoredWebPageTypeID = 0x3db8ec63
// Ensuring interfaces in compile-time for SponsoredWebPage.
var (
_ bin.Encoder = &SponsoredWebPage{}
_ bin.Decoder = &SponsoredWebPage{}
_ bin.BareEncoder = &SponsoredWebPage{}
_ bin.BareDecoder = &SponsoredWebPage{}
)
func (s *SponsoredWebPage) Zero() bool {
if s == nil {
return true
}
if !(s.Flags.Zero()) {
return false
}
if !(s.URL == "") {
return false
}
if !(s.SiteName == "") {
return false
}
if !(s.Photo == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (s *SponsoredWebPage) String() string {
if s == nil {
return "SponsoredWebPage(nil)"
}
type Alias SponsoredWebPage
return fmt.Sprintf("SponsoredWebPage%+v", Alias(*s))
}
// FillFrom fills SponsoredWebPage from given interface.
func (s *SponsoredWebPage) FillFrom(from interface {
GetURL() (value string)
GetSiteName() (value string)
GetPhoto() (value PhotoClass, ok bool)
}) {
s.URL = from.GetURL()
s.SiteName = from.GetSiteName()
if val, ok := from.GetPhoto(); ok {
s.Photo = val
}
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*SponsoredWebPage) TypeID() uint32 {
return SponsoredWebPageTypeID
}
// TypeName returns name of type in TL schema.
func (*SponsoredWebPage) TypeName() string {
return "sponsoredWebPage"
}
// TypeInfo returns info about TL type.
func (s *SponsoredWebPage) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "sponsoredWebPage",
ID: SponsoredWebPageTypeID,
}
if s == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "URL",
SchemaName: "url",
},
{
Name: "SiteName",
SchemaName: "site_name",
},
{
Name: "Photo",
SchemaName: "photo",
Null: !s.Flags.Has(0),
},
}
return typ
}
// SetFlags sets flags for non-zero fields.
func (s *SponsoredWebPage) SetFlags() {
if !(s.Photo == nil) {
s.Flags.Set(0)
}
}
// Encode implements bin.Encoder.
func (s *SponsoredWebPage) Encode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode sponsoredWebPage#3db8ec63 as nil")
}
b.PutID(SponsoredWebPageTypeID)
return s.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (s *SponsoredWebPage) EncodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode sponsoredWebPage#3db8ec63 as nil")
}
s.SetFlags()
if err := s.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode sponsoredWebPage#3db8ec63: field flags: %w", err)
}
b.PutString(s.URL)
b.PutString(s.SiteName)
if s.Flags.Has(0) {
if s.Photo == nil {
return fmt.Errorf("unable to encode sponsoredWebPage#3db8ec63: field photo is nil")
}
if err := s.Photo.Encode(b); err != nil {
return fmt.Errorf("unable to encode sponsoredWebPage#3db8ec63: field photo: %w", err)
}
}
return nil
}
// Decode implements bin.Decoder.
func (s *SponsoredWebPage) Decode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode sponsoredWebPage#3db8ec63 to nil")
}
if err := b.ConsumeID(SponsoredWebPageTypeID); err != nil {
return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: %w", err)
}
return s.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (s *SponsoredWebPage) DecodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode sponsoredWebPage#3db8ec63 to nil")
}
{
if err := s.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: field flags: %w", err)
}
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: field url: %w", err)
}
s.URL = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: field site_name: %w", err)
}
s.SiteName = value
}
if s.Flags.Has(0) {
value, err := DecodePhoto(b)
if err != nil {
return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: field photo: %w", err)
}
s.Photo = value
}
return nil
}
// GetURL returns value of URL field.
func (s *SponsoredWebPage) GetURL() (value string) {
if s == nil {
return
}
return s.URL
}
// GetSiteName returns value of SiteName field.
func (s *SponsoredWebPage) GetSiteName() (value string) {
if s == nil {
return
}
return s.SiteName
}
// SetPhoto sets value of Photo conditional field.
func (s *SponsoredWebPage) SetPhoto(value PhotoClass) {
s.Flags.Set(0)
s.Photo = value
}
// GetPhoto returns value of Photo conditional field and
// boolean which is true if field was set.
func (s *SponsoredWebPage) GetPhoto() (value PhotoClass, ok bool) {
if s == nil {
return
}
if !s.Flags.Has(0) {
return value, false
}
return s.Photo, true
}
// GetPhotoAsNotEmpty returns mapped value of Photo conditional field and
// boolean which is true if field was set.
func (s *SponsoredWebPage) GetPhotoAsNotEmpty() (*Photo, bool) {
if value, ok := s.GetPhoto(); ok {
return value.AsNotEmpty()
}
return nil, false
}