Files
mautrix-telegram/pkg/gotd/tg/tl_phone_get_group_participants_gen.go
T
2025-06-27 20:03:37 -07:00

339 lines
8.9 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{}
)
// PhoneGetGroupParticipantsRequest represents TL type `phone.getGroupParticipants#c558d8ab`.
// Get group call participants
//
// See https://core.telegram.org/method/phone.getGroupParticipants for reference.
type PhoneGetGroupParticipantsRequest struct {
// Group call
Call InputGroupCallClass
// If specified, will fetch group participant info about the specified peers
IDs []InputPeerClass
// If specified, will fetch group participant info about the specified WebRTC source IDs
Sources []int
// Offset for results, taken from the next_offset field of phone.groupParticipants¹,
// initially an empty string. Note: if no more results are available, the method call
// will return an empty next_offset; thus, avoid providing the next_offset returned in
// phone.groupParticipants² if it is empty, to avoid an infinite loop.
//
// Links:
// 1) https://core.telegram.org/constructor/phone.groupParticipants
// 2) https://core.telegram.org/constructor/phone.groupParticipants
Offset string
// Maximum number of results to return, see pagination¹
//
// Links:
// 1) https://core.telegram.org/api/offsets
Limit int
}
// PhoneGetGroupParticipantsRequestTypeID is TL type id of PhoneGetGroupParticipantsRequest.
const PhoneGetGroupParticipantsRequestTypeID = 0xc558d8ab
// Ensuring interfaces in compile-time for PhoneGetGroupParticipantsRequest.
var (
_ bin.Encoder = &PhoneGetGroupParticipantsRequest{}
_ bin.Decoder = &PhoneGetGroupParticipantsRequest{}
_ bin.BareEncoder = &PhoneGetGroupParticipantsRequest{}
_ bin.BareDecoder = &PhoneGetGroupParticipantsRequest{}
)
func (g *PhoneGetGroupParticipantsRequest) Zero() bool {
if g == nil {
return true
}
if !(g.Call == nil) {
return false
}
if !(g.IDs == nil) {
return false
}
if !(g.Sources == nil) {
return false
}
if !(g.Offset == "") {
return false
}
if !(g.Limit == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (g *PhoneGetGroupParticipantsRequest) String() string {
if g == nil {
return "PhoneGetGroupParticipantsRequest(nil)"
}
type Alias PhoneGetGroupParticipantsRequest
return fmt.Sprintf("PhoneGetGroupParticipantsRequest%+v", Alias(*g))
}
// FillFrom fills PhoneGetGroupParticipantsRequest from given interface.
func (g *PhoneGetGroupParticipantsRequest) FillFrom(from interface {
GetCall() (value InputGroupCallClass)
GetIDs() (value []InputPeerClass)
GetSources() (value []int)
GetOffset() (value string)
GetLimit() (value int)
}) {
g.Call = from.GetCall()
g.IDs = from.GetIDs()
g.Sources = from.GetSources()
g.Offset = from.GetOffset()
g.Limit = from.GetLimit()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PhoneGetGroupParticipantsRequest) TypeID() uint32 {
return PhoneGetGroupParticipantsRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*PhoneGetGroupParticipantsRequest) TypeName() string {
return "phone.getGroupParticipants"
}
// TypeInfo returns info about TL type.
func (g *PhoneGetGroupParticipantsRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "phone.getGroupParticipants",
ID: PhoneGetGroupParticipantsRequestTypeID,
}
if g == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Call",
SchemaName: "call",
},
{
Name: "IDs",
SchemaName: "ids",
},
{
Name: "Sources",
SchemaName: "sources",
},
{
Name: "Offset",
SchemaName: "offset",
},
{
Name: "Limit",
SchemaName: "limit",
},
}
return typ
}
// Encode implements bin.Encoder.
func (g *PhoneGetGroupParticipantsRequest) Encode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode phone.getGroupParticipants#c558d8ab as nil")
}
b.PutID(PhoneGetGroupParticipantsRequestTypeID)
return g.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (g *PhoneGetGroupParticipantsRequest) EncodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode phone.getGroupParticipants#c558d8ab as nil")
}
if g.Call == nil {
return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field call is nil")
}
if err := g.Call.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field call: %w", err)
}
b.PutVectorHeader(len(g.IDs))
for idx, v := range g.IDs {
if v == nil {
return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field ids element with index %d is nil", idx)
}
if err := v.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field ids element with index %d: %w", idx, err)
}
}
b.PutVectorHeader(len(g.Sources))
for _, v := range g.Sources {
b.PutInt(v)
}
b.PutString(g.Offset)
b.PutInt(g.Limit)
return nil
}
// Decode implements bin.Decoder.
func (g *PhoneGetGroupParticipantsRequest) Decode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode phone.getGroupParticipants#c558d8ab to nil")
}
if err := b.ConsumeID(PhoneGetGroupParticipantsRequestTypeID); err != nil {
return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: %w", err)
}
return g.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (g *PhoneGetGroupParticipantsRequest) DecodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode phone.getGroupParticipants#c558d8ab to nil")
}
{
value, err := DecodeInputGroupCall(b)
if err != nil {
return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field call: %w", err)
}
g.Call = value
}
{
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field ids: %w", err)
}
if headerLen > 0 {
g.IDs = make([]InputPeerClass, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
value, err := DecodeInputPeer(b)
if err != nil {
return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field ids: %w", err)
}
g.IDs = append(g.IDs, value)
}
}
{
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field sources: %w", err)
}
if headerLen > 0 {
g.Sources = make([]int, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field sources: %w", err)
}
g.Sources = append(g.Sources, value)
}
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field offset: %w", err)
}
g.Offset = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field limit: %w", err)
}
g.Limit = value
}
return nil
}
// GetCall returns value of Call field.
func (g *PhoneGetGroupParticipantsRequest) GetCall() (value InputGroupCallClass) {
if g == nil {
return
}
return g.Call
}
// GetIDs returns value of IDs field.
func (g *PhoneGetGroupParticipantsRequest) GetIDs() (value []InputPeerClass) {
if g == nil {
return
}
return g.IDs
}
// GetSources returns value of Sources field.
func (g *PhoneGetGroupParticipantsRequest) GetSources() (value []int) {
if g == nil {
return
}
return g.Sources
}
// GetOffset returns value of Offset field.
func (g *PhoneGetGroupParticipantsRequest) GetOffset() (value string) {
if g == nil {
return
}
return g.Offset
}
// GetLimit returns value of Limit field.
func (g *PhoneGetGroupParticipantsRequest) GetLimit() (value int) {
if g == nil {
return
}
return g.Limit
}
// MapIDs returns field IDs wrapped in InputPeerClassArray helper.
func (g *PhoneGetGroupParticipantsRequest) MapIDs() (value InputPeerClassArray) {
return InputPeerClassArray(g.IDs)
}
// PhoneGetGroupParticipants invokes method phone.getGroupParticipants#c558d8ab returning error if any.
// Get group call participants
//
// Possible errors:
//
// 400 GROUPCALL_INVALID: The specified group call is invalid.
//
// See https://core.telegram.org/method/phone.getGroupParticipants for reference.
func (c *Client) PhoneGetGroupParticipants(ctx context.Context, request *PhoneGetGroupParticipantsRequest) (*PhoneGroupParticipants, error) {
var result PhoneGroupParticipants
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return &result, nil
}