// // 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/CallId.h" #include "td/telegram/DialogId.h" #include "td/telegram/MessageId.h" #include "td/telegram/Notification.h" #include "td/telegram/NotificationGroupId.h" #include "td/telegram/NotificationGroupKey.h" #include "td/telegram/NotificationGroupType.h" #include "td/telegram/NotificationId.h" #include "td/telegram/NotificationType.h" #include "td/telegram/td_api.h" #include "td/actor/actor.h" #include "td/actor/PromiseFuture.h" #include "td/actor/Timeout.h" #include "td/utils/common.h" #include "td/utils/logging.h" #include "td/utils/Status.h" #include "td/utils/StringBuilder.h" #include #include #include #include namespace td { extern int VERBOSITY_NAME(notifications); class Td; class NotificationManager : public Actor { public: static constexpr int32 MIN_NOTIFICATION_GROUP_COUNT_MAX = 0; static constexpr int32 MAX_NOTIFICATION_GROUP_COUNT_MAX = 25; static constexpr int32 MIN_NOTIFICATION_GROUP_SIZE_MAX = 1; static constexpr int32 MAX_NOTIFICATION_GROUP_SIZE_MAX = 25; NotificationManager(Td *td, ActorShared<> parent); size_t get_max_notification_group_size() const; NotificationId get_max_notification_id() const; NotificationId get_next_notification_id(); NotificationGroupId get_next_notification_group_id(); void try_reuse_notification_group_id(NotificationGroupId group_id); void load_group_force(NotificationGroupId group_id); void add_notification(NotificationGroupId group_id, NotificationGroupType group_type, DialogId dialog_id, int32 date, DialogId notification_settings_dialog_id, bool is_silent, int32 min_delay_ms, NotificationId notification_id, unique_ptr type); void edit_notification(NotificationGroupId group_id, NotificationId notification_id, unique_ptr type); void remove_notification(NotificationGroupId group_id, NotificationId notification_id, bool is_permanent, Promise &&promise); void remove_notification_group(NotificationGroupId group_id, NotificationId max_notification_id, MessageId max_message_id, int32 new_total_count, Promise &&promise); void set_notification_total_count(NotificationGroupId group_id, int32 new_total_count); vector get_notification_group_message_ids(NotificationGroupId group_id); void add_call_notification(DialogId dialog_id, CallId call_id); void remove_call_notification(DialogId dialog_id, CallId call_id); void on_notification_group_count_max_changed(bool send_updates); void on_notification_group_size_max_changed(); void on_online_cloud_timeout_changed(); void on_notification_cloud_delay_changed(); void on_notification_default_delay_changed(); void process_push_notification(string payload, Promise &&promise); static Result get_push_receiver_id(string push); static Result decrypt_push(int64 encryption_key_id, string encryption_key, string push); void before_get_difference(); void after_get_difference(); void before_get_chat_difference(NotificationGroupId group_id); void after_get_chat_difference(NotificationGroupId group_id); void get_current_state(vector> &updates) const; void flush_all_notifications(); void destroy_all_notifications(); private: static constexpr int32 DEFAULT_GROUP_COUNT_MAX = 0; static constexpr int32 DEFAULT_GROUP_SIZE_MAX = 10; static constexpr size_t EXTRA_GROUP_SIZE = 10; static constexpr size_t MAX_CALL_NOTIFICATION_GROUPS = 10; static constexpr size_t MAX_CALL_NOTIFICATIONS = 10; static constexpr int32 DEFAULT_ONLINE_CLOUD_TIMEOUT_MS = 300000; static constexpr int32 DEFAULT_ONLINE_CLOUD_DELAY_MS = 30000; static constexpr int32 DEFAULT_DEFAULT_DELAY_MS = 1500; static constexpr int32 MIN_NOTIFICATION_DELAY_MS = 1; static constexpr int32 MIN_UPDATE_DELAY_MS = 50; static constexpr int32 MAX_UPDATE_DELAY_MS = 60000; struct PendingNotification { int32 date = 0; DialogId settings_dialog_id; bool is_silent = false; NotificationId notification_id; unique_ptr type; }; struct NotificationGroup { int32 total_count = 0; NotificationGroupType type = NotificationGroupType::Calls; bool is_loaded_from_database = false; bool is_being_loaded_from_database = false; vector notifications; double pending_notifications_flush_time = 0; vector pending_notifications; }; using NotificationGroups = std::map; static void on_flush_pending_notifications_timeout_callback(void *notification_manager_ptr, int64 group_id_int); static void on_flush_pending_updates_timeout_callback(void *notification_manager_ptr, int64 group_id_int); bool is_disabled() const; void start_up() override; void tear_down() override; void add_update(int32 group_id, td_api::object_ptr update); void add_update_notification_group(td_api::object_ptr update); void add_update_notification(NotificationGroupId notification_group_id, DialogId dialog_id, const Notification ¬ification); NotificationGroups::iterator add_group(NotificationGroupKey &&group_key, NotificationGroup &&group); NotificationGroups::iterator get_group(NotificationGroupId group_id); NotificationGroups::iterator get_group_force(NotificationGroupId group_id, bool send_update = true); void delete_group(NotificationGroups::iterator &&group_it); static NotificationId get_first_notification_id(const NotificationGroup &group); static MessageId get_first_message_id(const NotificationGroup &group); int32 load_message_notification_groups_from_database(int32 limit, bool send_update); void load_message_notifications_from_database(const NotificationGroupKey &group_key, NotificationGroup &group, size_t desired_size); void on_get_message_notifications_from_database(NotificationGroupId group_id, size_t limit, Result> r_notifications); void add_notifications_to_group_begin(NotificationGroups::iterator group_it, vector notifications); NotificationGroupKey get_last_updated_group_key() const; td_api::object_ptr get_update_active_notifications() const; td_api::object_ptr get_remove_group_update( const NotificationGroupKey &group_key, const NotificationGroup &group, vector &&removed_notification_ids) const; void send_remove_group_update(const NotificationGroupKey &group_key, const NotificationGroup &group, vector &&removed_notification_ids); void send_add_group_update(const NotificationGroupKey &group_key, const NotificationGroup &group); int32 get_notification_delay_ms(DialogId dialog_id, const PendingNotification ¬ification, int32 min_delay_ms) const; void do_flush_pending_notifications(NotificationGroupKey &group_key, NotificationGroup &group, vector &pending_notifications); void flush_pending_notifications(NotificationGroupId group_id); void flush_all_pending_notifications(); void on_notifications_removed(NotificationGroups::iterator &&group_it, vector> &&added_notifications, vector &&removed_notification_ids); void remove_added_notifications_from_pending_updates( NotificationGroupId group_id, std::function ¬ification)> is_removed); void flush_pending_updates(int32 group_id, const char *source); void flush_all_pending_updates(bool include_delayed_chats, const char *source); NotificationGroupId get_call_notification_group_id(DialogId dialog_id); static Result decrypt_push_payload(int64 encryption_key_id, string encryption_key, string payload); void after_get_difference_impl(); void after_get_chat_difference_impl(NotificationGroupId group_id); void on_pending_notification_update_count_changed(int32 diff, int32 notification_group_id, const char *source); NotificationId current_notification_id_; NotificationGroupId current_notification_group_id_; size_t max_notification_group_count_ = 0; size_t max_notification_group_size_ = 0; size_t keep_notification_group_size_ = 0; int32 online_cloud_timeout_ms_ = DEFAULT_ONLINE_CLOUD_TIMEOUT_MS; int32 notification_cloud_delay_ms_ = DEFAULT_ONLINE_CLOUD_DELAY_MS; int32 notification_default_delay_ms_ = DEFAULT_DEFAULT_DELAY_MS; int32 pending_notification_update_count_ = 0; NotificationGroupKey last_loaded_notification_group_key_; bool is_destroyed_ = false; bool running_get_difference_ = false; std::unordered_set running_get_chat_difference_; NotificationGroups groups_; std::unordered_map group_keys_; std::unordered_map>> pending_updates_; MultiTimeout flush_pending_notifications_timeout_{"FlushPendingNotificationsTimeout"}; MultiTimeout flush_pending_updates_timeout_{"FlushPendingUpdatesTimeout"}; vector call_notification_group_ids_; std::unordered_set available_call_notification_group_ids_; std::unordered_map dialog_id_to_call_notification_group_id_; struct ActiveCallNotification { CallId call_id; NotificationId notification_id; }; std::unordered_map, DialogIdHash> active_call_notifications_; Td *td_; ActorShared<> parent_; }; } // namespace td