// 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{} ) // AccountPrivacyRules represents TL type `account.privacyRules#50a04e45`. // Privacy rules // // See https://core.telegram.org/constructor/account.privacyRules for reference. type AccountPrivacyRules struct { // Privacy rules Rules []PrivacyRuleClass // Chats to which the rules apply Chats []ChatClass // Users to which the rules apply Users []UserClass } // AccountPrivacyRulesTypeID is TL type id of AccountPrivacyRules. const AccountPrivacyRulesTypeID = 0x50a04e45 // Ensuring interfaces in compile-time for AccountPrivacyRules. var ( _ bin.Encoder = &AccountPrivacyRules{} _ bin.Decoder = &AccountPrivacyRules{} _ bin.BareEncoder = &AccountPrivacyRules{} _ bin.BareDecoder = &AccountPrivacyRules{} ) func (p *AccountPrivacyRules) Zero() bool { if p == nil { return true } if !(p.Rules == nil) { return false } if !(p.Chats == nil) { return false } if !(p.Users == nil) { return false } return true } // String implements fmt.Stringer. func (p *AccountPrivacyRules) String() string { if p == nil { return "AccountPrivacyRules(nil)" } type Alias AccountPrivacyRules return fmt.Sprintf("AccountPrivacyRules%+v", Alias(*p)) } // FillFrom fills AccountPrivacyRules from given interface. func (p *AccountPrivacyRules) FillFrom(from interface { GetRules() (value []PrivacyRuleClass) GetChats() (value []ChatClass) GetUsers() (value []UserClass) }) { p.Rules = from.GetRules() p.Chats = from.GetChats() p.Users = from.GetUsers() } // TypeID returns type id in TL schema. // // See https://core.telegram.org/mtproto/TL-tl#remarks. func (*AccountPrivacyRules) TypeID() uint32 { return AccountPrivacyRulesTypeID } // TypeName returns name of type in TL schema. func (*AccountPrivacyRules) TypeName() string { return "account.privacyRules" } // TypeInfo returns info about TL type. func (p *AccountPrivacyRules) TypeInfo() tdp.Type { typ := tdp.Type{ Name: "account.privacyRules", ID: AccountPrivacyRulesTypeID, } if p == nil { typ.Null = true return typ } typ.Fields = []tdp.Field{ { Name: "Rules", SchemaName: "rules", }, { Name: "Chats", SchemaName: "chats", }, { Name: "Users", SchemaName: "users", }, } return typ } // Encode implements bin.Encoder. func (p *AccountPrivacyRules) Encode(b *bin.Buffer) error { if p == nil { return fmt.Errorf("can't encode account.privacyRules#50a04e45 as nil") } b.PutID(AccountPrivacyRulesTypeID) return p.EncodeBare(b) } // EncodeBare implements bin.BareEncoder. func (p *AccountPrivacyRules) EncodeBare(b *bin.Buffer) error { if p == nil { return fmt.Errorf("can't encode account.privacyRules#50a04e45 as nil") } b.PutVectorHeader(len(p.Rules)) for idx, v := range p.Rules { if v == nil { return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field rules element with index %d is nil", idx) } if err := v.Encode(b); err != nil { return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field rules element with index %d: %w", idx, err) } } b.PutVectorHeader(len(p.Chats)) for idx, v := range p.Chats { if v == nil { return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field chats element with index %d is nil", idx) } if err := v.Encode(b); err != nil { return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field chats element with index %d: %w", idx, err) } } b.PutVectorHeader(len(p.Users)) for idx, v := range p.Users { if v == nil { return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field users element with index %d is nil", idx) } if err := v.Encode(b); err != nil { return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field users element with index %d: %w", idx, err) } } return nil } // Decode implements bin.Decoder. func (p *AccountPrivacyRules) Decode(b *bin.Buffer) error { if p == nil { return fmt.Errorf("can't decode account.privacyRules#50a04e45 to nil") } if err := b.ConsumeID(AccountPrivacyRulesTypeID); err != nil { return fmt.Errorf("unable to decode account.privacyRules#50a04e45: %w", err) } return p.DecodeBare(b) } // DecodeBare implements bin.BareDecoder. func (p *AccountPrivacyRules) DecodeBare(b *bin.Buffer) error { if p == nil { return fmt.Errorf("can't decode account.privacyRules#50a04e45 to nil") } { headerLen, err := b.VectorHeader() if err != nil { return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field rules: %w", err) } if headerLen > 0 { p.Rules = make([]PrivacyRuleClass, 0, headerLen%bin.PreallocateLimit) } for idx := 0; idx < headerLen; idx++ { value, err := DecodePrivacyRule(b) if err != nil { return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field rules: %w", err) } p.Rules = append(p.Rules, value) } } { headerLen, err := b.VectorHeader() if err != nil { return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field chats: %w", err) } if headerLen > 0 { p.Chats = make([]ChatClass, 0, headerLen%bin.PreallocateLimit) } for idx := 0; idx < headerLen; idx++ { value, err := DecodeChat(b) if err != nil { return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field chats: %w", err) } p.Chats = append(p.Chats, value) } } { headerLen, err := b.VectorHeader() if err != nil { return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field users: %w", err) } if headerLen > 0 { p.Users = make([]UserClass, 0, headerLen%bin.PreallocateLimit) } for idx := 0; idx < headerLen; idx++ { value, err := DecodeUser(b) if err != nil { return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field users: %w", err) } p.Users = append(p.Users, value) } } return nil } // GetRules returns value of Rules field. func (p *AccountPrivacyRules) GetRules() (value []PrivacyRuleClass) { if p == nil { return } return p.Rules } // GetChats returns value of Chats field. func (p *AccountPrivacyRules) GetChats() (value []ChatClass) { if p == nil { return } return p.Chats } // GetUsers returns value of Users field. func (p *AccountPrivacyRules) GetUsers() (value []UserClass) { if p == nil { return } return p.Users } // MapRules returns field Rules wrapped in PrivacyRuleClassArray helper. func (p *AccountPrivacyRules) MapRules() (value PrivacyRuleClassArray) { return PrivacyRuleClassArray(p.Rules) } // MapChats returns field Chats wrapped in ChatClassArray helper. func (p *AccountPrivacyRules) MapChats() (value ChatClassArray) { return ChatClassArray(p.Chats) } // MapUsers returns field Users wrapped in UserClassArray helper. func (p *AccountPrivacyRules) MapUsers() (value UserClassArray) { return UserClassArray(p.Users) }