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

246 lines
6.1 KiB
Go
Generated

// 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{}
)
// MessagesGetCommonChatsRequest represents TL type `messages.getCommonChats#e40ca104`.
// Get chats in common with a user
//
// See https://core.telegram.org/method/messages.getCommonChats for reference.
type MessagesGetCommonChatsRequest struct {
// User ID
UserID InputUserClass
// Maximum ID of chat to return (see pagination¹)
//
// Links:
// 1) https://core.telegram.org/api/offsets
MaxID int64
// Maximum number of results to return, see pagination¹
//
// Links:
// 1) https://core.telegram.org/api/offsets
Limit int
}
// MessagesGetCommonChatsRequestTypeID is TL type id of MessagesGetCommonChatsRequest.
const MessagesGetCommonChatsRequestTypeID = 0xe40ca104
// Ensuring interfaces in compile-time for MessagesGetCommonChatsRequest.
var (
_ bin.Encoder = &MessagesGetCommonChatsRequest{}
_ bin.Decoder = &MessagesGetCommonChatsRequest{}
_ bin.BareEncoder = &MessagesGetCommonChatsRequest{}
_ bin.BareDecoder = &MessagesGetCommonChatsRequest{}
)
func (g *MessagesGetCommonChatsRequest) Zero() bool {
if g == nil {
return true
}
if !(g.UserID == nil) {
return false
}
if !(g.MaxID == 0) {
return false
}
if !(g.Limit == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (g *MessagesGetCommonChatsRequest) String() string {
if g == nil {
return "MessagesGetCommonChatsRequest(nil)"
}
type Alias MessagesGetCommonChatsRequest
return fmt.Sprintf("MessagesGetCommonChatsRequest%+v", Alias(*g))
}
// FillFrom fills MessagesGetCommonChatsRequest from given interface.
func (g *MessagesGetCommonChatsRequest) FillFrom(from interface {
GetUserID() (value InputUserClass)
GetMaxID() (value int64)
GetLimit() (value int)
}) {
g.UserID = from.GetUserID()
g.MaxID = from.GetMaxID()
g.Limit = from.GetLimit()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*MessagesGetCommonChatsRequest) TypeID() uint32 {
return MessagesGetCommonChatsRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*MessagesGetCommonChatsRequest) TypeName() string {
return "messages.getCommonChats"
}
// TypeInfo returns info about TL type.
func (g *MessagesGetCommonChatsRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "messages.getCommonChats",
ID: MessagesGetCommonChatsRequestTypeID,
}
if g == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "UserID",
SchemaName: "user_id",
},
{
Name: "MaxID",
SchemaName: "max_id",
},
{
Name: "Limit",
SchemaName: "limit",
},
}
return typ
}
// Encode implements bin.Encoder.
func (g *MessagesGetCommonChatsRequest) Encode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode messages.getCommonChats#e40ca104 as nil")
}
b.PutID(MessagesGetCommonChatsRequestTypeID)
return g.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (g *MessagesGetCommonChatsRequest) EncodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode messages.getCommonChats#e40ca104 as nil")
}
if g.UserID == nil {
return fmt.Errorf("unable to encode messages.getCommonChats#e40ca104: field user_id is nil")
}
if err := g.UserID.Encode(b); err != nil {
return fmt.Errorf("unable to encode messages.getCommonChats#e40ca104: field user_id: %w", err)
}
b.PutLong(g.MaxID)
b.PutInt(g.Limit)
return nil
}
// Decode implements bin.Decoder.
func (g *MessagesGetCommonChatsRequest) Decode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode messages.getCommonChats#e40ca104 to nil")
}
if err := b.ConsumeID(MessagesGetCommonChatsRequestTypeID); err != nil {
return fmt.Errorf("unable to decode messages.getCommonChats#e40ca104: %w", err)
}
return g.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (g *MessagesGetCommonChatsRequest) DecodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode messages.getCommonChats#e40ca104 to nil")
}
{
value, err := DecodeInputUser(b)
if err != nil {
return fmt.Errorf("unable to decode messages.getCommonChats#e40ca104: field user_id: %w", err)
}
g.UserID = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode messages.getCommonChats#e40ca104: field max_id: %w", err)
}
g.MaxID = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode messages.getCommonChats#e40ca104: field limit: %w", err)
}
g.Limit = value
}
return nil
}
// GetUserID returns value of UserID field.
func (g *MessagesGetCommonChatsRequest) GetUserID() (value InputUserClass) {
if g == nil {
return
}
return g.UserID
}
// GetMaxID returns value of MaxID field.
func (g *MessagesGetCommonChatsRequest) GetMaxID() (value int64) {
if g == nil {
return
}
return g.MaxID
}
// GetLimit returns value of Limit field.
func (g *MessagesGetCommonChatsRequest) GetLimit() (value int) {
if g == nil {
return
}
return g.Limit
}
// MessagesGetCommonChats invokes method messages.getCommonChats#e40ca104 returning error if any.
// Get chats in common with a user
//
// Possible errors:
//
// 400 MSG_ID_INVALID: Invalid message ID provided.
// 400 USER_ID_INVALID: The provided user ID is invalid.
//
// See https://core.telegram.org/method/messages.getCommonChats for reference.
func (c *Client) MessagesGetCommonChats(ctx context.Context, request *MessagesGetCommonChatsRequest) (MessagesChatsClass, error) {
var result MessagesChatsBox
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return result.Chats, nil
}