Files
mautrix-telegram/pkg/gotd/tg/tl_contacts_blocked_gen.go
T
2025-06-27 20:03:37 -07:00

660 lines
17 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{}
)
// ContactsBlocked represents TL type `contacts.blocked#ade1591`.
// Full list of blocked users.
//
// See https://core.telegram.org/constructor/contacts.blocked for reference.
type ContactsBlocked struct {
// List of blocked users
Blocked []PeerBlocked
// Blocked chats
Chats []ChatClass
// List of users
Users []UserClass
}
// ContactsBlockedTypeID is TL type id of ContactsBlocked.
const ContactsBlockedTypeID = 0xade1591
// construct implements constructor of ContactsBlockedClass.
func (b ContactsBlocked) construct() ContactsBlockedClass { return &b }
// Ensuring interfaces in compile-time for ContactsBlocked.
var (
_ bin.Encoder = &ContactsBlocked{}
_ bin.Decoder = &ContactsBlocked{}
_ bin.BareEncoder = &ContactsBlocked{}
_ bin.BareDecoder = &ContactsBlocked{}
_ ContactsBlockedClass = &ContactsBlocked{}
)
func (b *ContactsBlocked) Zero() bool {
if b == nil {
return true
}
if !(b.Blocked == nil) {
return false
}
if !(b.Chats == nil) {
return false
}
if !(b.Users == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (b *ContactsBlocked) String() string {
if b == nil {
return "ContactsBlocked(nil)"
}
type Alias ContactsBlocked
return fmt.Sprintf("ContactsBlocked%+v", Alias(*b))
}
// FillFrom fills ContactsBlocked from given interface.
func (b *ContactsBlocked) FillFrom(from interface {
GetBlocked() (value []PeerBlocked)
GetChats() (value []ChatClass)
GetUsers() (value []UserClass)
}) {
b.Blocked = from.GetBlocked()
b.Chats = from.GetChats()
b.Users = from.GetUsers()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*ContactsBlocked) TypeID() uint32 {
return ContactsBlockedTypeID
}
// TypeName returns name of type in TL schema.
func (*ContactsBlocked) TypeName() string {
return "contacts.blocked"
}
// TypeInfo returns info about TL type.
func (b *ContactsBlocked) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "contacts.blocked",
ID: ContactsBlockedTypeID,
}
if b == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Blocked",
SchemaName: "blocked",
},
{
Name: "Chats",
SchemaName: "chats",
},
{
Name: "Users",
SchemaName: "users",
},
}
return typ
}
// Encode implements bin.Encoder.
func (b *ContactsBlocked) Encode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't encode contacts.blocked#ade1591 as nil")
}
buf.PutID(ContactsBlockedTypeID)
return b.EncodeBare(buf)
}
// EncodeBare implements bin.BareEncoder.
func (b *ContactsBlocked) EncodeBare(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't encode contacts.blocked#ade1591 as nil")
}
buf.PutVectorHeader(len(b.Blocked))
for idx, v := range b.Blocked {
if err := v.Encode(buf); err != nil {
return fmt.Errorf("unable to encode contacts.blocked#ade1591: field blocked element with index %d: %w", idx, err)
}
}
buf.PutVectorHeader(len(b.Chats))
for idx, v := range b.Chats {
if v == nil {
return fmt.Errorf("unable to encode contacts.blocked#ade1591: field chats element with index %d is nil", idx)
}
if err := v.Encode(buf); err != nil {
return fmt.Errorf("unable to encode contacts.blocked#ade1591: field chats element with index %d: %w", idx, err)
}
}
buf.PutVectorHeader(len(b.Users))
for idx, v := range b.Users {
if v == nil {
return fmt.Errorf("unable to encode contacts.blocked#ade1591: field users element with index %d is nil", idx)
}
if err := v.Encode(buf); err != nil {
return fmt.Errorf("unable to encode contacts.blocked#ade1591: field users element with index %d: %w", idx, err)
}
}
return nil
}
// Decode implements bin.Decoder.
func (b *ContactsBlocked) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't decode contacts.blocked#ade1591 to nil")
}
if err := buf.ConsumeID(ContactsBlockedTypeID); err != nil {
return fmt.Errorf("unable to decode contacts.blocked#ade1591: %w", err)
}
return b.DecodeBare(buf)
}
// DecodeBare implements bin.BareDecoder.
func (b *ContactsBlocked) DecodeBare(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't decode contacts.blocked#ade1591 to nil")
}
{
headerLen, err := buf.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode contacts.blocked#ade1591: field blocked: %w", err)
}
if headerLen > 0 {
b.Blocked = make([]PeerBlocked, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
var value PeerBlocked
if err := value.Decode(buf); err != nil {
return fmt.Errorf("unable to decode contacts.blocked#ade1591: field blocked: %w", err)
}
b.Blocked = append(b.Blocked, value)
}
}
{
headerLen, err := buf.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode contacts.blocked#ade1591: field chats: %w", err)
}
if headerLen > 0 {
b.Chats = make([]ChatClass, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
value, err := DecodeChat(buf)
if err != nil {
return fmt.Errorf("unable to decode contacts.blocked#ade1591: field chats: %w", err)
}
b.Chats = append(b.Chats, value)
}
}
{
headerLen, err := buf.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode contacts.blocked#ade1591: field users: %w", err)
}
if headerLen > 0 {
b.Users = make([]UserClass, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
value, err := DecodeUser(buf)
if err != nil {
return fmt.Errorf("unable to decode contacts.blocked#ade1591: field users: %w", err)
}
b.Users = append(b.Users, value)
}
}
return nil
}
// GetBlocked returns value of Blocked field.
func (b *ContactsBlocked) GetBlocked() (value []PeerBlocked) {
if b == nil {
return
}
return b.Blocked
}
// GetChats returns value of Chats field.
func (b *ContactsBlocked) GetChats() (value []ChatClass) {
if b == nil {
return
}
return b.Chats
}
// GetUsers returns value of Users field.
func (b *ContactsBlocked) GetUsers() (value []UserClass) {
if b == nil {
return
}
return b.Users
}
// MapChats returns field Chats wrapped in ChatClassArray helper.
func (b *ContactsBlocked) MapChats() (value ChatClassArray) {
return ChatClassArray(b.Chats)
}
// MapUsers returns field Users wrapped in UserClassArray helper.
func (b *ContactsBlocked) MapUsers() (value UserClassArray) {
return UserClassArray(b.Users)
}
// ContactsBlockedSlice represents TL type `contacts.blockedSlice#e1664194`.
// Incomplete list of blocked users.
//
// See https://core.telegram.org/constructor/contacts.blockedSlice for reference.
type ContactsBlockedSlice struct {
// Total number of elements in the list
Count int
// List of blocked users
Blocked []PeerBlocked
// Blocked chats
Chats []ChatClass
// List of users
Users []UserClass
}
// ContactsBlockedSliceTypeID is TL type id of ContactsBlockedSlice.
const ContactsBlockedSliceTypeID = 0xe1664194
// construct implements constructor of ContactsBlockedClass.
func (b ContactsBlockedSlice) construct() ContactsBlockedClass { return &b }
// Ensuring interfaces in compile-time for ContactsBlockedSlice.
var (
_ bin.Encoder = &ContactsBlockedSlice{}
_ bin.Decoder = &ContactsBlockedSlice{}
_ bin.BareEncoder = &ContactsBlockedSlice{}
_ bin.BareDecoder = &ContactsBlockedSlice{}
_ ContactsBlockedClass = &ContactsBlockedSlice{}
)
func (b *ContactsBlockedSlice) Zero() bool {
if b == nil {
return true
}
if !(b.Count == 0) {
return false
}
if !(b.Blocked == nil) {
return false
}
if !(b.Chats == nil) {
return false
}
if !(b.Users == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (b *ContactsBlockedSlice) String() string {
if b == nil {
return "ContactsBlockedSlice(nil)"
}
type Alias ContactsBlockedSlice
return fmt.Sprintf("ContactsBlockedSlice%+v", Alias(*b))
}
// FillFrom fills ContactsBlockedSlice from given interface.
func (b *ContactsBlockedSlice) FillFrom(from interface {
GetCount() (value int)
GetBlocked() (value []PeerBlocked)
GetChats() (value []ChatClass)
GetUsers() (value []UserClass)
}) {
b.Count = from.GetCount()
b.Blocked = from.GetBlocked()
b.Chats = from.GetChats()
b.Users = from.GetUsers()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*ContactsBlockedSlice) TypeID() uint32 {
return ContactsBlockedSliceTypeID
}
// TypeName returns name of type in TL schema.
func (*ContactsBlockedSlice) TypeName() string {
return "contacts.blockedSlice"
}
// TypeInfo returns info about TL type.
func (b *ContactsBlockedSlice) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "contacts.blockedSlice",
ID: ContactsBlockedSliceTypeID,
}
if b == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Count",
SchemaName: "count",
},
{
Name: "Blocked",
SchemaName: "blocked",
},
{
Name: "Chats",
SchemaName: "chats",
},
{
Name: "Users",
SchemaName: "users",
},
}
return typ
}
// Encode implements bin.Encoder.
func (b *ContactsBlockedSlice) Encode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't encode contacts.blockedSlice#e1664194 as nil")
}
buf.PutID(ContactsBlockedSliceTypeID)
return b.EncodeBare(buf)
}
// EncodeBare implements bin.BareEncoder.
func (b *ContactsBlockedSlice) EncodeBare(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't encode contacts.blockedSlice#e1664194 as nil")
}
buf.PutInt(b.Count)
buf.PutVectorHeader(len(b.Blocked))
for idx, v := range b.Blocked {
if err := v.Encode(buf); err != nil {
return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field blocked element with index %d: %w", idx, err)
}
}
buf.PutVectorHeader(len(b.Chats))
for idx, v := range b.Chats {
if v == nil {
return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field chats element with index %d is nil", idx)
}
if err := v.Encode(buf); err != nil {
return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field chats element with index %d: %w", idx, err)
}
}
buf.PutVectorHeader(len(b.Users))
for idx, v := range b.Users {
if v == nil {
return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field users element with index %d is nil", idx)
}
if err := v.Encode(buf); err != nil {
return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field users element with index %d: %w", idx, err)
}
}
return nil
}
// Decode implements bin.Decoder.
func (b *ContactsBlockedSlice) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't decode contacts.blockedSlice#e1664194 to nil")
}
if err := buf.ConsumeID(ContactsBlockedSliceTypeID); err != nil {
return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: %w", err)
}
return b.DecodeBare(buf)
}
// DecodeBare implements bin.BareDecoder.
func (b *ContactsBlockedSlice) DecodeBare(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't decode contacts.blockedSlice#e1664194 to nil")
}
{
value, err := buf.Int()
if err != nil {
return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field count: %w", err)
}
b.Count = value
}
{
headerLen, err := buf.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field blocked: %w", err)
}
if headerLen > 0 {
b.Blocked = make([]PeerBlocked, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
var value PeerBlocked
if err := value.Decode(buf); err != nil {
return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field blocked: %w", err)
}
b.Blocked = append(b.Blocked, value)
}
}
{
headerLen, err := buf.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field chats: %w", err)
}
if headerLen > 0 {
b.Chats = make([]ChatClass, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
value, err := DecodeChat(buf)
if err != nil {
return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field chats: %w", err)
}
b.Chats = append(b.Chats, value)
}
}
{
headerLen, err := buf.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field users: %w", err)
}
if headerLen > 0 {
b.Users = make([]UserClass, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
value, err := DecodeUser(buf)
if err != nil {
return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field users: %w", err)
}
b.Users = append(b.Users, value)
}
}
return nil
}
// GetCount returns value of Count field.
func (b *ContactsBlockedSlice) GetCount() (value int) {
if b == nil {
return
}
return b.Count
}
// GetBlocked returns value of Blocked field.
func (b *ContactsBlockedSlice) GetBlocked() (value []PeerBlocked) {
if b == nil {
return
}
return b.Blocked
}
// GetChats returns value of Chats field.
func (b *ContactsBlockedSlice) GetChats() (value []ChatClass) {
if b == nil {
return
}
return b.Chats
}
// GetUsers returns value of Users field.
func (b *ContactsBlockedSlice) GetUsers() (value []UserClass) {
if b == nil {
return
}
return b.Users
}
// MapChats returns field Chats wrapped in ChatClassArray helper.
func (b *ContactsBlockedSlice) MapChats() (value ChatClassArray) {
return ChatClassArray(b.Chats)
}
// MapUsers returns field Users wrapped in UserClassArray helper.
func (b *ContactsBlockedSlice) MapUsers() (value UserClassArray) {
return UserClassArray(b.Users)
}
// ContactsBlockedClassName is schema name of ContactsBlockedClass.
const ContactsBlockedClassName = "contacts.Blocked"
// ContactsBlockedClass represents contacts.Blocked generic type.
//
// See https://core.telegram.org/type/contacts.Blocked for reference.
//
// Example:
//
// g, err := tg.DecodeContactsBlocked(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *tg.ContactsBlocked: // contacts.blocked#ade1591
// case *tg.ContactsBlockedSlice: // contacts.blockedSlice#e1664194
// default: panic(v)
// }
type ContactsBlockedClass interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() ContactsBlockedClass
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
TypeID() uint32
// TypeName returns name of type in TL schema.
TypeName() string
// String implements fmt.Stringer.
String() string
// Zero returns true if current object has a zero value.
Zero() bool
// List of blocked users
GetBlocked() (value []PeerBlocked)
// Blocked chats
GetChats() (value []ChatClass)
// Blocked chats
MapChats() (value ChatClassArray)
// List of users
GetUsers() (value []UserClass)
// List of users
MapUsers() (value UserClassArray)
}
// DecodeContactsBlocked implements binary de-serialization for ContactsBlockedClass.
func DecodeContactsBlocked(buf *bin.Buffer) (ContactsBlockedClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case ContactsBlockedTypeID:
// Decoding contacts.blocked#ade1591.
v := ContactsBlocked{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode ContactsBlockedClass: %w", err)
}
return &v, nil
case ContactsBlockedSliceTypeID:
// Decoding contacts.blockedSlice#e1664194.
v := ContactsBlockedSlice{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode ContactsBlockedClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode ContactsBlockedClass: %w", bin.NewUnexpectedID(id))
}
}
// ContactsBlocked boxes the ContactsBlockedClass providing a helper.
type ContactsBlockedBox struct {
Blocked ContactsBlockedClass
}
// Decode implements bin.Decoder for ContactsBlockedBox.
func (b *ContactsBlockedBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode ContactsBlockedBox to nil")
}
v, err := DecodeContactsBlocked(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.Blocked = v
return nil
}
// Encode implements bin.Encode for ContactsBlockedBox.
func (b *ContactsBlockedBox) Encode(buf *bin.Buffer) error {
if b == nil || b.Blocked == nil {
return fmt.Errorf("unable to encode ContactsBlockedClass as nil")
}
return b.Blocked.Encode(buf)
}