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
|
2018-07-03 21:29:04 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/VideoNotesManager.h"
|
|
|
|
|
|
|
|
#include "td/telegram/files/FileId.hpp"
|
2022-04-10 00:15:49 +02:00
|
|
|
#include "td/telegram/PhotoSize.hpp"
|
2019-05-14 16:26:13 +02:00
|
|
|
#include "td/telegram/Version.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-02-12 21:48:16 +01:00
|
|
|
#include "td/utils/common.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/tl_helpers.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class StorerT>
|
|
|
|
void VideoNotesManager::store_video_note(FileId file_id, StorerT &storer) const {
|
2022-08-03 22:23:32 +02:00
|
|
|
const VideoNote *video_note = get_video_note(file_id);
|
|
|
|
CHECK(video_note != nullptr);
|
2022-10-20 19:35:00 +02:00
|
|
|
bool has_duration = video_note->duration != 0;
|
|
|
|
bool has_minithumbnail = !video_note->minithumbnail.empty();
|
|
|
|
bool has_thumbnail = video_note->thumbnail.file_id.is_valid();
|
2022-10-20 20:31:00 +02:00
|
|
|
bool is_transcribed = video_note->transcription_info != nullptr && video_note->transcription_info->is_transcribed();
|
2022-10-20 22:23:40 +02:00
|
|
|
bool has_waveform = !video_note->waveform.empty();
|
2022-10-20 19:35:00 +02:00
|
|
|
BEGIN_STORE_FLAGS();
|
|
|
|
STORE_FLAG(has_duration);
|
|
|
|
STORE_FLAG(has_minithumbnail);
|
|
|
|
STORE_FLAG(has_thumbnail);
|
2022-10-20 20:31:00 +02:00
|
|
|
STORE_FLAG(is_transcribed);
|
2022-10-20 22:23:40 +02:00
|
|
|
STORE_FLAG(has_waveform);
|
2022-10-20 19:35:00 +02:00
|
|
|
END_STORE_FLAGS();
|
|
|
|
if (has_duration) {
|
|
|
|
store(video_note->duration, storer);
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
store(video_note->dimensions, storer);
|
2022-10-20 19:35:00 +02:00
|
|
|
if (has_minithumbnail) {
|
|
|
|
store(video_note->minithumbnail, storer);
|
|
|
|
}
|
|
|
|
if (has_thumbnail) {
|
|
|
|
store(video_note->thumbnail, storer);
|
|
|
|
}
|
2022-10-20 20:31:00 +02:00
|
|
|
if (is_transcribed) {
|
|
|
|
store(video_note->transcription_info, storer);
|
|
|
|
}
|
2022-10-20 22:23:40 +02:00
|
|
|
if (has_waveform) {
|
|
|
|
store(video_note->waveform, storer);
|
|
|
|
}
|
2018-03-08 20:43:12 +01:00
|
|
|
store(file_id, storer);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class ParserT>
|
|
|
|
FileId VideoNotesManager::parse_video_note(ParserT &parser) {
|
2018-12-31 20:04:05 +01:00
|
|
|
auto video_note = make_unique<VideoNote>();
|
2022-10-20 19:35:00 +02:00
|
|
|
bool has_duration;
|
|
|
|
bool has_minithumbnail;
|
|
|
|
bool has_thumbnail;
|
2022-10-20 20:31:00 +02:00
|
|
|
bool is_transcribed;
|
2022-10-20 22:23:40 +02:00
|
|
|
bool has_waveform;
|
2022-10-20 19:35:00 +02:00
|
|
|
if (parser.version() >= static_cast<int32>(Version::AddVideoNoteFlags)) {
|
|
|
|
BEGIN_PARSE_FLAGS();
|
|
|
|
PARSE_FLAG(has_duration);
|
|
|
|
PARSE_FLAG(has_minithumbnail);
|
|
|
|
PARSE_FLAG(has_thumbnail);
|
2022-10-20 20:31:00 +02:00
|
|
|
PARSE_FLAG(is_transcribed);
|
2022-10-20 22:23:40 +02:00
|
|
|
PARSE_FLAG(has_waveform);
|
2022-10-20 19:35:00 +02:00
|
|
|
END_PARSE_FLAGS();
|
|
|
|
} else {
|
|
|
|
has_duration = true;
|
|
|
|
has_minithumbnail = parser.version() >= static_cast<int32>(Version::SupportMinithumbnails);
|
|
|
|
has_thumbnail = true;
|
2022-10-20 20:31:00 +02:00
|
|
|
is_transcribed = false;
|
2022-10-20 22:23:40 +02:00
|
|
|
has_waveform = false;
|
2022-10-20 19:35:00 +02:00
|
|
|
}
|
|
|
|
if (has_duration) {
|
|
|
|
parse(video_note->duration, parser);
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
parse(video_note->dimensions, parser);
|
2022-10-20 19:35:00 +02:00
|
|
|
if (has_minithumbnail) {
|
2019-03-01 20:51:33 +01:00
|
|
|
parse(video_note->minithumbnail, parser);
|
|
|
|
}
|
2022-10-20 19:35:00 +02:00
|
|
|
if (has_thumbnail) {
|
|
|
|
parse(video_note->thumbnail, parser);
|
|
|
|
}
|
2022-10-20 20:31:00 +02:00
|
|
|
if (is_transcribed) {
|
|
|
|
parse(video_note->transcription_info, parser);
|
|
|
|
}
|
2022-10-20 22:23:40 +02:00
|
|
|
if (has_waveform) {
|
|
|
|
parse(video_note->waveform, parser);
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
parse(video_note->file_id, parser);
|
2019-08-01 02:58:49 +02:00
|
|
|
if (parser.get_error() != nullptr || !video_note->file_id.is_valid()) {
|
|
|
|
return FileId();
|
|
|
|
}
|
2018-11-06 12:37:07 +01:00
|
|
|
return on_get_video_note(std::move(video_note), false);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|