2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
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/DocumentsManager.h"
|
|
|
|
|
|
|
|
#include "td/telegram/files/FileId.hpp"
|
|
|
|
#include "td/telegram/Photo.hpp"
|
2019-05-14 16:26:13 +02:00
|
|
|
#include "td/telegram/Version.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
#include "td/utils/logging.h"
|
|
|
|
#include "td/utils/tl_helpers.h"
|
|
|
|
|
2020-05-23 21:27:24 +02:00
|
|
|
#include "td/telegram/ConfigShared.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class StorerT>
|
|
|
|
void DocumentsManager::store_document(FileId file_id, StorerT &storer) const {
|
2020-05-23 21:27:24 +02:00
|
|
|
//LOG(DEBUG) << "Store document " << file_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
auto it = documents_.find(file_id);
|
2020-05-23 21:27:24 +02:00
|
|
|
if (it == documents_.end() || it->second == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
2019-04-09 17:38:57 +02:00
|
|
|
const GeneralDocument *document = it->second.get();
|
2020-05-23 21:27:24 +02:00
|
|
|
if (document == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
store(document->file_name, storer);
|
|
|
|
store(document->mime_type, storer);
|
2019-03-01 20:51:33 +01:00
|
|
|
store(document->minithumbnail, storer);
|
2018-12-31 20:04:05 +01:00
|
|
|
store(document->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 DocumentsManager::parse_document(ParserT &parser) {
|
2019-04-09 17:38:57 +02:00
|
|
|
auto document = make_unique<GeneralDocument>();
|
2020-05-23 21:27:24 +02:00
|
|
|
|
|
|
|
string tmp_filename;
|
|
|
|
parse(tmp_filename, parser);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
parse(document->mime_type, parser);
|
2020-05-23 21:27:24 +02:00
|
|
|
|
|
|
|
if ( G()->shared_config().get_option_boolean("disable_document_filenames") && (
|
|
|
|
document->mime_type.rfind("image/") == 0 ||
|
|
|
|
document->mime_type.rfind("video/") == 0 ||
|
|
|
|
document->mime_type.rfind("audio/") == 0)) {
|
|
|
|
document->file_name = "0";
|
|
|
|
} else {
|
|
|
|
document->file_name = tmp_filename;
|
|
|
|
}
|
|
|
|
|
2019-03-01 20:51:33 +01:00
|
|
|
if (parser.version() >= static_cast<int32>(Version::SupportMinithumbnails)) {
|
2020-05-23 21:27:24 +02:00
|
|
|
string tmp_minithumbnail;
|
|
|
|
parse(tmp_minithumbnail, parser);
|
|
|
|
if (!G()->shared_config().get_option_boolean("disable_minithumbnails")) {
|
|
|
|
document->minithumbnail = tmp_minithumbnail;
|
|
|
|
}
|
2019-03-01 20:51:33 +01:00
|
|
|
}
|
2020-05-23 21:27:24 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
parse(document->thumbnail, parser);
|
|
|
|
parse(document->file_id, parser);
|
2020-05-23 21:27:24 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
LOG(DEBUG) << "Parsed document " << document->file_id;
|
2019-08-01 02:58:49 +02:00
|
|
|
if (parser.get_error() != nullptr || !document->file_id.is_valid()) {
|
|
|
|
return FileId();
|
|
|
|
}
|
2018-11-06 12:37:07 +01:00
|
|
|
return on_get_document(std::move(document), false);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|