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
+148
View File
@@ -0,0 +1,148 @@
// 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{}
)
// SMSJobsJoinRequest represents TL type `smsjobs.join#a74ece2d`.
// Enable SMS jobs (official clients only).
//
// See https://core.telegram.org/method/smsjobs.join for reference.
type SMSJobsJoinRequest struct {
}
// SMSJobsJoinRequestTypeID is TL type id of SMSJobsJoinRequest.
const SMSJobsJoinRequestTypeID = 0xa74ece2d
// Ensuring interfaces in compile-time for SMSJobsJoinRequest.
var (
_ bin.Encoder = &SMSJobsJoinRequest{}
_ bin.Decoder = &SMSJobsJoinRequest{}
_ bin.BareEncoder = &SMSJobsJoinRequest{}
_ bin.BareDecoder = &SMSJobsJoinRequest{}
)
func (j *SMSJobsJoinRequest) Zero() bool {
if j == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (j *SMSJobsJoinRequest) String() string {
if j == nil {
return "SMSJobsJoinRequest(nil)"
}
type Alias SMSJobsJoinRequest
return fmt.Sprintf("SMSJobsJoinRequest%+v", Alias(*j))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*SMSJobsJoinRequest) TypeID() uint32 {
return SMSJobsJoinRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*SMSJobsJoinRequest) TypeName() string {
return "smsjobs.join"
}
// TypeInfo returns info about TL type.
func (j *SMSJobsJoinRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "smsjobs.join",
ID: SMSJobsJoinRequestTypeID,
}
if j == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (j *SMSJobsJoinRequest) Encode(b *bin.Buffer) error {
if j == nil {
return fmt.Errorf("can't encode smsjobs.join#a74ece2d as nil")
}
b.PutID(SMSJobsJoinRequestTypeID)
return j.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (j *SMSJobsJoinRequest) EncodeBare(b *bin.Buffer) error {
if j == nil {
return fmt.Errorf("can't encode smsjobs.join#a74ece2d as nil")
}
return nil
}
// Decode implements bin.Decoder.
func (j *SMSJobsJoinRequest) Decode(b *bin.Buffer) error {
if j == nil {
return fmt.Errorf("can't decode smsjobs.join#a74ece2d to nil")
}
if err := b.ConsumeID(SMSJobsJoinRequestTypeID); err != nil {
return fmt.Errorf("unable to decode smsjobs.join#a74ece2d: %w", err)
}
return j.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (j *SMSJobsJoinRequest) DecodeBare(b *bin.Buffer) error {
if j == nil {
return fmt.Errorf("can't decode smsjobs.join#a74ece2d to nil")
}
return nil
}
// SMSJobsJoin invokes method smsjobs.join#a74ece2d returning error if any.
// Enable SMS jobs (official clients only).
//
// Possible errors:
//
// 400 NOT_ELIGIBLE: The current user is not eligible to join the Peer-to-Peer Login Program.
//
// See https://core.telegram.org/method/smsjobs.join for reference.
func (c *Client) SMSJobsJoin(ctx context.Context) (bool, error) {
var result BoolBox
request := &SMSJobsJoinRequest{}
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return false, err
}
_, ok := result.Bool.(*BoolTrue)
return ok, nil
}