-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_channels_edit_admin_gen.go
306 lines (280 loc) · 8.64 KB
/
tl_channels_edit_admin_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
// 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{}
)
// ChannelsEditAdminRequest represents TL type `channels.editAdmin#d33c8902`.
// Modify the admin rights of a user in a supergroup/channel¹.
//
// Links:
// 1) https://core.telegram.org/api/channel
//
// See https://core.telegram.org/method/channels.editAdmin for reference.
type ChannelsEditAdminRequest struct {
// The supergroup/channel¹.
//
// Links:
// 1) https://core.telegram.org/api/channel
Channel InputChannelClass
// The ID of the user whose admin rights should be modified
UserID InputUserClass
// The admin rights
AdminRights ChatAdminRights
// Indicates the role (rank) of the admin in the group: just an arbitrary string
Rank string
}
// ChannelsEditAdminRequestTypeID is TL type id of ChannelsEditAdminRequest.
const ChannelsEditAdminRequestTypeID = 0xd33c8902
// Ensuring interfaces in compile-time for ChannelsEditAdminRequest.
var (
_ bin.Encoder = &ChannelsEditAdminRequest{}
_ bin.Decoder = &ChannelsEditAdminRequest{}
_ bin.BareEncoder = &ChannelsEditAdminRequest{}
_ bin.BareDecoder = &ChannelsEditAdminRequest{}
)
func (e *ChannelsEditAdminRequest) Zero() bool {
if e == nil {
return true
}
if !(e.Channel == nil) {
return false
}
if !(e.UserID == nil) {
return false
}
if !(e.AdminRights.Zero()) {
return false
}
if !(e.Rank == "") {
return false
}
return true
}
// String implements fmt.Stringer.
func (e *ChannelsEditAdminRequest) String() string {
if e == nil {
return "ChannelsEditAdminRequest(nil)"
}
type Alias ChannelsEditAdminRequest
return fmt.Sprintf("ChannelsEditAdminRequest%+v", Alias(*e))
}
// FillFrom fills ChannelsEditAdminRequest from given interface.
func (e *ChannelsEditAdminRequest) FillFrom(from interface {
GetChannel() (value InputChannelClass)
GetUserID() (value InputUserClass)
GetAdminRights() (value ChatAdminRights)
GetRank() (value string)
}) {
e.Channel = from.GetChannel()
e.UserID = from.GetUserID()
e.AdminRights = from.GetAdminRights()
e.Rank = from.GetRank()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*ChannelsEditAdminRequest) TypeID() uint32 {
return ChannelsEditAdminRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*ChannelsEditAdminRequest) TypeName() string {
return "channels.editAdmin"
}
// TypeInfo returns info about TL type.
func (e *ChannelsEditAdminRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "channels.editAdmin",
ID: ChannelsEditAdminRequestTypeID,
}
if e == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Channel",
SchemaName: "channel",
},
{
Name: "UserID",
SchemaName: "user_id",
},
{
Name: "AdminRights",
SchemaName: "admin_rights",
},
{
Name: "Rank",
SchemaName: "rank",
},
}
return typ
}
// Encode implements bin.Encoder.
func (e *ChannelsEditAdminRequest) Encode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode channels.editAdmin#d33c8902 as nil")
}
b.PutID(ChannelsEditAdminRequestTypeID)
return e.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (e *ChannelsEditAdminRequest) EncodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode channels.editAdmin#d33c8902 as nil")
}
if e.Channel == nil {
return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field channel is nil")
}
if err := e.Channel.Encode(b); err != nil {
return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field channel: %w", err)
}
if e.UserID == nil {
return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field user_id is nil")
}
if err := e.UserID.Encode(b); err != nil {
return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field user_id: %w", err)
}
if err := e.AdminRights.Encode(b); err != nil {
return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field admin_rights: %w", err)
}
b.PutString(e.Rank)
return nil
}
// Decode implements bin.Decoder.
func (e *ChannelsEditAdminRequest) Decode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode channels.editAdmin#d33c8902 to nil")
}
if err := b.ConsumeID(ChannelsEditAdminRequestTypeID); err != nil {
return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: %w", err)
}
return e.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (e *ChannelsEditAdminRequest) DecodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode channels.editAdmin#d33c8902 to nil")
}
{
value, err := DecodeInputChannel(b)
if err != nil {
return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field channel: %w", err)
}
e.Channel = value
}
{
value, err := DecodeInputUser(b)
if err != nil {
return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field user_id: %w", err)
}
e.UserID = value
}
{
if err := e.AdminRights.Decode(b); err != nil {
return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field admin_rights: %w", err)
}
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field rank: %w", err)
}
e.Rank = value
}
return nil
}
// GetChannel returns value of Channel field.
func (e *ChannelsEditAdminRequest) GetChannel() (value InputChannelClass) {
if e == nil {
return
}
return e.Channel
}
// GetUserID returns value of UserID field.
func (e *ChannelsEditAdminRequest) GetUserID() (value InputUserClass) {
if e == nil {
return
}
return e.UserID
}
// GetAdminRights returns value of AdminRights field.
func (e *ChannelsEditAdminRequest) GetAdminRights() (value ChatAdminRights) {
if e == nil {
return
}
return e.AdminRights
}
// GetRank returns value of Rank field.
func (e *ChannelsEditAdminRequest) GetRank() (value string) {
if e == nil {
return
}
return e.Rank
}
// GetChannelAsNotEmpty returns mapped value of Channel field.
func (e *ChannelsEditAdminRequest) GetChannelAsNotEmpty() (NotEmptyInputChannel, bool) {
return e.Channel.AsNotEmpty()
}
// ChannelsEditAdmin invokes method channels.editAdmin#d33c8902 returning error if any.
// Modify the admin rights of a user in a supergroup/channel¹.
//
// Links:
// 1) https://core.telegram.org/api/channel
//
// Possible errors:
// 400 ADMINS_TOO_MUCH: There are too many admins.
// 400 ADMIN_RANK_EMOJI_NOT_ALLOWED: An admin rank cannot contain emojis.
// 400 ADMIN_RANK_INVALID: The specified admin rank is invalid.
// 400 BOTS_TOO_MUCH: There are too many bots in this chat/channel.
// 400 BOT_CHANNELS_NA: Bots can't edit admin privileges.
// 400 BOT_GROUPS_BLOCKED: This bot can't be added to groups.
// 400 CHANNEL_INVALID: The provided channel is invalid.
// 400 CHANNEL_PRIVATE: You haven't joined this channel/supergroup.
// 403 CHAT_ADMIN_INVITE_REQUIRED: You do not have the rights to do this.
// 400 CHAT_ADMIN_REQUIRED: You must be an admin in this chat to do this.
// 403 CHAT_WRITE_FORBIDDEN: You can't write in this chat.
// 406 FRESH_CHANGE_ADMINS_FORBIDDEN: You were just elected admin, you can't add or modify other admins yet.
// 400 INPUT_USER_DEACTIVATED: The specified user was deleted.
// 400 PEER_ID_INVALID: The provided peer id is invalid.
// 403 RIGHT_FORBIDDEN: Your admin rights do not allow you to do this.
// 400 USERS_TOO_MUCH: The maximum number of users has been exceeded (to create a chat, for example).
// 400 USER_BLOCKED: User blocked.
// 403 USER_CHANNELS_TOO_MUCH: One of the users you tried to add is already in too many channels/supergroups.
// 400 USER_CREATOR: You can't leave this channel, because you're its creator.
// 400 USER_ID_INVALID: The provided user ID is invalid.
// 400 USER_NOT_MUTUAL_CONTACT: The provided user is not a mutual contact.
// 403 USER_PRIVACY_RESTRICTED: The user's privacy settings do not allow you to do this.
// 403 USER_RESTRICTED: You're spamreported, you can't create channels or chats.
//
// See https://core.telegram.org/method/channels.editAdmin for reference.
// Can be used by bots.
func (c *Client) ChannelsEditAdmin(ctx context.Context, request *ChannelsEditAdminRequest) (UpdatesClass, error) {
var result UpdatesBox
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return result.Updates, nil
}