// Code generated by gotdgen, DO NOT EDIT. package tg import ( "context" "errors" "fmt" "sort" "strings" "go.uber.org/multierr" "go.mau.fi/mautrix-telegram/pkg/gotd/bin" "go.mau.fi/mautrix-telegram/pkg/gotd/tdjson" "go.mau.fi/mautrix-telegram/pkg/gotd/tdp" "go.mau.fi/mautrix-telegram/pkg/gotd/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#9a98ad68`. // 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 { // Flags field of ChannelsEditAdminRequest. Flags bin.Fields // 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 // // Use SetRank and GetRank helpers. Rank string } // ChannelsEditAdminRequestTypeID is TL type id of ChannelsEditAdminRequest. const ChannelsEditAdminRequestTypeID = 0x9a98ad68 // 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.Flags.Zero()) { return false } 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, ok bool) }) { e.Channel = from.GetChannel() e.UserID = from.GetUserID() e.AdminRights = from.GetAdminRights() if val, ok := from.GetRank(); ok { e.Rank = val } } // 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", Null: !e.Flags.Has(0), }, } return typ } // SetFlags sets flags for non-zero fields. func (e *ChannelsEditAdminRequest) SetFlags() { if !(e.Rank == "") { e.Flags.Set(0) } } // Encode implements bin.Encoder. func (e *ChannelsEditAdminRequest) Encode(b *bin.Buffer) error { if e == nil { return fmt.Errorf("can't encode channels.editAdmin#9a98ad68 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#9a98ad68 as nil") } e.SetFlags() if err := e.Flags.Encode(b); err != nil { return fmt.Errorf("unable to encode channels.editAdmin#9a98ad68: field flags: %w", err) } if e.Channel == nil { return fmt.Errorf("unable to encode channels.editAdmin#9a98ad68: field channel is nil") } if err := e.Channel.Encode(b); err != nil { return fmt.Errorf("unable to encode channels.editAdmin#9a98ad68: field channel: %w", err) } if e.UserID == nil { return fmt.Errorf("unable to encode channels.editAdmin#9a98ad68: field user_id is nil") } if err := e.UserID.Encode(b); err != nil { return fmt.Errorf("unable to encode channels.editAdmin#9a98ad68: field user_id: %w", err) } if err := e.AdminRights.Encode(b); err != nil { return fmt.Errorf("unable to encode channels.editAdmin#9a98ad68: field admin_rights: %w", err) } if e.Flags.Has(0) { 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#9a98ad68 to nil") } if err := b.ConsumeID(ChannelsEditAdminRequestTypeID); err != nil { return fmt.Errorf("unable to decode channels.editAdmin#9a98ad68: %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#9a98ad68 to nil") } { if err := e.Flags.Decode(b); err != nil { return fmt.Errorf("unable to decode channels.editAdmin#9a98ad68: field flags: %w", err) } } { value, err := DecodeInputChannel(b) if err != nil { return fmt.Errorf("unable to decode channels.editAdmin#9a98ad68: field channel: %w", err) } e.Channel = value } { value, err := DecodeInputUser(b) if err != nil { return fmt.Errorf("unable to decode channels.editAdmin#9a98ad68: field user_id: %w", err) } e.UserID = value } { if err := e.AdminRights.Decode(b); err != nil { return fmt.Errorf("unable to decode channels.editAdmin#9a98ad68: field admin_rights: %w", err) } } if e.Flags.Has(0) { value, err := b.String() if err != nil { return fmt.Errorf("unable to decode channels.editAdmin#9a98ad68: 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 } // SetRank sets value of Rank conditional field. func (e *ChannelsEditAdminRequest) SetRank(value string) { e.Flags.Set(0) e.Rank = value } // GetRank returns value of Rank conditional field and // boolean which is true if field was set. func (e *ChannelsEditAdminRequest) GetRank() (value string, ok bool) { if e == nil { return } if !e.Flags.Has(0) { return value, false } return e.Rank, true } // GetChannelAsNotEmpty returns mapped value of Channel field. func (e *ChannelsEditAdminRequest) GetChannelAsNotEmpty() (NotEmptyInputChannel, bool) { return e.Channel.AsNotEmpty() } // ChannelsEditAdmin invokes method channels.editAdmin#9a98ad68 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_MONOFORUM_UNSUPPORTED: Monoforums do not support this feature. // 400 CHANNEL_PRIVATE: You haven't joined this channel/supergroup. // 403 CHAT_ADMIN_INVITE_REQUIRED: You do not have the rights to do this. // 403 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 MSG_ID_INVALID: Invalid message ID provided. // 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: For channels.editAdmin: you've tried to edit the admin rights of the owner, but you're not the owner; for channels.leaveChannel: you can't leave this channel, because you're its creator. // 400 USER_ID_INVALID: The provided user ID is invalid. // 403 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. 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 }