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,267 @@
|
||||
//go:build !no_gotd_slices
|
||||
// +build !no_gotd_slices
|
||||
|
||||
// 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{}
|
||||
)
|
||||
|
||||
// AttachMenuBotsClassArray is adapter for slice of AttachMenuBotsClass.
|
||||
type AttachMenuBotsClassArray []AttachMenuBotsClass
|
||||
|
||||
// Sort sorts slice of AttachMenuBotsClass.
|
||||
func (s AttachMenuBotsClassArray) Sort(less func(a, b AttachMenuBotsClass) bool) AttachMenuBotsClassArray {
|
||||
sort.Slice(s, func(i, j int) bool {
|
||||
return less(s[i], s[j])
|
||||
})
|
||||
return s
|
||||
}
|
||||
|
||||
// SortStable sorts slice of AttachMenuBotsClass.
|
||||
func (s AttachMenuBotsClassArray) SortStable(less func(a, b AttachMenuBotsClass) bool) AttachMenuBotsClassArray {
|
||||
sort.SliceStable(s, func(i, j int) bool {
|
||||
return less(s[i], s[j])
|
||||
})
|
||||
return s
|
||||
}
|
||||
|
||||
// Retain filters in-place slice of AttachMenuBotsClass.
|
||||
func (s AttachMenuBotsClassArray) Retain(keep func(x AttachMenuBotsClass) bool) AttachMenuBotsClassArray {
|
||||
n := 0
|
||||
for _, x := range s {
|
||||
if keep(x) {
|
||||
s[n] = x
|
||||
n++
|
||||
}
|
||||
}
|
||||
s = s[:n]
|
||||
|
||||
return s
|
||||
}
|
||||
|
||||
// First returns first element of slice (if exists).
|
||||
func (s AttachMenuBotsClassArray) First() (v AttachMenuBotsClass, ok bool) {
|
||||
if len(s) < 1 {
|
||||
return
|
||||
}
|
||||
return s[0], true
|
||||
}
|
||||
|
||||
// Last returns last element of slice (if exists).
|
||||
func (s AttachMenuBotsClassArray) Last() (v AttachMenuBotsClass, ok bool) {
|
||||
if len(s) < 1 {
|
||||
return
|
||||
}
|
||||
return s[len(s)-1], true
|
||||
}
|
||||
|
||||
// PopFirst returns first element of slice (if exists) and deletes it.
|
||||
func (s *AttachMenuBotsClassArray) PopFirst() (v AttachMenuBotsClass, ok bool) {
|
||||
if s == nil || len(*s) < 1 {
|
||||
return
|
||||
}
|
||||
|
||||
a := *s
|
||||
v = a[0]
|
||||
|
||||
// Delete by index from SliceTricks.
|
||||
copy(a[0:], a[1:])
|
||||
var zero AttachMenuBotsClass
|
||||
a[len(a)-1] = zero
|
||||
a = a[:len(a)-1]
|
||||
*s = a
|
||||
|
||||
return v, true
|
||||
}
|
||||
|
||||
// Pop returns last element of slice (if exists) and deletes it.
|
||||
func (s *AttachMenuBotsClassArray) Pop() (v AttachMenuBotsClass, ok bool) {
|
||||
if s == nil || len(*s) < 1 {
|
||||
return
|
||||
}
|
||||
|
||||
a := *s
|
||||
v = a[len(a)-1]
|
||||
a = a[:len(a)-1]
|
||||
*s = a
|
||||
|
||||
return v, true
|
||||
}
|
||||
|
||||
// AsAttachMenuBots returns copy with only AttachMenuBots constructors.
|
||||
func (s AttachMenuBotsClassArray) AsAttachMenuBots() (to AttachMenuBotsArray) {
|
||||
for _, elem := range s {
|
||||
value, ok := elem.(*AttachMenuBots)
|
||||
if !ok {
|
||||
continue
|
||||
}
|
||||
to = append(to, *value)
|
||||
}
|
||||
|
||||
return to
|
||||
}
|
||||
|
||||
// AppendOnlyModified appends only Modified constructors to
|
||||
// given slice.
|
||||
func (s AttachMenuBotsClassArray) AppendOnlyModified(to []*AttachMenuBots) []*AttachMenuBots {
|
||||
for _, elem := range s {
|
||||
value, ok := elem.AsModified()
|
||||
if !ok {
|
||||
continue
|
||||
}
|
||||
to = append(to, value)
|
||||
}
|
||||
|
||||
return to
|
||||
}
|
||||
|
||||
// AsModified returns copy with only Modified constructors.
|
||||
func (s AttachMenuBotsClassArray) AsModified() (to []*AttachMenuBots) {
|
||||
return s.AppendOnlyModified(to)
|
||||
}
|
||||
|
||||
// FirstAsModified returns first element of slice (if exists).
|
||||
func (s AttachMenuBotsClassArray) FirstAsModified() (v *AttachMenuBots, ok bool) {
|
||||
value, ok := s.First()
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
return value.AsModified()
|
||||
}
|
||||
|
||||
// LastAsModified returns last element of slice (if exists).
|
||||
func (s AttachMenuBotsClassArray) LastAsModified() (v *AttachMenuBots, ok bool) {
|
||||
value, ok := s.Last()
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
return value.AsModified()
|
||||
}
|
||||
|
||||
// PopFirstAsModified returns element of slice (if exists).
|
||||
func (s *AttachMenuBotsClassArray) PopFirstAsModified() (v *AttachMenuBots, ok bool) {
|
||||
value, ok := s.PopFirst()
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
return value.AsModified()
|
||||
}
|
||||
|
||||
// PopAsModified returns element of slice (if exists).
|
||||
func (s *AttachMenuBotsClassArray) PopAsModified() (v *AttachMenuBots, ok bool) {
|
||||
value, ok := s.Pop()
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
return value.AsModified()
|
||||
}
|
||||
|
||||
// AttachMenuBotsArray is adapter for slice of AttachMenuBots.
|
||||
type AttachMenuBotsArray []AttachMenuBots
|
||||
|
||||
// Sort sorts slice of AttachMenuBots.
|
||||
func (s AttachMenuBotsArray) Sort(less func(a, b AttachMenuBots) bool) AttachMenuBotsArray {
|
||||
sort.Slice(s, func(i, j int) bool {
|
||||
return less(s[i], s[j])
|
||||
})
|
||||
return s
|
||||
}
|
||||
|
||||
// SortStable sorts slice of AttachMenuBots.
|
||||
func (s AttachMenuBotsArray) SortStable(less func(a, b AttachMenuBots) bool) AttachMenuBotsArray {
|
||||
sort.SliceStable(s, func(i, j int) bool {
|
||||
return less(s[i], s[j])
|
||||
})
|
||||
return s
|
||||
}
|
||||
|
||||
// Retain filters in-place slice of AttachMenuBots.
|
||||
func (s AttachMenuBotsArray) Retain(keep func(x AttachMenuBots) bool) AttachMenuBotsArray {
|
||||
n := 0
|
||||
for _, x := range s {
|
||||
if keep(x) {
|
||||
s[n] = x
|
||||
n++
|
||||
}
|
||||
}
|
||||
s = s[:n]
|
||||
|
||||
return s
|
||||
}
|
||||
|
||||
// First returns first element of slice (if exists).
|
||||
func (s AttachMenuBotsArray) First() (v AttachMenuBots, ok bool) {
|
||||
if len(s) < 1 {
|
||||
return
|
||||
}
|
||||
return s[0], true
|
||||
}
|
||||
|
||||
// Last returns last element of slice (if exists).
|
||||
func (s AttachMenuBotsArray) Last() (v AttachMenuBots, ok bool) {
|
||||
if len(s) < 1 {
|
||||
return
|
||||
}
|
||||
return s[len(s)-1], true
|
||||
}
|
||||
|
||||
// PopFirst returns first element of slice (if exists) and deletes it.
|
||||
func (s *AttachMenuBotsArray) PopFirst() (v AttachMenuBots, ok bool) {
|
||||
if s == nil || len(*s) < 1 {
|
||||
return
|
||||
}
|
||||
|
||||
a := *s
|
||||
v = a[0]
|
||||
|
||||
// Delete by index from SliceTricks.
|
||||
copy(a[0:], a[1:])
|
||||
var zero AttachMenuBots
|
||||
a[len(a)-1] = zero
|
||||
a = a[:len(a)-1]
|
||||
*s = a
|
||||
|
||||
return v, true
|
||||
}
|
||||
|
||||
// Pop returns last element of slice (if exists) and deletes it.
|
||||
func (s *AttachMenuBotsArray) Pop() (v AttachMenuBots, ok bool) {
|
||||
if s == nil || len(*s) < 1 {
|
||||
return
|
||||
}
|
||||
|
||||
a := *s
|
||||
v = a[len(a)-1]
|
||||
a = a[:len(a)-1]
|
||||
*s = a
|
||||
|
||||
return v, true
|
||||
}
|
||||
Reference in New Issue
Block a user