// // 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) // #pragma once #include "td/telegram/BackgroundId.h" #include "td/telegram/BackgroundType.h" #include "td/telegram/files/FileId.h" #include "td/telegram/files/FileSourceId.h" #include "td/telegram/Photo.h" #include "td/telegram/td_api.h" #include "td/telegram/telegram_api.h" #include "td/actor/actor.h" #include "td/actor/PromiseFuture.h" #include "td/utils/common.h" #include "td/utils/Status.h" #include #include namespace td { class Td; class BackgroundManager : public Actor { public: BackgroundManager(Td *td, ActorShared<> parent); void get_backgrounds(Promise &&promise); Result get_background_url(const string &name, td_api::object_ptr background_type) const; void reload_background(BackgroundId background_id, int64 access_hash, Promise &&promise); BackgroundId search_background(const string &name, Promise &&promise); BackgroundId set_background(const td_api::InputBackground *input_background, const td_api::BackgroundType *background_type, Promise &&promise); void remove_background(BackgroundId background_id, Promise &&promise); void reset_backgrounds(Promise &&promise); td_api::object_ptr get_background_object(BackgroundId background_id) const; td_api::object_ptr get_backgrounds_object() const; BackgroundId on_get_background(BackgroundId expected_background_id, telegram_api::object_ptr wallpaper); FileSourceId get_background_file_source_id(BackgroundId background_id, int64 access_hash); void on_uploaded_background_file(FileId file_id, const BackgroundType &type, telegram_api::object_ptr wallpaper, Promise &&promise); void get_current_state(vector> &updates) const; private: struct Background { BackgroundId id; int64 access_hash = 0; string name; FileId file_id; bool is_creator = false; bool is_default = false; bool is_dark = false; BackgroundType type; FileSourceId file_source_id; }; class BackgroundLogEvent; class UploadBackgroundFileCallback; void start_up() override; void tear_down() override; static string get_background_database_key(); void save_background_id() const; void reload_background_from_server(BackgroundId background_id, telegram_api::object_ptr &&input_wallpaper, Promise &&promise) const; td_api::object_ptr get_update_selected_background_object() const; void send_update_selected_background() const; BackgroundId add_solid_background(int32 color); Background *add_background(BackgroundId background_id); Background *get_background_ref(BackgroundId background_id); const Background *get_background(BackgroundId background_id) const; void on_get_backgrounds(Result> result); Result prepare_input_file(const tl_object_ptr &input_file); BackgroundId set_background(BackgroundId background_id, const BackgroundType &type, Promise &&promise); void on_installed_background(BackgroundId background_id, BackgroundType type, Result &&result, Promise &&promise); void set_background_id(BackgroundId background_id, const BackgroundType &type); void on_removed_background(BackgroundId background_id, Result &&result, Promise &&promise); void on_reset_background(Result &&result, Promise &&promise); void upload_background_file(FileId file_id, const BackgroundType &type, Promise &&promise); void on_upload_background_file(FileId file_id, tl_object_ptr input_file); void on_upload_background_file_error(FileId file_id, Status status); void do_upload_background_file(FileId file_id, const BackgroundType &type, tl_object_ptr &&input_file, Promise &&promise); std::unordered_map backgrounds_; std::unordered_map, BackgroundIdHash> background_id_to_file_source_id_; // id -> [access_hash, file_source_id] std::unordered_map name_to_background_id_; std::unordered_map file_id_to_background_id_; BackgroundId set_background_id_; BackgroundType set_background_type_; vector installed_background_ids_; vector> pending_get_backgrounds_queries_; std::shared_ptr upload_background_file_callback_; struct UploadedFileInfo { BackgroundType type; Promise promise; }; std::unordered_map being_uploaded_files_; Td *td_; ActorShared<> parent_; }; } // namespace td