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
340 lines
8.0 KiB
Go
340 lines
8.0 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{}
|
|
)
|
|
|
|
// ViewMessagesRequest represents TL type `viewMessages#aa2f0438`.
|
|
type ViewMessagesRequest struct {
|
|
// Chat identifier
|
|
ChatID int64
|
|
// The identifiers of the messages being viewed
|
|
MessageIDs []int64
|
|
// Source of the message view; pass null to guess the source based on chat open state
|
|
Source MessageSourceClass
|
|
// Pass true to mark as read the specified messages even the chat is closed
|
|
ForceRead bool
|
|
}
|
|
|
|
// ViewMessagesRequestTypeID is TL type id of ViewMessagesRequest.
|
|
const ViewMessagesRequestTypeID = 0xaa2f0438
|
|
|
|
// Ensuring interfaces in compile-time for ViewMessagesRequest.
|
|
var (
|
|
_ bin.Encoder = &ViewMessagesRequest{}
|
|
_ bin.Decoder = &ViewMessagesRequest{}
|
|
_ bin.BareEncoder = &ViewMessagesRequest{}
|
|
_ bin.BareDecoder = &ViewMessagesRequest{}
|
|
)
|
|
|
|
func (v *ViewMessagesRequest) Zero() bool {
|
|
if v == nil {
|
|
return true
|
|
}
|
|
if !(v.ChatID == 0) {
|
|
return false
|
|
}
|
|
if !(v.MessageIDs == nil) {
|
|
return false
|
|
}
|
|
if !(v.Source == nil) {
|
|
return false
|
|
}
|
|
if !(v.ForceRead == false) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (v *ViewMessagesRequest) String() string {
|
|
if v == nil {
|
|
return "ViewMessagesRequest(nil)"
|
|
}
|
|
type Alias ViewMessagesRequest
|
|
return fmt.Sprintf("ViewMessagesRequest%+v", Alias(*v))
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*ViewMessagesRequest) TypeID() uint32 {
|
|
return ViewMessagesRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*ViewMessagesRequest) TypeName() string {
|
|
return "viewMessages"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (v *ViewMessagesRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "viewMessages",
|
|
ID: ViewMessagesRequestTypeID,
|
|
}
|
|
if v == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "ChatID",
|
|
SchemaName: "chat_id",
|
|
},
|
|
{
|
|
Name: "MessageIDs",
|
|
SchemaName: "message_ids",
|
|
},
|
|
{
|
|
Name: "Source",
|
|
SchemaName: "source",
|
|
},
|
|
{
|
|
Name: "ForceRead",
|
|
SchemaName: "force_read",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (v *ViewMessagesRequest) Encode(b *bin.Buffer) error {
|
|
if v == nil {
|
|
return fmt.Errorf("can't encode viewMessages#aa2f0438 as nil")
|
|
}
|
|
b.PutID(ViewMessagesRequestTypeID)
|
|
return v.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (v *ViewMessagesRequest) EncodeBare(b *bin.Buffer) error {
|
|
if v == nil {
|
|
return fmt.Errorf("can't encode viewMessages#aa2f0438 as nil")
|
|
}
|
|
b.PutInt53(v.ChatID)
|
|
b.PutInt(len(v.MessageIDs))
|
|
for _, v := range v.MessageIDs {
|
|
b.PutInt53(v)
|
|
}
|
|
if v.Source == nil {
|
|
return fmt.Errorf("unable to encode viewMessages#aa2f0438: field source is nil")
|
|
}
|
|
if err := v.Source.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode viewMessages#aa2f0438: field source: %w", err)
|
|
}
|
|
b.PutBool(v.ForceRead)
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (v *ViewMessagesRequest) Decode(b *bin.Buffer) error {
|
|
if v == nil {
|
|
return fmt.Errorf("can't decode viewMessages#aa2f0438 to nil")
|
|
}
|
|
if err := b.ConsumeID(ViewMessagesRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: %w", err)
|
|
}
|
|
return v.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (v *ViewMessagesRequest) DecodeBare(b *bin.Buffer) error {
|
|
if v == nil {
|
|
return fmt.Errorf("can't decode viewMessages#aa2f0438 to nil")
|
|
}
|
|
{
|
|
value, err := b.Int53()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field chat_id: %w", err)
|
|
}
|
|
v.ChatID = value
|
|
}
|
|
{
|
|
headerLen, err := b.Int()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field message_ids: %w", err)
|
|
}
|
|
|
|
if headerLen > 0 {
|
|
v.MessageIDs = make([]int64, 0, headerLen%bin.PreallocateLimit)
|
|
}
|
|
for idx := 0; idx < headerLen; idx++ {
|
|
value, err := b.Int53()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field message_ids: %w", err)
|
|
}
|
|
v.MessageIDs = append(v.MessageIDs, value)
|
|
}
|
|
}
|
|
{
|
|
value, err := DecodeMessageSource(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field source: %w", err)
|
|
}
|
|
v.Source = value
|
|
}
|
|
{
|
|
value, err := b.Bool()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field force_read: %w", err)
|
|
}
|
|
v.ForceRead = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
|
|
func (v *ViewMessagesRequest) EncodeTDLibJSON(b tdjson.Encoder) error {
|
|
if v == nil {
|
|
return fmt.Errorf("can't encode viewMessages#aa2f0438 as nil")
|
|
}
|
|
b.ObjStart()
|
|
b.PutID("viewMessages")
|
|
b.Comma()
|
|
b.FieldStart("chat_id")
|
|
b.PutInt53(v.ChatID)
|
|
b.Comma()
|
|
b.FieldStart("message_ids")
|
|
b.ArrStart()
|
|
for _, v := range v.MessageIDs {
|
|
b.PutInt53(v)
|
|
b.Comma()
|
|
}
|
|
b.StripComma()
|
|
b.ArrEnd()
|
|
b.Comma()
|
|
b.FieldStart("source")
|
|
if v.Source == nil {
|
|
return fmt.Errorf("unable to encode viewMessages#aa2f0438: field source is nil")
|
|
}
|
|
if err := v.Source.EncodeTDLibJSON(b); err != nil {
|
|
return fmt.Errorf("unable to encode viewMessages#aa2f0438: field source: %w", err)
|
|
}
|
|
b.Comma()
|
|
b.FieldStart("force_read")
|
|
b.PutBool(v.ForceRead)
|
|
b.Comma()
|
|
b.StripComma()
|
|
b.ObjEnd()
|
|
return nil
|
|
}
|
|
|
|
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
|
|
func (v *ViewMessagesRequest) DecodeTDLibJSON(b tdjson.Decoder) error {
|
|
if v == nil {
|
|
return fmt.Errorf("can't decode viewMessages#aa2f0438 to nil")
|
|
}
|
|
|
|
return b.Obj(func(b tdjson.Decoder, key []byte) error {
|
|
switch string(key) {
|
|
case tdjson.TypeField:
|
|
if err := b.ConsumeID("viewMessages"); err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: %w", err)
|
|
}
|
|
case "chat_id":
|
|
value, err := b.Int53()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field chat_id: %w", err)
|
|
}
|
|
v.ChatID = value
|
|
case "message_ids":
|
|
if err := b.Arr(func(b tdjson.Decoder) error {
|
|
value, err := b.Int53()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field message_ids: %w", err)
|
|
}
|
|
v.MessageIDs = append(v.MessageIDs, value)
|
|
return nil
|
|
}); err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field message_ids: %w", err)
|
|
}
|
|
case "source":
|
|
value, err := DecodeTDLibJSONMessageSource(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field source: %w", err)
|
|
}
|
|
v.Source = value
|
|
case "force_read":
|
|
value, err := b.Bool()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode viewMessages#aa2f0438: field force_read: %w", err)
|
|
}
|
|
v.ForceRead = value
|
|
default:
|
|
return b.Skip()
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// GetChatID returns value of ChatID field.
|
|
func (v *ViewMessagesRequest) GetChatID() (value int64) {
|
|
if v == nil {
|
|
return
|
|
}
|
|
return v.ChatID
|
|
}
|
|
|
|
// GetMessageIDs returns value of MessageIDs field.
|
|
func (v *ViewMessagesRequest) GetMessageIDs() (value []int64) {
|
|
if v == nil {
|
|
return
|
|
}
|
|
return v.MessageIDs
|
|
}
|
|
|
|
// GetSource returns value of Source field.
|
|
func (v *ViewMessagesRequest) GetSource() (value MessageSourceClass) {
|
|
if v == nil {
|
|
return
|
|
}
|
|
return v.Source
|
|
}
|
|
|
|
// GetForceRead returns value of ForceRead field.
|
|
func (v *ViewMessagesRequest) GetForceRead() (value bool) {
|
|
if v == nil {
|
|
return
|
|
}
|
|
return v.ForceRead
|
|
}
|
|
|
|
// ViewMessages invokes method viewMessages#aa2f0438 returning error if any.
|
|
func (c *Client) ViewMessages(ctx context.Context, request *ViewMessagesRequest) error {
|
|
var ok Ok
|
|
|
|
if err := c.rpc.Invoke(ctx, request, &ok); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|