-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_phone_request_call_gen.go
329 lines (301 loc) · 7.95 KB
/
tl_phone_request_call_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
// 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{}
)
// PhoneRequestCallRequest represents TL type `phone.requestCall#42ff96ed`.
// Start a telegram phone call
//
// See https://core.telegram.org/method/phone.requestCall for reference.
type PhoneRequestCallRequest struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// Whether to start a video call
Video bool
// Destination of the phone call
UserID InputUserClass
// Random ID to avoid resending the same object
RandomID int
// Parameter for E2E encryption key exchange »¹
//
// Links:
// 1) https://core.telegram.org/api/end-to-end/voice-calls
GAHash []byte
// Phone call settings
Protocol PhoneCallProtocol
}
// PhoneRequestCallRequestTypeID is TL type id of PhoneRequestCallRequest.
const PhoneRequestCallRequestTypeID = 0x42ff96ed
// Ensuring interfaces in compile-time for PhoneRequestCallRequest.
var (
_ bin.Encoder = &PhoneRequestCallRequest{}
_ bin.Decoder = &PhoneRequestCallRequest{}
_ bin.BareEncoder = &PhoneRequestCallRequest{}
_ bin.BareDecoder = &PhoneRequestCallRequest{}
)
func (r *PhoneRequestCallRequest) Zero() bool {
if r == nil {
return true
}
if !(r.Flags.Zero()) {
return false
}
if !(r.Video == false) {
return false
}
if !(r.UserID == nil) {
return false
}
if !(r.RandomID == 0) {
return false
}
if !(r.GAHash == nil) {
return false
}
if !(r.Protocol.Zero()) {
return false
}
return true
}
// String implements fmt.Stringer.
func (r *PhoneRequestCallRequest) String() string {
if r == nil {
return "PhoneRequestCallRequest(nil)"
}
type Alias PhoneRequestCallRequest
return fmt.Sprintf("PhoneRequestCallRequest%+v", Alias(*r))
}
// FillFrom fills PhoneRequestCallRequest from given interface.
func (r *PhoneRequestCallRequest) FillFrom(from interface {
GetVideo() (value bool)
GetUserID() (value InputUserClass)
GetRandomID() (value int)
GetGAHash() (value []byte)
GetProtocol() (value PhoneCallProtocol)
}) {
r.Video = from.GetVideo()
r.UserID = from.GetUserID()
r.RandomID = from.GetRandomID()
r.GAHash = from.GetGAHash()
r.Protocol = from.GetProtocol()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PhoneRequestCallRequest) TypeID() uint32 {
return PhoneRequestCallRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*PhoneRequestCallRequest) TypeName() string {
return "phone.requestCall"
}
// TypeInfo returns info about TL type.
func (r *PhoneRequestCallRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "phone.requestCall",
ID: PhoneRequestCallRequestTypeID,
}
if r == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Video",
SchemaName: "video",
Null: !r.Flags.Has(0),
},
{
Name: "UserID",
SchemaName: "user_id",
},
{
Name: "RandomID",
SchemaName: "random_id",
},
{
Name: "GAHash",
SchemaName: "g_a_hash",
},
{
Name: "Protocol",
SchemaName: "protocol",
},
}
return typ
}
// SetFlags sets flags for non-zero fields.
func (r *PhoneRequestCallRequest) SetFlags() {
if !(r.Video == false) {
r.Flags.Set(0)
}
}
// Encode implements bin.Encoder.
func (r *PhoneRequestCallRequest) Encode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode phone.requestCall#42ff96ed as nil")
}
b.PutID(PhoneRequestCallRequestTypeID)
return r.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (r *PhoneRequestCallRequest) EncodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode phone.requestCall#42ff96ed as nil")
}
r.SetFlags()
if err := r.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field flags: %w", err)
}
if r.UserID == nil {
return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field user_id is nil")
}
if err := r.UserID.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field user_id: %w", err)
}
b.PutInt(r.RandomID)
b.PutBytes(r.GAHash)
if err := r.Protocol.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field protocol: %w", err)
}
return nil
}
// Decode implements bin.Decoder.
func (r *PhoneRequestCallRequest) Decode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode phone.requestCall#42ff96ed to nil")
}
if err := b.ConsumeID(PhoneRequestCallRequestTypeID); err != nil {
return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: %w", err)
}
return r.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (r *PhoneRequestCallRequest) DecodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode phone.requestCall#42ff96ed to nil")
}
{
if err := r.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field flags: %w", err)
}
}
r.Video = r.Flags.Has(0)
{
value, err := DecodeInputUser(b)
if err != nil {
return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field user_id: %w", err)
}
r.UserID = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field random_id: %w", err)
}
r.RandomID = value
}
{
value, err := b.Bytes()
if err != nil {
return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field g_a_hash: %w", err)
}
r.GAHash = value
}
{
if err := r.Protocol.Decode(b); err != nil {
return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field protocol: %w", err)
}
}
return nil
}
// SetVideo sets value of Video conditional field.
func (r *PhoneRequestCallRequest) SetVideo(value bool) {
if value {
r.Flags.Set(0)
r.Video = true
} else {
r.Flags.Unset(0)
r.Video = false
}
}
// GetVideo returns value of Video conditional field.
func (r *PhoneRequestCallRequest) GetVideo() (value bool) {
if r == nil {
return
}
return r.Flags.Has(0)
}
// GetUserID returns value of UserID field.
func (r *PhoneRequestCallRequest) GetUserID() (value InputUserClass) {
if r == nil {
return
}
return r.UserID
}
// GetRandomID returns value of RandomID field.
func (r *PhoneRequestCallRequest) GetRandomID() (value int) {
if r == nil {
return
}
return r.RandomID
}
// GetGAHash returns value of GAHash field.
func (r *PhoneRequestCallRequest) GetGAHash() (value []byte) {
if r == nil {
return
}
return r.GAHash
}
// GetProtocol returns value of Protocol field.
func (r *PhoneRequestCallRequest) GetProtocol() (value PhoneCallProtocol) {
if r == nil {
return
}
return r.Protocol
}
// PhoneRequestCall invokes method phone.requestCall#42ff96ed returning error if any.
// Start a telegram phone call
//
// Possible errors:
//
// 400 CALL_PROTOCOL_FLAGS_INVALID: Call protocol flags invalid.
// 400 INPUT_USER_DEACTIVATED: The specified user was deleted.
// 400 PARTICIPANT_VERSION_OUTDATED: The other participant does not use an up to date telegram client with support for calls.
// 400 USER_ID_INVALID: The provided user ID is invalid.
// 403 USER_IS_BLOCKED: You were blocked by this user.
// 403 USER_PRIVACY_RESTRICTED: The user's privacy settings do not allow you to do this.
//
// See https://core.telegram.org/method/phone.requestCall for reference.
func (c *Client) PhoneRequestCall(ctx context.Context, request *PhoneRequestCallRequest) (*PhonePhoneCall, error) {
var result PhonePhoneCall
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return &result, nil
}