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,261 @@
|
||||
// Code generated by gotdgen, DO NOT EDIT.
|
||||
|
||||
package tdapi
|
||||
|
||||
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{}
|
||||
)
|
||||
|
||||
// TermsOfService represents TL type `termsOfService#2c12b185`.
|
||||
type TermsOfService struct {
|
||||
// Text of the terms of service
|
||||
Text FormattedText
|
||||
// The minimum age of a user to be able to accept the terms; 0 if age isn't restricted
|
||||
MinUserAge int32
|
||||
// True, if a blocking popup with terms of service must be shown to the user
|
||||
ShowPopup bool
|
||||
}
|
||||
|
||||
// TermsOfServiceTypeID is TL type id of TermsOfService.
|
||||
const TermsOfServiceTypeID = 0x2c12b185
|
||||
|
||||
// Ensuring interfaces in compile-time for TermsOfService.
|
||||
var (
|
||||
_ bin.Encoder = &TermsOfService{}
|
||||
_ bin.Decoder = &TermsOfService{}
|
||||
_ bin.BareEncoder = &TermsOfService{}
|
||||
_ bin.BareDecoder = &TermsOfService{}
|
||||
)
|
||||
|
||||
func (t *TermsOfService) Zero() bool {
|
||||
if t == nil {
|
||||
return true
|
||||
}
|
||||
if !(t.Text.Zero()) {
|
||||
return false
|
||||
}
|
||||
if !(t.MinUserAge == 0) {
|
||||
return false
|
||||
}
|
||||
if !(t.ShowPopup == false) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (t *TermsOfService) String() string {
|
||||
if t == nil {
|
||||
return "TermsOfService(nil)"
|
||||
}
|
||||
type Alias TermsOfService
|
||||
return fmt.Sprintf("TermsOfService%+v", Alias(*t))
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*TermsOfService) TypeID() uint32 {
|
||||
return TermsOfServiceTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*TermsOfService) TypeName() string {
|
||||
return "termsOfService"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (t *TermsOfService) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "termsOfService",
|
||||
ID: TermsOfServiceTypeID,
|
||||
}
|
||||
if t == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Text",
|
||||
SchemaName: "text",
|
||||
},
|
||||
{
|
||||
Name: "MinUserAge",
|
||||
SchemaName: "min_user_age",
|
||||
},
|
||||
{
|
||||
Name: "ShowPopup",
|
||||
SchemaName: "show_popup",
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (t *TermsOfService) Encode(b *bin.Buffer) error {
|
||||
if t == nil {
|
||||
return fmt.Errorf("can't encode termsOfService#2c12b185 as nil")
|
||||
}
|
||||
b.PutID(TermsOfServiceTypeID)
|
||||
return t.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (t *TermsOfService) EncodeBare(b *bin.Buffer) error {
|
||||
if t == nil {
|
||||
return fmt.Errorf("can't encode termsOfService#2c12b185 as nil")
|
||||
}
|
||||
if err := t.Text.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode termsOfService#2c12b185: field text: %w", err)
|
||||
}
|
||||
b.PutInt32(t.MinUserAge)
|
||||
b.PutBool(t.ShowPopup)
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (t *TermsOfService) Decode(b *bin.Buffer) error {
|
||||
if t == nil {
|
||||
return fmt.Errorf("can't decode termsOfService#2c12b185 to nil")
|
||||
}
|
||||
if err := b.ConsumeID(TermsOfServiceTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode termsOfService#2c12b185: %w", err)
|
||||
}
|
||||
return t.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (t *TermsOfService) DecodeBare(b *bin.Buffer) error {
|
||||
if t == nil {
|
||||
return fmt.Errorf("can't decode termsOfService#2c12b185 to nil")
|
||||
}
|
||||
{
|
||||
if err := t.Text.Decode(b); err != nil {
|
||||
return fmt.Errorf("unable to decode termsOfService#2c12b185: field text: %w", err)
|
||||
}
|
||||
}
|
||||
{
|
||||
value, err := b.Int32()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode termsOfService#2c12b185: field min_user_age: %w", err)
|
||||
}
|
||||
t.MinUserAge = value
|
||||
}
|
||||
{
|
||||
value, err := b.Bool()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode termsOfService#2c12b185: field show_popup: %w", err)
|
||||
}
|
||||
t.ShowPopup = value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
|
||||
func (t *TermsOfService) EncodeTDLibJSON(b tdjson.Encoder) error {
|
||||
if t == nil {
|
||||
return fmt.Errorf("can't encode termsOfService#2c12b185 as nil")
|
||||
}
|
||||
b.ObjStart()
|
||||
b.PutID("termsOfService")
|
||||
b.Comma()
|
||||
b.FieldStart("text")
|
||||
if err := t.Text.EncodeTDLibJSON(b); err != nil {
|
||||
return fmt.Errorf("unable to encode termsOfService#2c12b185: field text: %w", err)
|
||||
}
|
||||
b.Comma()
|
||||
b.FieldStart("min_user_age")
|
||||
b.PutInt32(t.MinUserAge)
|
||||
b.Comma()
|
||||
b.FieldStart("show_popup")
|
||||
b.PutBool(t.ShowPopup)
|
||||
b.Comma()
|
||||
b.StripComma()
|
||||
b.ObjEnd()
|
||||
return nil
|
||||
}
|
||||
|
||||
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
|
||||
func (t *TermsOfService) DecodeTDLibJSON(b tdjson.Decoder) error {
|
||||
if t == nil {
|
||||
return fmt.Errorf("can't decode termsOfService#2c12b185 to nil")
|
||||
}
|
||||
|
||||
return b.Obj(func(b tdjson.Decoder, key []byte) error {
|
||||
switch string(key) {
|
||||
case tdjson.TypeField:
|
||||
if err := b.ConsumeID("termsOfService"); err != nil {
|
||||
return fmt.Errorf("unable to decode termsOfService#2c12b185: %w", err)
|
||||
}
|
||||
case "text":
|
||||
if err := t.Text.DecodeTDLibJSON(b); err != nil {
|
||||
return fmt.Errorf("unable to decode termsOfService#2c12b185: field text: %w", err)
|
||||
}
|
||||
case "min_user_age":
|
||||
value, err := b.Int32()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode termsOfService#2c12b185: field min_user_age: %w", err)
|
||||
}
|
||||
t.MinUserAge = value
|
||||
case "show_popup":
|
||||
value, err := b.Bool()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode termsOfService#2c12b185: field show_popup: %w", err)
|
||||
}
|
||||
t.ShowPopup = value
|
||||
default:
|
||||
return b.Skip()
|
||||
}
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
// GetText returns value of Text field.
|
||||
func (t *TermsOfService) GetText() (value FormattedText) {
|
||||
if t == nil {
|
||||
return
|
||||
}
|
||||
return t.Text
|
||||
}
|
||||
|
||||
// GetMinUserAge returns value of MinUserAge field.
|
||||
func (t *TermsOfService) GetMinUserAge() (value int32) {
|
||||
if t == nil {
|
||||
return
|
||||
}
|
||||
return t.MinUserAge
|
||||
}
|
||||
|
||||
// GetShowPopup returns value of ShowPopup field.
|
||||
func (t *TermsOfService) GetShowPopup() (value bool) {
|
||||
if t == nil {
|
||||
return
|
||||
}
|
||||
return t.ShowPopup
|
||||
}
|
||||
Reference in New Issue
Block a user