Files
mautrix-telegram/pkg/gotd/tg/tl_photos_upload_profile_photo_gen.go
T
2025-06-27 20:03:37 -07:00

495 lines
13 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{}
)
// PhotosUploadProfilePhotoRequest represents TL type `photos.uploadProfilePhoto#388a3b5`.
// Updates current user profile photo.
// The file, video and video_emoji_markup flags are mutually exclusive.
//
// See https://core.telegram.org/method/photos.uploadProfilePhoto for reference.
type PhotosUploadProfilePhotoRequest struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// If set, the chosen profile photo will be shown to users that can't display your main
// profile photo due to your privacy settings.
Fallback bool
// Can contain info of a bot we own, to change the profile photo of that bot, instead of
// the current user.
//
// Use SetBot and GetBot helpers.
Bot InputUserClass
// Profile photo
//
// Use SetFile and GetFile helpers.
File InputFileClass
// Animated profile picture¹ video
//
// Links:
// 1) https://core.telegram.org/api/files#animated-profile-pictures
//
// Use SetVideo and GetVideo helpers.
Video InputFileClass
// Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker
// that should be used as static preview; can only be used if video or video_emoji_markup
// is set.
//
// Use SetVideoStartTs and GetVideoStartTs helpers.
VideoStartTs float64
// Animated sticker profile picture, must contain either a videoSizeEmojiMarkup¹ or a
// videoSizeStickerMarkup² constructor.
//
// Links:
// 1) https://core.telegram.org/constructor/videoSizeEmojiMarkup
// 2) https://core.telegram.org/constructor/videoSizeStickerMarkup
//
// Use SetVideoEmojiMarkup and GetVideoEmojiMarkup helpers.
VideoEmojiMarkup VideoSizeClass
}
// PhotosUploadProfilePhotoRequestTypeID is TL type id of PhotosUploadProfilePhotoRequest.
const PhotosUploadProfilePhotoRequestTypeID = 0x388a3b5
// Ensuring interfaces in compile-time for PhotosUploadProfilePhotoRequest.
var (
_ bin.Encoder = &PhotosUploadProfilePhotoRequest{}
_ bin.Decoder = &PhotosUploadProfilePhotoRequest{}
_ bin.BareEncoder = &PhotosUploadProfilePhotoRequest{}
_ bin.BareDecoder = &PhotosUploadProfilePhotoRequest{}
)
func (u *PhotosUploadProfilePhotoRequest) Zero() bool {
if u == nil {
return true
}
if !(u.Flags.Zero()) {
return false
}
if !(u.Fallback == false) {
return false
}
if !(u.Bot == nil) {
return false
}
if !(u.File == nil) {
return false
}
if !(u.Video == nil) {
return false
}
if !(u.VideoStartTs == 0) {
return false
}
if !(u.VideoEmojiMarkup == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (u *PhotosUploadProfilePhotoRequest) String() string {
if u == nil {
return "PhotosUploadProfilePhotoRequest(nil)"
}
type Alias PhotosUploadProfilePhotoRequest
return fmt.Sprintf("PhotosUploadProfilePhotoRequest%+v", Alias(*u))
}
// FillFrom fills PhotosUploadProfilePhotoRequest from given interface.
func (u *PhotosUploadProfilePhotoRequest) FillFrom(from interface {
GetFallback() (value bool)
GetBot() (value InputUserClass, ok bool)
GetFile() (value InputFileClass, ok bool)
GetVideo() (value InputFileClass, ok bool)
GetVideoStartTs() (value float64, ok bool)
GetVideoEmojiMarkup() (value VideoSizeClass, ok bool)
}) {
u.Fallback = from.GetFallback()
if val, ok := from.GetBot(); ok {
u.Bot = val
}
if val, ok := from.GetFile(); ok {
u.File = val
}
if val, ok := from.GetVideo(); ok {
u.Video = val
}
if val, ok := from.GetVideoStartTs(); ok {
u.VideoStartTs = val
}
if val, ok := from.GetVideoEmojiMarkup(); ok {
u.VideoEmojiMarkup = val
}
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PhotosUploadProfilePhotoRequest) TypeID() uint32 {
return PhotosUploadProfilePhotoRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*PhotosUploadProfilePhotoRequest) TypeName() string {
return "photos.uploadProfilePhoto"
}
// TypeInfo returns info about TL type.
func (u *PhotosUploadProfilePhotoRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "photos.uploadProfilePhoto",
ID: PhotosUploadProfilePhotoRequestTypeID,
}
if u == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Fallback",
SchemaName: "fallback",
Null: !u.Flags.Has(3),
},
{
Name: "Bot",
SchemaName: "bot",
Null: !u.Flags.Has(5),
},
{
Name: "File",
SchemaName: "file",
Null: !u.Flags.Has(0),
},
{
Name: "Video",
SchemaName: "video",
Null: !u.Flags.Has(1),
},
{
Name: "VideoStartTs",
SchemaName: "video_start_ts",
Null: !u.Flags.Has(2),
},
{
Name: "VideoEmojiMarkup",
SchemaName: "video_emoji_markup",
Null: !u.Flags.Has(4),
},
}
return typ
}
// SetFlags sets flags for non-zero fields.
func (u *PhotosUploadProfilePhotoRequest) SetFlags() {
if !(u.Fallback == false) {
u.Flags.Set(3)
}
if !(u.Bot == nil) {
u.Flags.Set(5)
}
if !(u.File == nil) {
u.Flags.Set(0)
}
if !(u.Video == nil) {
u.Flags.Set(1)
}
if !(u.VideoStartTs == 0) {
u.Flags.Set(2)
}
if !(u.VideoEmojiMarkup == nil) {
u.Flags.Set(4)
}
}
// Encode implements bin.Encoder.
func (u *PhotosUploadProfilePhotoRequest) Encode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode photos.uploadProfilePhoto#388a3b5 as nil")
}
b.PutID(PhotosUploadProfilePhotoRequestTypeID)
return u.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (u *PhotosUploadProfilePhotoRequest) EncodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode photos.uploadProfilePhoto#388a3b5 as nil")
}
u.SetFlags()
if err := u.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field flags: %w", err)
}
if u.Flags.Has(5) {
if u.Bot == nil {
return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field bot is nil")
}
if err := u.Bot.Encode(b); err != nil {
return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field bot: %w", err)
}
}
if u.Flags.Has(0) {
if u.File == nil {
return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field file is nil")
}
if err := u.File.Encode(b); err != nil {
return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field file: %w", err)
}
}
if u.Flags.Has(1) {
if u.Video == nil {
return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field video is nil")
}
if err := u.Video.Encode(b); err != nil {
return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field video: %w", err)
}
}
if u.Flags.Has(2) {
b.PutDouble(u.VideoStartTs)
}
if u.Flags.Has(4) {
if u.VideoEmojiMarkup == nil {
return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field video_emoji_markup is nil")
}
if err := u.VideoEmojiMarkup.Encode(b); err != nil {
return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field video_emoji_markup: %w", err)
}
}
return nil
}
// Decode implements bin.Decoder.
func (u *PhotosUploadProfilePhotoRequest) Decode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode photos.uploadProfilePhoto#388a3b5 to nil")
}
if err := b.ConsumeID(PhotosUploadProfilePhotoRequestTypeID); err != nil {
return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: %w", err)
}
return u.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (u *PhotosUploadProfilePhotoRequest) DecodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode photos.uploadProfilePhoto#388a3b5 to nil")
}
{
if err := u.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field flags: %w", err)
}
}
u.Fallback = u.Flags.Has(3)
if u.Flags.Has(5) {
value, err := DecodeInputUser(b)
if err != nil {
return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field bot: %w", err)
}
u.Bot = value
}
if u.Flags.Has(0) {
value, err := DecodeInputFile(b)
if err != nil {
return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field file: %w", err)
}
u.File = value
}
if u.Flags.Has(1) {
value, err := DecodeInputFile(b)
if err != nil {
return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field video: %w", err)
}
u.Video = value
}
if u.Flags.Has(2) {
value, err := b.Double()
if err != nil {
return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field video_start_ts: %w", err)
}
u.VideoStartTs = value
}
if u.Flags.Has(4) {
value, err := DecodeVideoSize(b)
if err != nil {
return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field video_emoji_markup: %w", err)
}
u.VideoEmojiMarkup = value
}
return nil
}
// SetFallback sets value of Fallback conditional field.
func (u *PhotosUploadProfilePhotoRequest) SetFallback(value bool) {
if value {
u.Flags.Set(3)
u.Fallback = true
} else {
u.Flags.Unset(3)
u.Fallback = false
}
}
// GetFallback returns value of Fallback conditional field.
func (u *PhotosUploadProfilePhotoRequest) GetFallback() (value bool) {
if u == nil {
return
}
return u.Flags.Has(3)
}
// SetBot sets value of Bot conditional field.
func (u *PhotosUploadProfilePhotoRequest) SetBot(value InputUserClass) {
u.Flags.Set(5)
u.Bot = value
}
// GetBot returns value of Bot conditional field and
// boolean which is true if field was set.
func (u *PhotosUploadProfilePhotoRequest) GetBot() (value InputUserClass, ok bool) {
if u == nil {
return
}
if !u.Flags.Has(5) {
return value, false
}
return u.Bot, true
}
// SetFile sets value of File conditional field.
func (u *PhotosUploadProfilePhotoRequest) SetFile(value InputFileClass) {
u.Flags.Set(0)
u.File = value
}
// GetFile returns value of File conditional field and
// boolean which is true if field was set.
func (u *PhotosUploadProfilePhotoRequest) GetFile() (value InputFileClass, ok bool) {
if u == nil {
return
}
if !u.Flags.Has(0) {
return value, false
}
return u.File, true
}
// SetVideo sets value of Video conditional field.
func (u *PhotosUploadProfilePhotoRequest) SetVideo(value InputFileClass) {
u.Flags.Set(1)
u.Video = value
}
// GetVideo returns value of Video conditional field and
// boolean which is true if field was set.
func (u *PhotosUploadProfilePhotoRequest) GetVideo() (value InputFileClass, ok bool) {
if u == nil {
return
}
if !u.Flags.Has(1) {
return value, false
}
return u.Video, true
}
// SetVideoStartTs sets value of VideoStartTs conditional field.
func (u *PhotosUploadProfilePhotoRequest) SetVideoStartTs(value float64) {
u.Flags.Set(2)
u.VideoStartTs = value
}
// GetVideoStartTs returns value of VideoStartTs conditional field and
// boolean which is true if field was set.
func (u *PhotosUploadProfilePhotoRequest) GetVideoStartTs() (value float64, ok bool) {
if u == nil {
return
}
if !u.Flags.Has(2) {
return value, false
}
return u.VideoStartTs, true
}
// SetVideoEmojiMarkup sets value of VideoEmojiMarkup conditional field.
func (u *PhotosUploadProfilePhotoRequest) SetVideoEmojiMarkup(value VideoSizeClass) {
u.Flags.Set(4)
u.VideoEmojiMarkup = value
}
// GetVideoEmojiMarkup returns value of VideoEmojiMarkup conditional field and
// boolean which is true if field was set.
func (u *PhotosUploadProfilePhotoRequest) GetVideoEmojiMarkup() (value VideoSizeClass, ok bool) {
if u == nil {
return
}
if !u.Flags.Has(4) {
return value, false
}
return u.VideoEmojiMarkup, true
}
// PhotosUploadProfilePhoto invokes method photos.uploadProfilePhoto#388a3b5 returning error if any.
// Updates current user profile photo.
// The file, video and video_emoji_markup flags are mutually exclusive.
//
// Possible errors:
//
// 400 ALBUM_PHOTOS_TOO_MANY: You have uploaded too many profile photos, delete some before retrying.
// 400 BOT_INVALID: This is not a valid bot.
// 400 EMOJI_MARKUP_INVALID: The specified video_emoji_markup was invalid.
// 400 FILE_PARTS_INVALID: The number of file parts is invalid.
// 400 IMAGE_PROCESS_FAILED: Failure while processing image.
// 400 PHOTO_CROP_FILE_MISSING: Photo crop file missing.
// 400 PHOTO_CROP_SIZE_SMALL: Photo is too small.
// 400 PHOTO_EXT_INVALID: The extension of the photo is invalid.
// 400 PHOTO_FILE_MISSING: Profile photo file missing.
// 400 PHOTO_INVALID: Photo invalid.
// 400 STICKER_MIME_INVALID: The specified sticker MIME type is invalid.
// 400 VIDEO_FILE_INVALID: The specified video file is invalid.
//
// See https://core.telegram.org/method/photos.uploadProfilePhoto for reference.
// Can be used by bots.
func (c *Client) PhotosUploadProfilePhoto(ctx context.Context, request *PhotosUploadProfilePhotoRequest) (*PhotosPhoto, error) {
var result PhotosPhoto
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return &result, nil
}