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
336 lines
8.7 KiB
Go
Generated
336 lines
8.7 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{}
|
|
)
|
|
|
|
// MessagesSendEncryptedFileRequest represents TL type `messages.sendEncryptedFile#5559481d`.
|
|
// Sends a message with a file attachment to a secret chat
|
|
//
|
|
// See https://core.telegram.org/method/messages.sendEncryptedFile for reference.
|
|
type MessagesSendEncryptedFileRequest struct {
|
|
// Flags, see TL conditional fields¹
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
|
|
Flags bin.Fields
|
|
// Whether to send the file without triggering a notification
|
|
Silent bool
|
|
// Secret chat ID
|
|
Peer InputEncryptedChat
|
|
// Unique client message ID necessary to prevent message resending
|
|
RandomID int64
|
|
// TL-serialization of DecryptedMessage¹ type, encrypted with a key generated during
|
|
// chat initialization
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/type/DecryptedMessage
|
|
Data []byte
|
|
// File attachment for the secret chat
|
|
File InputEncryptedFileClass
|
|
}
|
|
|
|
// MessagesSendEncryptedFileRequestTypeID is TL type id of MessagesSendEncryptedFileRequest.
|
|
const MessagesSendEncryptedFileRequestTypeID = 0x5559481d
|
|
|
|
// Ensuring interfaces in compile-time for MessagesSendEncryptedFileRequest.
|
|
var (
|
|
_ bin.Encoder = &MessagesSendEncryptedFileRequest{}
|
|
_ bin.Decoder = &MessagesSendEncryptedFileRequest{}
|
|
_ bin.BareEncoder = &MessagesSendEncryptedFileRequest{}
|
|
_ bin.BareDecoder = &MessagesSendEncryptedFileRequest{}
|
|
)
|
|
|
|
func (s *MessagesSendEncryptedFileRequest) Zero() bool {
|
|
if s == nil {
|
|
return true
|
|
}
|
|
if !(s.Flags.Zero()) {
|
|
return false
|
|
}
|
|
if !(s.Silent == false) {
|
|
return false
|
|
}
|
|
if !(s.Peer.Zero()) {
|
|
return false
|
|
}
|
|
if !(s.RandomID == 0) {
|
|
return false
|
|
}
|
|
if !(s.Data == nil) {
|
|
return false
|
|
}
|
|
if !(s.File == nil) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (s *MessagesSendEncryptedFileRequest) String() string {
|
|
if s == nil {
|
|
return "MessagesSendEncryptedFileRequest(nil)"
|
|
}
|
|
type Alias MessagesSendEncryptedFileRequest
|
|
return fmt.Sprintf("MessagesSendEncryptedFileRequest%+v", Alias(*s))
|
|
}
|
|
|
|
// FillFrom fills MessagesSendEncryptedFileRequest from given interface.
|
|
func (s *MessagesSendEncryptedFileRequest) FillFrom(from interface {
|
|
GetSilent() (value bool)
|
|
GetPeer() (value InputEncryptedChat)
|
|
GetRandomID() (value int64)
|
|
GetData() (value []byte)
|
|
GetFile() (value InputEncryptedFileClass)
|
|
}) {
|
|
s.Silent = from.GetSilent()
|
|
s.Peer = from.GetPeer()
|
|
s.RandomID = from.GetRandomID()
|
|
s.Data = from.GetData()
|
|
s.File = from.GetFile()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*MessagesSendEncryptedFileRequest) TypeID() uint32 {
|
|
return MessagesSendEncryptedFileRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*MessagesSendEncryptedFileRequest) TypeName() string {
|
|
return "messages.sendEncryptedFile"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (s *MessagesSendEncryptedFileRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "messages.sendEncryptedFile",
|
|
ID: MessagesSendEncryptedFileRequestTypeID,
|
|
}
|
|
if s == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "Silent",
|
|
SchemaName: "silent",
|
|
Null: !s.Flags.Has(0),
|
|
},
|
|
{
|
|
Name: "Peer",
|
|
SchemaName: "peer",
|
|
},
|
|
{
|
|
Name: "RandomID",
|
|
SchemaName: "random_id",
|
|
},
|
|
{
|
|
Name: "Data",
|
|
SchemaName: "data",
|
|
},
|
|
{
|
|
Name: "File",
|
|
SchemaName: "file",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// SetFlags sets flags for non-zero fields.
|
|
func (s *MessagesSendEncryptedFileRequest) SetFlags() {
|
|
if !(s.Silent == false) {
|
|
s.Flags.Set(0)
|
|
}
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (s *MessagesSendEncryptedFileRequest) Encode(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't encode messages.sendEncryptedFile#5559481d as nil")
|
|
}
|
|
b.PutID(MessagesSendEncryptedFileRequestTypeID)
|
|
return s.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (s *MessagesSendEncryptedFileRequest) EncodeBare(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't encode messages.sendEncryptedFile#5559481d as nil")
|
|
}
|
|
s.SetFlags()
|
|
if err := s.Flags.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field flags: %w", err)
|
|
}
|
|
if err := s.Peer.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field peer: %w", err)
|
|
}
|
|
b.PutLong(s.RandomID)
|
|
b.PutBytes(s.Data)
|
|
if s.File == nil {
|
|
return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field file is nil")
|
|
}
|
|
if err := s.File.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field file: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (s *MessagesSendEncryptedFileRequest) Decode(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't decode messages.sendEncryptedFile#5559481d to nil")
|
|
}
|
|
if err := b.ConsumeID(MessagesSendEncryptedFileRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: %w", err)
|
|
}
|
|
return s.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (s *MessagesSendEncryptedFileRequest) DecodeBare(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't decode messages.sendEncryptedFile#5559481d to nil")
|
|
}
|
|
{
|
|
if err := s.Flags.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field flags: %w", err)
|
|
}
|
|
}
|
|
s.Silent = s.Flags.Has(0)
|
|
{
|
|
if err := s.Peer.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field peer: %w", err)
|
|
}
|
|
}
|
|
{
|
|
value, err := b.Long()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field random_id: %w", err)
|
|
}
|
|
s.RandomID = value
|
|
}
|
|
{
|
|
value, err := b.Bytes()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field data: %w", err)
|
|
}
|
|
s.Data = value
|
|
}
|
|
{
|
|
value, err := DecodeInputEncryptedFile(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field file: %w", err)
|
|
}
|
|
s.File = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SetSilent sets value of Silent conditional field.
|
|
func (s *MessagesSendEncryptedFileRequest) SetSilent(value bool) {
|
|
if value {
|
|
s.Flags.Set(0)
|
|
s.Silent = true
|
|
} else {
|
|
s.Flags.Unset(0)
|
|
s.Silent = false
|
|
}
|
|
}
|
|
|
|
// GetSilent returns value of Silent conditional field.
|
|
func (s *MessagesSendEncryptedFileRequest) GetSilent() (value bool) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
return s.Flags.Has(0)
|
|
}
|
|
|
|
// GetPeer returns value of Peer field.
|
|
func (s *MessagesSendEncryptedFileRequest) GetPeer() (value InputEncryptedChat) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
return s.Peer
|
|
}
|
|
|
|
// GetRandomID returns value of RandomID field.
|
|
func (s *MessagesSendEncryptedFileRequest) GetRandomID() (value int64) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
return s.RandomID
|
|
}
|
|
|
|
// GetData returns value of Data field.
|
|
func (s *MessagesSendEncryptedFileRequest) GetData() (value []byte) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
return s.Data
|
|
}
|
|
|
|
// GetFile returns value of File field.
|
|
func (s *MessagesSendEncryptedFileRequest) GetFile() (value InputEncryptedFileClass) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
return s.File
|
|
}
|
|
|
|
// GetFileAsNotEmpty returns mapped value of File field.
|
|
func (s *MessagesSendEncryptedFileRequest) GetFileAsNotEmpty() (NotEmptyInputEncryptedFile, bool) {
|
|
return s.File.AsNotEmpty()
|
|
}
|
|
|
|
// MessagesSendEncryptedFile invokes method messages.sendEncryptedFile#5559481d returning error if any.
|
|
// Sends a message with a file attachment to a secret chat
|
|
//
|
|
// Possible errors:
|
|
//
|
|
// 400 CHAT_ID_INVALID: The provided chat id is invalid.
|
|
// 400 DATA_TOO_LONG: Data too long.
|
|
// 400 ENCRYPTION_DECLINED: The secret chat was declined.
|
|
// 400 FILE_EMTPY: An empty file was provided.
|
|
// 400 MD5_CHECKSUM_INVALID: The MD5 checksums do not match.
|
|
// 400 MSG_WAIT_FAILED: A waiting call returned an error.
|
|
//
|
|
// See https://core.telegram.org/method/messages.sendEncryptedFile for reference.
|
|
func (c *Client) MessagesSendEncryptedFile(ctx context.Context, request *MessagesSendEncryptedFileRequest) (MessagesSentEncryptedMessageClass, error) {
|
|
var result MessagesSentEncryptedMessageBox
|
|
|
|
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
|
return nil, err
|
|
}
|
|
return result.SentEncryptedMessage, nil
|
|
}
|