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,317 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// DraftMessage represents TL type `draftMessage#4313276d`.
|
||||
type DraftMessage struct {
|
||||
// Information about the message to be replied; must be of the type
|
||||
// inputMessageReplyToMessage; may be null if none
|
||||
ReplyTo InputMessageReplyToClass
|
||||
// Point in time (Unix timestamp) when the draft was created
|
||||
Date int32
|
||||
// Content of the message draft; must be of the type inputMessageText,
|
||||
// inputMessageVideoNote, or inputMessageVoiceNote
|
||||
InputMessageText InputMessageContentClass
|
||||
// Identifier of the effect to apply to the message when it is sent; 0 if none
|
||||
EffectID int64
|
||||
}
|
||||
|
||||
// DraftMessageTypeID is TL type id of DraftMessage.
|
||||
const DraftMessageTypeID = 0x4313276d
|
||||
|
||||
// Ensuring interfaces in compile-time for DraftMessage.
|
||||
var (
|
||||
_ bin.Encoder = &DraftMessage{}
|
||||
_ bin.Decoder = &DraftMessage{}
|
||||
_ bin.BareEncoder = &DraftMessage{}
|
||||
_ bin.BareDecoder = &DraftMessage{}
|
||||
)
|
||||
|
||||
func (d *DraftMessage) Zero() bool {
|
||||
if d == nil {
|
||||
return true
|
||||
}
|
||||
if !(d.ReplyTo == nil) {
|
||||
return false
|
||||
}
|
||||
if !(d.Date == 0) {
|
||||
return false
|
||||
}
|
||||
if !(d.InputMessageText == nil) {
|
||||
return false
|
||||
}
|
||||
if !(d.EffectID == 0) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (d *DraftMessage) String() string {
|
||||
if d == nil {
|
||||
return "DraftMessage(nil)"
|
||||
}
|
||||
type Alias DraftMessage
|
||||
return fmt.Sprintf("DraftMessage%+v", Alias(*d))
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*DraftMessage) TypeID() uint32 {
|
||||
return DraftMessageTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*DraftMessage) TypeName() string {
|
||||
return "draftMessage"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (d *DraftMessage) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "draftMessage",
|
||||
ID: DraftMessageTypeID,
|
||||
}
|
||||
if d == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "ReplyTo",
|
||||
SchemaName: "reply_to",
|
||||
},
|
||||
{
|
||||
Name: "Date",
|
||||
SchemaName: "date",
|
||||
},
|
||||
{
|
||||
Name: "InputMessageText",
|
||||
SchemaName: "input_message_text",
|
||||
},
|
||||
{
|
||||
Name: "EffectID",
|
||||
SchemaName: "effect_id",
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (d *DraftMessage) Encode(b *bin.Buffer) error {
|
||||
if d == nil {
|
||||
return fmt.Errorf("can't encode draftMessage#4313276d as nil")
|
||||
}
|
||||
b.PutID(DraftMessageTypeID)
|
||||
return d.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (d *DraftMessage) EncodeBare(b *bin.Buffer) error {
|
||||
if d == nil {
|
||||
return fmt.Errorf("can't encode draftMessage#4313276d as nil")
|
||||
}
|
||||
if d.ReplyTo == nil {
|
||||
return fmt.Errorf("unable to encode draftMessage#4313276d: field reply_to is nil")
|
||||
}
|
||||
if err := d.ReplyTo.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode draftMessage#4313276d: field reply_to: %w", err)
|
||||
}
|
||||
b.PutInt32(d.Date)
|
||||
if d.InputMessageText == nil {
|
||||
return fmt.Errorf("unable to encode draftMessage#4313276d: field input_message_text is nil")
|
||||
}
|
||||
if err := d.InputMessageText.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode draftMessage#4313276d: field input_message_text: %w", err)
|
||||
}
|
||||
b.PutLong(d.EffectID)
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (d *DraftMessage) Decode(b *bin.Buffer) error {
|
||||
if d == nil {
|
||||
return fmt.Errorf("can't decode draftMessage#4313276d to nil")
|
||||
}
|
||||
if err := b.ConsumeID(DraftMessageTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: %w", err)
|
||||
}
|
||||
return d.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (d *DraftMessage) DecodeBare(b *bin.Buffer) error {
|
||||
if d == nil {
|
||||
return fmt.Errorf("can't decode draftMessage#4313276d to nil")
|
||||
}
|
||||
{
|
||||
value, err := DecodeInputMessageReplyTo(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: field reply_to: %w", err)
|
||||
}
|
||||
d.ReplyTo = value
|
||||
}
|
||||
{
|
||||
value, err := b.Int32()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: field date: %w", err)
|
||||
}
|
||||
d.Date = value
|
||||
}
|
||||
{
|
||||
value, err := DecodeInputMessageContent(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: field input_message_text: %w", err)
|
||||
}
|
||||
d.InputMessageText = value
|
||||
}
|
||||
{
|
||||
value, err := b.Long()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: field effect_id: %w", err)
|
||||
}
|
||||
d.EffectID = value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
|
||||
func (d *DraftMessage) EncodeTDLibJSON(b tdjson.Encoder) error {
|
||||
if d == nil {
|
||||
return fmt.Errorf("can't encode draftMessage#4313276d as nil")
|
||||
}
|
||||
b.ObjStart()
|
||||
b.PutID("draftMessage")
|
||||
b.Comma()
|
||||
b.FieldStart("reply_to")
|
||||
if d.ReplyTo == nil {
|
||||
return fmt.Errorf("unable to encode draftMessage#4313276d: field reply_to is nil")
|
||||
}
|
||||
if err := d.ReplyTo.EncodeTDLibJSON(b); err != nil {
|
||||
return fmt.Errorf("unable to encode draftMessage#4313276d: field reply_to: %w", err)
|
||||
}
|
||||
b.Comma()
|
||||
b.FieldStart("date")
|
||||
b.PutInt32(d.Date)
|
||||
b.Comma()
|
||||
b.FieldStart("input_message_text")
|
||||
if d.InputMessageText == nil {
|
||||
return fmt.Errorf("unable to encode draftMessage#4313276d: field input_message_text is nil")
|
||||
}
|
||||
if err := d.InputMessageText.EncodeTDLibJSON(b); err != nil {
|
||||
return fmt.Errorf("unable to encode draftMessage#4313276d: field input_message_text: %w", err)
|
||||
}
|
||||
b.Comma()
|
||||
b.FieldStart("effect_id")
|
||||
b.PutLong(d.EffectID)
|
||||
b.Comma()
|
||||
b.StripComma()
|
||||
b.ObjEnd()
|
||||
return nil
|
||||
}
|
||||
|
||||
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
|
||||
func (d *DraftMessage) DecodeTDLibJSON(b tdjson.Decoder) error {
|
||||
if d == nil {
|
||||
return fmt.Errorf("can't decode draftMessage#4313276d to nil")
|
||||
}
|
||||
|
||||
return b.Obj(func(b tdjson.Decoder, key []byte) error {
|
||||
switch string(key) {
|
||||
case tdjson.TypeField:
|
||||
if err := b.ConsumeID("draftMessage"); err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: %w", err)
|
||||
}
|
||||
case "reply_to":
|
||||
value, err := DecodeTDLibJSONInputMessageReplyTo(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: field reply_to: %w", err)
|
||||
}
|
||||
d.ReplyTo = value
|
||||
case "date":
|
||||
value, err := b.Int32()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: field date: %w", err)
|
||||
}
|
||||
d.Date = value
|
||||
case "input_message_text":
|
||||
value, err := DecodeTDLibJSONInputMessageContent(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: field input_message_text: %w", err)
|
||||
}
|
||||
d.InputMessageText = value
|
||||
case "effect_id":
|
||||
value, err := b.Long()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode draftMessage#4313276d: field effect_id: %w", err)
|
||||
}
|
||||
d.EffectID = value
|
||||
default:
|
||||
return b.Skip()
|
||||
}
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
// GetReplyTo returns value of ReplyTo field.
|
||||
func (d *DraftMessage) GetReplyTo() (value InputMessageReplyToClass) {
|
||||
if d == nil {
|
||||
return
|
||||
}
|
||||
return d.ReplyTo
|
||||
}
|
||||
|
||||
// GetDate returns value of Date field.
|
||||
func (d *DraftMessage) GetDate() (value int32) {
|
||||
if d == nil {
|
||||
return
|
||||
}
|
||||
return d.Date
|
||||
}
|
||||
|
||||
// GetInputMessageText returns value of InputMessageText field.
|
||||
func (d *DraftMessage) GetInputMessageText() (value InputMessageContentClass) {
|
||||
if d == nil {
|
||||
return
|
||||
}
|
||||
return d.InputMessageText
|
||||
}
|
||||
|
||||
// GetEffectID returns value of EffectID field.
|
||||
func (d *DraftMessage) GetEffectID() (value int64) {
|
||||
if d == nil {
|
||||
return
|
||||
}
|
||||
return d.EffectID
|
||||
}
|
||||
Reference in New Issue
Block a user