2018-12-05 10:32:31 +01:00
|
|
|
//
|
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
|
|
|
//
|
|
|
|
// 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)
|
|
|
|
//
|
|
|
|
#include "td/telegram/FileReferenceManager.h"
|
|
|
|
|
2019-01-14 19:46:04 +01:00
|
|
|
#include "td/telegram/AnimationsManager.h"
|
|
|
|
#include "td/telegram/ContactsManager.h"
|
2019-01-05 16:13:27 +01:00
|
|
|
#include "td/telegram/files/FileManager.h"
|
2018-12-05 10:32:31 +01:00
|
|
|
#include "td/telegram/Global.h"
|
|
|
|
#include "td/telegram/MessagesManager.h"
|
2019-02-02 11:30:49 +01:00
|
|
|
#include "td/telegram/StickersManager.h"
|
2019-01-19 18:19:29 +01:00
|
|
|
#include "td/telegram/WallpaperManager.h"
|
2019-01-14 19:46:04 +01:00
|
|
|
#include "td/telegram/WebPagesManager.h"
|
2018-12-05 10:32:31 +01:00
|
|
|
|
2019-01-19 18:19:29 +01:00
|
|
|
#include "td/utils/logging.h"
|
2019-01-18 20:10:38 +01:00
|
|
|
#include "td/utils/misc.h"
|
2019-01-14 19:46:04 +01:00
|
|
|
#include "td/utils/overloaded.h"
|
2018-12-05 10:32:31 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2019-01-14 19:46:04 +01:00
|
|
|
int VERBOSITY_NAME(file_references) = VERBOSITY_NAME(WARNING);
|
|
|
|
|
2019-01-23 17:00:56 +01:00
|
|
|
bool FileReferenceManager::is_file_reference_error(const Status &error) {
|
|
|
|
return error.is_error() && error.code() == 400 && begins_with(error.message(), "FILE_REFERENCE_");
|
|
|
|
}
|
|
|
|
|
2019-01-14 19:46:04 +01:00
|
|
|
/*
|
|
|
|
fileSourceMessage chat_id:int53 message_id:int53 = FileSource; // repaired with get_messages_from_server
|
|
|
|
fileSourceUserProfilePhoto user_id:int32 photo_id:int64 = FileSource; // repaired with photos.getUserPhotos
|
|
|
|
fileSourceBasicGroupPhoto basic_group_id:int32 = FileSource; // repaired with messages.getChats
|
|
|
|
fileSourceSupergroupPhoto supergroup_id:int32 = FileSource; // repaired with channels.getChannels
|
|
|
|
fileSourceWebPage url:string = FileSource; // repaired with messages.getWebPage
|
|
|
|
fileSourceWallpapers = FileSource; // repaired with account.getWallPapers
|
|
|
|
fileSourceSavedAnimations = FileSource; // repaired with messages.getSavedGifs
|
2019-02-02 11:30:49 +01:00
|
|
|
fileSourceRecentStickers is_attached:Bool = FileSource; // repaired with messages.getRecentStickers, not reliable
|
2019-02-02 11:54:40 +01:00
|
|
|
fileSourceFavoriteStickers = FileSource; // repaired with messages.getFavedStickers, not reliable
|
2019-01-14 19:46:04 +01:00
|
|
|
*/
|
|
|
|
|
2019-01-18 20:10:38 +01:00
|
|
|
FileSourceId FileReferenceManager::get_current_file_source_id() const {
|
|
|
|
return FileSourceId(narrow_cast<int32>(file_sources_.size()));
|
|
|
|
}
|
|
|
|
|
2019-01-18 20:36:23 +01:00
|
|
|
template <class T>
|
2019-01-21 19:22:56 +01:00
|
|
|
FileSourceId FileReferenceManager::add_file_source_id(T source, Slice source_str) {
|
2019-01-18 20:36:23 +01:00
|
|
|
file_sources_.emplace_back(std::move(source));
|
2019-01-21 19:22:56 +01:00
|
|
|
VLOG(file_references) << "Create file source " << file_sources_.size() << " for " << source_str;
|
2019-01-18 20:36:23 +01:00
|
|
|
return get_current_file_source_id();
|
|
|
|
}
|
|
|
|
|
2019-01-14 19:46:04 +01:00
|
|
|
FileSourceId FileReferenceManager::create_message_file_source(FullMessageId full_message_id) {
|
|
|
|
FileSourceMessage source{full_message_id};
|
2019-01-21 19:22:56 +01:00
|
|
|
return add_file_source_id(source, PSLICE() << full_message_id);
|
2019-01-18 20:36:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FileSourceId FileReferenceManager::create_user_photo_file_source(UserId user_id, int64 photo_id) {
|
|
|
|
FileSourceUserPhoto source{photo_id, user_id};
|
2019-01-21 19:22:56 +01:00
|
|
|
return add_file_source_id(source, PSLICE() << "photo " << photo_id << " of " << user_id);
|
2019-01-18 20:36:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FileSourceId FileReferenceManager::create_chat_photo_file_source(ChatId chat_id) {
|
|
|
|
FileSourceChatPhoto source{chat_id};
|
2019-01-21 19:22:56 +01:00
|
|
|
return add_file_source_id(source, PSLICE() << "photo of " << chat_id);
|
2019-01-18 20:36:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FileSourceId FileReferenceManager::create_channel_photo_file_source(ChannelId channel_id) {
|
|
|
|
FileSourceChannelPhoto source{channel_id};
|
2019-01-21 19:22:56 +01:00
|
|
|
return add_file_source_id(source, PSLICE() << "photo of " << channel_id);
|
2019-01-18 20:36:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FileSourceId FileReferenceManager::create_wallpapers_file_source() {
|
2019-01-22 15:35:29 +01:00
|
|
|
FileSourceWallpapers source;
|
2019-01-21 19:22:56 +01:00
|
|
|
return add_file_source_id(source, "wallpapers");
|
2019-01-18 20:36:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FileSourceId FileReferenceManager::create_web_page_file_source(string url) {
|
|
|
|
FileSourceWebPage source{std::move(url)};
|
2019-01-25 16:44:23 +01:00
|
|
|
auto source_str = PSTRING() << "web page of " << source.url;
|
|
|
|
return add_file_source_id(std::move(source), source_str);
|
2019-01-18 20:36:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FileSourceId FileReferenceManager::create_saved_animations_file_source() {
|
|
|
|
FileSourceSavedAnimations source;
|
2019-01-21 19:22:56 +01:00
|
|
|
return add_file_source_id(source, "saved animations");
|
2018-12-05 10:32:31 +01:00
|
|
|
}
|
|
|
|
|
2019-02-02 11:30:49 +01:00
|
|
|
FileSourceId FileReferenceManager::create_recent_stickers_file_source(bool is_attached) {
|
|
|
|
FileSourceRecentStickers source{is_attached};
|
|
|
|
return add_file_source_id(source, PSLICE() << "recent " << (is_attached ? "attached " : "") << "stickers");
|
|
|
|
}
|
|
|
|
|
2019-02-02 11:54:40 +01:00
|
|
|
FileSourceId FileReferenceManager::create_favorite_stickers_file_source() {
|
|
|
|
FileSourceFavoriteStickers source;
|
|
|
|
return add_file_source_id(source, PSLICE() << "favorite stickers");
|
|
|
|
}
|
|
|
|
|
2019-01-30 22:37:38 +01:00
|
|
|
bool FileReferenceManager::add_file_source(NodeId node_id, FileSourceId file_source_id) {
|
2019-01-21 19:22:56 +01:00
|
|
|
VLOG(file_references) << "Add " << file_source_id << " for file " << node_id;
|
2019-01-30 22:37:38 +01:00
|
|
|
return nodes_[node_id].file_source_ids.add(file_source_id);
|
2019-01-17 21:42:00 +01:00
|
|
|
}
|
2019-01-18 19:24:03 +01:00
|
|
|
|
2019-01-30 22:37:38 +01:00
|
|
|
bool FileReferenceManager::remove_file_source(NodeId node_id, FileSourceId file_source_id) {
|
2019-01-21 19:22:56 +01:00
|
|
|
VLOG(file_references) << "Remove " << file_source_id << " from file " << node_id;
|
2019-01-30 22:37:38 +01:00
|
|
|
return nodes_[node_id].file_source_ids.remove(file_source_id);
|
2019-01-17 21:42:00 +01:00
|
|
|
}
|
|
|
|
|
2019-01-29 12:07:58 +01:00
|
|
|
std::vector<FileSourceId> FileReferenceManager::get_some_file_sources(NodeId node_id) {
|
|
|
|
auto it = nodes_.find(node_id);
|
|
|
|
if (it == nodes_.end()) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return it->second.file_source_ids.get_some_elements();
|
|
|
|
}
|
|
|
|
|
2019-01-17 21:42:00 +01:00
|
|
|
void FileReferenceManager::merge(NodeId to_node_id, NodeId from_node_id) {
|
2019-01-21 18:43:58 +01:00
|
|
|
auto from_it = nodes_.find(from_node_id);
|
|
|
|
if (from_it == nodes_.end()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-17 21:42:00 +01:00
|
|
|
auto &to = nodes_[to_node_id];
|
2019-01-21 18:43:58 +01:00
|
|
|
auto &from = from_it->second;
|
2019-01-20 04:34:47 +01:00
|
|
|
VLOG(file_references) << "Merge " << to.file_source_ids.size() << " and " << from.file_source_ids.size()
|
|
|
|
<< " sources of files " << to_node_id << " and " << from_node_id;
|
2019-01-17 21:42:00 +01:00
|
|
|
CHECK(!to.query || to.query->proxy.empty());
|
|
|
|
CHECK(!from.query || from.query->proxy.empty());
|
|
|
|
if (to.query || from.query) {
|
|
|
|
if (!to.query) {
|
|
|
|
to.query = make_unique<Query>();
|
2019-01-18 20:36:23 +01:00
|
|
|
to.query->generation = ++query_generation_;
|
2019-01-17 21:42:00 +01:00
|
|
|
}
|
|
|
|
if (from.query) {
|
2019-01-19 02:09:58 +01:00
|
|
|
combine(to.query->promises, std::move(from.query->promises));
|
2019-01-17 21:42:00 +01:00
|
|
|
to.query->active_queries += from.query->active_queries;
|
|
|
|
from.query->proxy = {to_node_id, to.query->generation};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
to.file_source_ids.merge(std::move(from.file_source_ids));
|
|
|
|
run_node(to_node_id);
|
|
|
|
run_node(from_node_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileReferenceManager::run_node(NodeId node_id) {
|
|
|
|
Node &node = nodes_[node_id];
|
|
|
|
if (!node.query) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (node.query->active_queries != 0) {
|
|
|
|
return;
|
|
|
|
}
|
2019-01-23 20:20:48 +01:00
|
|
|
VLOG(file_references) << "Trying to repair file reference for file " << node_id;
|
2019-01-17 21:42:00 +01:00
|
|
|
if (node.query->promises.empty()) {
|
|
|
|
node.query = {};
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!node.file_source_ids.has_next()) {
|
2019-01-23 20:20:48 +01:00
|
|
|
VLOG(file_references) << "Have no more file sources to repair file reference for file " << node_id;
|
2019-01-17 21:42:00 +01:00
|
|
|
for (auto &p : node.query->promises) {
|
2019-01-23 20:20:48 +01:00
|
|
|
if (node.file_source_ids.empty()) {
|
|
|
|
p.set_error(Status::Error(400, "File not found"));
|
|
|
|
} else {
|
|
|
|
p.set_error(Status::Error(429, "Too Many Requests: retry after 1"));
|
|
|
|
}
|
2019-01-17 21:42:00 +01:00
|
|
|
}
|
|
|
|
node.query = {};
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto file_source_id = node.file_source_ids.next();
|
|
|
|
send_query({node_id, node.query->generation}, file_source_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileReferenceManager::send_query(Destination dest, FileSourceId file_source_id) {
|
2019-01-18 21:12:09 +01:00
|
|
|
VLOG(file_references) << "Send file references repair query for file " << dest.node_id << " with generation "
|
2019-01-21 19:22:56 +01:00
|
|
|
<< dest.generation << " from " << file_source_id;
|
2019-01-17 21:42:00 +01:00
|
|
|
auto &node = nodes_[dest.node_id];
|
|
|
|
node.query->active_queries++;
|
|
|
|
|
|
|
|
auto promise = PromiseCreator::lambda([dest, file_source_id, file_reference_manager = G()->file_reference_manager(),
|
|
|
|
file_manager = G()->file_manager()](Result<Unit> result) mutable {
|
2019-01-25 15:51:47 +01:00
|
|
|
if (G()->close_flag()) {
|
|
|
|
VLOG(file_references) << "Ignore file reference repair from " << file_source_id << " during closing";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-17 21:42:00 +01:00
|
|
|
auto new_promise =
|
|
|
|
PromiseCreator::lambda([dest, file_source_id, file_reference_manager](Result<Unit> result) mutable {
|
2019-01-25 15:51:47 +01:00
|
|
|
if (G()->close_flag()) {
|
|
|
|
VLOG(file_references) << "Ignore file reference repair from " << file_source_id << " during closing";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-17 21:42:00 +01:00
|
|
|
Status status;
|
|
|
|
if (result.is_error()) {
|
|
|
|
status = result.move_as_error();
|
|
|
|
}
|
|
|
|
send_closure(file_reference_manager, &FileReferenceManager::on_query_result, dest, file_source_id,
|
|
|
|
std::move(status), 0);
|
|
|
|
});
|
2019-01-29 12:07:58 +01:00
|
|
|
|
|
|
|
send_lambda(file_manager, [file_manager, dest, result = std::move(result), file_source_id,
|
|
|
|
new_promise = std::move(new_promise)]() mutable {
|
2019-01-17 21:42:00 +01:00
|
|
|
auto view = file_manager.get_actor_unsafe()->get_file_view(dest.node_id);
|
2019-01-18 15:52:49 +01:00
|
|
|
CHECK(!view.empty());
|
2019-01-30 17:08:50 +01:00
|
|
|
if (result.is_ok() &&
|
|
|
|
(!view.has_active_upload_remote_location() || !view.has_active_download_remote_location())) {
|
2019-01-29 12:07:58 +01:00
|
|
|
result = Status::Error("No active remote location");
|
|
|
|
}
|
|
|
|
if (result.is_error() && result.error().code() != 429 && result.error().code() < 500) {
|
|
|
|
VLOG(file_references) << "Invalid " << file_source_id << " " << result.error();
|
|
|
|
file_manager.get_actor_unsafe()->remove_file_source(dest.node_id, file_source_id);
|
2018-12-08 23:00:27 +01:00
|
|
|
}
|
2019-01-29 12:07:58 +01:00
|
|
|
new_promise.set_result(std::move(result));
|
2018-12-08 23:00:27 +01:00
|
|
|
});
|
2019-01-17 21:42:00 +01:00
|
|
|
});
|
|
|
|
auto index = static_cast<size_t>(file_source_id.get()) - 1;
|
|
|
|
CHECK(index < file_sources_.size());
|
|
|
|
file_sources_[index].visit(overloaded(
|
|
|
|
[&](const FileSourceMessage &source) {
|
|
|
|
send_closure_later(G()->messages_manager(), &MessagesManager::get_messages_from_server,
|
|
|
|
vector<FullMessageId>{source.full_message_id}, std::move(promise), nullptr);
|
|
|
|
},
|
|
|
|
[&](const FileSourceUserPhoto &source) {
|
2019-01-20 04:04:40 +01:00
|
|
|
send_closure_later(G()->contacts_manager(), &ContactsManager::reload_user_profile_photo, source.user_id,
|
|
|
|
source.photo_id, std::move(promise));
|
2019-01-17 21:42:00 +01:00
|
|
|
},
|
|
|
|
[&](const FileSourceChatPhoto &source) {
|
2019-01-20 04:04:40 +01:00
|
|
|
send_closure_later(G()->contacts_manager(), &ContactsManager::reload_chat, source.chat_id, std::move(promise));
|
2019-01-17 21:42:00 +01:00
|
|
|
},
|
|
|
|
[&](const FileSourceChannelPhoto &source) {
|
2019-01-20 04:04:40 +01:00
|
|
|
send_closure_later(G()->contacts_manager(), &ContactsManager::reload_channel, source.channel_id,
|
|
|
|
std::move(promise));
|
2019-01-17 21:42:00 +01:00
|
|
|
},
|
|
|
|
[&](const FileSourceWallpapers &source) {
|
2019-01-20 04:04:40 +01:00
|
|
|
send_closure_later(G()->wallpaper_manager(), &WallpaperManager::reload_wallpapers, std::move(promise));
|
2019-01-17 21:42:00 +01:00
|
|
|
},
|
|
|
|
[&](const FileSourceWebPage &source) {
|
|
|
|
send_closure_later(G()->web_pages_manager(), &WebPagesManager::reload_web_page_by_url, source.url,
|
|
|
|
std::move(promise));
|
|
|
|
},
|
|
|
|
[&](const FileSourceSavedAnimations &source) {
|
2019-02-02 11:54:40 +01:00
|
|
|
send_closure_later(G()->animations_manager(), &AnimationsManager::repair_saved_animations, std::move(promise));
|
2019-02-02 11:30:49 +01:00
|
|
|
},
|
|
|
|
[&](const FileSourceRecentStickers &source) {
|
2019-02-02 11:54:40 +01:00
|
|
|
send_closure_later(G()->stickers_manager(), &StickersManager::repair_recent_stickers, source.is_attached,
|
2019-02-02 11:30:49 +01:00
|
|
|
std::move(promise));
|
2019-02-02 11:54:40 +01:00
|
|
|
},
|
|
|
|
[&](const FileSourceFavoriteStickers &source) {
|
|
|
|
send_closure_later(G()->stickers_manager(), &StickersManager::repair_favorite_stickers, std::move(promise));
|
2019-01-17 21:42:00 +01:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
FileReferenceManager::Destination FileReferenceManager::on_query_result(Destination dest, FileSourceId file_source_id,
|
|
|
|
Status status, int32 sub) {
|
2019-01-18 21:12:09 +01:00
|
|
|
VLOG(file_references) << "Receive result of file references repair query for file " << dest.node_id
|
2019-01-21 19:22:56 +01:00
|
|
|
<< " with generation " << dest.generation << " from " << file_source_id << ": " << status << " "
|
|
|
|
<< sub;
|
2019-01-17 21:42:00 +01:00
|
|
|
auto &node = nodes_[dest.node_id];
|
|
|
|
|
|
|
|
auto query = node.query.get();
|
|
|
|
if (!query) {
|
2019-01-18 15:52:49 +01:00
|
|
|
return dest;
|
2019-01-17 21:42:00 +01:00
|
|
|
}
|
|
|
|
if (query->generation != dest.generation) {
|
2019-01-18 15:52:49 +01:00
|
|
|
return dest;
|
2019-01-17 21:42:00 +01:00
|
|
|
}
|
|
|
|
query->active_queries--;
|
2019-01-18 15:52:49 +01:00
|
|
|
CHECK(query->active_queries >= 0);
|
2019-01-17 21:42:00 +01:00
|
|
|
|
|
|
|
if (!query->proxy.empty()) {
|
|
|
|
query->active_queries -= sub;
|
2019-01-18 15:52:49 +01:00
|
|
|
CHECK(query->active_queries >= 0);
|
2019-01-17 21:42:00 +01:00
|
|
|
auto new_proxy = on_query_result(query->proxy, file_source_id, std::move(status), query->active_queries);
|
2019-01-18 15:52:49 +01:00
|
|
|
query->proxy = new_proxy;
|
2019-01-17 21:42:00 +01:00
|
|
|
run_node(dest.node_id);
|
|
|
|
return new_proxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status.is_ok()) {
|
|
|
|
for (auto &p : query->promises) {
|
|
|
|
p.set_value(Unit());
|
|
|
|
}
|
|
|
|
node.query = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
run_node(dest.node_id);
|
|
|
|
return dest;
|
2018-12-05 10:32:31 +01:00
|
|
|
}
|
|
|
|
|
2019-01-18 21:12:09 +01:00
|
|
|
void FileReferenceManager::repair_file_reference(NodeId node_id, Promise<> promise) {
|
|
|
|
VLOG(file_references) << "Repair file reference for file " << node_id;
|
2019-01-17 21:42:00 +01:00
|
|
|
auto &node = nodes_[node_id];
|
|
|
|
if (!node.query) {
|
|
|
|
node.query = make_unique<Query>();
|
2019-01-18 20:36:23 +01:00
|
|
|
node.query->generation = ++query_generation_;
|
2019-01-17 21:42:00 +01:00
|
|
|
node.file_source_ids.reset_position();
|
2019-01-30 22:37:38 +01:00
|
|
|
VLOG(file_references) << "Create new file reference repair query with generation " << query_generation_;
|
2019-01-17 21:42:00 +01:00
|
|
|
}
|
2019-01-18 15:52:49 +01:00
|
|
|
node.query->promises.push_back(std::move(promise));
|
2019-01-17 21:42:00 +01:00
|
|
|
run_node(node_id);
|
|
|
|
}
|
2019-01-18 20:36:23 +01:00
|
|
|
|
2018-12-05 10:32:31 +01:00
|
|
|
} // namespace td
|