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,496 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// Page represents TL type `page#98657f0d`.
|
||||
// Instant view¹ page
|
||||
//
|
||||
// Links:
|
||||
// 1. https://instantview.telegram.org
|
||||
//
|
||||
// See https://core.telegram.org/constructor/page for reference.
|
||||
type Page struct {
|
||||
// Flags, see TL conditional fields¹
|
||||
//
|
||||
// Links:
|
||||
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
|
||||
Flags bin.Fields
|
||||
// Indicates that not full page preview is available to the client and it will need to
|
||||
// fetch full Instant View from the server using messages.getWebPagePreview¹.
|
||||
//
|
||||
// Links:
|
||||
// 1) https://core.telegram.org/method/messages.getWebPagePreview
|
||||
Part bool
|
||||
// Whether the page contains RTL text
|
||||
Rtl bool
|
||||
// Whether this is an IV v2¹ page
|
||||
//
|
||||
// Links:
|
||||
// 1) https://instantview.telegram.org/docs#what-39s-new-in-2-0
|
||||
V2 bool
|
||||
// Original page HTTP URL
|
||||
URL string
|
||||
// Page elements (like with HTML elements, only as TL constructors)
|
||||
Blocks []PageBlockClass
|
||||
// Photos in page
|
||||
Photos []PhotoClass
|
||||
// Media in page
|
||||
Documents []DocumentClass
|
||||
// View count
|
||||
//
|
||||
// Use SetViews and GetViews helpers.
|
||||
Views int
|
||||
}
|
||||
|
||||
// PageTypeID is TL type id of Page.
|
||||
const PageTypeID = 0x98657f0d
|
||||
|
||||
// Ensuring interfaces in compile-time for Page.
|
||||
var (
|
||||
_ bin.Encoder = &Page{}
|
||||
_ bin.Decoder = &Page{}
|
||||
_ bin.BareEncoder = &Page{}
|
||||
_ bin.BareDecoder = &Page{}
|
||||
)
|
||||
|
||||
func (p *Page) Zero() bool {
|
||||
if p == nil {
|
||||
return true
|
||||
}
|
||||
if !(p.Flags.Zero()) {
|
||||
return false
|
||||
}
|
||||
if !(p.Part == false) {
|
||||
return false
|
||||
}
|
||||
if !(p.Rtl == false) {
|
||||
return false
|
||||
}
|
||||
if !(p.V2 == false) {
|
||||
return false
|
||||
}
|
||||
if !(p.URL == "") {
|
||||
return false
|
||||
}
|
||||
if !(p.Blocks == nil) {
|
||||
return false
|
||||
}
|
||||
if !(p.Photos == nil) {
|
||||
return false
|
||||
}
|
||||
if !(p.Documents == nil) {
|
||||
return false
|
||||
}
|
||||
if !(p.Views == 0) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (p *Page) String() string {
|
||||
if p == nil {
|
||||
return "Page(nil)"
|
||||
}
|
||||
type Alias Page
|
||||
return fmt.Sprintf("Page%+v", Alias(*p))
|
||||
}
|
||||
|
||||
// FillFrom fills Page from given interface.
|
||||
func (p *Page) FillFrom(from interface {
|
||||
GetPart() (value bool)
|
||||
GetRtl() (value bool)
|
||||
GetV2() (value bool)
|
||||
GetURL() (value string)
|
||||
GetBlocks() (value []PageBlockClass)
|
||||
GetPhotos() (value []PhotoClass)
|
||||
GetDocuments() (value []DocumentClass)
|
||||
GetViews() (value int, ok bool)
|
||||
}) {
|
||||
p.Part = from.GetPart()
|
||||
p.Rtl = from.GetRtl()
|
||||
p.V2 = from.GetV2()
|
||||
p.URL = from.GetURL()
|
||||
p.Blocks = from.GetBlocks()
|
||||
p.Photos = from.GetPhotos()
|
||||
p.Documents = from.GetDocuments()
|
||||
if val, ok := from.GetViews(); ok {
|
||||
p.Views = val
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*Page) TypeID() uint32 {
|
||||
return PageTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*Page) TypeName() string {
|
||||
return "page"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (p *Page) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "page",
|
||||
ID: PageTypeID,
|
||||
}
|
||||
if p == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Part",
|
||||
SchemaName: "part",
|
||||
Null: !p.Flags.Has(0),
|
||||
},
|
||||
{
|
||||
Name: "Rtl",
|
||||
SchemaName: "rtl",
|
||||
Null: !p.Flags.Has(1),
|
||||
},
|
||||
{
|
||||
Name: "V2",
|
||||
SchemaName: "v2",
|
||||
Null: !p.Flags.Has(2),
|
||||
},
|
||||
{
|
||||
Name: "URL",
|
||||
SchemaName: "url",
|
||||
},
|
||||
{
|
||||
Name: "Blocks",
|
||||
SchemaName: "blocks",
|
||||
},
|
||||
{
|
||||
Name: "Photos",
|
||||
SchemaName: "photos",
|
||||
},
|
||||
{
|
||||
Name: "Documents",
|
||||
SchemaName: "documents",
|
||||
},
|
||||
{
|
||||
Name: "Views",
|
||||
SchemaName: "views",
|
||||
Null: !p.Flags.Has(3),
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// SetFlags sets flags for non-zero fields.
|
||||
func (p *Page) SetFlags() {
|
||||
if !(p.Part == false) {
|
||||
p.Flags.Set(0)
|
||||
}
|
||||
if !(p.Rtl == false) {
|
||||
p.Flags.Set(1)
|
||||
}
|
||||
if !(p.V2 == false) {
|
||||
p.Flags.Set(2)
|
||||
}
|
||||
if !(p.Views == 0) {
|
||||
p.Flags.Set(3)
|
||||
}
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (p *Page) Encode(b *bin.Buffer) error {
|
||||
if p == nil {
|
||||
return fmt.Errorf("can't encode page#98657f0d as nil")
|
||||
}
|
||||
b.PutID(PageTypeID)
|
||||
return p.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (p *Page) EncodeBare(b *bin.Buffer) error {
|
||||
if p == nil {
|
||||
return fmt.Errorf("can't encode page#98657f0d as nil")
|
||||
}
|
||||
p.SetFlags()
|
||||
if err := p.Flags.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode page#98657f0d: field flags: %w", err)
|
||||
}
|
||||
b.PutString(p.URL)
|
||||
b.PutVectorHeader(len(p.Blocks))
|
||||
for idx, v := range p.Blocks {
|
||||
if v == nil {
|
||||
return fmt.Errorf("unable to encode page#98657f0d: field blocks element with index %d is nil", idx)
|
||||
}
|
||||
if err := v.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode page#98657f0d: field blocks element with index %d: %w", idx, err)
|
||||
}
|
||||
}
|
||||
b.PutVectorHeader(len(p.Photos))
|
||||
for idx, v := range p.Photos {
|
||||
if v == nil {
|
||||
return fmt.Errorf("unable to encode page#98657f0d: field photos element with index %d is nil", idx)
|
||||
}
|
||||
if err := v.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode page#98657f0d: field photos element with index %d: %w", idx, err)
|
||||
}
|
||||
}
|
||||
b.PutVectorHeader(len(p.Documents))
|
||||
for idx, v := range p.Documents {
|
||||
if v == nil {
|
||||
return fmt.Errorf("unable to encode page#98657f0d: field documents element with index %d is nil", idx)
|
||||
}
|
||||
if err := v.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode page#98657f0d: field documents element with index %d: %w", idx, err)
|
||||
}
|
||||
}
|
||||
if p.Flags.Has(3) {
|
||||
b.PutInt(p.Views)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (p *Page) Decode(b *bin.Buffer) error {
|
||||
if p == nil {
|
||||
return fmt.Errorf("can't decode page#98657f0d to nil")
|
||||
}
|
||||
if err := b.ConsumeID(PageTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: %w", err)
|
||||
}
|
||||
return p.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (p *Page) DecodeBare(b *bin.Buffer) error {
|
||||
if p == nil {
|
||||
return fmt.Errorf("can't decode page#98657f0d to nil")
|
||||
}
|
||||
{
|
||||
if err := p.Flags.Decode(b); err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: field flags: %w", err)
|
||||
}
|
||||
}
|
||||
p.Part = p.Flags.Has(0)
|
||||
p.Rtl = p.Flags.Has(1)
|
||||
p.V2 = p.Flags.Has(2)
|
||||
{
|
||||
value, err := b.String()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: field url: %w", err)
|
||||
}
|
||||
p.URL = value
|
||||
}
|
||||
{
|
||||
headerLen, err := b.VectorHeader()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: field blocks: %w", err)
|
||||
}
|
||||
|
||||
if headerLen > 0 {
|
||||
p.Blocks = make([]PageBlockClass, 0, headerLen%bin.PreallocateLimit)
|
||||
}
|
||||
for idx := 0; idx < headerLen; idx++ {
|
||||
value, err := DecodePageBlock(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: field blocks: %w", err)
|
||||
}
|
||||
p.Blocks = append(p.Blocks, value)
|
||||
}
|
||||
}
|
||||
{
|
||||
headerLen, err := b.VectorHeader()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: field photos: %w", err)
|
||||
}
|
||||
|
||||
if headerLen > 0 {
|
||||
p.Photos = make([]PhotoClass, 0, headerLen%bin.PreallocateLimit)
|
||||
}
|
||||
for idx := 0; idx < headerLen; idx++ {
|
||||
value, err := DecodePhoto(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: field photos: %w", err)
|
||||
}
|
||||
p.Photos = append(p.Photos, value)
|
||||
}
|
||||
}
|
||||
{
|
||||
headerLen, err := b.VectorHeader()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: field documents: %w", err)
|
||||
}
|
||||
|
||||
if headerLen > 0 {
|
||||
p.Documents = make([]DocumentClass, 0, headerLen%bin.PreallocateLimit)
|
||||
}
|
||||
for idx := 0; idx < headerLen; idx++ {
|
||||
value, err := DecodeDocument(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: field documents: %w", err)
|
||||
}
|
||||
p.Documents = append(p.Documents, value)
|
||||
}
|
||||
}
|
||||
if p.Flags.Has(3) {
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode page#98657f0d: field views: %w", err)
|
||||
}
|
||||
p.Views = value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// SetPart sets value of Part conditional field.
|
||||
func (p *Page) SetPart(value bool) {
|
||||
if value {
|
||||
p.Flags.Set(0)
|
||||
p.Part = true
|
||||
} else {
|
||||
p.Flags.Unset(0)
|
||||
p.Part = false
|
||||
}
|
||||
}
|
||||
|
||||
// GetPart returns value of Part conditional field.
|
||||
func (p *Page) GetPart() (value bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Flags.Has(0)
|
||||
}
|
||||
|
||||
// SetRtl sets value of Rtl conditional field.
|
||||
func (p *Page) SetRtl(value bool) {
|
||||
if value {
|
||||
p.Flags.Set(1)
|
||||
p.Rtl = true
|
||||
} else {
|
||||
p.Flags.Unset(1)
|
||||
p.Rtl = false
|
||||
}
|
||||
}
|
||||
|
||||
// GetRtl returns value of Rtl conditional field.
|
||||
func (p *Page) GetRtl() (value bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Flags.Has(1)
|
||||
}
|
||||
|
||||
// SetV2 sets value of V2 conditional field.
|
||||
func (p *Page) SetV2(value bool) {
|
||||
if value {
|
||||
p.Flags.Set(2)
|
||||
p.V2 = true
|
||||
} else {
|
||||
p.Flags.Unset(2)
|
||||
p.V2 = false
|
||||
}
|
||||
}
|
||||
|
||||
// GetV2 returns value of V2 conditional field.
|
||||
func (p *Page) GetV2() (value bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Flags.Has(2)
|
||||
}
|
||||
|
||||
// GetURL returns value of URL field.
|
||||
func (p *Page) GetURL() (value string) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.URL
|
||||
}
|
||||
|
||||
// GetBlocks returns value of Blocks field.
|
||||
func (p *Page) GetBlocks() (value []PageBlockClass) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Blocks
|
||||
}
|
||||
|
||||
// GetPhotos returns value of Photos field.
|
||||
func (p *Page) GetPhotos() (value []PhotoClass) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Photos
|
||||
}
|
||||
|
||||
// GetDocuments returns value of Documents field.
|
||||
func (p *Page) GetDocuments() (value []DocumentClass) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Documents
|
||||
}
|
||||
|
||||
// SetViews sets value of Views conditional field.
|
||||
func (p *Page) SetViews(value int) {
|
||||
p.Flags.Set(3)
|
||||
p.Views = value
|
||||
}
|
||||
|
||||
// GetViews returns value of Views conditional field and
|
||||
// boolean which is true if field was set.
|
||||
func (p *Page) GetViews() (value int, ok bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
if !p.Flags.Has(3) {
|
||||
return value, false
|
||||
}
|
||||
return p.Views, true
|
||||
}
|
||||
|
||||
// MapBlocks returns field Blocks wrapped in PageBlockClassArray helper.
|
||||
func (p *Page) MapBlocks() (value PageBlockClassArray) {
|
||||
return PageBlockClassArray(p.Blocks)
|
||||
}
|
||||
|
||||
// MapPhotos returns field Photos wrapped in PhotoClassArray helper.
|
||||
func (p *Page) MapPhotos() (value PhotoClassArray) {
|
||||
return PhotoClassArray(p.Photos)
|
||||
}
|
||||
|
||||
// MapDocuments returns field Documents wrapped in DocumentClassArray helper.
|
||||
func (p *Page) MapDocuments() (value DocumentClassArray) {
|
||||
return DocumentClassArray(p.Documents)
|
||||
}
|
||||
Reference in New Issue
Block a user