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:
Adam Van Ymeren
2025-06-27 20:03:37 -07:00
committed by GitHub
parent 0952df0244
commit 7a04f298d2
19264 changed files with 1539697 additions and 84 deletions
+193
View File
@@ -0,0 +1,193 @@
// 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{}
)
// InlineBotWebView represents TL type `inlineBotWebView#b57295d5`.
// Specifies an inline mode mini app¹ button, shown on top of the inline query results
// list.
//
// Links:
// 1. https://core.telegram.org/api/bots/webapps#inline-mode-mini-apps
//
// See https://core.telegram.org/constructor/inlineBotWebView for reference.
type InlineBotWebView struct {
// Text of the button
Text string
// Webapp URL
URL string
}
// InlineBotWebViewTypeID is TL type id of InlineBotWebView.
const InlineBotWebViewTypeID = 0xb57295d5
// Ensuring interfaces in compile-time for InlineBotWebView.
var (
_ bin.Encoder = &InlineBotWebView{}
_ bin.Decoder = &InlineBotWebView{}
_ bin.BareEncoder = &InlineBotWebView{}
_ bin.BareDecoder = &InlineBotWebView{}
)
func (i *InlineBotWebView) Zero() bool {
if i == nil {
return true
}
if !(i.Text == "") {
return false
}
if !(i.URL == "") {
return false
}
return true
}
// String implements fmt.Stringer.
func (i *InlineBotWebView) String() string {
if i == nil {
return "InlineBotWebView(nil)"
}
type Alias InlineBotWebView
return fmt.Sprintf("InlineBotWebView%+v", Alias(*i))
}
// FillFrom fills InlineBotWebView from given interface.
func (i *InlineBotWebView) FillFrom(from interface {
GetText() (value string)
GetURL() (value string)
}) {
i.Text = from.GetText()
i.URL = from.GetURL()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*InlineBotWebView) TypeID() uint32 {
return InlineBotWebViewTypeID
}
// TypeName returns name of type in TL schema.
func (*InlineBotWebView) TypeName() string {
return "inlineBotWebView"
}
// TypeInfo returns info about TL type.
func (i *InlineBotWebView) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "inlineBotWebView",
ID: InlineBotWebViewTypeID,
}
if i == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Text",
SchemaName: "text",
},
{
Name: "URL",
SchemaName: "url",
},
}
return typ
}
// Encode implements bin.Encoder.
func (i *InlineBotWebView) Encode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inlineBotWebView#b57295d5 as nil")
}
b.PutID(InlineBotWebViewTypeID)
return i.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (i *InlineBotWebView) EncodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inlineBotWebView#b57295d5 as nil")
}
b.PutString(i.Text)
b.PutString(i.URL)
return nil
}
// Decode implements bin.Decoder.
func (i *InlineBotWebView) Decode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inlineBotWebView#b57295d5 to nil")
}
if err := b.ConsumeID(InlineBotWebViewTypeID); err != nil {
return fmt.Errorf("unable to decode inlineBotWebView#b57295d5: %w", err)
}
return i.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (i *InlineBotWebView) DecodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inlineBotWebView#b57295d5 to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode inlineBotWebView#b57295d5: field text: %w", err)
}
i.Text = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode inlineBotWebView#b57295d5: field url: %w", err)
}
i.URL = value
}
return nil
}
// GetText returns value of Text field.
func (i *InlineBotWebView) GetText() (value string) {
if i == nil {
return
}
return i.Text
}
// GetURL returns value of URL field.
func (i *InlineBotWebView) GetURL() (value string) {
if i == nil {
return
}
return i.URL
}