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,494 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// GeoPointEmpty represents TL type `geoPointEmpty#1117dd5f`.
|
||||
// Empty constructor.
|
||||
//
|
||||
// See https://core.telegram.org/constructor/geoPointEmpty for reference.
|
||||
type GeoPointEmpty struct {
|
||||
}
|
||||
|
||||
// GeoPointEmptyTypeID is TL type id of GeoPointEmpty.
|
||||
const GeoPointEmptyTypeID = 0x1117dd5f
|
||||
|
||||
// construct implements constructor of GeoPointClass.
|
||||
func (g GeoPointEmpty) construct() GeoPointClass { return &g }
|
||||
|
||||
// Ensuring interfaces in compile-time for GeoPointEmpty.
|
||||
var (
|
||||
_ bin.Encoder = &GeoPointEmpty{}
|
||||
_ bin.Decoder = &GeoPointEmpty{}
|
||||
_ bin.BareEncoder = &GeoPointEmpty{}
|
||||
_ bin.BareDecoder = &GeoPointEmpty{}
|
||||
|
||||
_ GeoPointClass = &GeoPointEmpty{}
|
||||
)
|
||||
|
||||
func (g *GeoPointEmpty) Zero() bool {
|
||||
if g == nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (g *GeoPointEmpty) String() string {
|
||||
if g == nil {
|
||||
return "GeoPointEmpty(nil)"
|
||||
}
|
||||
type Alias GeoPointEmpty
|
||||
return fmt.Sprintf("GeoPointEmpty%+v", Alias(*g))
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*GeoPointEmpty) TypeID() uint32 {
|
||||
return GeoPointEmptyTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*GeoPointEmpty) TypeName() string {
|
||||
return "geoPointEmpty"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (g *GeoPointEmpty) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "geoPointEmpty",
|
||||
ID: GeoPointEmptyTypeID,
|
||||
}
|
||||
if g == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (g *GeoPointEmpty) Encode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode geoPointEmpty#1117dd5f as nil")
|
||||
}
|
||||
b.PutID(GeoPointEmptyTypeID)
|
||||
return g.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (g *GeoPointEmpty) EncodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode geoPointEmpty#1117dd5f as nil")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (g *GeoPointEmpty) Decode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode geoPointEmpty#1117dd5f to nil")
|
||||
}
|
||||
if err := b.ConsumeID(GeoPointEmptyTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode geoPointEmpty#1117dd5f: %w", err)
|
||||
}
|
||||
return g.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (g *GeoPointEmpty) DecodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode geoPointEmpty#1117dd5f to nil")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// GeoPoint represents TL type `geoPoint#b2a2f663`.
|
||||
// GeoPoint.
|
||||
//
|
||||
// See https://core.telegram.org/constructor/geoPoint for reference.
|
||||
type GeoPoint struct {
|
||||
// Flags, see TL conditional fields¹
|
||||
//
|
||||
// Links:
|
||||
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
|
||||
Flags bin.Fields
|
||||
// Longitude
|
||||
Long float64
|
||||
// Latitude
|
||||
Lat float64
|
||||
// Access hash
|
||||
AccessHash int64
|
||||
// The estimated horizontal accuracy of the location, in meters; as defined by the sender.
|
||||
//
|
||||
// Use SetAccuracyRadius and GetAccuracyRadius helpers.
|
||||
AccuracyRadius int
|
||||
}
|
||||
|
||||
// GeoPointTypeID is TL type id of GeoPoint.
|
||||
const GeoPointTypeID = 0xb2a2f663
|
||||
|
||||
// construct implements constructor of GeoPointClass.
|
||||
func (g GeoPoint) construct() GeoPointClass { return &g }
|
||||
|
||||
// Ensuring interfaces in compile-time for GeoPoint.
|
||||
var (
|
||||
_ bin.Encoder = &GeoPoint{}
|
||||
_ bin.Decoder = &GeoPoint{}
|
||||
_ bin.BareEncoder = &GeoPoint{}
|
||||
_ bin.BareDecoder = &GeoPoint{}
|
||||
|
||||
_ GeoPointClass = &GeoPoint{}
|
||||
)
|
||||
|
||||
func (g *GeoPoint) Zero() bool {
|
||||
if g == nil {
|
||||
return true
|
||||
}
|
||||
if !(g.Flags.Zero()) {
|
||||
return false
|
||||
}
|
||||
if !(g.Long == 0) {
|
||||
return false
|
||||
}
|
||||
if !(g.Lat == 0) {
|
||||
return false
|
||||
}
|
||||
if !(g.AccessHash == 0) {
|
||||
return false
|
||||
}
|
||||
if !(g.AccuracyRadius == 0) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (g *GeoPoint) String() string {
|
||||
if g == nil {
|
||||
return "GeoPoint(nil)"
|
||||
}
|
||||
type Alias GeoPoint
|
||||
return fmt.Sprintf("GeoPoint%+v", Alias(*g))
|
||||
}
|
||||
|
||||
// FillFrom fills GeoPoint from given interface.
|
||||
func (g *GeoPoint) FillFrom(from interface {
|
||||
GetLong() (value float64)
|
||||
GetLat() (value float64)
|
||||
GetAccessHash() (value int64)
|
||||
GetAccuracyRadius() (value int, ok bool)
|
||||
}) {
|
||||
g.Long = from.GetLong()
|
||||
g.Lat = from.GetLat()
|
||||
g.AccessHash = from.GetAccessHash()
|
||||
if val, ok := from.GetAccuracyRadius(); ok {
|
||||
g.AccuracyRadius = val
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*GeoPoint) TypeID() uint32 {
|
||||
return GeoPointTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*GeoPoint) TypeName() string {
|
||||
return "geoPoint"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (g *GeoPoint) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "geoPoint",
|
||||
ID: GeoPointTypeID,
|
||||
}
|
||||
if g == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Long",
|
||||
SchemaName: "long",
|
||||
},
|
||||
{
|
||||
Name: "Lat",
|
||||
SchemaName: "lat",
|
||||
},
|
||||
{
|
||||
Name: "AccessHash",
|
||||
SchemaName: "access_hash",
|
||||
},
|
||||
{
|
||||
Name: "AccuracyRadius",
|
||||
SchemaName: "accuracy_radius",
|
||||
Null: !g.Flags.Has(0),
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// SetFlags sets flags for non-zero fields.
|
||||
func (g *GeoPoint) SetFlags() {
|
||||
if !(g.AccuracyRadius == 0) {
|
||||
g.Flags.Set(0)
|
||||
}
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (g *GeoPoint) Encode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode geoPoint#b2a2f663 as nil")
|
||||
}
|
||||
b.PutID(GeoPointTypeID)
|
||||
return g.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (g *GeoPoint) EncodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode geoPoint#b2a2f663 as nil")
|
||||
}
|
||||
g.SetFlags()
|
||||
if err := g.Flags.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode geoPoint#b2a2f663: field flags: %w", err)
|
||||
}
|
||||
b.PutDouble(g.Long)
|
||||
b.PutDouble(g.Lat)
|
||||
b.PutLong(g.AccessHash)
|
||||
if g.Flags.Has(0) {
|
||||
b.PutInt(g.AccuracyRadius)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (g *GeoPoint) Decode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode geoPoint#b2a2f663 to nil")
|
||||
}
|
||||
if err := b.ConsumeID(GeoPointTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode geoPoint#b2a2f663: %w", err)
|
||||
}
|
||||
return g.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (g *GeoPoint) DecodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode geoPoint#b2a2f663 to nil")
|
||||
}
|
||||
{
|
||||
if err := g.Flags.Decode(b); err != nil {
|
||||
return fmt.Errorf("unable to decode geoPoint#b2a2f663: field flags: %w", err)
|
||||
}
|
||||
}
|
||||
{
|
||||
value, err := b.Double()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode geoPoint#b2a2f663: field long: %w", err)
|
||||
}
|
||||
g.Long = value
|
||||
}
|
||||
{
|
||||
value, err := b.Double()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode geoPoint#b2a2f663: field lat: %w", err)
|
||||
}
|
||||
g.Lat = value
|
||||
}
|
||||
{
|
||||
value, err := b.Long()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode geoPoint#b2a2f663: field access_hash: %w", err)
|
||||
}
|
||||
g.AccessHash = value
|
||||
}
|
||||
if g.Flags.Has(0) {
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode geoPoint#b2a2f663: field accuracy_radius: %w", err)
|
||||
}
|
||||
g.AccuracyRadius = value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// GetLong returns value of Long field.
|
||||
func (g *GeoPoint) GetLong() (value float64) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.Long
|
||||
}
|
||||
|
||||
// GetLat returns value of Lat field.
|
||||
func (g *GeoPoint) GetLat() (value float64) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.Lat
|
||||
}
|
||||
|
||||
// GetAccessHash returns value of AccessHash field.
|
||||
func (g *GeoPoint) GetAccessHash() (value int64) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.AccessHash
|
||||
}
|
||||
|
||||
// SetAccuracyRadius sets value of AccuracyRadius conditional field.
|
||||
func (g *GeoPoint) SetAccuracyRadius(value int) {
|
||||
g.Flags.Set(0)
|
||||
g.AccuracyRadius = value
|
||||
}
|
||||
|
||||
// GetAccuracyRadius returns value of AccuracyRadius conditional field and
|
||||
// boolean which is true if field was set.
|
||||
func (g *GeoPoint) GetAccuracyRadius() (value int, ok bool) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
if !g.Flags.Has(0) {
|
||||
return value, false
|
||||
}
|
||||
return g.AccuracyRadius, true
|
||||
}
|
||||
|
||||
// GeoPointClassName is schema name of GeoPointClass.
|
||||
const GeoPointClassName = "GeoPoint"
|
||||
|
||||
// GeoPointClass represents GeoPoint generic type.
|
||||
//
|
||||
// See https://core.telegram.org/type/GeoPoint for reference.
|
||||
//
|
||||
// Example:
|
||||
//
|
||||
// g, err := tg.DecodeGeoPoint(buf)
|
||||
// if err != nil {
|
||||
// panic(err)
|
||||
// }
|
||||
// switch v := g.(type) {
|
||||
// case *tg.GeoPointEmpty: // geoPointEmpty#1117dd5f
|
||||
// case *tg.GeoPoint: // geoPoint#b2a2f663
|
||||
// default: panic(v)
|
||||
// }
|
||||
type GeoPointClass interface {
|
||||
bin.Encoder
|
||||
bin.Decoder
|
||||
bin.BareEncoder
|
||||
bin.BareDecoder
|
||||
construct() GeoPointClass
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
TypeID() uint32
|
||||
// TypeName returns name of type in TL schema.
|
||||
TypeName() string
|
||||
// String implements fmt.Stringer.
|
||||
String() string
|
||||
// Zero returns true if current object has a zero value.
|
||||
Zero() bool
|
||||
|
||||
// AsNotEmpty tries to map GeoPointClass to GeoPoint.
|
||||
AsNotEmpty() (*GeoPoint, bool)
|
||||
}
|
||||
|
||||
// AsNotEmpty tries to map GeoPointEmpty to GeoPoint.
|
||||
func (g *GeoPointEmpty) AsNotEmpty() (*GeoPoint, bool) {
|
||||
return nil, false
|
||||
}
|
||||
|
||||
// AsNotEmpty tries to map GeoPoint to GeoPoint.
|
||||
func (g *GeoPoint) AsNotEmpty() (*GeoPoint, bool) {
|
||||
return g, true
|
||||
}
|
||||
|
||||
// DecodeGeoPoint implements binary de-serialization for GeoPointClass.
|
||||
func DecodeGeoPoint(buf *bin.Buffer) (GeoPointClass, error) {
|
||||
id, err := buf.PeekID()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
switch id {
|
||||
case GeoPointEmptyTypeID:
|
||||
// Decoding geoPointEmpty#1117dd5f.
|
||||
v := GeoPointEmpty{}
|
||||
if err := v.Decode(buf); err != nil {
|
||||
return nil, fmt.Errorf("unable to decode GeoPointClass: %w", err)
|
||||
}
|
||||
return &v, nil
|
||||
case GeoPointTypeID:
|
||||
// Decoding geoPoint#b2a2f663.
|
||||
v := GeoPoint{}
|
||||
if err := v.Decode(buf); err != nil {
|
||||
return nil, fmt.Errorf("unable to decode GeoPointClass: %w", err)
|
||||
}
|
||||
return &v, nil
|
||||
default:
|
||||
return nil, fmt.Errorf("unable to decode GeoPointClass: %w", bin.NewUnexpectedID(id))
|
||||
}
|
||||
}
|
||||
|
||||
// GeoPoint boxes the GeoPointClass providing a helper.
|
||||
type GeoPointBox struct {
|
||||
GeoPoint GeoPointClass
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder for GeoPointBox.
|
||||
func (b *GeoPointBox) Decode(buf *bin.Buffer) error {
|
||||
if b == nil {
|
||||
return fmt.Errorf("unable to decode GeoPointBox to nil")
|
||||
}
|
||||
v, err := DecodeGeoPoint(buf)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode boxed value: %w", err)
|
||||
}
|
||||
b.GeoPoint = v
|
||||
return nil
|
||||
}
|
||||
|
||||
// Encode implements bin.Encode for GeoPointBox.
|
||||
func (b *GeoPointBox) Encode(buf *bin.Buffer) error {
|
||||
if b == nil || b.GeoPoint == nil {
|
||||
return fmt.Errorf("unable to encode GeoPointClass as nil")
|
||||
}
|
||||
return b.GeoPoint.Encode(buf)
|
||||
}
|
||||
Reference in New Issue
Block a user