// 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{} ) // ChatBannedRights represents TL type `chatBannedRights#9f120418`. // Represents the rights of a normal user in a supergroup/channel/chat¹. In this case, // the flags are inverted: if set, a flag does not allow a user to do X. // // Links: // 1. https://core.telegram.org/api/channel // // See https://core.telegram.org/constructor/chatBannedRights for reference. type ChatBannedRights struct { // Flags, see TL conditional fields¹ // // Links: // 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields Flags bin.Fields // If set, does not allow a user to view messages in a supergroup/channel/chat¹ // // Links: // 1) https://core.telegram.org/api/channel ViewMessages bool // If set, does not allow a user to send messages in a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel SendMessages bool // If set, does not allow a user to send any media in a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel SendMedia bool // If set, does not allow a user to send stickers in a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel SendStickers bool // If set, does not allow a user to send gifs in a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel SendGifs bool // If set, does not allow a user to send games in a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel SendGames bool // If set, does not allow a user to use inline bots in a supergroup/chat¹. // // Links: // 1) https://core.telegram.org/api/channel SendInline bool // If set, does not allow a user to embed links in the messages of a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel EmbedLinks bool // If set, does not allow a user to send polls in a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel SendPolls bool // If set, does not allow any user to change the description of a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel ChangeInfo bool // If set, does not allow any user to invite users in a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel InviteUsers bool // If set, does not allow any user to pin messages in a supergroup/chat¹ // // Links: // 1) https://core.telegram.org/api/channel PinMessages bool // If set, does not allow any user to create, delete or modify forum topics »¹. // // Links: // 1) https://core.telegram.org/api/forum#forum-topics ManageTopics bool // If set, does not allow a user to send photos in a supergroup/chat¹. // // Links: // 1) https://core.telegram.org/api/channel SendPhotos bool // If set, does not allow a user to send videos in a supergroup/chat¹. // // Links: // 1) https://core.telegram.org/api/channel SendVideos bool // If set, does not allow a user to send round videos in a supergroup/chat¹. // // Links: // 1) https://core.telegram.org/api/channel SendRoundvideos bool // If set, does not allow a user to send audio files in a supergroup/chat¹. // // Links: // 1) https://core.telegram.org/api/channel SendAudios bool // If set, does not allow a user to send voice messages in a supergroup/chat¹. // // Links: // 1) https://core.telegram.org/api/channel SendVoices bool // If set, does not allow a user to send documents in a supergroup/chat¹. // // Links: // 1) https://core.telegram.org/api/channel SendDocs bool // If set, does not allow a user to send text messages in a supergroup/chat¹. // // Links: // 1) https://core.telegram.org/api/channel SendPlain bool // Validity of said permissions (it is considered forever any value less then 30 seconds // or more then 366 days). UntilDate int } // ChatBannedRightsTypeID is TL type id of ChatBannedRights. const ChatBannedRightsTypeID = 0x9f120418 // Ensuring interfaces in compile-time for ChatBannedRights. var ( _ bin.Encoder = &ChatBannedRights{} _ bin.Decoder = &ChatBannedRights{} _ bin.BareEncoder = &ChatBannedRights{} _ bin.BareDecoder = &ChatBannedRights{} ) func (c *ChatBannedRights) Zero() bool { if c == nil { return true } if !(c.Flags.Zero()) { return false } if !(c.ViewMessages == false) { return false } if !(c.SendMessages == false) { return false } if !(c.SendMedia == false) { return false } if !(c.SendStickers == false) { return false } if !(c.SendGifs == false) { return false } if !(c.SendGames == false) { return false } if !(c.SendInline == false) { return false } if !(c.EmbedLinks == false) { return false } if !(c.SendPolls == false) { return false } if !(c.ChangeInfo == false) { return false } if !(c.InviteUsers == false) { return false } if !(c.PinMessages == false) { return false } if !(c.ManageTopics == false) { return false } if !(c.SendPhotos == false) { return false } if !(c.SendVideos == false) { return false } if !(c.SendRoundvideos == false) { return false } if !(c.SendAudios == false) { return false } if !(c.SendVoices == false) { return false } if !(c.SendDocs == false) { return false } if !(c.SendPlain == false) { return false } if !(c.UntilDate == 0) { return false } return true } // String implements fmt.Stringer. func (c *ChatBannedRights) String() string { if c == nil { return "ChatBannedRights(nil)" } type Alias ChatBannedRights return fmt.Sprintf("ChatBannedRights%+v", Alias(*c)) } // FillFrom fills ChatBannedRights from given interface. func (c *ChatBannedRights) FillFrom(from interface { GetViewMessages() (value bool) GetSendMessages() (value bool) GetSendMedia() (value bool) GetSendStickers() (value bool) GetSendGifs() (value bool) GetSendGames() (value bool) GetSendInline() (value bool) GetEmbedLinks() (value bool) GetSendPolls() (value bool) GetChangeInfo() (value bool) GetInviteUsers() (value bool) GetPinMessages() (value bool) GetManageTopics() (value bool) GetSendPhotos() (value bool) GetSendVideos() (value bool) GetSendRoundvideos() (value bool) GetSendAudios() (value bool) GetSendVoices() (value bool) GetSendDocs() (value bool) GetSendPlain() (value bool) GetUntilDate() (value int) }) { c.ViewMessages = from.GetViewMessages() c.SendMessages = from.GetSendMessages() c.SendMedia = from.GetSendMedia() c.SendStickers = from.GetSendStickers() c.SendGifs = from.GetSendGifs() c.SendGames = from.GetSendGames() c.SendInline = from.GetSendInline() c.EmbedLinks = from.GetEmbedLinks() c.SendPolls = from.GetSendPolls() c.ChangeInfo = from.GetChangeInfo() c.InviteUsers = from.GetInviteUsers() c.PinMessages = from.GetPinMessages() c.ManageTopics = from.GetManageTopics() c.SendPhotos = from.GetSendPhotos() c.SendVideos = from.GetSendVideos() c.SendRoundvideos = from.GetSendRoundvideos() c.SendAudios = from.GetSendAudios() c.SendVoices = from.GetSendVoices() c.SendDocs = from.GetSendDocs() c.SendPlain = from.GetSendPlain() c.UntilDate = from.GetUntilDate() } // TypeID returns type id in TL schema. // // See https://core.telegram.org/mtproto/TL-tl#remarks. func (*ChatBannedRights) TypeID() uint32 { return ChatBannedRightsTypeID } // TypeName returns name of type in TL schema. func (*ChatBannedRights) TypeName() string { return "chatBannedRights" } // TypeInfo returns info about TL type. func (c *ChatBannedRights) TypeInfo() tdp.Type { typ := tdp.Type{ Name: "chatBannedRights", ID: ChatBannedRightsTypeID, } if c == nil { typ.Null = true return typ } typ.Fields = []tdp.Field{ { Name: "ViewMessages", SchemaName: "view_messages", Null: !c.Flags.Has(0), }, { Name: "SendMessages", SchemaName: "send_messages", Null: !c.Flags.Has(1), }, { Name: "SendMedia", SchemaName: "send_media", Null: !c.Flags.Has(2), }, { Name: "SendStickers", SchemaName: "send_stickers", Null: !c.Flags.Has(3), }, { Name: "SendGifs", SchemaName: "send_gifs", Null: !c.Flags.Has(4), }, { Name: "SendGames", SchemaName: "send_games", Null: !c.Flags.Has(5), }, { Name: "SendInline", SchemaName: "send_inline", Null: !c.Flags.Has(6), }, { Name: "EmbedLinks", SchemaName: "embed_links", Null: !c.Flags.Has(7), }, { Name: "SendPolls", SchemaName: "send_polls", Null: !c.Flags.Has(8), }, { Name: "ChangeInfo", SchemaName: "change_info", Null: !c.Flags.Has(10), }, { Name: "InviteUsers", SchemaName: "invite_users", Null: !c.Flags.Has(15), }, { Name: "PinMessages", SchemaName: "pin_messages", Null: !c.Flags.Has(17), }, { Name: "ManageTopics", SchemaName: "manage_topics", Null: !c.Flags.Has(18), }, { Name: "SendPhotos", SchemaName: "send_photos", Null: !c.Flags.Has(19), }, { Name: "SendVideos", SchemaName: "send_videos", Null: !c.Flags.Has(20), }, { Name: "SendRoundvideos", SchemaName: "send_roundvideos", Null: !c.Flags.Has(21), }, { Name: "SendAudios", SchemaName: "send_audios", Null: !c.Flags.Has(22), }, { Name: "SendVoices", SchemaName: "send_voices", Null: !c.Flags.Has(23), }, { Name: "SendDocs", SchemaName: "send_docs", Null: !c.Flags.Has(24), }, { Name: "SendPlain", SchemaName: "send_plain", Null: !c.Flags.Has(25), }, { Name: "UntilDate", SchemaName: "until_date", }, } return typ } // SetFlags sets flags for non-zero fields. func (c *ChatBannedRights) SetFlags() { if !(c.ViewMessages == false) { c.Flags.Set(0) } if !(c.SendMessages == false) { c.Flags.Set(1) } if !(c.SendMedia == false) { c.Flags.Set(2) } if !(c.SendStickers == false) { c.Flags.Set(3) } if !(c.SendGifs == false) { c.Flags.Set(4) } if !(c.SendGames == false) { c.Flags.Set(5) } if !(c.SendInline == false) { c.Flags.Set(6) } if !(c.EmbedLinks == false) { c.Flags.Set(7) } if !(c.SendPolls == false) { c.Flags.Set(8) } if !(c.ChangeInfo == false) { c.Flags.Set(10) } if !(c.InviteUsers == false) { c.Flags.Set(15) } if !(c.PinMessages == false) { c.Flags.Set(17) } if !(c.ManageTopics == false) { c.Flags.Set(18) } if !(c.SendPhotos == false) { c.Flags.Set(19) } if !(c.SendVideos == false) { c.Flags.Set(20) } if !(c.SendRoundvideos == false) { c.Flags.Set(21) } if !(c.SendAudios == false) { c.Flags.Set(22) } if !(c.SendVoices == false) { c.Flags.Set(23) } if !(c.SendDocs == false) { c.Flags.Set(24) } if !(c.SendPlain == false) { c.Flags.Set(25) } } // Encode implements bin.Encoder. func (c *ChatBannedRights) Encode(b *bin.Buffer) error { if c == nil { return fmt.Errorf("can't encode chatBannedRights#9f120418 as nil") } b.PutID(ChatBannedRightsTypeID) return c.EncodeBare(b) } // EncodeBare implements bin.BareEncoder. func (c *ChatBannedRights) EncodeBare(b *bin.Buffer) error { if c == nil { return fmt.Errorf("can't encode chatBannedRights#9f120418 as nil") } c.SetFlags() if err := c.Flags.Encode(b); err != nil { return fmt.Errorf("unable to encode chatBannedRights#9f120418: field flags: %w", err) } b.PutInt(c.UntilDate) return nil } // Decode implements bin.Decoder. func (c *ChatBannedRights) Decode(b *bin.Buffer) error { if c == nil { return fmt.Errorf("can't decode chatBannedRights#9f120418 to nil") } if err := b.ConsumeID(ChatBannedRightsTypeID); err != nil { return fmt.Errorf("unable to decode chatBannedRights#9f120418: %w", err) } return c.DecodeBare(b) } // DecodeBare implements bin.BareDecoder. func (c *ChatBannedRights) DecodeBare(b *bin.Buffer) error { if c == nil { return fmt.Errorf("can't decode chatBannedRights#9f120418 to nil") } { if err := c.Flags.Decode(b); err != nil { return fmt.Errorf("unable to decode chatBannedRights#9f120418: field flags: %w", err) } } c.ViewMessages = c.Flags.Has(0) c.SendMessages = c.Flags.Has(1) c.SendMedia = c.Flags.Has(2) c.SendStickers = c.Flags.Has(3) c.SendGifs = c.Flags.Has(4) c.SendGames = c.Flags.Has(5) c.SendInline = c.Flags.Has(6) c.EmbedLinks = c.Flags.Has(7) c.SendPolls = c.Flags.Has(8) c.ChangeInfo = c.Flags.Has(10) c.InviteUsers = c.Flags.Has(15) c.PinMessages = c.Flags.Has(17) c.ManageTopics = c.Flags.Has(18) c.SendPhotos = c.Flags.Has(19) c.SendVideos = c.Flags.Has(20) c.SendRoundvideos = c.Flags.Has(21) c.SendAudios = c.Flags.Has(22) c.SendVoices = c.Flags.Has(23) c.SendDocs = c.Flags.Has(24) c.SendPlain = c.Flags.Has(25) { value, err := b.Int() if err != nil { return fmt.Errorf("unable to decode chatBannedRights#9f120418: field until_date: %w", err) } c.UntilDate = value } return nil } // SetViewMessages sets value of ViewMessages conditional field. func (c *ChatBannedRights) SetViewMessages(value bool) { if value { c.Flags.Set(0) c.ViewMessages = true } else { c.Flags.Unset(0) c.ViewMessages = false } } // GetViewMessages returns value of ViewMessages conditional field. func (c *ChatBannedRights) GetViewMessages() (value bool) { if c == nil { return } return c.Flags.Has(0) } // SetSendMessages sets value of SendMessages conditional field. func (c *ChatBannedRights) SetSendMessages(value bool) { if value { c.Flags.Set(1) c.SendMessages = true } else { c.Flags.Unset(1) c.SendMessages = false } } // GetSendMessages returns value of SendMessages conditional field. func (c *ChatBannedRights) GetSendMessages() (value bool) { if c == nil { return } return c.Flags.Has(1) } // SetSendMedia sets value of SendMedia conditional field. func (c *ChatBannedRights) SetSendMedia(value bool) { if value { c.Flags.Set(2) c.SendMedia = true } else { c.Flags.Unset(2) c.SendMedia = false } } // GetSendMedia returns value of SendMedia conditional field. func (c *ChatBannedRights) GetSendMedia() (value bool) { if c == nil { return } return c.Flags.Has(2) } // SetSendStickers sets value of SendStickers conditional field. func (c *ChatBannedRights) SetSendStickers(value bool) { if value { c.Flags.Set(3) c.SendStickers = true } else { c.Flags.Unset(3) c.SendStickers = false } } // GetSendStickers returns value of SendStickers conditional field. func (c *ChatBannedRights) GetSendStickers() (value bool) { if c == nil { return } return c.Flags.Has(3) } // SetSendGifs sets value of SendGifs conditional field. func (c *ChatBannedRights) SetSendGifs(value bool) { if value { c.Flags.Set(4) c.SendGifs = true } else { c.Flags.Unset(4) c.SendGifs = false } } // GetSendGifs returns value of SendGifs conditional field. func (c *ChatBannedRights) GetSendGifs() (value bool) { if c == nil { return } return c.Flags.Has(4) } // SetSendGames sets value of SendGames conditional field. func (c *ChatBannedRights) SetSendGames(value bool) { if value { c.Flags.Set(5) c.SendGames = true } else { c.Flags.Unset(5) c.SendGames = false } } // GetSendGames returns value of SendGames conditional field. func (c *ChatBannedRights) GetSendGames() (value bool) { if c == nil { return } return c.Flags.Has(5) } // SetSendInline sets value of SendInline conditional field. func (c *ChatBannedRights) SetSendInline(value bool) { if value { c.Flags.Set(6) c.SendInline = true } else { c.Flags.Unset(6) c.SendInline = false } } // GetSendInline returns value of SendInline conditional field. func (c *ChatBannedRights) GetSendInline() (value bool) { if c == nil { return } return c.Flags.Has(6) } // SetEmbedLinks sets value of EmbedLinks conditional field. func (c *ChatBannedRights) SetEmbedLinks(value bool) { if value { c.Flags.Set(7) c.EmbedLinks = true } else { c.Flags.Unset(7) c.EmbedLinks = false } } // GetEmbedLinks returns value of EmbedLinks conditional field. func (c *ChatBannedRights) GetEmbedLinks() (value bool) { if c == nil { return } return c.Flags.Has(7) } // SetSendPolls sets value of SendPolls conditional field. func (c *ChatBannedRights) SetSendPolls(value bool) { if value { c.Flags.Set(8) c.SendPolls = true } else { c.Flags.Unset(8) c.SendPolls = false } } // GetSendPolls returns value of SendPolls conditional field. func (c *ChatBannedRights) GetSendPolls() (value bool) { if c == nil { return } return c.Flags.Has(8) } // SetChangeInfo sets value of ChangeInfo conditional field. func (c *ChatBannedRights) SetChangeInfo(value bool) { if value { c.Flags.Set(10) c.ChangeInfo = true } else { c.Flags.Unset(10) c.ChangeInfo = false } } // GetChangeInfo returns value of ChangeInfo conditional field. func (c *ChatBannedRights) GetChangeInfo() (value bool) { if c == nil { return } return c.Flags.Has(10) } // SetInviteUsers sets value of InviteUsers conditional field. func (c *ChatBannedRights) SetInviteUsers(value bool) { if value { c.Flags.Set(15) c.InviteUsers = true } else { c.Flags.Unset(15) c.InviteUsers = false } } // GetInviteUsers returns value of InviteUsers conditional field. func (c *ChatBannedRights) GetInviteUsers() (value bool) { if c == nil { return } return c.Flags.Has(15) } // SetPinMessages sets value of PinMessages conditional field. func (c *ChatBannedRights) SetPinMessages(value bool) { if value { c.Flags.Set(17) c.PinMessages = true } else { c.Flags.Unset(17) c.PinMessages = false } } // GetPinMessages returns value of PinMessages conditional field. func (c *ChatBannedRights) GetPinMessages() (value bool) { if c == nil { return } return c.Flags.Has(17) } // SetManageTopics sets value of ManageTopics conditional field. func (c *ChatBannedRights) SetManageTopics(value bool) { if value { c.Flags.Set(18) c.ManageTopics = true } else { c.Flags.Unset(18) c.ManageTopics = false } } // GetManageTopics returns value of ManageTopics conditional field. func (c *ChatBannedRights) GetManageTopics() (value bool) { if c == nil { return } return c.Flags.Has(18) } // SetSendPhotos sets value of SendPhotos conditional field. func (c *ChatBannedRights) SetSendPhotos(value bool) { if value { c.Flags.Set(19) c.SendPhotos = true } else { c.Flags.Unset(19) c.SendPhotos = false } } // GetSendPhotos returns value of SendPhotos conditional field. func (c *ChatBannedRights) GetSendPhotos() (value bool) { if c == nil { return } return c.Flags.Has(19) } // SetSendVideos sets value of SendVideos conditional field. func (c *ChatBannedRights) SetSendVideos(value bool) { if value { c.Flags.Set(20) c.SendVideos = true } else { c.Flags.Unset(20) c.SendVideos = false } } // GetSendVideos returns value of SendVideos conditional field. func (c *ChatBannedRights) GetSendVideos() (value bool) { if c == nil { return } return c.Flags.Has(20) } // SetSendRoundvideos sets value of SendRoundvideos conditional field. func (c *ChatBannedRights) SetSendRoundvideos(value bool) { if value { c.Flags.Set(21) c.SendRoundvideos = true } else { c.Flags.Unset(21) c.SendRoundvideos = false } } // GetSendRoundvideos returns value of SendRoundvideos conditional field. func (c *ChatBannedRights) GetSendRoundvideos() (value bool) { if c == nil { return } return c.Flags.Has(21) } // SetSendAudios sets value of SendAudios conditional field. func (c *ChatBannedRights) SetSendAudios(value bool) { if value { c.Flags.Set(22) c.SendAudios = true } else { c.Flags.Unset(22) c.SendAudios = false } } // GetSendAudios returns value of SendAudios conditional field. func (c *ChatBannedRights) GetSendAudios() (value bool) { if c == nil { return } return c.Flags.Has(22) } // SetSendVoices sets value of SendVoices conditional field. func (c *ChatBannedRights) SetSendVoices(value bool) { if value { c.Flags.Set(23) c.SendVoices = true } else { c.Flags.Unset(23) c.SendVoices = false } } // GetSendVoices returns value of SendVoices conditional field. func (c *ChatBannedRights) GetSendVoices() (value bool) { if c == nil { return } return c.Flags.Has(23) } // SetSendDocs sets value of SendDocs conditional field. func (c *ChatBannedRights) SetSendDocs(value bool) { if value { c.Flags.Set(24) c.SendDocs = true } else { c.Flags.Unset(24) c.SendDocs = false } } // GetSendDocs returns value of SendDocs conditional field. func (c *ChatBannedRights) GetSendDocs() (value bool) { if c == nil { return } return c.Flags.Has(24) } // SetSendPlain sets value of SendPlain conditional field. func (c *ChatBannedRights) SetSendPlain(value bool) { if value { c.Flags.Set(25) c.SendPlain = true } else { c.Flags.Unset(25) c.SendPlain = false } } // GetSendPlain returns value of SendPlain conditional field. func (c *ChatBannedRights) GetSendPlain() (value bool) { if c == nil { return } return c.Flags.Has(25) } // GetUntilDate returns value of UntilDate field. func (c *ChatBannedRights) GetUntilDate() (value int) { if c == nil { return } return c.UntilDate }