7a04f298d2
- update to latest telegram layer - remove some references to fields in tg.Entities that don't exist in the schema - originally added here: https://github.com/beeper/td/commit/820929062a2ba0104397bc01235ab58a9cff780e - referenced here - https://github.com/mautrix/telegramgo/commit/124f0967ed195b5a380c9bd02e170ada9710dde3 - https://github.com/mautrix/telegramgo/commit/4205047aab2e0639217148b5d125bfaab668bd8e
188 lines
5.0 KiB
Go
188 lines
5.0 KiB
Go
// 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{}
|
|
)
|
|
|
|
// AccountGetNotifySettingsRequest represents TL type `account.getNotifySettings#12b3ad31`.
|
|
// Gets current notification settings for a given user/group, from all users/all groups.
|
|
//
|
|
// See https://core.telegram.org/method/account.getNotifySettings for reference.
|
|
type AccountGetNotifySettingsRequest struct {
|
|
// Notification source
|
|
Peer InputNotifyPeerClass
|
|
}
|
|
|
|
// AccountGetNotifySettingsRequestTypeID is TL type id of AccountGetNotifySettingsRequest.
|
|
const AccountGetNotifySettingsRequestTypeID = 0x12b3ad31
|
|
|
|
// Ensuring interfaces in compile-time for AccountGetNotifySettingsRequest.
|
|
var (
|
|
_ bin.Encoder = &AccountGetNotifySettingsRequest{}
|
|
_ bin.Decoder = &AccountGetNotifySettingsRequest{}
|
|
_ bin.BareEncoder = &AccountGetNotifySettingsRequest{}
|
|
_ bin.BareDecoder = &AccountGetNotifySettingsRequest{}
|
|
)
|
|
|
|
func (g *AccountGetNotifySettingsRequest) Zero() bool {
|
|
if g == nil {
|
|
return true
|
|
}
|
|
if !(g.Peer == nil) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (g *AccountGetNotifySettingsRequest) String() string {
|
|
if g == nil {
|
|
return "AccountGetNotifySettingsRequest(nil)"
|
|
}
|
|
type Alias AccountGetNotifySettingsRequest
|
|
return fmt.Sprintf("AccountGetNotifySettingsRequest%+v", Alias(*g))
|
|
}
|
|
|
|
// FillFrom fills AccountGetNotifySettingsRequest from given interface.
|
|
func (g *AccountGetNotifySettingsRequest) FillFrom(from interface {
|
|
GetPeer() (value InputNotifyPeerClass)
|
|
}) {
|
|
g.Peer = from.GetPeer()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*AccountGetNotifySettingsRequest) TypeID() uint32 {
|
|
return AccountGetNotifySettingsRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*AccountGetNotifySettingsRequest) TypeName() string {
|
|
return "account.getNotifySettings"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (g *AccountGetNotifySettingsRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "account.getNotifySettings",
|
|
ID: AccountGetNotifySettingsRequestTypeID,
|
|
}
|
|
if g == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "Peer",
|
|
SchemaName: "peer",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (g *AccountGetNotifySettingsRequest) Encode(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't encode account.getNotifySettings#12b3ad31 as nil")
|
|
}
|
|
b.PutID(AccountGetNotifySettingsRequestTypeID)
|
|
return g.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (g *AccountGetNotifySettingsRequest) EncodeBare(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't encode account.getNotifySettings#12b3ad31 as nil")
|
|
}
|
|
if g.Peer == nil {
|
|
return fmt.Errorf("unable to encode account.getNotifySettings#12b3ad31: field peer is nil")
|
|
}
|
|
if err := g.Peer.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode account.getNotifySettings#12b3ad31: field peer: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (g *AccountGetNotifySettingsRequest) Decode(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't decode account.getNotifySettings#12b3ad31 to nil")
|
|
}
|
|
if err := b.ConsumeID(AccountGetNotifySettingsRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode account.getNotifySettings#12b3ad31: %w", err)
|
|
}
|
|
return g.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (g *AccountGetNotifySettingsRequest) DecodeBare(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't decode account.getNotifySettings#12b3ad31 to nil")
|
|
}
|
|
{
|
|
value, err := DecodeInputNotifyPeer(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode account.getNotifySettings#12b3ad31: field peer: %w", err)
|
|
}
|
|
g.Peer = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetPeer returns value of Peer field.
|
|
func (g *AccountGetNotifySettingsRequest) GetPeer() (value InputNotifyPeerClass) {
|
|
if g == nil {
|
|
return
|
|
}
|
|
return g.Peer
|
|
}
|
|
|
|
// AccountGetNotifySettings invokes method account.getNotifySettings#12b3ad31 returning error if any.
|
|
// Gets current notification settings for a given user/group, from all users/all groups.
|
|
//
|
|
// Possible errors:
|
|
//
|
|
// 400 PEER_ID_INVALID: The provided peer id is invalid.
|
|
//
|
|
// See https://core.telegram.org/method/account.getNotifySettings for reference.
|
|
func (c *Client) AccountGetNotifySettings(ctx context.Context, peer InputNotifyPeerClass) (*PeerNotifySettings, error) {
|
|
var result PeerNotifySettings
|
|
|
|
request := &AccountGetNotifySettingsRequest{
|
|
Peer: peer,
|
|
}
|
|
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
|
return nil, err
|
|
}
|
|
return &result, nil
|
|
}
|