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
213 lines
5.3 KiB
Go
Generated
213 lines
5.3 KiB
Go
Generated
// 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{}
|
|
)
|
|
|
|
// LangpackGetLangPackRequest represents TL type `langpack.getLangPack#f2f2330a`.
|
|
// Get localization pack strings
|
|
//
|
|
// See https://core.telegram.org/method/langpack.getLangPack for reference.
|
|
type LangpackGetLangPackRequest struct {
|
|
// Platform identifier (i.e. android, tdesktop, etc).
|
|
LangPack string
|
|
// Either an ISO 639-1 language code or a language pack name obtained from a language
|
|
// pack link¹.
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/api/links#language-pack-links
|
|
LangCode string
|
|
}
|
|
|
|
// LangpackGetLangPackRequestTypeID is TL type id of LangpackGetLangPackRequest.
|
|
const LangpackGetLangPackRequestTypeID = 0xf2f2330a
|
|
|
|
// Ensuring interfaces in compile-time for LangpackGetLangPackRequest.
|
|
var (
|
|
_ bin.Encoder = &LangpackGetLangPackRequest{}
|
|
_ bin.Decoder = &LangpackGetLangPackRequest{}
|
|
_ bin.BareEncoder = &LangpackGetLangPackRequest{}
|
|
_ bin.BareDecoder = &LangpackGetLangPackRequest{}
|
|
)
|
|
|
|
func (g *LangpackGetLangPackRequest) Zero() bool {
|
|
if g == nil {
|
|
return true
|
|
}
|
|
if !(g.LangPack == "") {
|
|
return false
|
|
}
|
|
if !(g.LangCode == "") {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (g *LangpackGetLangPackRequest) String() string {
|
|
if g == nil {
|
|
return "LangpackGetLangPackRequest(nil)"
|
|
}
|
|
type Alias LangpackGetLangPackRequest
|
|
return fmt.Sprintf("LangpackGetLangPackRequest%+v", Alias(*g))
|
|
}
|
|
|
|
// FillFrom fills LangpackGetLangPackRequest from given interface.
|
|
func (g *LangpackGetLangPackRequest) FillFrom(from interface {
|
|
GetLangPack() (value string)
|
|
GetLangCode() (value string)
|
|
}) {
|
|
g.LangPack = from.GetLangPack()
|
|
g.LangCode = from.GetLangCode()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*LangpackGetLangPackRequest) TypeID() uint32 {
|
|
return LangpackGetLangPackRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*LangpackGetLangPackRequest) TypeName() string {
|
|
return "langpack.getLangPack"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (g *LangpackGetLangPackRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "langpack.getLangPack",
|
|
ID: LangpackGetLangPackRequestTypeID,
|
|
}
|
|
if g == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "LangPack",
|
|
SchemaName: "lang_pack",
|
|
},
|
|
{
|
|
Name: "LangCode",
|
|
SchemaName: "lang_code",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (g *LangpackGetLangPackRequest) Encode(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't encode langpack.getLangPack#f2f2330a as nil")
|
|
}
|
|
b.PutID(LangpackGetLangPackRequestTypeID)
|
|
return g.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (g *LangpackGetLangPackRequest) EncodeBare(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't encode langpack.getLangPack#f2f2330a as nil")
|
|
}
|
|
b.PutString(g.LangPack)
|
|
b.PutString(g.LangCode)
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (g *LangpackGetLangPackRequest) Decode(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't decode langpack.getLangPack#f2f2330a to nil")
|
|
}
|
|
if err := b.ConsumeID(LangpackGetLangPackRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode langpack.getLangPack#f2f2330a: %w", err)
|
|
}
|
|
return g.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (g *LangpackGetLangPackRequest) DecodeBare(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't decode langpack.getLangPack#f2f2330a to nil")
|
|
}
|
|
{
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode langpack.getLangPack#f2f2330a: field lang_pack: %w", err)
|
|
}
|
|
g.LangPack = value
|
|
}
|
|
{
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode langpack.getLangPack#f2f2330a: field lang_code: %w", err)
|
|
}
|
|
g.LangCode = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetLangPack returns value of LangPack field.
|
|
func (g *LangpackGetLangPackRequest) GetLangPack() (value string) {
|
|
if g == nil {
|
|
return
|
|
}
|
|
return g.LangPack
|
|
}
|
|
|
|
// GetLangCode returns value of LangCode field.
|
|
func (g *LangpackGetLangPackRequest) GetLangCode() (value string) {
|
|
if g == nil {
|
|
return
|
|
}
|
|
return g.LangCode
|
|
}
|
|
|
|
// LangpackGetLangPack invokes method langpack.getLangPack#f2f2330a returning error if any.
|
|
// Get localization pack strings
|
|
//
|
|
// Possible errors:
|
|
//
|
|
// 400 LANGUAGE_INVALID: The specified lang_code is invalid.
|
|
// 400 LANG_CODE_NOT_SUPPORTED: The specified language code is not supported.
|
|
// 400 LANG_PACK_INVALID: The provided language pack is invalid.
|
|
//
|
|
// See https://core.telegram.org/method/langpack.getLangPack for reference.
|
|
func (c *Client) LangpackGetLangPack(ctx context.Context, request *LangpackGetLangPackRequest) (*LangPackDifference, error) {
|
|
var result LangPackDifference
|
|
|
|
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
|
return nil, err
|
|
}
|
|
return &result, nil
|
|
}
|