7a04f298d2
- update to latest telegram layer - remove some references to fields in tg.Entities that don't exist in the schema - originally added here: https://github.com/beeper/td/commit/820929062a2ba0104397bc01235ab58a9cff780e - referenced here - https://github.com/mautrix/telegramgo/commit/124f0967ed195b5a380c9bd02e170ada9710dde3 - https://github.com/mautrix/telegramgo/commit/4205047aab2e0639217148b5d125bfaab668bd8e
257 lines
7.6 KiB
Go
257 lines
7.6 KiB
Go
// 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{}
|
|
)
|
|
|
|
// ChannelsInviteToChannelRequest represents TL type `channels.inviteToChannel#c9e33d54`.
|
|
// Invite users to a channel/supergroup
|
|
//
|
|
// See https://core.telegram.org/method/channels.inviteToChannel for reference.
|
|
type ChannelsInviteToChannelRequest struct {
|
|
// Channel/supergroup
|
|
Channel InputChannelClass
|
|
// Users to invite
|
|
Users []InputUserClass
|
|
}
|
|
|
|
// ChannelsInviteToChannelRequestTypeID is TL type id of ChannelsInviteToChannelRequest.
|
|
const ChannelsInviteToChannelRequestTypeID = 0xc9e33d54
|
|
|
|
// Ensuring interfaces in compile-time for ChannelsInviteToChannelRequest.
|
|
var (
|
|
_ bin.Encoder = &ChannelsInviteToChannelRequest{}
|
|
_ bin.Decoder = &ChannelsInviteToChannelRequest{}
|
|
_ bin.BareEncoder = &ChannelsInviteToChannelRequest{}
|
|
_ bin.BareDecoder = &ChannelsInviteToChannelRequest{}
|
|
)
|
|
|
|
func (i *ChannelsInviteToChannelRequest) Zero() bool {
|
|
if i == nil {
|
|
return true
|
|
}
|
|
if !(i.Channel == nil) {
|
|
return false
|
|
}
|
|
if !(i.Users == nil) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (i *ChannelsInviteToChannelRequest) String() string {
|
|
if i == nil {
|
|
return "ChannelsInviteToChannelRequest(nil)"
|
|
}
|
|
type Alias ChannelsInviteToChannelRequest
|
|
return fmt.Sprintf("ChannelsInviteToChannelRequest%+v", Alias(*i))
|
|
}
|
|
|
|
// FillFrom fills ChannelsInviteToChannelRequest from given interface.
|
|
func (i *ChannelsInviteToChannelRequest) FillFrom(from interface {
|
|
GetChannel() (value InputChannelClass)
|
|
GetUsers() (value []InputUserClass)
|
|
}) {
|
|
i.Channel = from.GetChannel()
|
|
i.Users = from.GetUsers()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*ChannelsInviteToChannelRequest) TypeID() uint32 {
|
|
return ChannelsInviteToChannelRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*ChannelsInviteToChannelRequest) TypeName() string {
|
|
return "channels.inviteToChannel"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (i *ChannelsInviteToChannelRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "channels.inviteToChannel",
|
|
ID: ChannelsInviteToChannelRequestTypeID,
|
|
}
|
|
if i == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "Channel",
|
|
SchemaName: "channel",
|
|
},
|
|
{
|
|
Name: "Users",
|
|
SchemaName: "users",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (i *ChannelsInviteToChannelRequest) Encode(b *bin.Buffer) error {
|
|
if i == nil {
|
|
return fmt.Errorf("can't encode channels.inviteToChannel#c9e33d54 as nil")
|
|
}
|
|
b.PutID(ChannelsInviteToChannelRequestTypeID)
|
|
return i.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (i *ChannelsInviteToChannelRequest) EncodeBare(b *bin.Buffer) error {
|
|
if i == nil {
|
|
return fmt.Errorf("can't encode channels.inviteToChannel#c9e33d54 as nil")
|
|
}
|
|
if i.Channel == nil {
|
|
return fmt.Errorf("unable to encode channels.inviteToChannel#c9e33d54: field channel is nil")
|
|
}
|
|
if err := i.Channel.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode channels.inviteToChannel#c9e33d54: field channel: %w", err)
|
|
}
|
|
b.PutVectorHeader(len(i.Users))
|
|
for idx, v := range i.Users {
|
|
if v == nil {
|
|
return fmt.Errorf("unable to encode channels.inviteToChannel#c9e33d54: field users element with index %d is nil", idx)
|
|
}
|
|
if err := v.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode channels.inviteToChannel#c9e33d54: field users element with index %d: %w", idx, err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (i *ChannelsInviteToChannelRequest) Decode(b *bin.Buffer) error {
|
|
if i == nil {
|
|
return fmt.Errorf("can't decode channels.inviteToChannel#c9e33d54 to nil")
|
|
}
|
|
if err := b.ConsumeID(ChannelsInviteToChannelRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode channels.inviteToChannel#c9e33d54: %w", err)
|
|
}
|
|
return i.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (i *ChannelsInviteToChannelRequest) DecodeBare(b *bin.Buffer) error {
|
|
if i == nil {
|
|
return fmt.Errorf("can't decode channels.inviteToChannel#c9e33d54 to nil")
|
|
}
|
|
{
|
|
value, err := DecodeInputChannel(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode channels.inviteToChannel#c9e33d54: field channel: %w", err)
|
|
}
|
|
i.Channel = value
|
|
}
|
|
{
|
|
headerLen, err := b.VectorHeader()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode channels.inviteToChannel#c9e33d54: field users: %w", err)
|
|
}
|
|
|
|
if headerLen > 0 {
|
|
i.Users = make([]InputUserClass, 0, headerLen%bin.PreallocateLimit)
|
|
}
|
|
for idx := 0; idx < headerLen; idx++ {
|
|
value, err := DecodeInputUser(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode channels.inviteToChannel#c9e33d54: field users: %w", err)
|
|
}
|
|
i.Users = append(i.Users, value)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetChannel returns value of Channel field.
|
|
func (i *ChannelsInviteToChannelRequest) GetChannel() (value InputChannelClass) {
|
|
if i == nil {
|
|
return
|
|
}
|
|
return i.Channel
|
|
}
|
|
|
|
// GetUsers returns value of Users field.
|
|
func (i *ChannelsInviteToChannelRequest) GetUsers() (value []InputUserClass) {
|
|
if i == nil {
|
|
return
|
|
}
|
|
return i.Users
|
|
}
|
|
|
|
// GetChannelAsNotEmpty returns mapped value of Channel field.
|
|
func (i *ChannelsInviteToChannelRequest) GetChannelAsNotEmpty() (NotEmptyInputChannel, bool) {
|
|
return i.Channel.AsNotEmpty()
|
|
}
|
|
|
|
// MapUsers returns field Users wrapped in InputUserClassArray helper.
|
|
func (i *ChannelsInviteToChannelRequest) MapUsers() (value InputUserClassArray) {
|
|
return InputUserClassArray(i.Users)
|
|
}
|
|
|
|
// ChannelsInviteToChannel invokes method channels.inviteToChannel#c9e33d54 returning error if any.
|
|
// Invite users to a channel/supergroup
|
|
//
|
|
// Possible errors:
|
|
//
|
|
// 400 BOTS_TOO_MUCH: There are too many bots in this chat/channel.
|
|
// 400 BOT_GROUPS_BLOCKED: This bot can't be added to groups.
|
|
// 400 CHANNEL_INVALID: The provided channel is invalid.
|
|
// 406 CHANNEL_PRIVATE: You haven't joined this channel/supergroup.
|
|
// 403 CHAT_ADMIN_REQUIRED: You must be an admin in this chat to do this.
|
|
// 400 CHAT_INVALID: Invalid chat.
|
|
// 403 CHAT_WRITE_FORBIDDEN: You can't write in this chat.
|
|
// 400 INPUT_USER_DEACTIVATED: The specified user was deleted.
|
|
// 400 MSG_ID_INVALID: Invalid message ID provided.
|
|
// 400 USERS_TOO_MUCH: The maximum number of users has been exceeded (to create a chat, for example).
|
|
// 400 USER_BANNED_IN_CHANNEL: You're banned from sending messages in supergroups/channels.
|
|
// 400 USER_BLOCKED: User blocked.
|
|
// 400 USER_BOT: Bots can only be admins in channels.
|
|
// 403 USER_CHANNELS_TOO_MUCH: One of the users you tried to add is already in too many channels/supergroups.
|
|
// 400 USER_ID_INVALID: The provided user ID is invalid.
|
|
// 400 USER_KICKED: This user was kicked from this supergroup/channel.
|
|
// 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.
|
|
//
|
|
// See https://core.telegram.org/method/channels.inviteToChannel for reference.
|
|
func (c *Client) ChannelsInviteToChannel(ctx context.Context, request *ChannelsInviteToChannelRequest) (*MessagesInvitedUsers, error) {
|
|
var result MessagesInvitedUsers
|
|
|
|
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
|
return nil, err
|
|
}
|
|
return &result, nil
|
|
}
|