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 ChannelsGetForumTopicsByIDRequest struct {
Channel InputChannelClass
Topics []int
}
const ChannelsGetForumTopicsByIDRequestTypeID = 0xb0831eb9
var (
_ bin .Encoder = &ChannelsGetForumTopicsByIDRequest {}
_ bin .Decoder = &ChannelsGetForumTopicsByIDRequest {}
_ bin .BareEncoder = &ChannelsGetForumTopicsByIDRequest {}
_ bin .BareDecoder = &ChannelsGetForumTopicsByIDRequest {}
)
func (g *ChannelsGetForumTopicsByIDRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Channel == nil ) {
return false
}
if !(g .Topics == nil ) {
return false
}
return true
}
func (g *ChannelsGetForumTopicsByIDRequest ) String () string {
if g == nil {
return "ChannelsGetForumTopicsByIDRequest(nil)"
}
type Alias ChannelsGetForumTopicsByIDRequest
return fmt .Sprintf ("ChannelsGetForumTopicsByIDRequest%+v" , Alias (*g ))
}
func (g *ChannelsGetForumTopicsByIDRequest ) FillFrom (from interface {
GetChannel () (value InputChannelClass )
GetTopics () (value []int )
}) {
g .Channel = from .GetChannel ()
g .Topics = from .GetTopics ()
}
func (*ChannelsGetForumTopicsByIDRequest ) TypeID () uint32 {
return ChannelsGetForumTopicsByIDRequestTypeID
}
func (*ChannelsGetForumTopicsByIDRequest ) TypeName () string {
return "channels.getForumTopicsByID"
}
func (g *ChannelsGetForumTopicsByIDRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "channels.getForumTopicsByID" ,
ID : ChannelsGetForumTopicsByIDRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Channel" ,
SchemaName : "channel" ,
},
{
Name : "Topics" ,
SchemaName : "topics" ,
},
}
return typ
}
func (g *ChannelsGetForumTopicsByIDRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode channels.getForumTopicsByID#b0831eb9 as nil" )
}
b .PutID (ChannelsGetForumTopicsByIDRequestTypeID )
return g .EncodeBare (b )
}
func (g *ChannelsGetForumTopicsByIDRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode channels.getForumTopicsByID#b0831eb9 as nil" )
}
if g .Channel == nil {
return fmt .Errorf ("unable to encode channels.getForumTopicsByID#b0831eb9: field channel is nil" )
}
if err := g .Channel .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode channels.getForumTopicsByID#b0831eb9: field channel: %w" , err )
}
b .PutVectorHeader (len (g .Topics ))
for _ , v := range g .Topics {
b .PutInt (v )
}
return nil
}
func (g *ChannelsGetForumTopicsByIDRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode channels.getForumTopicsByID#b0831eb9 to nil" )
}
if err := b .ConsumeID (ChannelsGetForumTopicsByIDRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode channels.getForumTopicsByID#b0831eb9: %w" , err )
}
return g .DecodeBare (b )
}
func (g *ChannelsGetForumTopicsByIDRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode channels.getForumTopicsByID#b0831eb9 to nil" )
}
{
value , err := DecodeInputChannel (b )
if err != nil {
return fmt .Errorf ("unable to decode channels.getForumTopicsByID#b0831eb9: field channel: %w" , err )
}
g .Channel = value
}
{
headerLen , err := b .VectorHeader ()
if err != nil {
return fmt .Errorf ("unable to decode channels.getForumTopicsByID#b0831eb9: field topics: %w" , err )
}
if headerLen > 0 {
g .Topics = make ([]int , 0 , headerLen %bin .PreallocateLimit )
}
for idx := 0 ; idx < headerLen ; idx ++ {
value , err := b .Int ()
if err != nil {
return fmt .Errorf ("unable to decode channels.getForumTopicsByID#b0831eb9: field topics: %w" , err )
}
g .Topics = append (g .Topics , value )
}
}
return nil
}
func (g *ChannelsGetForumTopicsByIDRequest ) GetChannel () (value InputChannelClass ) {
if g == nil {
return
}
return g .Channel
}
func (g *ChannelsGetForumTopicsByIDRequest ) GetTopics () (value []int ) {
if g == nil {
return
}
return g .Topics
}
func (g *ChannelsGetForumTopicsByIDRequest ) GetChannelAsNotEmpty () (NotEmptyInputChannel , bool ) {
return g .Channel .AsNotEmpty ()
}
func (c *Client ) ChannelsGetForumTopicsByID (ctx context .Context , request *ChannelsGetForumTopicsByIDRequest ) (*MessagesForumTopics , error ) {
var result MessagesForumTopics
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return &result , nil
}
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 .