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

238 lines
5.4 KiB
Go

// Code generated by gotdgen, DO NOT EDIT.
package tdapi
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{}
)
// SearchContactsRequest represents TL type `searchContacts#95073165`.
type SearchContactsRequest struct {
// Query to search for; may be empty to return all contacts
Query string
// The maximum number of users to be returned
Limit int32
}
// SearchContactsRequestTypeID is TL type id of SearchContactsRequest.
const SearchContactsRequestTypeID = 0x95073165
// Ensuring interfaces in compile-time for SearchContactsRequest.
var (
_ bin.Encoder = &SearchContactsRequest{}
_ bin.Decoder = &SearchContactsRequest{}
_ bin.BareEncoder = &SearchContactsRequest{}
_ bin.BareDecoder = &SearchContactsRequest{}
)
func (s *SearchContactsRequest) Zero() bool {
if s == nil {
return true
}
if !(s.Query == "") {
return false
}
if !(s.Limit == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (s *SearchContactsRequest) String() string {
if s == nil {
return "SearchContactsRequest(nil)"
}
type Alias SearchContactsRequest
return fmt.Sprintf("SearchContactsRequest%+v", Alias(*s))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*SearchContactsRequest) TypeID() uint32 {
return SearchContactsRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*SearchContactsRequest) TypeName() string {
return "searchContacts"
}
// TypeInfo returns info about TL type.
func (s *SearchContactsRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "searchContacts",
ID: SearchContactsRequestTypeID,
}
if s == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Query",
SchemaName: "query",
},
{
Name: "Limit",
SchemaName: "limit",
},
}
return typ
}
// Encode implements bin.Encoder.
func (s *SearchContactsRequest) Encode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode searchContacts#95073165 as nil")
}
b.PutID(SearchContactsRequestTypeID)
return s.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (s *SearchContactsRequest) EncodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode searchContacts#95073165 as nil")
}
b.PutString(s.Query)
b.PutInt32(s.Limit)
return nil
}
// Decode implements bin.Decoder.
func (s *SearchContactsRequest) Decode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode searchContacts#95073165 to nil")
}
if err := b.ConsumeID(SearchContactsRequestTypeID); err != nil {
return fmt.Errorf("unable to decode searchContacts#95073165: %w", err)
}
return s.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (s *SearchContactsRequest) DecodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode searchContacts#95073165 to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode searchContacts#95073165: field query: %w", err)
}
s.Query = value
}
{
value, err := b.Int32()
if err != nil {
return fmt.Errorf("unable to decode searchContacts#95073165: field limit: %w", err)
}
s.Limit = value
}
return nil
}
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
func (s *SearchContactsRequest) EncodeTDLibJSON(b tdjson.Encoder) error {
if s == nil {
return fmt.Errorf("can't encode searchContacts#95073165 as nil")
}
b.ObjStart()
b.PutID("searchContacts")
b.Comma()
b.FieldStart("query")
b.PutString(s.Query)
b.Comma()
b.FieldStart("limit")
b.PutInt32(s.Limit)
b.Comma()
b.StripComma()
b.ObjEnd()
return nil
}
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
func (s *SearchContactsRequest) DecodeTDLibJSON(b tdjson.Decoder) error {
if s == nil {
return fmt.Errorf("can't decode searchContacts#95073165 to nil")
}
return b.Obj(func(b tdjson.Decoder, key []byte) error {
switch string(key) {
case tdjson.TypeField:
if err := b.ConsumeID("searchContacts"); err != nil {
return fmt.Errorf("unable to decode searchContacts#95073165: %w", err)
}
case "query":
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode searchContacts#95073165: field query: %w", err)
}
s.Query = value
case "limit":
value, err := b.Int32()
if err != nil {
return fmt.Errorf("unable to decode searchContacts#95073165: field limit: %w", err)
}
s.Limit = value
default:
return b.Skip()
}
return nil
})
}
// GetQuery returns value of Query field.
func (s *SearchContactsRequest) GetQuery() (value string) {
if s == nil {
return
}
return s.Query
}
// GetLimit returns value of Limit field.
func (s *SearchContactsRequest) GetLimit() (value int32) {
if s == nil {
return
}
return s.Limit
}
// SearchContacts invokes method searchContacts#95073165 returning error if any.
func (c *Client) SearchContacts(ctx context.Context, request *SearchContactsRequest) (*Users, error) {
var result Users
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return &result, nil
}