7a04f298d2
- 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
205 lines
5.2 KiB
Go
Generated
205 lines
5.2 KiB
Go
Generated
// 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{}
|
|
)
|
|
|
|
// AccountAuthorizations represents TL type `account.authorizations#4bff8ea0`.
|
|
// Logged-in sessions
|
|
//
|
|
// See https://core.telegram.org/constructor/account.authorizations for reference.
|
|
type AccountAuthorizations struct {
|
|
// Time-to-live of session
|
|
AuthorizationTTLDays int
|
|
// Logged-in sessions
|
|
Authorizations []Authorization
|
|
}
|
|
|
|
// AccountAuthorizationsTypeID is TL type id of AccountAuthorizations.
|
|
const AccountAuthorizationsTypeID = 0x4bff8ea0
|
|
|
|
// Ensuring interfaces in compile-time for AccountAuthorizations.
|
|
var (
|
|
_ bin.Encoder = &AccountAuthorizations{}
|
|
_ bin.Decoder = &AccountAuthorizations{}
|
|
_ bin.BareEncoder = &AccountAuthorizations{}
|
|
_ bin.BareDecoder = &AccountAuthorizations{}
|
|
)
|
|
|
|
func (a *AccountAuthorizations) Zero() bool {
|
|
if a == nil {
|
|
return true
|
|
}
|
|
if !(a.AuthorizationTTLDays == 0) {
|
|
return false
|
|
}
|
|
if !(a.Authorizations == nil) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (a *AccountAuthorizations) String() string {
|
|
if a == nil {
|
|
return "AccountAuthorizations(nil)"
|
|
}
|
|
type Alias AccountAuthorizations
|
|
return fmt.Sprintf("AccountAuthorizations%+v", Alias(*a))
|
|
}
|
|
|
|
// FillFrom fills AccountAuthorizations from given interface.
|
|
func (a *AccountAuthorizations) FillFrom(from interface {
|
|
GetAuthorizationTTLDays() (value int)
|
|
GetAuthorizations() (value []Authorization)
|
|
}) {
|
|
a.AuthorizationTTLDays = from.GetAuthorizationTTLDays()
|
|
a.Authorizations = from.GetAuthorizations()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*AccountAuthorizations) TypeID() uint32 {
|
|
return AccountAuthorizationsTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*AccountAuthorizations) TypeName() string {
|
|
return "account.authorizations"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (a *AccountAuthorizations) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "account.authorizations",
|
|
ID: AccountAuthorizationsTypeID,
|
|
}
|
|
if a == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "AuthorizationTTLDays",
|
|
SchemaName: "authorization_ttl_days",
|
|
},
|
|
{
|
|
Name: "Authorizations",
|
|
SchemaName: "authorizations",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (a *AccountAuthorizations) Encode(b *bin.Buffer) error {
|
|
if a == nil {
|
|
return fmt.Errorf("can't encode account.authorizations#4bff8ea0 as nil")
|
|
}
|
|
b.PutID(AccountAuthorizationsTypeID)
|
|
return a.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (a *AccountAuthorizations) EncodeBare(b *bin.Buffer) error {
|
|
if a == nil {
|
|
return fmt.Errorf("can't encode account.authorizations#4bff8ea0 as nil")
|
|
}
|
|
b.PutInt(a.AuthorizationTTLDays)
|
|
b.PutVectorHeader(len(a.Authorizations))
|
|
for idx, v := range a.Authorizations {
|
|
if err := v.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode account.authorizations#4bff8ea0: field authorizations element with index %d: %w", idx, err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (a *AccountAuthorizations) Decode(b *bin.Buffer) error {
|
|
if a == nil {
|
|
return fmt.Errorf("can't decode account.authorizations#4bff8ea0 to nil")
|
|
}
|
|
if err := b.ConsumeID(AccountAuthorizationsTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode account.authorizations#4bff8ea0: %w", err)
|
|
}
|
|
return a.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (a *AccountAuthorizations) DecodeBare(b *bin.Buffer) error {
|
|
if a == nil {
|
|
return fmt.Errorf("can't decode account.authorizations#4bff8ea0 to nil")
|
|
}
|
|
{
|
|
value, err := b.Int()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode account.authorizations#4bff8ea0: field authorization_ttl_days: %w", err)
|
|
}
|
|
a.AuthorizationTTLDays = value
|
|
}
|
|
{
|
|
headerLen, err := b.VectorHeader()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode account.authorizations#4bff8ea0: field authorizations: %w", err)
|
|
}
|
|
|
|
if headerLen > 0 {
|
|
a.Authorizations = make([]Authorization, 0, headerLen%bin.PreallocateLimit)
|
|
}
|
|
for idx := 0; idx < headerLen; idx++ {
|
|
var value Authorization
|
|
if err := value.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode account.authorizations#4bff8ea0: field authorizations: %w", err)
|
|
}
|
|
a.Authorizations = append(a.Authorizations, value)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetAuthorizationTTLDays returns value of AuthorizationTTLDays field.
|
|
func (a *AccountAuthorizations) GetAuthorizationTTLDays() (value int) {
|
|
if a == nil {
|
|
return
|
|
}
|
|
return a.AuthorizationTTLDays
|
|
}
|
|
|
|
// GetAuthorizations returns value of Authorizations field.
|
|
func (a *AccountAuthorizations) GetAuthorizations() (value []Authorization) {
|
|
if a == nil {
|
|
return
|
|
}
|
|
return a.Authorizations
|
|
}
|