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,480 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// PageTableCell represents TL type `pageTableCell#34566b6a`.
|
||||
// Table cell
|
||||
//
|
||||
// See https://core.telegram.org/constructor/pageTableCell for reference.
|
||||
type PageTableCell struct {
|
||||
// Flags, see TL conditional fields¹
|
||||
//
|
||||
// Links:
|
||||
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
|
||||
Flags bin.Fields
|
||||
// Is this element part of the column header
|
||||
Header bool
|
||||
// Horizontally centered block
|
||||
AlignCenter bool
|
||||
// Right-aligned block
|
||||
AlignRight bool
|
||||
// Vertically centered block
|
||||
ValignMiddle bool
|
||||
// Block vertically-aligned to the bottom
|
||||
ValignBottom bool
|
||||
// Content
|
||||
//
|
||||
// Use SetText and GetText helpers.
|
||||
Text RichTextClass
|
||||
// For how many columns should this cell extend
|
||||
//
|
||||
// Use SetColspan and GetColspan helpers.
|
||||
Colspan int
|
||||
// For how many rows should this cell extend
|
||||
//
|
||||
// Use SetRowspan and GetRowspan helpers.
|
||||
Rowspan int
|
||||
}
|
||||
|
||||
// PageTableCellTypeID is TL type id of PageTableCell.
|
||||
const PageTableCellTypeID = 0x34566b6a
|
||||
|
||||
// Ensuring interfaces in compile-time for PageTableCell.
|
||||
var (
|
||||
_ bin.Encoder = &PageTableCell{}
|
||||
_ bin.Decoder = &PageTableCell{}
|
||||
_ bin.BareEncoder = &PageTableCell{}
|
||||
_ bin.BareDecoder = &PageTableCell{}
|
||||
)
|
||||
|
||||
func (p *PageTableCell) Zero() bool {
|
||||
if p == nil {
|
||||
return true
|
||||
}
|
||||
if !(p.Flags.Zero()) {
|
||||
return false
|
||||
}
|
||||
if !(p.Header == false) {
|
||||
return false
|
||||
}
|
||||
if !(p.AlignCenter == false) {
|
||||
return false
|
||||
}
|
||||
if !(p.AlignRight == false) {
|
||||
return false
|
||||
}
|
||||
if !(p.ValignMiddle == false) {
|
||||
return false
|
||||
}
|
||||
if !(p.ValignBottom == false) {
|
||||
return false
|
||||
}
|
||||
if !(p.Text == nil) {
|
||||
return false
|
||||
}
|
||||
if !(p.Colspan == 0) {
|
||||
return false
|
||||
}
|
||||
if !(p.Rowspan == 0) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (p *PageTableCell) String() string {
|
||||
if p == nil {
|
||||
return "PageTableCell(nil)"
|
||||
}
|
||||
type Alias PageTableCell
|
||||
return fmt.Sprintf("PageTableCell%+v", Alias(*p))
|
||||
}
|
||||
|
||||
// FillFrom fills PageTableCell from given interface.
|
||||
func (p *PageTableCell) FillFrom(from interface {
|
||||
GetHeader() (value bool)
|
||||
GetAlignCenter() (value bool)
|
||||
GetAlignRight() (value bool)
|
||||
GetValignMiddle() (value bool)
|
||||
GetValignBottom() (value bool)
|
||||
GetText() (value RichTextClass, ok bool)
|
||||
GetColspan() (value int, ok bool)
|
||||
GetRowspan() (value int, ok bool)
|
||||
}) {
|
||||
p.Header = from.GetHeader()
|
||||
p.AlignCenter = from.GetAlignCenter()
|
||||
p.AlignRight = from.GetAlignRight()
|
||||
p.ValignMiddle = from.GetValignMiddle()
|
||||
p.ValignBottom = from.GetValignBottom()
|
||||
if val, ok := from.GetText(); ok {
|
||||
p.Text = val
|
||||
}
|
||||
|
||||
if val, ok := from.GetColspan(); ok {
|
||||
p.Colspan = val
|
||||
}
|
||||
|
||||
if val, ok := from.GetRowspan(); ok {
|
||||
p.Rowspan = val
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*PageTableCell) TypeID() uint32 {
|
||||
return PageTableCellTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*PageTableCell) TypeName() string {
|
||||
return "pageTableCell"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (p *PageTableCell) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "pageTableCell",
|
||||
ID: PageTableCellTypeID,
|
||||
}
|
||||
if p == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Header",
|
||||
SchemaName: "header",
|
||||
Null: !p.Flags.Has(0),
|
||||
},
|
||||
{
|
||||
Name: "AlignCenter",
|
||||
SchemaName: "align_center",
|
||||
Null: !p.Flags.Has(3),
|
||||
},
|
||||
{
|
||||
Name: "AlignRight",
|
||||
SchemaName: "align_right",
|
||||
Null: !p.Flags.Has(4),
|
||||
},
|
||||
{
|
||||
Name: "ValignMiddle",
|
||||
SchemaName: "valign_middle",
|
||||
Null: !p.Flags.Has(5),
|
||||
},
|
||||
{
|
||||
Name: "ValignBottom",
|
||||
SchemaName: "valign_bottom",
|
||||
Null: !p.Flags.Has(6),
|
||||
},
|
||||
{
|
||||
Name: "Text",
|
||||
SchemaName: "text",
|
||||
Null: !p.Flags.Has(7),
|
||||
},
|
||||
{
|
||||
Name: "Colspan",
|
||||
SchemaName: "colspan",
|
||||
Null: !p.Flags.Has(1),
|
||||
},
|
||||
{
|
||||
Name: "Rowspan",
|
||||
SchemaName: "rowspan",
|
||||
Null: !p.Flags.Has(2),
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// SetFlags sets flags for non-zero fields.
|
||||
func (p *PageTableCell) SetFlags() {
|
||||
if !(p.Header == false) {
|
||||
p.Flags.Set(0)
|
||||
}
|
||||
if !(p.AlignCenter == false) {
|
||||
p.Flags.Set(3)
|
||||
}
|
||||
if !(p.AlignRight == false) {
|
||||
p.Flags.Set(4)
|
||||
}
|
||||
if !(p.ValignMiddle == false) {
|
||||
p.Flags.Set(5)
|
||||
}
|
||||
if !(p.ValignBottom == false) {
|
||||
p.Flags.Set(6)
|
||||
}
|
||||
if !(p.Text == nil) {
|
||||
p.Flags.Set(7)
|
||||
}
|
||||
if !(p.Colspan == 0) {
|
||||
p.Flags.Set(1)
|
||||
}
|
||||
if !(p.Rowspan == 0) {
|
||||
p.Flags.Set(2)
|
||||
}
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (p *PageTableCell) Encode(b *bin.Buffer) error {
|
||||
if p == nil {
|
||||
return fmt.Errorf("can't encode pageTableCell#34566b6a as nil")
|
||||
}
|
||||
b.PutID(PageTableCellTypeID)
|
||||
return p.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (p *PageTableCell) EncodeBare(b *bin.Buffer) error {
|
||||
if p == nil {
|
||||
return fmt.Errorf("can't encode pageTableCell#34566b6a as nil")
|
||||
}
|
||||
p.SetFlags()
|
||||
if err := p.Flags.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode pageTableCell#34566b6a: field flags: %w", err)
|
||||
}
|
||||
if p.Flags.Has(7) {
|
||||
if p.Text == nil {
|
||||
return fmt.Errorf("unable to encode pageTableCell#34566b6a: field text is nil")
|
||||
}
|
||||
if err := p.Text.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode pageTableCell#34566b6a: field text: %w", err)
|
||||
}
|
||||
}
|
||||
if p.Flags.Has(1) {
|
||||
b.PutInt(p.Colspan)
|
||||
}
|
||||
if p.Flags.Has(2) {
|
||||
b.PutInt(p.Rowspan)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (p *PageTableCell) Decode(b *bin.Buffer) error {
|
||||
if p == nil {
|
||||
return fmt.Errorf("can't decode pageTableCell#34566b6a to nil")
|
||||
}
|
||||
if err := b.ConsumeID(PageTableCellTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode pageTableCell#34566b6a: %w", err)
|
||||
}
|
||||
return p.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (p *PageTableCell) DecodeBare(b *bin.Buffer) error {
|
||||
if p == nil {
|
||||
return fmt.Errorf("can't decode pageTableCell#34566b6a to nil")
|
||||
}
|
||||
{
|
||||
if err := p.Flags.Decode(b); err != nil {
|
||||
return fmt.Errorf("unable to decode pageTableCell#34566b6a: field flags: %w", err)
|
||||
}
|
||||
}
|
||||
p.Header = p.Flags.Has(0)
|
||||
p.AlignCenter = p.Flags.Has(3)
|
||||
p.AlignRight = p.Flags.Has(4)
|
||||
p.ValignMiddle = p.Flags.Has(5)
|
||||
p.ValignBottom = p.Flags.Has(6)
|
||||
if p.Flags.Has(7) {
|
||||
value, err := DecodeRichText(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode pageTableCell#34566b6a: field text: %w", err)
|
||||
}
|
||||
p.Text = value
|
||||
}
|
||||
if p.Flags.Has(1) {
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode pageTableCell#34566b6a: field colspan: %w", err)
|
||||
}
|
||||
p.Colspan = value
|
||||
}
|
||||
if p.Flags.Has(2) {
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode pageTableCell#34566b6a: field rowspan: %w", err)
|
||||
}
|
||||
p.Rowspan = value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// SetHeader sets value of Header conditional field.
|
||||
func (p *PageTableCell) SetHeader(value bool) {
|
||||
if value {
|
||||
p.Flags.Set(0)
|
||||
p.Header = true
|
||||
} else {
|
||||
p.Flags.Unset(0)
|
||||
p.Header = false
|
||||
}
|
||||
}
|
||||
|
||||
// GetHeader returns value of Header conditional field.
|
||||
func (p *PageTableCell) GetHeader() (value bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Flags.Has(0)
|
||||
}
|
||||
|
||||
// SetAlignCenter sets value of AlignCenter conditional field.
|
||||
func (p *PageTableCell) SetAlignCenter(value bool) {
|
||||
if value {
|
||||
p.Flags.Set(3)
|
||||
p.AlignCenter = true
|
||||
} else {
|
||||
p.Flags.Unset(3)
|
||||
p.AlignCenter = false
|
||||
}
|
||||
}
|
||||
|
||||
// GetAlignCenter returns value of AlignCenter conditional field.
|
||||
func (p *PageTableCell) GetAlignCenter() (value bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Flags.Has(3)
|
||||
}
|
||||
|
||||
// SetAlignRight sets value of AlignRight conditional field.
|
||||
func (p *PageTableCell) SetAlignRight(value bool) {
|
||||
if value {
|
||||
p.Flags.Set(4)
|
||||
p.AlignRight = true
|
||||
} else {
|
||||
p.Flags.Unset(4)
|
||||
p.AlignRight = false
|
||||
}
|
||||
}
|
||||
|
||||
// GetAlignRight returns value of AlignRight conditional field.
|
||||
func (p *PageTableCell) GetAlignRight() (value bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Flags.Has(4)
|
||||
}
|
||||
|
||||
// SetValignMiddle sets value of ValignMiddle conditional field.
|
||||
func (p *PageTableCell) SetValignMiddle(value bool) {
|
||||
if value {
|
||||
p.Flags.Set(5)
|
||||
p.ValignMiddle = true
|
||||
} else {
|
||||
p.Flags.Unset(5)
|
||||
p.ValignMiddle = false
|
||||
}
|
||||
}
|
||||
|
||||
// GetValignMiddle returns value of ValignMiddle conditional field.
|
||||
func (p *PageTableCell) GetValignMiddle() (value bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Flags.Has(5)
|
||||
}
|
||||
|
||||
// SetValignBottom sets value of ValignBottom conditional field.
|
||||
func (p *PageTableCell) SetValignBottom(value bool) {
|
||||
if value {
|
||||
p.Flags.Set(6)
|
||||
p.ValignBottom = true
|
||||
} else {
|
||||
p.Flags.Unset(6)
|
||||
p.ValignBottom = false
|
||||
}
|
||||
}
|
||||
|
||||
// GetValignBottom returns value of ValignBottom conditional field.
|
||||
func (p *PageTableCell) GetValignBottom() (value bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
return p.Flags.Has(6)
|
||||
}
|
||||
|
||||
// SetText sets value of Text conditional field.
|
||||
func (p *PageTableCell) SetText(value RichTextClass) {
|
||||
p.Flags.Set(7)
|
||||
p.Text = value
|
||||
}
|
||||
|
||||
// GetText returns value of Text conditional field and
|
||||
// boolean which is true if field was set.
|
||||
func (p *PageTableCell) GetText() (value RichTextClass, ok bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
if !p.Flags.Has(7) {
|
||||
return value, false
|
||||
}
|
||||
return p.Text, true
|
||||
}
|
||||
|
||||
// SetColspan sets value of Colspan conditional field.
|
||||
func (p *PageTableCell) SetColspan(value int) {
|
||||
p.Flags.Set(1)
|
||||
p.Colspan = value
|
||||
}
|
||||
|
||||
// GetColspan returns value of Colspan conditional field and
|
||||
// boolean which is true if field was set.
|
||||
func (p *PageTableCell) GetColspan() (value int, ok bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
if !p.Flags.Has(1) {
|
||||
return value, false
|
||||
}
|
||||
return p.Colspan, true
|
||||
}
|
||||
|
||||
// SetRowspan sets value of Rowspan conditional field.
|
||||
func (p *PageTableCell) SetRowspan(value int) {
|
||||
p.Flags.Set(2)
|
||||
p.Rowspan = value
|
||||
}
|
||||
|
||||
// GetRowspan returns value of Rowspan conditional field and
|
||||
// boolean which is true if field was set.
|
||||
func (p *PageTableCell) GetRowspan() (value int, ok bool) {
|
||||
if p == nil {
|
||||
return
|
||||
}
|
||||
if !p.Flags.Has(2) {
|
||||
return value, false
|
||||
}
|
||||
return p.Rowspan, true
|
||||
}
|
||||
Reference in New Issue
Block a user