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,144 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// AuthLogOutRequest represents TL type `auth.logOut#3e72ba19`.
|
||||
// Logs out the user.
|
||||
//
|
||||
// See https://core.telegram.org/method/auth.logOut for reference.
|
||||
type AuthLogOutRequest struct {
|
||||
}
|
||||
|
||||
// AuthLogOutRequestTypeID is TL type id of AuthLogOutRequest.
|
||||
const AuthLogOutRequestTypeID = 0x3e72ba19
|
||||
|
||||
// Ensuring interfaces in compile-time for AuthLogOutRequest.
|
||||
var (
|
||||
_ bin.Encoder = &AuthLogOutRequest{}
|
||||
_ bin.Decoder = &AuthLogOutRequest{}
|
||||
_ bin.BareEncoder = &AuthLogOutRequest{}
|
||||
_ bin.BareDecoder = &AuthLogOutRequest{}
|
||||
)
|
||||
|
||||
func (l *AuthLogOutRequest) Zero() bool {
|
||||
if l == nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (l *AuthLogOutRequest) String() string {
|
||||
if l == nil {
|
||||
return "AuthLogOutRequest(nil)"
|
||||
}
|
||||
type Alias AuthLogOutRequest
|
||||
return fmt.Sprintf("AuthLogOutRequest%+v", Alias(*l))
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*AuthLogOutRequest) TypeID() uint32 {
|
||||
return AuthLogOutRequestTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*AuthLogOutRequest) TypeName() string {
|
||||
return "auth.logOut"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (l *AuthLogOutRequest) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "auth.logOut",
|
||||
ID: AuthLogOutRequestTypeID,
|
||||
}
|
||||
if l == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (l *AuthLogOutRequest) Encode(b *bin.Buffer) error {
|
||||
if l == nil {
|
||||
return fmt.Errorf("can't encode auth.logOut#3e72ba19 as nil")
|
||||
}
|
||||
b.PutID(AuthLogOutRequestTypeID)
|
||||
return l.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (l *AuthLogOutRequest) EncodeBare(b *bin.Buffer) error {
|
||||
if l == nil {
|
||||
return fmt.Errorf("can't encode auth.logOut#3e72ba19 as nil")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (l *AuthLogOutRequest) Decode(b *bin.Buffer) error {
|
||||
if l == nil {
|
||||
return fmt.Errorf("can't decode auth.logOut#3e72ba19 to nil")
|
||||
}
|
||||
if err := b.ConsumeID(AuthLogOutRequestTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode auth.logOut#3e72ba19: %w", err)
|
||||
}
|
||||
return l.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (l *AuthLogOutRequest) DecodeBare(b *bin.Buffer) error {
|
||||
if l == nil {
|
||||
return fmt.Errorf("can't decode auth.logOut#3e72ba19 to nil")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// AuthLogOut invokes method auth.logOut#3e72ba19 returning error if any.
|
||||
// Logs out the user.
|
||||
//
|
||||
// See https://core.telegram.org/method/auth.logOut for reference.
|
||||
// Can be used by bots.
|
||||
func (c *Client) AuthLogOut(ctx context.Context) (*AuthLoggedOut, error) {
|
||||
var result AuthLoggedOut
|
||||
|
||||
request := &AuthLogOutRequest{}
|
||||
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &result, nil
|
||||
}
|
||||
Reference in New Issue
Block a user