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,153 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// MessagesGetAllDraftsRequest represents TL type `messages.getAllDrafts#6a3f8d65`.
|
||||
// Return all message drafts¹.
|
||||
// Returns all the latest updateDraftMessage² updates related to all chats with drafts.
|
||||
//
|
||||
// Links:
|
||||
// 1. https://core.telegram.org/api/drafts
|
||||
// 2. https://core.telegram.org/constructor/updateDraftMessage
|
||||
//
|
||||
// See https://core.telegram.org/method/messages.getAllDrafts for reference.
|
||||
type MessagesGetAllDraftsRequest struct {
|
||||
}
|
||||
|
||||
// MessagesGetAllDraftsRequestTypeID is TL type id of MessagesGetAllDraftsRequest.
|
||||
const MessagesGetAllDraftsRequestTypeID = 0x6a3f8d65
|
||||
|
||||
// Ensuring interfaces in compile-time for MessagesGetAllDraftsRequest.
|
||||
var (
|
||||
_ bin.Encoder = &MessagesGetAllDraftsRequest{}
|
||||
_ bin.Decoder = &MessagesGetAllDraftsRequest{}
|
||||
_ bin.BareEncoder = &MessagesGetAllDraftsRequest{}
|
||||
_ bin.BareDecoder = &MessagesGetAllDraftsRequest{}
|
||||
)
|
||||
|
||||
func (g *MessagesGetAllDraftsRequest) Zero() bool {
|
||||
if g == nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (g *MessagesGetAllDraftsRequest) String() string {
|
||||
if g == nil {
|
||||
return "MessagesGetAllDraftsRequest(nil)"
|
||||
}
|
||||
type Alias MessagesGetAllDraftsRequest
|
||||
return fmt.Sprintf("MessagesGetAllDraftsRequest%+v", Alias(*g))
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*MessagesGetAllDraftsRequest) TypeID() uint32 {
|
||||
return MessagesGetAllDraftsRequestTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*MessagesGetAllDraftsRequest) TypeName() string {
|
||||
return "messages.getAllDrafts"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (g *MessagesGetAllDraftsRequest) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "messages.getAllDrafts",
|
||||
ID: MessagesGetAllDraftsRequestTypeID,
|
||||
}
|
||||
if g == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (g *MessagesGetAllDraftsRequest) Encode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode messages.getAllDrafts#6a3f8d65 as nil")
|
||||
}
|
||||
b.PutID(MessagesGetAllDraftsRequestTypeID)
|
||||
return g.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (g *MessagesGetAllDraftsRequest) EncodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode messages.getAllDrafts#6a3f8d65 as nil")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (g *MessagesGetAllDraftsRequest) Decode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode messages.getAllDrafts#6a3f8d65 to nil")
|
||||
}
|
||||
if err := b.ConsumeID(MessagesGetAllDraftsRequestTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode messages.getAllDrafts#6a3f8d65: %w", err)
|
||||
}
|
||||
return g.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (g *MessagesGetAllDraftsRequest) DecodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode messages.getAllDrafts#6a3f8d65 to nil")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// MessagesGetAllDrafts invokes method messages.getAllDrafts#6a3f8d65 returning error if any.
|
||||
// Return all message drafts¹.
|
||||
// Returns all the latest updateDraftMessage² updates related to all chats with drafts.
|
||||
//
|
||||
// Links:
|
||||
// 1. https://core.telegram.org/api/drafts
|
||||
// 2. https://core.telegram.org/constructor/updateDraftMessage
|
||||
//
|
||||
// See https://core.telegram.org/method/messages.getAllDrafts for reference.
|
||||
func (c *Client) MessagesGetAllDrafts(ctx context.Context) (UpdatesClass, error) {
|
||||
var result UpdatesBox
|
||||
|
||||
request := &MessagesGetAllDraftsRequest{}
|
||||
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return result.Updates, nil
|
||||
}
|
||||
Reference in New Issue
Block a user