package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
var (
_ = bin .Buffer {}
_ = context .Background ()
_ = fmt .Stringer (nil )
_ = strings .Builder {}
_ = errors .Is
_ = multierr .AppendInto
_ = sort .Ints
_ = tdp .Format
_ = tgerr .Error {}
_ = tdjson .Encoder {}
)
type CDNConfig struct {
PublicKeys []CDNPublicKey
}
const CDNConfigTypeID = 0x5725e40a
var (
_ bin .Encoder = &CDNConfig {}
_ bin .Decoder = &CDNConfig {}
_ bin .BareEncoder = &CDNConfig {}
_ bin .BareDecoder = &CDNConfig {}
)
func (c *CDNConfig ) Zero () bool {
if c == nil {
return true
}
if !(c .PublicKeys == nil ) {
return false
}
return true
}
func (c *CDNConfig ) String () string {
if c == nil {
return "CDNConfig(nil)"
}
type Alias CDNConfig
return fmt .Sprintf ("CDNConfig%+v" , Alias (*c ))
}
func (c *CDNConfig ) FillFrom (from interface {
GetPublicKeys () (value []CDNPublicKey )
}) {
c .PublicKeys = from .GetPublicKeys ()
}
func (*CDNConfig ) TypeID () uint32 {
return CDNConfigTypeID
}
func (*CDNConfig ) TypeName () string {
return "cdnConfig"
}
func (c *CDNConfig ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "cdnConfig" ,
ID : CDNConfigTypeID ,
}
if c == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "PublicKeys" ,
SchemaName : "public_keys" ,
},
}
return typ
}
func (c *CDNConfig ) Encode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode cdnConfig#5725e40a as nil" )
}
b .PutID (CDNConfigTypeID )
return c .EncodeBare (b )
}
func (c *CDNConfig ) EncodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode cdnConfig#5725e40a as nil" )
}
b .PutVectorHeader (len (c .PublicKeys ))
for idx , v := range c .PublicKeys {
if err := v .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode cdnConfig#5725e40a: field public_keys element with index %d: %w" , idx , err )
}
}
return nil
}
func (c *CDNConfig ) Decode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode cdnConfig#5725e40a to nil" )
}
if err := b .ConsumeID (CDNConfigTypeID ); err != nil {
return fmt .Errorf ("unable to decode cdnConfig#5725e40a: %w" , err )
}
return c .DecodeBare (b )
}
func (c *CDNConfig ) DecodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode cdnConfig#5725e40a to nil" )
}
{
headerLen , err := b .VectorHeader ()
if err != nil {
return fmt .Errorf ("unable to decode cdnConfig#5725e40a: field public_keys: %w" , err )
}
if headerLen > 0 {
c .PublicKeys = make ([]CDNPublicKey , 0 , headerLen %bin .PreallocateLimit )
}
for idx := 0 ; idx < headerLen ; idx ++ {
var value CDNPublicKey
if err := value .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode cdnConfig#5725e40a: field public_keys: %w" , err )
}
c .PublicKeys = append (c .PublicKeys , value )
}
}
return nil
}
func (c *CDNConfig ) GetPublicKeys () (value []CDNPublicKey ) {
if c == nil {
return
}
return c .PublicKeys
}
The pages are generated with Golds v0.6.7 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds .