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);
|
2018-12-31 20:04:05 +01:00
|
|
|
store(video_note->duration, storer);
|
|
|
|
store(video_note->dimensions, storer);
|
2019-03-01 20:51:33 +01:00
|
|
|
store(video_note->minithumbnail, storer);
|
2018-12-31 20:04:05 +01:00
|
|
|
store(video_note->thumbnail, 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>();
|
|
|
|
parse(video_note->duration, parser);
|
|
|
|
parse(video_note->dimensions, parser);
|
2019-03-01 20:51:33 +01:00
|
|
|
if (parser.version() >= static_cast<int32>(Version::SupportMinithumbnails)) {
|
|
|
|
parse(video_note->minithumbnail, parser);
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
parse(video_note->thumbnail, parser);
|
|
|
|
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
|