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,194 @@
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// HelpSaveAppLogRequest represents TL type `help.saveAppLog#6f02f748`.
|
||||
// Saves logs of application on the server.
|
||||
//
|
||||
// See https://core.telegram.org/method/help.saveAppLog for reference.
|
||||
type HelpSaveAppLogRequest struct {
|
||||
// List of input events
|
||||
Events []InputAppEvent
|
||||
}
|
||||
|
||||
// HelpSaveAppLogRequestTypeID is TL type id of HelpSaveAppLogRequest.
|
||||
const HelpSaveAppLogRequestTypeID = 0x6f02f748
|
||||
|
||||
// Ensuring interfaces in compile-time for HelpSaveAppLogRequest.
|
||||
var (
|
||||
_ bin.Encoder = &HelpSaveAppLogRequest{}
|
||||
_ bin.Decoder = &HelpSaveAppLogRequest{}
|
||||
_ bin.BareEncoder = &HelpSaveAppLogRequest{}
|
||||
_ bin.BareDecoder = &HelpSaveAppLogRequest{}
|
||||
)
|
||||
|
||||
func (s *HelpSaveAppLogRequest) Zero() bool {
|
||||
if s == nil {
|
||||
return true
|
||||
}
|
||||
if !(s.Events == nil) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (s *HelpSaveAppLogRequest) String() string {
|
||||
if s == nil {
|
||||
return "HelpSaveAppLogRequest(nil)"
|
||||
}
|
||||
type Alias HelpSaveAppLogRequest
|
||||
return fmt.Sprintf("HelpSaveAppLogRequest%+v", Alias(*s))
|
||||
}
|
||||
|
||||
// FillFrom fills HelpSaveAppLogRequest from given interface.
|
||||
func (s *HelpSaveAppLogRequest) FillFrom(from interface {
|
||||
GetEvents() (value []InputAppEvent)
|
||||
}) {
|
||||
s.Events = from.GetEvents()
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*HelpSaveAppLogRequest) TypeID() uint32 {
|
||||
return HelpSaveAppLogRequestTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*HelpSaveAppLogRequest) TypeName() string {
|
||||
return "help.saveAppLog"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (s *HelpSaveAppLogRequest) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "help.saveAppLog",
|
||||
ID: HelpSaveAppLogRequestTypeID,
|
||||
}
|
||||
if s == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Events",
|
||||
SchemaName: "events",
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (s *HelpSaveAppLogRequest) Encode(b *bin.Buffer) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't encode help.saveAppLog#6f02f748 as nil")
|
||||
}
|
||||
b.PutID(HelpSaveAppLogRequestTypeID)
|
||||
return s.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (s *HelpSaveAppLogRequest) EncodeBare(b *bin.Buffer) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't encode help.saveAppLog#6f02f748 as nil")
|
||||
}
|
||||
b.PutVectorHeader(len(s.Events))
|
||||
for idx, v := range s.Events {
|
||||
if err := v.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode help.saveAppLog#6f02f748: field events element with index %d: %w", idx, err)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (s *HelpSaveAppLogRequest) Decode(b *bin.Buffer) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't decode help.saveAppLog#6f02f748 to nil")
|
||||
}
|
||||
if err := b.ConsumeID(HelpSaveAppLogRequestTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode help.saveAppLog#6f02f748: %w", err)
|
||||
}
|
||||
return s.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (s *HelpSaveAppLogRequest) DecodeBare(b *bin.Buffer) error {
|
||||
if s == nil {
|
||||
return fmt.Errorf("can't decode help.saveAppLog#6f02f748 to nil")
|
||||
}
|
||||
{
|
||||
headerLen, err := b.VectorHeader()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode help.saveAppLog#6f02f748: field events: %w", err)
|
||||
}
|
||||
|
||||
if headerLen > 0 {
|
||||
s.Events = make([]InputAppEvent, 0, headerLen%bin.PreallocateLimit)
|
||||
}
|
||||
for idx := 0; idx < headerLen; idx++ {
|
||||
var value InputAppEvent
|
||||
if err := value.Decode(b); err != nil {
|
||||
return fmt.Errorf("unable to decode help.saveAppLog#6f02f748: field events: %w", err)
|
||||
}
|
||||
s.Events = append(s.Events, value)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// GetEvents returns value of Events field.
|
||||
func (s *HelpSaveAppLogRequest) GetEvents() (value []InputAppEvent) {
|
||||
if s == nil {
|
||||
return
|
||||
}
|
||||
return s.Events
|
||||
}
|
||||
|
||||
// HelpSaveAppLog invokes method help.saveAppLog#6f02f748 returning error if any.
|
||||
// Saves logs of application on the server.
|
||||
//
|
||||
// See https://core.telegram.org/method/help.saveAppLog for reference.
|
||||
func (c *Client) HelpSaveAppLog(ctx context.Context, events []InputAppEvent) (bool, error) {
|
||||
var result BoolBox
|
||||
|
||||
request := &HelpSaveAppLogRequest{
|
||||
Events: events,
|
||||
}
|
||||
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
||||
return false, err
|
||||
}
|
||||
_, ok := result.Bool.(*BoolTrue)
|
||||
return ok, nil
|
||||
}
|
||||
Reference in New Issue
Block a user