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
192 lines
4.6 KiB
Go
192 lines
4.6 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{}
|
|
)
|
|
|
|
// MessagesDeleteChatRequest represents TL type `messages.deleteChat#5bd0ee50`.
|
|
// Delete a chat¹
|
|
//
|
|
// Links:
|
|
// 1. https://core.telegram.org/api/channel
|
|
//
|
|
// See https://core.telegram.org/method/messages.deleteChat for reference.
|
|
type MessagesDeleteChatRequest struct {
|
|
// Chat ID
|
|
ChatID int64
|
|
}
|
|
|
|
// MessagesDeleteChatRequestTypeID is TL type id of MessagesDeleteChatRequest.
|
|
const MessagesDeleteChatRequestTypeID = 0x5bd0ee50
|
|
|
|
// Ensuring interfaces in compile-time for MessagesDeleteChatRequest.
|
|
var (
|
|
_ bin.Encoder = &MessagesDeleteChatRequest{}
|
|
_ bin.Decoder = &MessagesDeleteChatRequest{}
|
|
_ bin.BareEncoder = &MessagesDeleteChatRequest{}
|
|
_ bin.BareDecoder = &MessagesDeleteChatRequest{}
|
|
)
|
|
|
|
func (d *MessagesDeleteChatRequest) Zero() bool {
|
|
if d == nil {
|
|
return true
|
|
}
|
|
if !(d.ChatID == 0) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (d *MessagesDeleteChatRequest) String() string {
|
|
if d == nil {
|
|
return "MessagesDeleteChatRequest(nil)"
|
|
}
|
|
type Alias MessagesDeleteChatRequest
|
|
return fmt.Sprintf("MessagesDeleteChatRequest%+v", Alias(*d))
|
|
}
|
|
|
|
// FillFrom fills MessagesDeleteChatRequest from given interface.
|
|
func (d *MessagesDeleteChatRequest) FillFrom(from interface {
|
|
GetChatID() (value int64)
|
|
}) {
|
|
d.ChatID = from.GetChatID()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*MessagesDeleteChatRequest) TypeID() uint32 {
|
|
return MessagesDeleteChatRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*MessagesDeleteChatRequest) TypeName() string {
|
|
return "messages.deleteChat"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (d *MessagesDeleteChatRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "messages.deleteChat",
|
|
ID: MessagesDeleteChatRequestTypeID,
|
|
}
|
|
if d == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "ChatID",
|
|
SchemaName: "chat_id",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (d *MessagesDeleteChatRequest) Encode(b *bin.Buffer) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't encode messages.deleteChat#5bd0ee50 as nil")
|
|
}
|
|
b.PutID(MessagesDeleteChatRequestTypeID)
|
|
return d.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (d *MessagesDeleteChatRequest) EncodeBare(b *bin.Buffer) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't encode messages.deleteChat#5bd0ee50 as nil")
|
|
}
|
|
b.PutLong(d.ChatID)
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (d *MessagesDeleteChatRequest) Decode(b *bin.Buffer) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't decode messages.deleteChat#5bd0ee50 to nil")
|
|
}
|
|
if err := b.ConsumeID(MessagesDeleteChatRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode messages.deleteChat#5bd0ee50: %w", err)
|
|
}
|
|
return d.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (d *MessagesDeleteChatRequest) DecodeBare(b *bin.Buffer) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't decode messages.deleteChat#5bd0ee50 to nil")
|
|
}
|
|
{
|
|
value, err := b.Long()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode messages.deleteChat#5bd0ee50: field chat_id: %w", err)
|
|
}
|
|
d.ChatID = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetChatID returns value of ChatID field.
|
|
func (d *MessagesDeleteChatRequest) GetChatID() (value int64) {
|
|
if d == nil {
|
|
return
|
|
}
|
|
return d.ChatID
|
|
}
|
|
|
|
// MessagesDeleteChat invokes method messages.deleteChat#5bd0ee50 returning error if any.
|
|
// Delete a chat¹
|
|
//
|
|
// Links:
|
|
// 1. https://core.telegram.org/api/channel
|
|
//
|
|
// Possible errors:
|
|
//
|
|
// 400 CHAT_ADMIN_REQUIRED: You must be an admin in this chat to do this.
|
|
// 400 CHAT_ID_INVALID: The provided chat id is invalid.
|
|
// 400 PEER_ID_INVALID: The provided peer id is invalid.
|
|
//
|
|
// See https://core.telegram.org/method/messages.deleteChat for reference.
|
|
func (c *Client) MessagesDeleteChat(ctx context.Context, chatid int64) (bool, error) {
|
|
var result BoolBox
|
|
|
|
request := &MessagesDeleteChatRequest{
|
|
ChatID: chatid,
|
|
}
|
|
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
|
return false, err
|
|
}
|
|
_, ok := result.Bool.(*BoolTrue)
|
|
return ok, nil
|
|
}
|