move gotd fork into repo. (#111)
- 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
This commit is contained in:
@@ -0,0 +1,317 @@
|
||||
// Code generated by gotdgen, DO NOT EDIT.
|
||||
|
||||
package tdapi
|
||||
|
||||
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{}
|
||||
)
|
||||
|
||||
// GetStickersRequest represents TL type `getStickers#45069343`.
|
||||
type GetStickersRequest struct {
|
||||
// Type of the stickers to return
|
||||
StickerType StickerTypeClass
|
||||
// Search query; a space-separated list of emojis or a keyword prefix. If empty, returns
|
||||
// all known installed stickers
|
||||
Query string
|
||||
// The maximum number of stickers to be returned
|
||||
Limit int32
|
||||
// Chat identifier for which to return stickers. Available custom emoji stickers may be
|
||||
// different for different chats
|
||||
ChatID int64
|
||||
}
|
||||
|
||||
// GetStickersRequestTypeID is TL type id of GetStickersRequest.
|
||||
const GetStickersRequestTypeID = 0x45069343
|
||||
|
||||
// Ensuring interfaces in compile-time for GetStickersRequest.
|
||||
var (
|
||||
_ bin.Encoder = &GetStickersRequest{}
|
||||
_ bin.Decoder = &GetStickersRequest{}
|
||||
_ bin.BareEncoder = &GetStickersRequest{}
|
||||
_ bin.BareDecoder = &GetStickersRequest{}
|
||||
)
|
||||
|
||||
func (g *GetStickersRequest) Zero() bool {
|
||||
if g == nil {
|
||||
return true
|
||||
}
|
||||
if !(g.StickerType == nil) {
|
||||
return false
|
||||
}
|
||||
if !(g.Query == "") {
|
||||
return false
|
||||
}
|
||||
if !(g.Limit == 0) {
|
||||
return false
|
||||
}
|
||||
if !(g.ChatID == 0) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (g *GetStickersRequest) String() string {
|
||||
if g == nil {
|
||||
return "GetStickersRequest(nil)"
|
||||
}
|
||||
type Alias GetStickersRequest
|
||||
return fmt.Sprintf("GetStickersRequest%+v", Alias(*g))
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*GetStickersRequest) TypeID() uint32 {
|
||||
return GetStickersRequestTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*GetStickersRequest) TypeName() string {
|
||||
return "getStickers"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (g *GetStickersRequest) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "getStickers",
|
||||
ID: GetStickersRequestTypeID,
|
||||
}
|
||||
if g == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "StickerType",
|
||||
SchemaName: "sticker_type",
|
||||
},
|
||||
{
|
||||
Name: "Query",
|
||||
SchemaName: "query",
|
||||
},
|
||||
{
|
||||
Name: "Limit",
|
||||
SchemaName: "limit",
|
||||
},
|
||||
{
|
||||
Name: "ChatID",
|
||||
SchemaName: "chat_id",
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (g *GetStickersRequest) Encode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode getStickers#45069343 as nil")
|
||||
}
|
||||
b.PutID(GetStickersRequestTypeID)
|
||||
return g.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (g *GetStickersRequest) EncodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode getStickers#45069343 as nil")
|
||||
}
|
||||
if g.StickerType == nil {
|
||||
return fmt.Errorf("unable to encode getStickers#45069343: field sticker_type is nil")
|
||||
}
|
||||
if err := g.StickerType.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode getStickers#45069343: field sticker_type: %w", err)
|
||||
}
|
||||
b.PutString(g.Query)
|
||||
b.PutInt32(g.Limit)
|
||||
b.PutInt53(g.ChatID)
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (g *GetStickersRequest) Decode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode getStickers#45069343 to nil")
|
||||
}
|
||||
if err := b.ConsumeID(GetStickersRequestTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: %w", err)
|
||||
}
|
||||
return g.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (g *GetStickersRequest) DecodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode getStickers#45069343 to nil")
|
||||
}
|
||||
{
|
||||
value, err := DecodeStickerType(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: field sticker_type: %w", err)
|
||||
}
|
||||
g.StickerType = value
|
||||
}
|
||||
{
|
||||
value, err := b.String()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: field query: %w", err)
|
||||
}
|
||||
g.Query = value
|
||||
}
|
||||
{
|
||||
value, err := b.Int32()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: field limit: %w", err)
|
||||
}
|
||||
g.Limit = value
|
||||
}
|
||||
{
|
||||
value, err := b.Int53()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: field chat_id: %w", err)
|
||||
}
|
||||
g.ChatID = value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
|
||||
func (g *GetStickersRequest) EncodeTDLibJSON(b tdjson.Encoder) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode getStickers#45069343 as nil")
|
||||
}
|
||||
b.ObjStart()
|
||||
b.PutID("getStickers")
|
||||
b.Comma()
|
||||
b.FieldStart("sticker_type")
|
||||
if g.StickerType == nil {
|
||||
return fmt.Errorf("unable to encode getStickers#45069343: field sticker_type is nil")
|
||||
}
|
||||
if err := g.StickerType.EncodeTDLibJSON(b); err != nil {
|
||||
return fmt.Errorf("unable to encode getStickers#45069343: field sticker_type: %w", err)
|
||||
}
|
||||
b.Comma()
|
||||
b.FieldStart("query")
|
||||
b.PutString(g.Query)
|
||||
b.Comma()
|
||||
b.FieldStart("limit")
|
||||
b.PutInt32(g.Limit)
|
||||
b.Comma()
|
||||
b.FieldStart("chat_id")
|
||||
b.PutInt53(g.ChatID)
|
||||
b.Comma()
|
||||
b.StripComma()
|
||||
b.ObjEnd()
|
||||
return nil
|
||||
}
|
||||
|
||||
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
|
||||
func (g *GetStickersRequest) DecodeTDLibJSON(b tdjson.Decoder) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode getStickers#45069343 to nil")
|
||||
}
|
||||
|
||||
return b.Obj(func(b tdjson.Decoder, key []byte) error {
|
||||
switch string(key) {
|
||||
case tdjson.TypeField:
|
||||
if err := b.ConsumeID("getStickers"); err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: %w", err)
|
||||
}
|
||||
case "sticker_type":
|
||||
value, err := DecodeTDLibJSONStickerType(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: field sticker_type: %w", err)
|
||||
}
|
||||
g.StickerType = value
|
||||
case "query":
|
||||
value, err := b.String()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: field query: %w", err)
|
||||
}
|
||||
g.Query = value
|
||||
case "limit":
|
||||
value, err := b.Int32()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: field limit: %w", err)
|
||||
}
|
||||
g.Limit = value
|
||||
case "chat_id":
|
||||
value, err := b.Int53()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode getStickers#45069343: field chat_id: %w", err)
|
||||
}
|
||||
g.ChatID = value
|
||||
default:
|
||||
return b.Skip()
|
||||
}
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
// GetStickerType returns value of StickerType field.
|
||||
func (g *GetStickersRequest) GetStickerType() (value StickerTypeClass) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.StickerType
|
||||
}
|
||||
|
||||
// GetQuery returns value of Query field.
|
||||
func (g *GetStickersRequest) GetQuery() (value string) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.Query
|
||||
}
|
||||
|
||||
// GetLimit returns value of Limit field.
|
||||
func (g *GetStickersRequest) GetLimit() (value int32) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.Limit
|
||||
}
|
||||
|
||||
// GetChatID returns value of ChatID field.
|
||||
func (g *GetStickersRequest) GetChatID() (value int64) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.ChatID
|
||||
}
|
||||
|
||||
// GetStickers invokes method getStickers#45069343 returning error if any.
|
||||
func (c *Client) GetStickers(ctx context.Context, request *GetStickersRequest) (*Stickers, error) {
|
||||
var result Stickers
|
||||
|
||||
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &result, nil
|
||||
}
|
||||
Reference in New Issue
Block a user