2018-12-31 20:04:05 +01:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/telegram/DialogId.h"
|
2021-08-01 05:17:51 +02:00
|
|
|
#include "td/telegram/EncryptedFile.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/files/FileId.h"
|
2023-07-01 15:22:01 +02:00
|
|
|
#include "td/telegram/files/FileType.h"
|
2022-04-10 00:15:49 +02:00
|
|
|
#include "td/telegram/PhotoSize.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/secret_api.h"
|
2021-09-18 23:47:05 +02:00
|
|
|
#include "td/telegram/SecretInputMedia.h"
|
2023-01-20 23:51:38 +01:00
|
|
|
#include "td/telegram/StickerPhotoSize.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
2021-09-18 23:47:05 +02:00
|
|
|
#include "td/telegram/UserId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-03-01 20:51:33 +01:00
|
|
|
#include "td/utils/buffer.h"
|
|
|
|
#include "td/utils/common.h"
|
2020-07-06 14:26:29 +02:00
|
|
|
#include "td/utils/MovableValue.h"
|
2023-05-22 14:35:25 +02:00
|
|
|
#include "td/utils/Status.h"
|
2019-03-01 20:51:33 +01:00
|
|
|
#include "td/utils/StringBuilder.h"
|
2023-01-22 22:57:40 +01:00
|
|
|
#include "td/utils/unique_value_ptr.h"
|
2019-03-01 20:51:33 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class FileManager;
|
2023-01-20 15:31:33 +01:00
|
|
|
class Td;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
struct DialogPhoto {
|
|
|
|
FileId small_file_id;
|
|
|
|
FileId big_file_id;
|
2021-04-09 16:01:58 +02:00
|
|
|
string minithumbnail;
|
2020-07-08 21:59:31 +02:00
|
|
|
bool has_animation = false;
|
2022-12-09 13:52:21 +01:00
|
|
|
bool is_personal = false;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
2021-07-04 04:58:54 +02:00
|
|
|
struct ProfilePhoto final : public DialogPhoto {
|
2018-12-31 20:04:05 +01:00
|
|
|
int64 id = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Photo {
|
2020-07-06 14:26:29 +02:00
|
|
|
MovableValue<int64, -2> id;
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 date = 0;
|
2019-03-01 20:51:33 +01:00
|
|
|
string minithumbnail;
|
2018-12-31 20:04:05 +01:00
|
|
|
vector<PhotoSize> photos;
|
|
|
|
|
2020-07-07 10:41:01 +02:00
|
|
|
vector<AnimationSize> animations;
|
2020-06-24 13:13:33 +02:00
|
|
|
|
2023-01-22 22:57:40 +01:00
|
|
|
unique_value_ptr<StickerPhotoSize> sticker_photo_size;
|
2023-01-18 20:25:25 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool has_stickers = false;
|
|
|
|
vector<FileId> sticker_file_ids;
|
2020-06-23 20:04:26 +02:00
|
|
|
|
|
|
|
bool is_empty() const {
|
2020-07-06 14:26:29 +02:00
|
|
|
return id.get() == -2;
|
2020-06-23 20:04:26 +02:00
|
|
|
}
|
2022-09-22 17:25:20 +02:00
|
|
|
|
|
|
|
bool is_bad() const {
|
|
|
|
if (is_empty()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
for (auto &photo_size : photos) {
|
|
|
|
if (!photo_size.file_id.is_valid()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
2022-12-22 20:38:30 +01:00
|
|
|
int64 get_profile_photo_id(const tl_object_ptr<telegram_api::UserProfilePhoto> &profile_photo_ptr);
|
|
|
|
|
2019-06-08 11:26:35 +02:00
|
|
|
ProfilePhoto get_profile_photo(FileManager *file_manager, UserId user_id, int64 user_access_hash,
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<telegram_api::UserProfilePhoto> &&profile_photo_ptr);
|
|
|
|
tl_object_ptr<td_api::profilePhoto> get_profile_photo_object(FileManager *file_manager,
|
2020-07-08 21:59:31 +02:00
|
|
|
const ProfilePhoto &profile_photo);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-04-29 09:50:10 +02:00
|
|
|
bool need_update_profile_photo(const ProfilePhoto &from, const ProfilePhoto &to);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const ProfilePhoto &profile_photo);
|
|
|
|
|
2019-06-08 11:26:35 +02:00
|
|
|
DialogPhoto get_dialog_photo(FileManager *file_manager, DialogId dialog_id, int64 dialog_access_hash,
|
|
|
|
tl_object_ptr<telegram_api::ChatPhoto> &&chat_photo_ptr);
|
2023-06-02 13:42:28 +02:00
|
|
|
|
2020-07-07 12:00:56 +02:00
|
|
|
tl_object_ptr<td_api::chatPhotoInfo> get_chat_photo_info_object(FileManager *file_manager,
|
|
|
|
const DialogPhoto *dialog_photo);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-12-09 13:52:21 +01:00
|
|
|
DialogPhoto as_fake_dialog_photo(const Photo &photo, DialogId dialog_id, bool is_personal);
|
2020-07-20 16:05:49 +02:00
|
|
|
|
2022-12-09 13:52:21 +01:00
|
|
|
DialogPhoto as_dialog_photo(FileManager *file_manager, DialogId dialog_id, int64 dialog_access_hash, const Photo &photo,
|
|
|
|
bool is_personal);
|
2022-04-28 19:33:24 +02:00
|
|
|
|
2022-12-09 13:52:21 +01:00
|
|
|
ProfilePhoto as_profile_photo(FileManager *file_manager, UserId user_id, int64 user_access_hash, const Photo &photo,
|
|
|
|
bool is_personal);
|
2019-06-08 11:26:35 +02:00
|
|
|
|
2022-04-28 20:02:44 +02:00
|
|
|
bool is_same_dialog_photo(FileManager *file_manager, DialogId dialog_id, const Photo &photo,
|
2022-12-09 13:52:21 +01:00
|
|
|
const DialogPhoto &dialog_photo, bool is_personal);
|
2022-04-28 20:02:44 +02:00
|
|
|
|
2019-01-20 04:34:47 +01:00
|
|
|
vector<FileId> dialog_photo_get_file_ids(const DialogPhoto &dialog_photo);
|
|
|
|
|
2022-04-29 09:50:10 +02:00
|
|
|
bool need_update_dialog_photo(const DialogPhoto &from, const DialogPhoto &to);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const DialogPhoto &dialog_photo);
|
|
|
|
|
2023-05-25 00:26:26 +02:00
|
|
|
Photo get_photo(Td *td, tl_object_ptr<telegram_api::Photo> &&photo, DialogId owner_dialog_id,
|
|
|
|
FileType file_type = FileType::Photo);
|
2023-05-22 14:35:25 +02:00
|
|
|
|
2023-05-25 00:26:26 +02:00
|
|
|
Photo get_photo(Td *td, tl_object_ptr<telegram_api::photo> &&photo, DialogId owner_dialog_id,
|
|
|
|
FileType file_type = FileType::Photo);
|
2023-05-22 14:35:25 +02:00
|
|
|
|
2021-08-01 05:17:51 +02:00
|
|
|
Photo get_encrypted_file_photo(FileManager *file_manager, unique_ptr<EncryptedFile> &&file,
|
2019-06-17 01:05:56 +02:00
|
|
|
tl_object_ptr<secret_api::decryptedMessageMediaPhoto> &&photo, DialogId owner_dialog_id);
|
2023-05-22 14:35:25 +02:00
|
|
|
|
2018-09-27 21:44:40 +02:00
|
|
|
Photo get_web_document_photo(FileManager *file_manager, tl_object_ptr<telegram_api::WebDocument> web_document,
|
|
|
|
DialogId owner_dialog_id);
|
2023-05-22 14:35:25 +02:00
|
|
|
|
|
|
|
Result<Photo> create_photo(FileManager *file_manager, FileId file_id, PhotoSize &&thumbnail, int32 width, int32 height,
|
|
|
|
vector<FileId> &&sticker_file_ids);
|
|
|
|
|
2020-07-06 17:45:43 +02:00
|
|
|
tl_object_ptr<td_api::photo> get_photo_object(FileManager *file_manager, const Photo &photo);
|
2023-05-22 14:35:25 +02:00
|
|
|
|
2020-07-07 12:48:56 +02:00
|
|
|
tl_object_ptr<td_api::chatPhoto> get_chat_photo_object(FileManager *file_manager, const Photo &photo);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2023-05-18 16:03:56 +02:00
|
|
|
void merge_photos(Td *td, const Photo *old_photo, Photo *new_photo, DialogId dialog_id, bool need_merge_files,
|
|
|
|
bool &is_content_changed, bool &need_update);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void photo_delete_thumbnail(Photo &photo);
|
|
|
|
|
2020-05-03 14:44:33 +02:00
|
|
|
bool photo_has_input_media(FileManager *file_manager, const Photo &photo, bool is_secret, bool is_bot);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-09-22 17:25:20 +02:00
|
|
|
FileId get_photo_upload_file_id(const Photo &photo);
|
|
|
|
|
|
|
|
FileId get_photo_any_file_id(const Photo &photo);
|
|
|
|
|
|
|
|
FileId get_photo_thumbnail_file_id(const Photo &photo);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
SecretInputMedia photo_get_secret_input_media(FileManager *file_manager, const Photo &photo,
|
|
|
|
tl_object_ptr<telegram_api::InputEncryptedFile> input_file,
|
|
|
|
const string &caption, BufferSlice thumbnail);
|
|
|
|
|
|
|
|
tl_object_ptr<telegram_api::InputMedia> photo_get_input_media(FileManager *file_manager, const Photo &photo,
|
|
|
|
tl_object_ptr<telegram_api::InputFile> input_file,
|
2022-12-20 16:06:21 +01:00
|
|
|
int32 ttl, bool has_spoiler);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-01-06 00:15:07 +01:00
|
|
|
vector<FileId> photo_get_file_ids(const Photo &photo);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool operator==(const Photo &lhs, const Photo &rhs);
|
|
|
|
bool operator!=(const Photo &lhs, const Photo &rhs);
|
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const Photo &photo);
|
|
|
|
|
2019-01-22 17:08:41 +01:00
|
|
|
tl_object_ptr<telegram_api::userProfilePhoto> convert_photo_to_profile_photo(
|
2022-12-09 13:52:21 +01:00
|
|
|
const tl_object_ptr<telegram_api::photo> &photo, bool is_personal);
|
2019-01-22 17:08:41 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|