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
260 lines
6.3 KiB
Go
260 lines
6.3 KiB
Go
// 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{}
|
|
)
|
|
|
|
// StatsLoadAsyncGraphRequest represents TL type `stats.loadAsyncGraph#621d5fa0`.
|
|
// Load channel statistics graph¹ asynchronously
|
|
//
|
|
// Links:
|
|
// 1. https://core.telegram.org/api/stats
|
|
//
|
|
// See https://core.telegram.org/method/stats.loadAsyncGraph for reference.
|
|
type StatsLoadAsyncGraphRequest struct {
|
|
// Flags, see TL conditional fields¹
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
|
|
Flags bin.Fields
|
|
// Graph token from statsGraphAsync¹ constructor
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/constructor/statsGraphAsync
|
|
Token string
|
|
// Zoom value, if required
|
|
//
|
|
// Use SetX and GetX helpers.
|
|
X int64
|
|
}
|
|
|
|
// StatsLoadAsyncGraphRequestTypeID is TL type id of StatsLoadAsyncGraphRequest.
|
|
const StatsLoadAsyncGraphRequestTypeID = 0x621d5fa0
|
|
|
|
// Ensuring interfaces in compile-time for StatsLoadAsyncGraphRequest.
|
|
var (
|
|
_ bin.Encoder = &StatsLoadAsyncGraphRequest{}
|
|
_ bin.Decoder = &StatsLoadAsyncGraphRequest{}
|
|
_ bin.BareEncoder = &StatsLoadAsyncGraphRequest{}
|
|
_ bin.BareDecoder = &StatsLoadAsyncGraphRequest{}
|
|
)
|
|
|
|
func (l *StatsLoadAsyncGraphRequest) Zero() bool {
|
|
if l == nil {
|
|
return true
|
|
}
|
|
if !(l.Flags.Zero()) {
|
|
return false
|
|
}
|
|
if !(l.Token == "") {
|
|
return false
|
|
}
|
|
if !(l.X == 0) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (l *StatsLoadAsyncGraphRequest) String() string {
|
|
if l == nil {
|
|
return "StatsLoadAsyncGraphRequest(nil)"
|
|
}
|
|
type Alias StatsLoadAsyncGraphRequest
|
|
return fmt.Sprintf("StatsLoadAsyncGraphRequest%+v", Alias(*l))
|
|
}
|
|
|
|
// FillFrom fills StatsLoadAsyncGraphRequest from given interface.
|
|
func (l *StatsLoadAsyncGraphRequest) FillFrom(from interface {
|
|
GetToken() (value string)
|
|
GetX() (value int64, ok bool)
|
|
}) {
|
|
l.Token = from.GetToken()
|
|
if val, ok := from.GetX(); ok {
|
|
l.X = val
|
|
}
|
|
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*StatsLoadAsyncGraphRequest) TypeID() uint32 {
|
|
return StatsLoadAsyncGraphRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*StatsLoadAsyncGraphRequest) TypeName() string {
|
|
return "stats.loadAsyncGraph"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (l *StatsLoadAsyncGraphRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "stats.loadAsyncGraph",
|
|
ID: StatsLoadAsyncGraphRequestTypeID,
|
|
}
|
|
if l == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "Token",
|
|
SchemaName: "token",
|
|
},
|
|
{
|
|
Name: "X",
|
|
SchemaName: "x",
|
|
Null: !l.Flags.Has(0),
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// SetFlags sets flags for non-zero fields.
|
|
func (l *StatsLoadAsyncGraphRequest) SetFlags() {
|
|
if !(l.X == 0) {
|
|
l.Flags.Set(0)
|
|
}
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (l *StatsLoadAsyncGraphRequest) Encode(b *bin.Buffer) error {
|
|
if l == nil {
|
|
return fmt.Errorf("can't encode stats.loadAsyncGraph#621d5fa0 as nil")
|
|
}
|
|
b.PutID(StatsLoadAsyncGraphRequestTypeID)
|
|
return l.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (l *StatsLoadAsyncGraphRequest) EncodeBare(b *bin.Buffer) error {
|
|
if l == nil {
|
|
return fmt.Errorf("can't encode stats.loadAsyncGraph#621d5fa0 as nil")
|
|
}
|
|
l.SetFlags()
|
|
if err := l.Flags.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode stats.loadAsyncGraph#621d5fa0: field flags: %w", err)
|
|
}
|
|
b.PutString(l.Token)
|
|
if l.Flags.Has(0) {
|
|
b.PutLong(l.X)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (l *StatsLoadAsyncGraphRequest) Decode(b *bin.Buffer) error {
|
|
if l == nil {
|
|
return fmt.Errorf("can't decode stats.loadAsyncGraph#621d5fa0 to nil")
|
|
}
|
|
if err := b.ConsumeID(StatsLoadAsyncGraphRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: %w", err)
|
|
}
|
|
return l.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (l *StatsLoadAsyncGraphRequest) DecodeBare(b *bin.Buffer) error {
|
|
if l == nil {
|
|
return fmt.Errorf("can't decode stats.loadAsyncGraph#621d5fa0 to nil")
|
|
}
|
|
{
|
|
if err := l.Flags.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: field flags: %w", err)
|
|
}
|
|
}
|
|
{
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: field token: %w", err)
|
|
}
|
|
l.Token = value
|
|
}
|
|
if l.Flags.Has(0) {
|
|
value, err := b.Long()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: field x: %w", err)
|
|
}
|
|
l.X = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetToken returns value of Token field.
|
|
func (l *StatsLoadAsyncGraphRequest) GetToken() (value string) {
|
|
if l == nil {
|
|
return
|
|
}
|
|
return l.Token
|
|
}
|
|
|
|
// SetX sets value of X conditional field.
|
|
func (l *StatsLoadAsyncGraphRequest) SetX(value int64) {
|
|
l.Flags.Set(0)
|
|
l.X = value
|
|
}
|
|
|
|
// GetX returns value of X conditional field and
|
|
// boolean which is true if field was set.
|
|
func (l *StatsLoadAsyncGraphRequest) GetX() (value int64, ok bool) {
|
|
if l == nil {
|
|
return
|
|
}
|
|
if !l.Flags.Has(0) {
|
|
return value, false
|
|
}
|
|
return l.X, true
|
|
}
|
|
|
|
// StatsLoadAsyncGraph invokes method stats.loadAsyncGraph#621d5fa0 returning error if any.
|
|
// Load channel statistics graph¹ asynchronously
|
|
//
|
|
// Links:
|
|
// 1. https://core.telegram.org/api/stats
|
|
//
|
|
// Possible errors:
|
|
//
|
|
// 400 GRAPH_EXPIRED_RELOAD: This graph has expired, please obtain a new graph token.
|
|
// 400 GRAPH_INVALID_RELOAD: Invalid graph token provided, please reload the stats and provide the updated token.
|
|
// 400 GRAPH_OUTDATED_RELOAD: The graph is outdated, please get a new async token using stats.getBroadcastStats.
|
|
//
|
|
// See https://core.telegram.org/method/stats.loadAsyncGraph for reference.
|
|
func (c *Client) StatsLoadAsyncGraph(ctx context.Context, request *StatsLoadAsyncGraphRequest) (StatsGraphClass, error) {
|
|
var result StatsGraphBox
|
|
|
|
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
|
return nil, err
|
|
}
|
|
return result.StatsGraph, nil
|
|
}
|