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,267 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// ContactsResolvedPeer represents TL type `contacts.resolvedPeer#7f077ad9`.
|
||||
// Resolved peer
|
||||
//
|
||||
// See https://core.telegram.org/constructor/contacts.resolvedPeer for reference.
|
||||
type ContactsResolvedPeer struct {
|
||||
// The peer
|
||||
Peer PeerClass
|
||||
// Chats
|
||||
Chats []ChatClass
|
||||
// Users
|
||||
Users []UserClass
|
||||
}
|
||||
|
||||
// ContactsResolvedPeerTypeID is TL type id of ContactsResolvedPeer.
|
||||
const ContactsResolvedPeerTypeID = 0x7f077ad9
|
||||
|
||||
// Ensuring interfaces in compile-time for ContactsResolvedPeer.
|
||||
var (
|
||||
_ bin.Encoder = &ContactsResolvedPeer{}
|
||||
_ bin.Decoder = &ContactsResolvedPeer{}
|
||||
_ bin.BareEncoder = &ContactsResolvedPeer{}
|
||||
_ bin.BareDecoder = &ContactsResolvedPeer{}
|
||||
)
|
||||
|
||||
func (r *ContactsResolvedPeer) Zero() bool {
|
||||
if r == nil {
|
||||
return true
|
||||
}
|
||||
if !(r.Peer == nil) {
|
||||
return false
|
||||
}
|
||||
if !(r.Chats == nil) {
|
||||
return false
|
||||
}
|
||||
if !(r.Users == nil) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (r *ContactsResolvedPeer) String() string {
|
||||
if r == nil {
|
||||
return "ContactsResolvedPeer(nil)"
|
||||
}
|
||||
type Alias ContactsResolvedPeer
|
||||
return fmt.Sprintf("ContactsResolvedPeer%+v", Alias(*r))
|
||||
}
|
||||
|
||||
// FillFrom fills ContactsResolvedPeer from given interface.
|
||||
func (r *ContactsResolvedPeer) FillFrom(from interface {
|
||||
GetPeer() (value PeerClass)
|
||||
GetChats() (value []ChatClass)
|
||||
GetUsers() (value []UserClass)
|
||||
}) {
|
||||
r.Peer = from.GetPeer()
|
||||
r.Chats = from.GetChats()
|
||||
r.Users = from.GetUsers()
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*ContactsResolvedPeer) TypeID() uint32 {
|
||||
return ContactsResolvedPeerTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*ContactsResolvedPeer) TypeName() string {
|
||||
return "contacts.resolvedPeer"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (r *ContactsResolvedPeer) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "contacts.resolvedPeer",
|
||||
ID: ContactsResolvedPeerTypeID,
|
||||
}
|
||||
if r == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Peer",
|
||||
SchemaName: "peer",
|
||||
},
|
||||
{
|
||||
Name: "Chats",
|
||||
SchemaName: "chats",
|
||||
},
|
||||
{
|
||||
Name: "Users",
|
||||
SchemaName: "users",
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (r *ContactsResolvedPeer) Encode(b *bin.Buffer) error {
|
||||
if r == nil {
|
||||
return fmt.Errorf("can't encode contacts.resolvedPeer#7f077ad9 as nil")
|
||||
}
|
||||
b.PutID(ContactsResolvedPeerTypeID)
|
||||
return r.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (r *ContactsResolvedPeer) EncodeBare(b *bin.Buffer) error {
|
||||
if r == nil {
|
||||
return fmt.Errorf("can't encode contacts.resolvedPeer#7f077ad9 as nil")
|
||||
}
|
||||
if r.Peer == nil {
|
||||
return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field peer is nil")
|
||||
}
|
||||
if err := r.Peer.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field peer: %w", err)
|
||||
}
|
||||
b.PutVectorHeader(len(r.Chats))
|
||||
for idx, v := range r.Chats {
|
||||
if v == nil {
|
||||
return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field chats element with index %d is nil", idx)
|
||||
}
|
||||
if err := v.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field chats element with index %d: %w", idx, err)
|
||||
}
|
||||
}
|
||||
b.PutVectorHeader(len(r.Users))
|
||||
for idx, v := range r.Users {
|
||||
if v == nil {
|
||||
return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field users element with index %d is nil", idx)
|
||||
}
|
||||
if err := v.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field users element with index %d: %w", idx, err)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (r *ContactsResolvedPeer) Decode(b *bin.Buffer) error {
|
||||
if r == nil {
|
||||
return fmt.Errorf("can't decode contacts.resolvedPeer#7f077ad9 to nil")
|
||||
}
|
||||
if err := b.ConsumeID(ContactsResolvedPeerTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: %w", err)
|
||||
}
|
||||
return r.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (r *ContactsResolvedPeer) DecodeBare(b *bin.Buffer) error {
|
||||
if r == nil {
|
||||
return fmt.Errorf("can't decode contacts.resolvedPeer#7f077ad9 to nil")
|
||||
}
|
||||
{
|
||||
value, err := DecodePeer(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field peer: %w", err)
|
||||
}
|
||||
r.Peer = value
|
||||
}
|
||||
{
|
||||
headerLen, err := b.VectorHeader()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field chats: %w", err)
|
||||
}
|
||||
|
||||
if headerLen > 0 {
|
||||
r.Chats = make([]ChatClass, 0, headerLen%bin.PreallocateLimit)
|
||||
}
|
||||
for idx := 0; idx < headerLen; idx++ {
|
||||
value, err := DecodeChat(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field chats: %w", err)
|
||||
}
|
||||
r.Chats = append(r.Chats, value)
|
||||
}
|
||||
}
|
||||
{
|
||||
headerLen, err := b.VectorHeader()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field users: %w", err)
|
||||
}
|
||||
|
||||
if headerLen > 0 {
|
||||
r.Users = make([]UserClass, 0, headerLen%bin.PreallocateLimit)
|
||||
}
|
||||
for idx := 0; idx < headerLen; idx++ {
|
||||
value, err := DecodeUser(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field users: %w", err)
|
||||
}
|
||||
r.Users = append(r.Users, value)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// GetPeer returns value of Peer field.
|
||||
func (r *ContactsResolvedPeer) GetPeer() (value PeerClass) {
|
||||
if r == nil {
|
||||
return
|
||||
}
|
||||
return r.Peer
|
||||
}
|
||||
|
||||
// GetChats returns value of Chats field.
|
||||
func (r *ContactsResolvedPeer) GetChats() (value []ChatClass) {
|
||||
if r == nil {
|
||||
return
|
||||
}
|
||||
return r.Chats
|
||||
}
|
||||
|
||||
// GetUsers returns value of Users field.
|
||||
func (r *ContactsResolvedPeer) GetUsers() (value []UserClass) {
|
||||
if r == nil {
|
||||
return
|
||||
}
|
||||
return r.Users
|
||||
}
|
||||
|
||||
// MapChats returns field Chats wrapped in ChatClassArray helper.
|
||||
func (r *ContactsResolvedPeer) MapChats() (value ChatClassArray) {
|
||||
return ChatClassArray(r.Chats)
|
||||
}
|
||||
|
||||
// MapUsers returns field Users wrapped in UserClassArray helper.
|
||||
func (r *ContactsResolvedPeer) MapUsers() (value UserClassArray) {
|
||||
return UserClassArray(r.Users)
|
||||
}
|
||||
Reference in New Issue
Block a user