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,179 @@
|
||||
// Code generated by gotdgen, DO NOT EDIT.
|
||||
|
||||
package td
|
||||
|
||||
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{}
|
||||
)
|
||||
|
||||
// InvokeWithLayer represents TL type `invokeWithLayer#da9b0d0d`.
|
||||
//
|
||||
// See https://localhost:80/doc/constructor/invokeWithLayer for reference.
|
||||
type InvokeWithLayer struct {
|
||||
// Layer field of InvokeWithLayer.
|
||||
Layer int
|
||||
// Query field of InvokeWithLayer.
|
||||
Query bin.Object
|
||||
}
|
||||
|
||||
// InvokeWithLayerTypeID is TL type id of InvokeWithLayer.
|
||||
const InvokeWithLayerTypeID = 0xda9b0d0d
|
||||
|
||||
// Ensuring interfaces in compile-time for InvokeWithLayer.
|
||||
var (
|
||||
_ bin.Encoder = &InvokeWithLayer{}
|
||||
_ bin.Decoder = &InvokeWithLayer{}
|
||||
_ bin.BareEncoder = &InvokeWithLayer{}
|
||||
_ bin.BareDecoder = &InvokeWithLayer{}
|
||||
)
|
||||
|
||||
func (i *InvokeWithLayer) Zero() bool {
|
||||
if i == nil {
|
||||
return true
|
||||
}
|
||||
if !(i.Layer == 0) {
|
||||
return false
|
||||
}
|
||||
if !(i.Query == nil) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (i *InvokeWithLayer) String() string {
|
||||
if i == nil {
|
||||
return "InvokeWithLayer(nil)"
|
||||
}
|
||||
type Alias InvokeWithLayer
|
||||
return fmt.Sprintf("InvokeWithLayer%+v", Alias(*i))
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*InvokeWithLayer) TypeID() uint32 {
|
||||
return InvokeWithLayerTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*InvokeWithLayer) TypeName() string {
|
||||
return "invokeWithLayer"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (i *InvokeWithLayer) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "invokeWithLayer",
|
||||
ID: InvokeWithLayerTypeID,
|
||||
}
|
||||
if i == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Layer",
|
||||
SchemaName: "layer",
|
||||
},
|
||||
{
|
||||
Name: "Query",
|
||||
SchemaName: "query",
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (i *InvokeWithLayer) Encode(b *bin.Buffer) error {
|
||||
if i == nil {
|
||||
return fmt.Errorf("can't encode invokeWithLayer#da9b0d0d as nil")
|
||||
}
|
||||
b.PutID(InvokeWithLayerTypeID)
|
||||
return i.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (i *InvokeWithLayer) EncodeBare(b *bin.Buffer) error {
|
||||
if i == nil {
|
||||
return fmt.Errorf("can't encode invokeWithLayer#da9b0d0d as nil")
|
||||
}
|
||||
b.PutInt(i.Layer)
|
||||
if err := i.Query.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode invokeWithLayer#da9b0d0d: field query: %w", err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (i *InvokeWithLayer) Decode(b *bin.Buffer) error {
|
||||
if i == nil {
|
||||
return fmt.Errorf("can't decode invokeWithLayer#da9b0d0d to nil")
|
||||
}
|
||||
if err := b.ConsumeID(InvokeWithLayerTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode invokeWithLayer#da9b0d0d: %w", err)
|
||||
}
|
||||
return i.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (i *InvokeWithLayer) DecodeBare(b *bin.Buffer) error {
|
||||
if i == nil {
|
||||
return fmt.Errorf("can't decode invokeWithLayer#da9b0d0d to nil")
|
||||
}
|
||||
{
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode invokeWithLayer#da9b0d0d: field layer: %w", err)
|
||||
}
|
||||
i.Layer = value
|
||||
}
|
||||
{
|
||||
if err := i.Query.Decode(b); err != nil {
|
||||
return fmt.Errorf("unable to decode invokeWithLayer#da9b0d0d: field query: %w", err)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// GetLayer returns value of Layer field.
|
||||
func (i *InvokeWithLayer) GetLayer() (value int) {
|
||||
if i == nil {
|
||||
return
|
||||
}
|
||||
return i.Layer
|
||||
}
|
||||
|
||||
// GetQuery returns value of Query field.
|
||||
func (i *InvokeWithLayer) GetQuery() (value bin.Object) {
|
||||
if i == nil {
|
||||
return
|
||||
}
|
||||
return i.Query
|
||||
}
|
||||
Reference in New Issue
Block a user