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,430 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// UpdatesGetDifferenceRequest represents TL type `updates.getDifference#19c2f763`.
|
||||
// Get new updates¹.
|
||||
//
|
||||
// Links:
|
||||
// 1. https://core.telegram.org/api/updates
|
||||
//
|
||||
// See https://core.telegram.org/method/updates.getDifference for reference.
|
||||
type UpdatesGetDifferenceRequest struct {
|
||||
// Flags, see TL conditional fields¹
|
||||
//
|
||||
// Links:
|
||||
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
|
||||
Flags bin.Fields
|
||||
// PTS, see updates¹.
|
||||
//
|
||||
// Links:
|
||||
// 1) https://core.telegram.org/api/updates
|
||||
Pts int
|
||||
// PTS limit
|
||||
//
|
||||
// Use SetPtsLimit and GetPtsLimit helpers.
|
||||
PtsLimit int
|
||||
// For fast updating: if provided and pts + pts_total_limit < remote pts, updates
|
||||
// differenceTooLong¹ will be returned.Simply tells the server to not return the
|
||||
// difference if it is bigger than pts_total_limitIf the remote pts is too big (>
|
||||
// ~4000000), this field will default to 1000000
|
||||
//
|
||||
// Links:
|
||||
// 1) https://core.telegram.org/constructor/updates.differenceTooLong
|
||||
//
|
||||
// Use SetPtsTotalLimit and GetPtsTotalLimit helpers.
|
||||
PtsTotalLimit int
|
||||
// date, see updates¹.
|
||||
//
|
||||
// Links:
|
||||
// 1) https://core.telegram.org/api/updates
|
||||
Date int
|
||||
// QTS, see updates¹.
|
||||
//
|
||||
// Links:
|
||||
// 1) https://core.telegram.org/api/updates
|
||||
Qts int
|
||||
// QTS limit
|
||||
//
|
||||
// Use SetQtsLimit and GetQtsLimit helpers.
|
||||
QtsLimit int
|
||||
}
|
||||
|
||||
// UpdatesGetDifferenceRequestTypeID is TL type id of UpdatesGetDifferenceRequest.
|
||||
const UpdatesGetDifferenceRequestTypeID = 0x19c2f763
|
||||
|
||||
// Ensuring interfaces in compile-time for UpdatesGetDifferenceRequest.
|
||||
var (
|
||||
_ bin.Encoder = &UpdatesGetDifferenceRequest{}
|
||||
_ bin.Decoder = &UpdatesGetDifferenceRequest{}
|
||||
_ bin.BareEncoder = &UpdatesGetDifferenceRequest{}
|
||||
_ bin.BareDecoder = &UpdatesGetDifferenceRequest{}
|
||||
)
|
||||
|
||||
func (g *UpdatesGetDifferenceRequest) Zero() bool {
|
||||
if g == nil {
|
||||
return true
|
||||
}
|
||||
if !(g.Flags.Zero()) {
|
||||
return false
|
||||
}
|
||||
if !(g.Pts == 0) {
|
||||
return false
|
||||
}
|
||||
if !(g.PtsLimit == 0) {
|
||||
return false
|
||||
}
|
||||
if !(g.PtsTotalLimit == 0) {
|
||||
return false
|
||||
}
|
||||
if !(g.Date == 0) {
|
||||
return false
|
||||
}
|
||||
if !(g.Qts == 0) {
|
||||
return false
|
||||
}
|
||||
if !(g.QtsLimit == 0) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (g *UpdatesGetDifferenceRequest) String() string {
|
||||
if g == nil {
|
||||
return "UpdatesGetDifferenceRequest(nil)"
|
||||
}
|
||||
type Alias UpdatesGetDifferenceRequest
|
||||
return fmt.Sprintf("UpdatesGetDifferenceRequest%+v", Alias(*g))
|
||||
}
|
||||
|
||||
// FillFrom fills UpdatesGetDifferenceRequest from given interface.
|
||||
func (g *UpdatesGetDifferenceRequest) FillFrom(from interface {
|
||||
GetPts() (value int)
|
||||
GetPtsLimit() (value int, ok bool)
|
||||
GetPtsTotalLimit() (value int, ok bool)
|
||||
GetDate() (value int)
|
||||
GetQts() (value int)
|
||||
GetQtsLimit() (value int, ok bool)
|
||||
}) {
|
||||
g.Pts = from.GetPts()
|
||||
if val, ok := from.GetPtsLimit(); ok {
|
||||
g.PtsLimit = val
|
||||
}
|
||||
|
||||
if val, ok := from.GetPtsTotalLimit(); ok {
|
||||
g.PtsTotalLimit = val
|
||||
}
|
||||
|
||||
g.Date = from.GetDate()
|
||||
g.Qts = from.GetQts()
|
||||
if val, ok := from.GetQtsLimit(); ok {
|
||||
g.QtsLimit = val
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*UpdatesGetDifferenceRequest) TypeID() uint32 {
|
||||
return UpdatesGetDifferenceRequestTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*UpdatesGetDifferenceRequest) TypeName() string {
|
||||
return "updates.getDifference"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (g *UpdatesGetDifferenceRequest) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "updates.getDifference",
|
||||
ID: UpdatesGetDifferenceRequestTypeID,
|
||||
}
|
||||
if g == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Pts",
|
||||
SchemaName: "pts",
|
||||
},
|
||||
{
|
||||
Name: "PtsLimit",
|
||||
SchemaName: "pts_limit",
|
||||
Null: !g.Flags.Has(1),
|
||||
},
|
||||
{
|
||||
Name: "PtsTotalLimit",
|
||||
SchemaName: "pts_total_limit",
|
||||
Null: !g.Flags.Has(0),
|
||||
},
|
||||
{
|
||||
Name: "Date",
|
||||
SchemaName: "date",
|
||||
},
|
||||
{
|
||||
Name: "Qts",
|
||||
SchemaName: "qts",
|
||||
},
|
||||
{
|
||||
Name: "QtsLimit",
|
||||
SchemaName: "qts_limit",
|
||||
Null: !g.Flags.Has(2),
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// SetFlags sets flags for non-zero fields.
|
||||
func (g *UpdatesGetDifferenceRequest) SetFlags() {
|
||||
if !(g.PtsLimit == 0) {
|
||||
g.Flags.Set(1)
|
||||
}
|
||||
if !(g.PtsTotalLimit == 0) {
|
||||
g.Flags.Set(0)
|
||||
}
|
||||
if !(g.QtsLimit == 0) {
|
||||
g.Flags.Set(2)
|
||||
}
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (g *UpdatesGetDifferenceRequest) Encode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode updates.getDifference#19c2f763 as nil")
|
||||
}
|
||||
b.PutID(UpdatesGetDifferenceRequestTypeID)
|
||||
return g.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (g *UpdatesGetDifferenceRequest) EncodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode updates.getDifference#19c2f763 as nil")
|
||||
}
|
||||
g.SetFlags()
|
||||
if err := g.Flags.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode updates.getDifference#19c2f763: field flags: %w", err)
|
||||
}
|
||||
b.PutInt(g.Pts)
|
||||
if g.Flags.Has(1) {
|
||||
b.PutInt(g.PtsLimit)
|
||||
}
|
||||
if g.Flags.Has(0) {
|
||||
b.PutInt(g.PtsTotalLimit)
|
||||
}
|
||||
b.PutInt(g.Date)
|
||||
b.PutInt(g.Qts)
|
||||
if g.Flags.Has(2) {
|
||||
b.PutInt(g.QtsLimit)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (g *UpdatesGetDifferenceRequest) Decode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode updates.getDifference#19c2f763 to nil")
|
||||
}
|
||||
if err := b.ConsumeID(UpdatesGetDifferenceRequestTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode updates.getDifference#19c2f763: %w", err)
|
||||
}
|
||||
return g.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (g *UpdatesGetDifferenceRequest) DecodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode updates.getDifference#19c2f763 to nil")
|
||||
}
|
||||
{
|
||||
if err := g.Flags.Decode(b); err != nil {
|
||||
return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field flags: %w", err)
|
||||
}
|
||||
}
|
||||
{
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field pts: %w", err)
|
||||
}
|
||||
g.Pts = value
|
||||
}
|
||||
if g.Flags.Has(1) {
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field pts_limit: %w", err)
|
||||
}
|
||||
g.PtsLimit = value
|
||||
}
|
||||
if g.Flags.Has(0) {
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field pts_total_limit: %w", err)
|
||||
}
|
||||
g.PtsTotalLimit = value
|
||||
}
|
||||
{
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field date: %w", err)
|
||||
}
|
||||
g.Date = value
|
||||
}
|
||||
{
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field qts: %w", err)
|
||||
}
|
||||
g.Qts = value
|
||||
}
|
||||
if g.Flags.Has(2) {
|
||||
value, err := b.Int()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field qts_limit: %w", err)
|
||||
}
|
||||
g.QtsLimit = value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// GetPts returns value of Pts field.
|
||||
func (g *UpdatesGetDifferenceRequest) GetPts() (value int) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.Pts
|
||||
}
|
||||
|
||||
// SetPtsLimit sets value of PtsLimit conditional field.
|
||||
func (g *UpdatesGetDifferenceRequest) SetPtsLimit(value int) {
|
||||
g.Flags.Set(1)
|
||||
g.PtsLimit = value
|
||||
}
|
||||
|
||||
// GetPtsLimit returns value of PtsLimit conditional field and
|
||||
// boolean which is true if field was set.
|
||||
func (g *UpdatesGetDifferenceRequest) GetPtsLimit() (value int, ok bool) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
if !g.Flags.Has(1) {
|
||||
return value, false
|
||||
}
|
||||
return g.PtsLimit, true
|
||||
}
|
||||
|
||||
// SetPtsTotalLimit sets value of PtsTotalLimit conditional field.
|
||||
func (g *UpdatesGetDifferenceRequest) SetPtsTotalLimit(value int) {
|
||||
g.Flags.Set(0)
|
||||
g.PtsTotalLimit = value
|
||||
}
|
||||
|
||||
// GetPtsTotalLimit returns value of PtsTotalLimit conditional field and
|
||||
// boolean which is true if field was set.
|
||||
func (g *UpdatesGetDifferenceRequest) GetPtsTotalLimit() (value int, ok bool) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
if !g.Flags.Has(0) {
|
||||
return value, false
|
||||
}
|
||||
return g.PtsTotalLimit, true
|
||||
}
|
||||
|
||||
// GetDate returns value of Date field.
|
||||
func (g *UpdatesGetDifferenceRequest) GetDate() (value int) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.Date
|
||||
}
|
||||
|
||||
// GetQts returns value of Qts field.
|
||||
func (g *UpdatesGetDifferenceRequest) GetQts() (value int) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.Qts
|
||||
}
|
||||
|
||||
// SetQtsLimit sets value of QtsLimit conditional field.
|
||||
func (g *UpdatesGetDifferenceRequest) SetQtsLimit(value int) {
|
||||
g.Flags.Set(2)
|
||||
g.QtsLimit = value
|
||||
}
|
||||
|
||||
// GetQtsLimit returns value of QtsLimit conditional field and
|
||||
// boolean which is true if field was set.
|
||||
func (g *UpdatesGetDifferenceRequest) GetQtsLimit() (value int, ok bool) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
if !g.Flags.Has(2) {
|
||||
return value, false
|
||||
}
|
||||
return g.QtsLimit, true
|
||||
}
|
||||
|
||||
// UpdatesGetDifference invokes method updates.getDifference#19c2f763 returning error if any.
|
||||
// Get new updates¹.
|
||||
//
|
||||
// Links:
|
||||
// 1. https://core.telegram.org/api/updates
|
||||
//
|
||||
// Possible errors:
|
||||
//
|
||||
// 400 CDN_METHOD_INVALID: You can't call this method in a CDN DC.
|
||||
// 400 CHANNEL_INVALID: The provided channel is invalid.
|
||||
// 400 CHANNEL_PRIVATE: You haven't joined this channel/supergroup.
|
||||
// 403 CHAT_WRITE_FORBIDDEN: You can't write in this chat.
|
||||
// 400 DATE_EMPTY: Date empty.
|
||||
// 400 MSG_ID_INVALID: Invalid message ID provided.
|
||||
// 400 PERSISTENT_TIMESTAMP_EMPTY: Persistent timestamp empty.
|
||||
// 400 PERSISTENT_TIMESTAMP_INVALID: Persistent timestamp invalid.
|
||||
// 500 RANDOM_ID_DUPLICATE: You provided a random ID that was already used.
|
||||
// 400 USERNAME_INVALID: The provided username is not valid.
|
||||
// 400 USER_NOT_PARTICIPANT: You're not a member of this supergroup/channel.
|
||||
//
|
||||
// See https://core.telegram.org/method/updates.getDifference for reference.
|
||||
// Can be used by bots.
|
||||
func (c *Client) UpdatesGetDifference(ctx context.Context, request *UpdatesGetDifferenceRequest) (UpdatesDifferenceClass, error) {
|
||||
var result UpdatesDifferenceBox
|
||||
|
||||
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return result.Difference, nil
|
||||
}
|
||||
Reference in New Issue
Block a user