2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
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
|
|
|
|
|
2022-06-02 16:52:12 +02:00
|
|
|
#include "td/telegram/Dimensions.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/files/FileId.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/SecretInputMedia.h"
|
2021-10-27 16:32:09 +02:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
#include "td/utils/buffer.h"
|
|
|
|
#include "td/utils/common.h"
|
2022-08-04 09:50:34 +02:00
|
|
|
#include "td/utils/WaitFreeHashMap.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
class Td;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
class VideosManager {
|
|
|
|
public:
|
|
|
|
explicit VideosManager(Td *td);
|
2022-07-20 12:40:14 +02:00
|
|
|
VideosManager(const VideosManager &) = delete;
|
|
|
|
VideosManager &operator=(const VideosManager &) = delete;
|
|
|
|
VideosManager(VideosManager &&) = delete;
|
|
|
|
VideosManager &operator=(VideosManager &&) = delete;
|
|
|
|
~VideosManager();
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-09-27 20:14:32 +02:00
|
|
|
int32 get_video_duration(FileId file_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-08-28 13:16:29 +02:00
|
|
|
tl_object_ptr<td_api::video> get_video_object(FileId file_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-07-07 10:41:01 +02:00
|
|
|
void create_video(FileId file_id, string minithumbnail, PhotoSize thumbnail, AnimationSize animated_thumbnail,
|
2020-05-30 00:48:56 +02:00
|
|
|
bool has_stickers, vector<FileId> &&sticker_file_ids, string file_name, string mime_type,
|
|
|
|
int32 duration, Dimensions dimensions, bool supports_streaming, bool replace);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
tl_object_ptr<telegram_api::InputMedia> get_input_media(FileId file_id,
|
|
|
|
tl_object_ptr<telegram_api::InputFile> input_file,
|
|
|
|
tl_object_ptr<telegram_api::InputFile> input_thumbnail,
|
2018-01-30 18:06:54 +01:00
|
|
|
int32 ttl) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
SecretInputMedia get_secret_input_media(FileId video_file_id,
|
|
|
|
tl_object_ptr<telegram_api::InputEncryptedFile> input_file,
|
2022-05-11 06:46:06 +02:00
|
|
|
const string &caption, BufferSlice thumbnail, int32 layer) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
FileId get_video_thumbnail_file_id(FileId file_id) const;
|
|
|
|
|
2020-05-30 00:48:56 +02:00
|
|
|
FileId get_video_animated_thumbnail_file_id(FileId file_id) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void delete_video_thumbnail(FileId file_id);
|
|
|
|
|
|
|
|
FileId dup_video(FileId new_id, FileId old_id);
|
|
|
|
|
2022-08-03 20:38:03 +02:00
|
|
|
void merge_videos(FileId new_id, FileId old_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class StorerT>
|
|
|
|
void store_video(FileId file_id, StorerT &storer) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class ParserT>
|
|
|
|
FileId parse_video(ParserT &parser);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
string get_video_search_text(FileId file_id) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
class Video {
|
|
|
|
public:
|
|
|
|
string file_name;
|
|
|
|
string mime_type;
|
|
|
|
int32 duration = 0;
|
|
|
|
Dimensions dimensions;
|
2019-03-01 20:51:33 +01:00
|
|
|
string minithumbnail;
|
2018-12-31 20:04:05 +01:00
|
|
|
PhotoSize thumbnail;
|
2020-07-07 10:41:01 +02:00
|
|
|
AnimationSize animated_thumbnail;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-02-07 00:31:38 +01:00
|
|
|
bool supports_streaming = false;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool has_stickers = false;
|
|
|
|
vector<FileId> sticker_file_ids;
|
|
|
|
|
|
|
|
FileId file_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
const Video *get_video(FileId file_id) const;
|
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
FileId on_get_video(unique_ptr<Video> new_video, bool replace);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Td *td_;
|
2022-08-04 09:50:34 +02:00
|
|
|
WaitFreeHashMap<FileId, unique_ptr<Video>, FileIdHash> videos_;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|