7a04f298d2
- 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
364 lines
8.6 KiB
Go
364 lines
8.6 KiB
Go
// 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{}
|
|
)
|
|
|
|
// PageBlockRelatedArticle represents TL type `pageBlockRelatedArticle#1cae8493`.
|
|
type PageBlockRelatedArticle struct {
|
|
// Related article URL
|
|
URL string
|
|
// Article title; may be empty
|
|
Title string
|
|
// Contains information about a related article
|
|
Description string
|
|
// Article photo; may be null
|
|
Photo Photo
|
|
// Article author; may be empty
|
|
Author string
|
|
// Point in time (Unix timestamp) when the article was published; 0 if unknown
|
|
PublishDate int32
|
|
}
|
|
|
|
// PageBlockRelatedArticleTypeID is TL type id of PageBlockRelatedArticle.
|
|
const PageBlockRelatedArticleTypeID = 0x1cae8493
|
|
|
|
// Ensuring interfaces in compile-time for PageBlockRelatedArticle.
|
|
var (
|
|
_ bin.Encoder = &PageBlockRelatedArticle{}
|
|
_ bin.Decoder = &PageBlockRelatedArticle{}
|
|
_ bin.BareEncoder = &PageBlockRelatedArticle{}
|
|
_ bin.BareDecoder = &PageBlockRelatedArticle{}
|
|
)
|
|
|
|
func (p *PageBlockRelatedArticle) Zero() bool {
|
|
if p == nil {
|
|
return true
|
|
}
|
|
if !(p.URL == "") {
|
|
return false
|
|
}
|
|
if !(p.Title == "") {
|
|
return false
|
|
}
|
|
if !(p.Description == "") {
|
|
return false
|
|
}
|
|
if !(p.Photo.Zero()) {
|
|
return false
|
|
}
|
|
if !(p.Author == "") {
|
|
return false
|
|
}
|
|
if !(p.PublishDate == 0) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (p *PageBlockRelatedArticle) String() string {
|
|
if p == nil {
|
|
return "PageBlockRelatedArticle(nil)"
|
|
}
|
|
type Alias PageBlockRelatedArticle
|
|
return fmt.Sprintf("PageBlockRelatedArticle%+v", Alias(*p))
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*PageBlockRelatedArticle) TypeID() uint32 {
|
|
return PageBlockRelatedArticleTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*PageBlockRelatedArticle) TypeName() string {
|
|
return "pageBlockRelatedArticle"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (p *PageBlockRelatedArticle) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "pageBlockRelatedArticle",
|
|
ID: PageBlockRelatedArticleTypeID,
|
|
}
|
|
if p == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "URL",
|
|
SchemaName: "url",
|
|
},
|
|
{
|
|
Name: "Title",
|
|
SchemaName: "title",
|
|
},
|
|
{
|
|
Name: "Description",
|
|
SchemaName: "description",
|
|
},
|
|
{
|
|
Name: "Photo",
|
|
SchemaName: "photo",
|
|
},
|
|
{
|
|
Name: "Author",
|
|
SchemaName: "author",
|
|
},
|
|
{
|
|
Name: "PublishDate",
|
|
SchemaName: "publish_date",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (p *PageBlockRelatedArticle) Encode(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't encode pageBlockRelatedArticle#1cae8493 as nil")
|
|
}
|
|
b.PutID(PageBlockRelatedArticleTypeID)
|
|
return p.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (p *PageBlockRelatedArticle) EncodeBare(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't encode pageBlockRelatedArticle#1cae8493 as nil")
|
|
}
|
|
b.PutString(p.URL)
|
|
b.PutString(p.Title)
|
|
b.PutString(p.Description)
|
|
if err := p.Photo.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode pageBlockRelatedArticle#1cae8493: field photo: %w", err)
|
|
}
|
|
b.PutString(p.Author)
|
|
b.PutInt32(p.PublishDate)
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (p *PageBlockRelatedArticle) Decode(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't decode pageBlockRelatedArticle#1cae8493 to nil")
|
|
}
|
|
if err := b.ConsumeID(PageBlockRelatedArticleTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: %w", err)
|
|
}
|
|
return p.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (p *PageBlockRelatedArticle) DecodeBare(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't decode pageBlockRelatedArticle#1cae8493 to nil")
|
|
}
|
|
{
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field url: %w", err)
|
|
}
|
|
p.URL = value
|
|
}
|
|
{
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field title: %w", err)
|
|
}
|
|
p.Title = value
|
|
}
|
|
{
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field description: %w", err)
|
|
}
|
|
p.Description = value
|
|
}
|
|
{
|
|
if err := p.Photo.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field photo: %w", err)
|
|
}
|
|
}
|
|
{
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field author: %w", err)
|
|
}
|
|
p.Author = value
|
|
}
|
|
{
|
|
value, err := b.Int32()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field publish_date: %w", err)
|
|
}
|
|
p.PublishDate = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
|
|
func (p *PageBlockRelatedArticle) EncodeTDLibJSON(b tdjson.Encoder) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't encode pageBlockRelatedArticle#1cae8493 as nil")
|
|
}
|
|
b.ObjStart()
|
|
b.PutID("pageBlockRelatedArticle")
|
|
b.Comma()
|
|
b.FieldStart("url")
|
|
b.PutString(p.URL)
|
|
b.Comma()
|
|
b.FieldStart("title")
|
|
b.PutString(p.Title)
|
|
b.Comma()
|
|
b.FieldStart("description")
|
|
b.PutString(p.Description)
|
|
b.Comma()
|
|
b.FieldStart("photo")
|
|
if err := p.Photo.EncodeTDLibJSON(b); err != nil {
|
|
return fmt.Errorf("unable to encode pageBlockRelatedArticle#1cae8493: field photo: %w", err)
|
|
}
|
|
b.Comma()
|
|
b.FieldStart("author")
|
|
b.PutString(p.Author)
|
|
b.Comma()
|
|
b.FieldStart("publish_date")
|
|
b.PutInt32(p.PublishDate)
|
|
b.Comma()
|
|
b.StripComma()
|
|
b.ObjEnd()
|
|
return nil
|
|
}
|
|
|
|
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
|
|
func (p *PageBlockRelatedArticle) DecodeTDLibJSON(b tdjson.Decoder) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't decode pageBlockRelatedArticle#1cae8493 to nil")
|
|
}
|
|
|
|
return b.Obj(func(b tdjson.Decoder, key []byte) error {
|
|
switch string(key) {
|
|
case tdjson.TypeField:
|
|
if err := b.ConsumeID("pageBlockRelatedArticle"); err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: %w", err)
|
|
}
|
|
case "url":
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field url: %w", err)
|
|
}
|
|
p.URL = value
|
|
case "title":
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field title: %w", err)
|
|
}
|
|
p.Title = value
|
|
case "description":
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field description: %w", err)
|
|
}
|
|
p.Description = value
|
|
case "photo":
|
|
if err := p.Photo.DecodeTDLibJSON(b); err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field photo: %w", err)
|
|
}
|
|
case "author":
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field author: %w", err)
|
|
}
|
|
p.Author = value
|
|
case "publish_date":
|
|
value, err := b.Int32()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pageBlockRelatedArticle#1cae8493: field publish_date: %w", err)
|
|
}
|
|
p.PublishDate = value
|
|
default:
|
|
return b.Skip()
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// GetURL returns value of URL field.
|
|
func (p *PageBlockRelatedArticle) GetURL() (value string) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.URL
|
|
}
|
|
|
|
// GetTitle returns value of Title field.
|
|
func (p *PageBlockRelatedArticle) GetTitle() (value string) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.Title
|
|
}
|
|
|
|
// GetDescription returns value of Description field.
|
|
func (p *PageBlockRelatedArticle) GetDescription() (value string) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.Description
|
|
}
|
|
|
|
// GetPhoto returns value of Photo field.
|
|
func (p *PageBlockRelatedArticle) GetPhoto() (value Photo) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.Photo
|
|
}
|
|
|
|
// GetAuthor returns value of Author field.
|
|
func (p *PageBlockRelatedArticle) GetAuthor() (value string) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.Author
|
|
}
|
|
|
|
// GetPublishDate returns value of PublishDate field.
|
|
func (p *PageBlockRelatedArticle) GetPublishDate() (value int32) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.PublishDate
|
|
}
|