596 lines
14 KiB
Go
Generated
596 lines
14 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{}
|
|
)
|
|
|
|
// PollResults represents TL type `pollResults#ba7bb15e`.
|
|
// Results of poll
|
|
//
|
|
// See https://core.telegram.org/constructor/pollResults for reference.
|
|
type PollResults struct {
|
|
// Flags, see TL conditional fields¹
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
|
|
Flags bin.Fields
|
|
// Similar to min¹ objects, used for poll constructors that are the same for all users
|
|
// so they don't have the option chosen by the current user (you can use messages
|
|
// getPollResults² to get the full poll results).
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/api/min
|
|
// 2) https://core.telegram.org/method/messages.getPollResults
|
|
Min bool
|
|
// HasUnreadVotes field of PollResults.
|
|
HasUnreadVotes bool
|
|
// Poll results
|
|
//
|
|
// Use SetResults and GetResults helpers.
|
|
Results []PollAnswerVoters
|
|
// Total number of people that voted in the poll
|
|
//
|
|
// Use SetTotalVoters and GetTotalVoters helpers.
|
|
TotalVoters int
|
|
// IDs of the last users that recently voted in the poll
|
|
//
|
|
// Use SetRecentVoters and GetRecentVoters helpers.
|
|
RecentVoters []PeerClass
|
|
// Explanation of quiz solution
|
|
//
|
|
// Use SetSolution and GetSolution helpers.
|
|
Solution string
|
|
// Message entities for styled text in quiz solution¹
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/api/entities
|
|
//
|
|
// Use SetSolutionEntities and GetSolutionEntities helpers.
|
|
SolutionEntities []MessageEntityClass
|
|
// SolutionMedia field of PollResults.
|
|
//
|
|
// Use SetSolutionMedia and GetSolutionMedia helpers.
|
|
SolutionMedia MessageMediaClass
|
|
}
|
|
|
|
// PollResultsTypeID is TL type id of PollResults.
|
|
const PollResultsTypeID = 0xba7bb15e
|
|
|
|
// Ensuring interfaces in compile-time for PollResults.
|
|
var (
|
|
_ bin.Encoder = &PollResults{}
|
|
_ bin.Decoder = &PollResults{}
|
|
_ bin.BareEncoder = &PollResults{}
|
|
_ bin.BareDecoder = &PollResults{}
|
|
)
|
|
|
|
func (p *PollResults) Zero() bool {
|
|
if p == nil {
|
|
return true
|
|
}
|
|
if !(p.Flags.Zero()) {
|
|
return false
|
|
}
|
|
if !(p.Min == false) {
|
|
return false
|
|
}
|
|
if !(p.HasUnreadVotes == false) {
|
|
return false
|
|
}
|
|
if !(p.Results == nil) {
|
|
return false
|
|
}
|
|
if !(p.TotalVoters == 0) {
|
|
return false
|
|
}
|
|
if !(p.RecentVoters == nil) {
|
|
return false
|
|
}
|
|
if !(p.Solution == "") {
|
|
return false
|
|
}
|
|
if !(p.SolutionEntities == nil) {
|
|
return false
|
|
}
|
|
if !(p.SolutionMedia == nil) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (p *PollResults) String() string {
|
|
if p == nil {
|
|
return "PollResults(nil)"
|
|
}
|
|
type Alias PollResults
|
|
return fmt.Sprintf("PollResults%+v", Alias(*p))
|
|
}
|
|
|
|
// FillFrom fills PollResults from given interface.
|
|
func (p *PollResults) FillFrom(from interface {
|
|
GetMin() (value bool)
|
|
GetHasUnreadVotes() (value bool)
|
|
GetResults() (value []PollAnswerVoters, ok bool)
|
|
GetTotalVoters() (value int, ok bool)
|
|
GetRecentVoters() (value []PeerClass, ok bool)
|
|
GetSolution() (value string, ok bool)
|
|
GetSolutionEntities() (value []MessageEntityClass, ok bool)
|
|
GetSolutionMedia() (value MessageMediaClass, ok bool)
|
|
}) {
|
|
p.Min = from.GetMin()
|
|
p.HasUnreadVotes = from.GetHasUnreadVotes()
|
|
if val, ok := from.GetResults(); ok {
|
|
p.Results = val
|
|
}
|
|
|
|
if val, ok := from.GetTotalVoters(); ok {
|
|
p.TotalVoters = val
|
|
}
|
|
|
|
if val, ok := from.GetRecentVoters(); ok {
|
|
p.RecentVoters = val
|
|
}
|
|
|
|
if val, ok := from.GetSolution(); ok {
|
|
p.Solution = val
|
|
}
|
|
|
|
if val, ok := from.GetSolutionEntities(); ok {
|
|
p.SolutionEntities = val
|
|
}
|
|
|
|
if val, ok := from.GetSolutionMedia(); ok {
|
|
p.SolutionMedia = val
|
|
}
|
|
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*PollResults) TypeID() uint32 {
|
|
return PollResultsTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*PollResults) TypeName() string {
|
|
return "pollResults"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (p *PollResults) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "pollResults",
|
|
ID: PollResultsTypeID,
|
|
}
|
|
if p == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "Min",
|
|
SchemaName: "min",
|
|
Null: !p.Flags.Has(0),
|
|
},
|
|
{
|
|
Name: "HasUnreadVotes",
|
|
SchemaName: "has_unread_votes",
|
|
Null: !p.Flags.Has(6),
|
|
},
|
|
{
|
|
Name: "Results",
|
|
SchemaName: "results",
|
|
Null: !p.Flags.Has(1),
|
|
},
|
|
{
|
|
Name: "TotalVoters",
|
|
SchemaName: "total_voters",
|
|
Null: !p.Flags.Has(2),
|
|
},
|
|
{
|
|
Name: "RecentVoters",
|
|
SchemaName: "recent_voters",
|
|
Null: !p.Flags.Has(3),
|
|
},
|
|
{
|
|
Name: "Solution",
|
|
SchemaName: "solution",
|
|
Null: !p.Flags.Has(4),
|
|
},
|
|
{
|
|
Name: "SolutionEntities",
|
|
SchemaName: "solution_entities",
|
|
Null: !p.Flags.Has(4),
|
|
},
|
|
{
|
|
Name: "SolutionMedia",
|
|
SchemaName: "solution_media",
|
|
Null: !p.Flags.Has(5),
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// SetFlags sets flags for non-zero fields.
|
|
func (p *PollResults) SetFlags() {
|
|
if !(p.Min == false) {
|
|
p.Flags.Set(0)
|
|
}
|
|
if !(p.HasUnreadVotes == false) {
|
|
p.Flags.Set(6)
|
|
}
|
|
if !(p.Results == nil) {
|
|
p.Flags.Set(1)
|
|
}
|
|
if !(p.TotalVoters == 0) {
|
|
p.Flags.Set(2)
|
|
}
|
|
if !(p.RecentVoters == nil) {
|
|
p.Flags.Set(3)
|
|
}
|
|
if !(p.Solution == "") {
|
|
p.Flags.Set(4)
|
|
}
|
|
if !(p.SolutionEntities == nil) {
|
|
p.Flags.Set(4)
|
|
}
|
|
if !(p.SolutionMedia == nil) {
|
|
p.Flags.Set(5)
|
|
}
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (p *PollResults) Encode(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't encode pollResults#ba7bb15e as nil")
|
|
}
|
|
b.PutID(PollResultsTypeID)
|
|
return p.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (p *PollResults) EncodeBare(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't encode pollResults#ba7bb15e as nil")
|
|
}
|
|
p.SetFlags()
|
|
if err := p.Flags.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode pollResults#ba7bb15e: field flags: %w", err)
|
|
}
|
|
if p.Flags.Has(1) {
|
|
b.PutVectorHeader(len(p.Results))
|
|
for idx, v := range p.Results {
|
|
if err := v.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode pollResults#ba7bb15e: field results element with index %d: %w", idx, err)
|
|
}
|
|
}
|
|
}
|
|
if p.Flags.Has(2) {
|
|
b.PutInt(p.TotalVoters)
|
|
}
|
|
if p.Flags.Has(3) {
|
|
b.PutVectorHeader(len(p.RecentVoters))
|
|
for idx, v := range p.RecentVoters {
|
|
if v == nil {
|
|
return fmt.Errorf("unable to encode pollResults#ba7bb15e: field recent_voters element with index %d is nil", idx)
|
|
}
|
|
if err := v.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode pollResults#ba7bb15e: field recent_voters element with index %d: %w", idx, err)
|
|
}
|
|
}
|
|
}
|
|
if p.Flags.Has(4) {
|
|
b.PutString(p.Solution)
|
|
}
|
|
if p.Flags.Has(4) {
|
|
b.PutVectorHeader(len(p.SolutionEntities))
|
|
for idx, v := range p.SolutionEntities {
|
|
if v == nil {
|
|
return fmt.Errorf("unable to encode pollResults#ba7bb15e: field solution_entities element with index %d is nil", idx)
|
|
}
|
|
if err := v.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode pollResults#ba7bb15e: field solution_entities element with index %d: %w", idx, err)
|
|
}
|
|
}
|
|
}
|
|
if p.Flags.Has(5) {
|
|
if p.SolutionMedia == nil {
|
|
return fmt.Errorf("unable to encode pollResults#ba7bb15e: field solution_media is nil")
|
|
}
|
|
if err := p.SolutionMedia.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode pollResults#ba7bb15e: field solution_media: %w", err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (p *PollResults) Decode(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't decode pollResults#ba7bb15e to nil")
|
|
}
|
|
if err := b.ConsumeID(PollResultsTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: %w", err)
|
|
}
|
|
return p.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (p *PollResults) DecodeBare(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't decode pollResults#ba7bb15e to nil")
|
|
}
|
|
{
|
|
if err := p.Flags.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field flags: %w", err)
|
|
}
|
|
}
|
|
p.Min = p.Flags.Has(0)
|
|
p.HasUnreadVotes = p.Flags.Has(6)
|
|
if p.Flags.Has(1) {
|
|
headerLen, err := b.VectorHeader()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field results: %w", err)
|
|
}
|
|
|
|
if headerLen > 0 {
|
|
p.Results = make([]PollAnswerVoters, 0, headerLen%bin.PreallocateLimit)
|
|
}
|
|
for idx := 0; idx < headerLen; idx++ {
|
|
var value PollAnswerVoters
|
|
if err := value.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field results: %w", err)
|
|
}
|
|
p.Results = append(p.Results, value)
|
|
}
|
|
}
|
|
if p.Flags.Has(2) {
|
|
value, err := b.Int()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field total_voters: %w", err)
|
|
}
|
|
p.TotalVoters = value
|
|
}
|
|
if p.Flags.Has(3) {
|
|
headerLen, err := b.VectorHeader()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field recent_voters: %w", err)
|
|
}
|
|
|
|
if headerLen > 0 {
|
|
p.RecentVoters = make([]PeerClass, 0, headerLen%bin.PreallocateLimit)
|
|
}
|
|
for idx := 0; idx < headerLen; idx++ {
|
|
value, err := DecodePeer(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field recent_voters: %w", err)
|
|
}
|
|
p.RecentVoters = append(p.RecentVoters, value)
|
|
}
|
|
}
|
|
if p.Flags.Has(4) {
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field solution: %w", err)
|
|
}
|
|
p.Solution = value
|
|
}
|
|
if p.Flags.Has(4) {
|
|
headerLen, err := b.VectorHeader()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field solution_entities: %w", err)
|
|
}
|
|
|
|
if headerLen > 0 {
|
|
p.SolutionEntities = make([]MessageEntityClass, 0, headerLen%bin.PreallocateLimit)
|
|
}
|
|
for idx := 0; idx < headerLen; idx++ {
|
|
value, err := DecodeMessageEntity(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field solution_entities: %w", err)
|
|
}
|
|
p.SolutionEntities = append(p.SolutionEntities, value)
|
|
}
|
|
}
|
|
if p.Flags.Has(5) {
|
|
value, err := DecodeMessageMedia(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode pollResults#ba7bb15e: field solution_media: %w", err)
|
|
}
|
|
p.SolutionMedia = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SetMin sets value of Min conditional field.
|
|
func (p *PollResults) SetMin(value bool) {
|
|
if value {
|
|
p.Flags.Set(0)
|
|
p.Min = true
|
|
} else {
|
|
p.Flags.Unset(0)
|
|
p.Min = false
|
|
}
|
|
}
|
|
|
|
// GetMin returns value of Min conditional field.
|
|
func (p *PollResults) GetMin() (value bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.Flags.Has(0)
|
|
}
|
|
|
|
// SetHasUnreadVotes sets value of HasUnreadVotes conditional field.
|
|
func (p *PollResults) SetHasUnreadVotes(value bool) {
|
|
if value {
|
|
p.Flags.Set(6)
|
|
p.HasUnreadVotes = true
|
|
} else {
|
|
p.Flags.Unset(6)
|
|
p.HasUnreadVotes = false
|
|
}
|
|
}
|
|
|
|
// GetHasUnreadVotes returns value of HasUnreadVotes conditional field.
|
|
func (p *PollResults) GetHasUnreadVotes() (value bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.Flags.Has(6)
|
|
}
|
|
|
|
// SetResults sets value of Results conditional field.
|
|
func (p *PollResults) SetResults(value []PollAnswerVoters) {
|
|
p.Flags.Set(1)
|
|
p.Results = value
|
|
}
|
|
|
|
// GetResults returns value of Results conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PollResults) GetResults() (value []PollAnswerVoters, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(1) {
|
|
return value, false
|
|
}
|
|
return p.Results, true
|
|
}
|
|
|
|
// SetTotalVoters sets value of TotalVoters conditional field.
|
|
func (p *PollResults) SetTotalVoters(value int) {
|
|
p.Flags.Set(2)
|
|
p.TotalVoters = value
|
|
}
|
|
|
|
// GetTotalVoters returns value of TotalVoters conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PollResults) GetTotalVoters() (value int, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(2) {
|
|
return value, false
|
|
}
|
|
return p.TotalVoters, true
|
|
}
|
|
|
|
// SetRecentVoters sets value of RecentVoters conditional field.
|
|
func (p *PollResults) SetRecentVoters(value []PeerClass) {
|
|
p.Flags.Set(3)
|
|
p.RecentVoters = value
|
|
}
|
|
|
|
// GetRecentVoters returns value of RecentVoters conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PollResults) GetRecentVoters() (value []PeerClass, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(3) {
|
|
return value, false
|
|
}
|
|
return p.RecentVoters, true
|
|
}
|
|
|
|
// SetSolution sets value of Solution conditional field.
|
|
func (p *PollResults) SetSolution(value string) {
|
|
p.Flags.Set(4)
|
|
p.Solution = value
|
|
}
|
|
|
|
// GetSolution returns value of Solution conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PollResults) GetSolution() (value string, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(4) {
|
|
return value, false
|
|
}
|
|
return p.Solution, true
|
|
}
|
|
|
|
// SetSolutionEntities sets value of SolutionEntities conditional field.
|
|
func (p *PollResults) SetSolutionEntities(value []MessageEntityClass) {
|
|
p.Flags.Set(4)
|
|
p.SolutionEntities = value
|
|
}
|
|
|
|
// GetSolutionEntities returns value of SolutionEntities conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PollResults) GetSolutionEntities() (value []MessageEntityClass, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(4) {
|
|
return value, false
|
|
}
|
|
return p.SolutionEntities, true
|
|
}
|
|
|
|
// SetSolutionMedia sets value of SolutionMedia conditional field.
|
|
func (p *PollResults) SetSolutionMedia(value MessageMediaClass) {
|
|
p.Flags.Set(5)
|
|
p.SolutionMedia = value
|
|
}
|
|
|
|
// GetSolutionMedia returns value of SolutionMedia conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PollResults) GetSolutionMedia() (value MessageMediaClass, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(5) {
|
|
return value, false
|
|
}
|
|
return p.SolutionMedia, true
|
|
}
|
|
|
|
// MapRecentVoters returns field RecentVoters wrapped in PeerClassArray helper.
|
|
func (p *PollResults) MapRecentVoters() (value PeerClassArray, ok bool) {
|
|
if !p.Flags.Has(3) {
|
|
return value, false
|
|
}
|
|
return PeerClassArray(p.RecentVoters), true
|
|
}
|
|
|
|
// MapSolutionEntities returns field SolutionEntities wrapped in MessageEntityClassArray helper.
|
|
func (p *PollResults) MapSolutionEntities() (value MessageEntityClassArray, ok bool) {
|
|
if !p.Flags.Has(4) {
|
|
return value, false
|
|
}
|
|
return MessageEntityClassArray(p.SolutionEntities), true
|
|
}
|