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,237 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// SendCustomRequestRequest represents TL type `sendCustomRequest#10fd71a1`.
|
||||
type SendCustomRequestRequest struct {
|
||||
// The method name
|
||||
Method string
|
||||
// JSON-serialized method parameters
|
||||
Parameters string
|
||||
}
|
||||
|
||||
// SendCustomRequestRequestTypeID is TL type id of SendCustomRequestRequest.
|
||||
const SendCustomRequestRequestTypeID = 0x10fd71a1
|
||||
|
||||
// Ensuring interfaces in compile-time for SendCustomRequestRequest.
|
||||
var (
|
||||
_ bin.Encoder = &SendCustomRequestRequest{}
|
||||
_ bin.Decoder = &SendCustomRequestRequest{}
|
||||
_ bin.BareEncoder = &SendCustomRequestRequest{}
|
||||
_ bin.BareDecoder = &SendCustomRequestRequest{}
|
||||
)
|
||||
|
||||
func (s *SendCustomRequestRequest) Zero() bool {
|
||||
if s == nil {
|
||||
return true
|
||||
}
|
||||
if !(s.Method == "") {
|
||||
return false
|
||||
}
|
||||
if !(s.Parameters == "") {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (s *SendCustomRequestRequest) String() string {
|
||||
if s == nil {
|
||||
return "SendCustomRequestRequest(nil)"
|
||||
}
|
||||
type Alias SendCustomRequestRequest
|
||||
return fmt.Sprintf("SendCustomRequestRequest%+v", Alias(*s))
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*SendCustomRequestRequest) TypeID() uint32 {
|
||||
return SendCustomRequestRequestTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*SendCustomRequestRequest) TypeName() string {
|
||||
return "sendCustomRequest"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (s *SendCustomRequestRequest) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "sendCustomRequest",
|
||||
ID: SendCustomRequestRequestTypeID,
|
||||
}
|
||||
if s == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Method",
|
||||
SchemaName: "method",
|
||||
},
|
||||
{
|
||||
Name: "Parameters",
|
||||
SchemaName: "parameters",
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (s *SendCustomRequestRequest) Encode(b *bin.Buffer) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't encode sendCustomRequest#10fd71a1 as nil")
|
||||
}
|
||||
b.PutID(SendCustomRequestRequestTypeID)
|
||||
return s.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (s *SendCustomRequestRequest) EncodeBare(b *bin.Buffer) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't encode sendCustomRequest#10fd71a1 as nil")
|
||||
}
|
||||
b.PutString(s.Method)
|
||||
b.PutString(s.Parameters)
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (s *SendCustomRequestRequest) Decode(b *bin.Buffer) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't decode sendCustomRequest#10fd71a1 to nil")
|
||||
}
|
||||
if err := b.ConsumeID(SendCustomRequestRequestTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode sendCustomRequest#10fd71a1: %w", err)
|
||||
}
|
||||
return s.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (s *SendCustomRequestRequest) DecodeBare(b *bin.Buffer) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't decode sendCustomRequest#10fd71a1 to nil")
|
||||
}
|
||||
{
|
||||
value, err := b.String()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode sendCustomRequest#10fd71a1: field method: %w", err)
|
||||
}
|
||||
s.Method = value
|
||||
}
|
||||
{
|
||||
value, err := b.String()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode sendCustomRequest#10fd71a1: field parameters: %w", err)
|
||||
}
|
||||
s.Parameters = value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
|
||||
func (s *SendCustomRequestRequest) EncodeTDLibJSON(b tdjson.Encoder) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't encode sendCustomRequest#10fd71a1 as nil")
|
||||
}
|
||||
b.ObjStart()
|
||||
b.PutID("sendCustomRequest")
|
||||
b.Comma()
|
||||
b.FieldStart("method")
|
||||
b.PutString(s.Method)
|
||||
b.Comma()
|
||||
b.FieldStart("parameters")
|
||||
b.PutString(s.Parameters)
|
||||
b.Comma()
|
||||
b.StripComma()
|
||||
b.ObjEnd()
|
||||
return nil
|
||||
}
|
||||
|
||||
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
|
||||
func (s *SendCustomRequestRequest) DecodeTDLibJSON(b tdjson.Decoder) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't decode sendCustomRequest#10fd71a1 to nil")
|
||||
}
|
||||
|
||||
return b.Obj(func(b tdjson.Decoder, key []byte) error {
|
||||
switch string(key) {
|
||||
case tdjson.TypeField:
|
||||
if err := b.ConsumeID("sendCustomRequest"); err != nil {
|
||||
return fmt.Errorf("unable to decode sendCustomRequest#10fd71a1: %w", err)
|
||||
}
|
||||
case "method":
|
||||
value, err := b.String()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode sendCustomRequest#10fd71a1: field method: %w", err)
|
||||
}
|
||||
s.Method = value
|
||||
case "parameters":
|
||||
value, err := b.String()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode sendCustomRequest#10fd71a1: field parameters: %w", err)
|
||||
}
|
||||
s.Parameters = value
|
||||
default:
|
||||
return b.Skip()
|
||||
}
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
// GetMethod returns value of Method field.
|
||||
func (s *SendCustomRequestRequest) GetMethod() (value string) {
|
||||
if s == nil {
|
||||
return
|
||||
}
|
||||
return s.Method
|
||||
}
|
||||
|
||||
// GetParameters returns value of Parameters field.
|
||||
func (s *SendCustomRequestRequest) GetParameters() (value string) {
|
||||
if s == nil {
|
||||
return
|
||||
}
|
||||
return s.Parameters
|
||||
}
|
||||
|
||||
// SendCustomRequest invokes method sendCustomRequest#10fd71a1 returning error if any.
|
||||
func (c *Client) SendCustomRequest(ctx context.Context, request *SendCustomRequestRequest) (*CustomRequestResult, error) {
|
||||
var result CustomRequestResult
|
||||
|
||||
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &result, nil
|
||||
}
|
||||
Reference in New Issue
Block a user