2018-11-09 15:14:02 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-11-09 15:14:02 +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-12-02 22:30:05 +01:00
|
|
|
|
2018-12-18 21:59:35 +01:00
|
|
|
#include "td/telegram/CallId.h"
|
2018-11-09 23:56:00 +01:00
|
|
|
#include "td/telegram/DialogId.h"
|
2019-04-13 15:50:06 +02:00
|
|
|
#include "td/telegram/Document.h"
|
2019-11-26 17:53:10 +01:00
|
|
|
#include "td/telegram/FullMessageId.h"
|
2018-11-20 15:08:44 +01:00
|
|
|
#include "td/telegram/MessageId.h"
|
2018-11-26 18:05:06 +01:00
|
|
|
#include "td/telegram/Notification.h"
|
2018-11-10 00:08:47 +01:00
|
|
|
#include "td/telegram/NotificationGroupId.h"
|
2018-11-28 22:51:25 +01:00
|
|
|
#include "td/telegram/NotificationGroupKey.h"
|
2018-12-23 22:34:40 +01:00
|
|
|
#include "td/telegram/NotificationGroupType.h"
|
2018-11-10 00:08:47 +01:00
|
|
|
#include "td/telegram/NotificationId.h"
|
2018-11-09 23:56:00 +01:00
|
|
|
#include "td/telegram/NotificationType.h"
|
2022-04-10 00:15:49 +02:00
|
|
|
#include "td/telegram/Photo.h"
|
2018-11-15 16:58:33 +01:00
|
|
|
#include "td/telegram/td_api.h"
|
2022-10-12 14:59:58 +02:00
|
|
|
#include "td/telegram/UserId.h"
|
2018-11-09 23:56:00 +01:00
|
|
|
|
2018-11-11 13:58:52 +01:00
|
|
|
#include "td/actor/actor.h"
|
2022-07-02 22:32:18 +02:00
|
|
|
#include "td/actor/MultiTimeout.h"
|
2018-11-09 15:14:02 +01:00
|
|
|
|
2018-11-09 23:56:00 +01:00
|
|
|
#include "td/utils/common.h"
|
2022-02-07 22:04:34 +01:00
|
|
|
#include "td/utils/FlatHashMap.h"
|
2022-03-11 19:38:48 +01:00
|
|
|
#include "td/utils/FlatHashSet.h"
|
2018-12-11 21:18:58 +01:00
|
|
|
#include "td/utils/logging.h"
|
2022-06-27 12:30:18 +02:00
|
|
|
#include "td/utils/Promise.h"
|
2018-12-11 21:18:58 +01:00
|
|
|
#include "td/utils/Status.h"
|
2018-11-15 16:58:33 +01:00
|
|
|
#include "td/utils/StringBuilder.h"
|
2019-03-20 03:57:36 +01:00
|
|
|
#include "td/utils/Time.h"
|
2018-11-15 16:58:33 +01:00
|
|
|
|
2018-11-22 18:17:26 +01:00
|
|
|
#include <functional>
|
2018-11-15 16:58:33 +01:00
|
|
|
#include <map>
|
2018-11-09 23:56:00 +01:00
|
|
|
|
2018-11-09 15:14:02 +01:00
|
|
|
namespace td {
|
|
|
|
|
2018-11-11 13:58:52 +01:00
|
|
|
extern int VERBOSITY_NAME(notifications);
|
|
|
|
|
2019-03-31 03:30:25 +02:00
|
|
|
struct BinlogEvent;
|
|
|
|
|
2018-11-09 15:14:02 +01:00
|
|
|
class Td;
|
|
|
|
|
2021-07-04 04:58:54 +02:00
|
|
|
class NotificationManager final : public Actor {
|
2018-11-09 15:14:02 +01:00
|
|
|
public:
|
2018-12-12 03:10:47 +01:00
|
|
|
static constexpr int32 MIN_NOTIFICATION_GROUP_COUNT_MAX = 0;
|
2018-11-15 16:58:33 +01:00
|
|
|
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;
|
|
|
|
|
2018-11-11 13:58:52 +01:00
|
|
|
NotificationManager(Td *td, ActorShared<> parent);
|
2018-11-09 15:14:02 +01:00
|
|
|
|
2019-03-05 04:01:49 +01:00
|
|
|
void init();
|
|
|
|
|
2018-12-02 22:55:35 +01:00
|
|
|
size_t get_max_notification_group_size() const;
|
2018-11-28 21:19:30 +01:00
|
|
|
|
2018-11-17 22:24:19 +01:00
|
|
|
NotificationId get_max_notification_id() const;
|
|
|
|
|
2018-11-10 00:08:47 +01:00
|
|
|
NotificationId get_next_notification_id();
|
2018-11-09 23:56:00 +01:00
|
|
|
|
2018-11-11 13:58:52 +01:00
|
|
|
NotificationGroupId get_next_notification_group_id();
|
|
|
|
|
2018-12-04 19:01:41 +01:00
|
|
|
void try_reuse_notification_group_id(NotificationGroupId group_id);
|
|
|
|
|
2018-12-02 20:04:47 +01:00
|
|
|
void load_group_force(NotificationGroupId group_id);
|
|
|
|
|
2018-12-23 22:34:40 +01:00
|
|
|
void add_notification(NotificationGroupId group_id, NotificationGroupType group_type, DialogId dialog_id, int32 date,
|
2022-05-03 15:09:40 +02:00
|
|
|
DialogId notification_settings_dialog_id, bool disable_notification, int64 ringtone_id,
|
2019-10-03 20:58:50 +02:00
|
|
|
int32 min_delay_ms, NotificationId notification_id, unique_ptr<NotificationType> type,
|
|
|
|
const char *source);
|
2018-11-09 23:56:00 +01:00
|
|
|
|
2018-11-16 16:00:46 +01:00
|
|
|
void edit_notification(NotificationGroupId group_id, NotificationId notification_id,
|
|
|
|
unique_ptr<NotificationType> type);
|
2018-11-09 23:56:00 +01:00
|
|
|
|
2018-11-20 14:11:34 +01:00
|
|
|
void remove_notification(NotificationGroupId group_id, NotificationId notification_id, bool is_permanent,
|
2019-04-19 00:52:15 +02:00
|
|
|
bool force_update, Promise<Unit> &&promise, const char *source);
|
2018-11-09 15:14:02 +01:00
|
|
|
|
2019-04-10 22:54:03 +02:00
|
|
|
void remove_temporary_notifications(NotificationGroupId group_id, const char *source);
|
2019-04-10 22:22:03 +02:00
|
|
|
|
2019-04-08 02:04:05 +02:00
|
|
|
void remove_temporary_notification_by_message_id(NotificationGroupId group_id, MessageId message_id,
|
2019-04-19 00:52:15 +02:00
|
|
|
bool force_update, const char *source);
|
2019-04-01 02:02:19 +02:00
|
|
|
|
2018-11-10 00:08:47 +01:00
|
|
|
void remove_notification_group(NotificationGroupId group_id, NotificationId max_notification_id,
|
2019-03-26 23:07:32 +01:00
|
|
|
MessageId max_message_id, int32 new_total_count, bool force_update,
|
|
|
|
Promise<Unit> &&promise);
|
2018-11-09 15:14:02 +01:00
|
|
|
|
2018-12-25 16:04:29 +01:00
|
|
|
void set_notification_total_count(NotificationGroupId group_id, int32 new_total_count);
|
|
|
|
|
2019-01-10 18:54:46 +01:00
|
|
|
vector<MessageId> get_notification_group_message_ids(NotificationGroupId group_id);
|
|
|
|
|
2018-12-18 21:59:35 +01:00
|
|
|
void add_call_notification(DialogId dialog_id, CallId call_id);
|
|
|
|
|
|
|
|
void remove_call_notification(DialogId dialog_id, CallId call_id);
|
|
|
|
|
2019-02-14 17:21:54 +01:00
|
|
|
void get_disable_contact_registered_notifications(Promise<Unit> &&promise);
|
|
|
|
|
2018-12-12 03:10:47 +01:00
|
|
|
void on_notification_group_count_max_changed(bool send_updates);
|
2018-11-15 16:58:33 +01:00
|
|
|
|
|
|
|
void on_notification_group_size_max_changed();
|
|
|
|
|
2018-11-15 23:03:04 +01:00
|
|
|
void on_online_cloud_timeout_changed();
|
|
|
|
|
|
|
|
void on_notification_cloud_delay_changed();
|
|
|
|
|
|
|
|
void on_notification_default_delay_changed();
|
|
|
|
|
2019-02-14 16:25:31 +01:00
|
|
|
void on_disable_contact_registered_notifications_changed();
|
|
|
|
|
2019-04-09 01:07:35 +02:00
|
|
|
void process_push_notification(string payload, Promise<Unit> &&user_promise);
|
2018-12-28 23:48:32 +01:00
|
|
|
|
2021-10-19 17:11:16 +02:00
|
|
|
static Result<int64> get_push_receiver_id(string payload);
|
2019-01-31 01:20:27 +01:00
|
|
|
|
2019-03-25 04:35:01 +01:00
|
|
|
static Result<string> decrypt_push(int64 encryption_key_id, string encryption_key, string push); // public for tests
|
2019-01-31 01:20:27 +01:00
|
|
|
|
2018-11-22 02:00:28 +01:00
|
|
|
void before_get_difference();
|
|
|
|
|
|
|
|
void after_get_difference();
|
|
|
|
|
|
|
|
void before_get_chat_difference(NotificationGroupId group_id);
|
|
|
|
|
|
|
|
void after_get_chat_difference(NotificationGroupId group_id);
|
|
|
|
|
2018-12-05 17:11:28 +01:00
|
|
|
void get_current_state(vector<td_api::object_ptr<td_api::Update>> &updates) const;
|
|
|
|
|
2018-12-24 03:53:24 +01:00
|
|
|
void flush_all_notifications();
|
|
|
|
|
2018-12-24 02:08:52 +01:00
|
|
|
void destroy_all_notifications();
|
|
|
|
|
2019-03-31 03:30:25 +02:00
|
|
|
void on_binlog_events(vector<BinlogEvent> &&events);
|
|
|
|
|
2018-11-09 15:14:02 +01:00
|
|
|
private:
|
2018-12-12 03:10:47 +01:00
|
|
|
static constexpr int32 DEFAULT_GROUP_COUNT_MAX = 0;
|
2018-11-15 16:58:33 +01:00
|
|
|
static constexpr int32 DEFAULT_GROUP_SIZE_MAX = 10;
|
|
|
|
static constexpr size_t EXTRA_GROUP_SIZE = 10;
|
|
|
|
|
2018-12-18 21:59:35 +01:00
|
|
|
static constexpr size_t MAX_CALL_NOTIFICATION_GROUPS = 10;
|
|
|
|
static constexpr size_t MAX_CALL_NOTIFICATIONS = 10;
|
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
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;
|
|
|
|
|
2018-11-21 23:28:56 +01:00
|
|
|
static constexpr int32 MIN_UPDATE_DELAY_MS = 50;
|
|
|
|
static constexpr int32 MAX_UPDATE_DELAY_MS = 60000;
|
|
|
|
|
2019-03-26 20:32:07 +01:00
|
|
|
static constexpr int32 ANNOUNCEMENT_ID_CACHE_TIME = 7 * 86400;
|
|
|
|
|
2021-11-01 19:53:23 +01:00
|
|
|
static constexpr int32 USER_FLAG_HAS_ACCESS_HASH = 1 << 0;
|
|
|
|
static constexpr int32 USER_FLAG_HAS_PHONE_NUMBER = 1 << 4;
|
|
|
|
static constexpr int32 USER_FLAG_IS_INACCESSIBLE = 1 << 20;
|
|
|
|
|
2019-03-31 03:30:25 +02:00
|
|
|
class AddMessagePushNotificationLogEvent;
|
2019-04-07 22:57:54 +02:00
|
|
|
class EditMessagePushNotificationLogEvent;
|
2019-03-31 03:30:25 +02:00
|
|
|
|
2018-11-12 15:44:42 +01:00
|
|
|
struct PendingNotification {
|
2018-11-15 16:58:33 +01:00
|
|
|
int32 date = 0;
|
2018-11-12 15:44:42 +01:00
|
|
|
DialogId settings_dialog_id;
|
2022-05-03 15:09:40 +02:00
|
|
|
bool disable_notification = false;
|
2022-04-15 17:36:24 +02:00
|
|
|
int64 ringtone_id = -1;
|
2018-11-12 15:44:42 +01:00
|
|
|
NotificationId notification_id;
|
|
|
|
unique_ptr<NotificationType> type;
|
2019-03-20 03:57:36 +01:00
|
|
|
|
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const PendingNotification &pending_notification) {
|
|
|
|
return string_builder << "PendingNotification[" << pending_notification.notification_id << " of type "
|
|
|
|
<< pending_notification.type << " sent at " << pending_notification.date
|
|
|
|
<< " with settings from " << pending_notification.settings_dialog_id
|
2022-04-15 17:36:24 +02:00
|
|
|
<< ", ringtone_id = " << pending_notification.ringtone_id << "]";
|
2019-03-20 03:57:36 +01:00
|
|
|
}
|
2018-11-12 15:44:42 +01:00
|
|
|
};
|
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
struct NotificationGroup {
|
2018-11-12 15:44:42 +01:00
|
|
|
int32 total_count = 0;
|
2018-12-23 22:34:40 +01:00
|
|
|
NotificationGroupType type = NotificationGroupType::Calls;
|
2018-12-03 16:38:29 +01:00
|
|
|
bool is_loaded_from_database = false;
|
|
|
|
bool is_being_loaded_from_database = false;
|
2018-11-12 15:44:42 +01:00
|
|
|
|
|
|
|
vector<Notification> notifications;
|
2018-11-15 16:58:33 +01:00
|
|
|
|
|
|
|
double pending_notifications_flush_time = 0;
|
2018-11-12 15:44:42 +01:00
|
|
|
vector<PendingNotification> pending_notifications;
|
2019-03-20 03:57:36 +01:00
|
|
|
|
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const NotificationGroup ¬ification_group) {
|
|
|
|
return string_builder << "NotificationGroup[" << notification_group.type << " with total "
|
|
|
|
<< notification_group.total_count << " notifications " << notification_group.notifications
|
|
|
|
<< " + " << notification_group.pending_notifications
|
|
|
|
<< ", is_loaded_from_database = " << notification_group.is_loaded_from_database
|
|
|
|
<< ", is_being_loaded_from_database = " << notification_group.is_being_loaded_from_database
|
|
|
|
<< ", pending_notifications_flush_time = "
|
|
|
|
<< notification_group.pending_notifications_flush_time << ", now = " << Time::now() << "]";
|
|
|
|
}
|
2018-11-12 15:44:42 +01:00
|
|
|
};
|
|
|
|
|
2019-09-08 01:27:12 +02:00
|
|
|
struct ActiveNotificationsUpdate {
|
|
|
|
const td_api::updateActiveNotifications *update;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NotificationUpdate {
|
|
|
|
const td_api::Update *update;
|
|
|
|
};
|
|
|
|
|
2019-02-14 16:25:31 +01:00
|
|
|
enum class SyncState : int32 { NotSynced, Pending, Completed };
|
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
using NotificationGroups = std::map<NotificationGroupKey, NotificationGroup>;
|
|
|
|
|
|
|
|
static void on_flush_pending_notifications_timeout_callback(void *notification_manager_ptr, int64 group_id_int);
|
|
|
|
|
2018-11-21 23:28:56 +01:00
|
|
|
static void on_flush_pending_updates_timeout_callback(void *notification_manager_ptr, int64 group_id_int);
|
|
|
|
|
2018-11-12 15:44:42 +01:00
|
|
|
bool is_disabled() const;
|
|
|
|
|
2021-07-03 22:51:36 +02:00
|
|
|
void start_up() final;
|
|
|
|
void tear_down() final;
|
2018-11-11 13:58:52 +01:00
|
|
|
|
2018-11-21 23:28:56 +01:00
|
|
|
void add_update(int32 group_id, td_api::object_ptr<td_api::Update> update);
|
|
|
|
|
|
|
|
void add_update_notification_group(td_api::object_ptr<td_api::updateNotificationGroup> update);
|
2018-11-15 16:58:33 +01:00
|
|
|
|
2018-11-21 23:28:56 +01:00
|
|
|
void add_update_notification(NotificationGroupId notification_group_id, DialogId dialog_id,
|
|
|
|
const Notification ¬ification);
|
2018-11-16 16:00:46 +01:00
|
|
|
|
2019-12-13 00:05:47 +01:00
|
|
|
NotificationGroups::iterator add_group(NotificationGroupKey &&group_key, NotificationGroup &&group,
|
|
|
|
const char *source);
|
2018-12-02 21:03:05 +01:00
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
NotificationGroups::iterator get_group(NotificationGroupId group_id);
|
|
|
|
|
2018-11-28 22:51:25 +01:00
|
|
|
NotificationGroups::iterator get_group_force(NotificationGroupId group_id, bool send_update = true);
|
|
|
|
|
2018-12-02 21:03:05 +01:00
|
|
|
void delete_group(NotificationGroups::iterator &&group_it);
|
|
|
|
|
2018-12-03 16:38:29 +01:00
|
|
|
static NotificationId get_first_notification_id(const NotificationGroup &group);
|
|
|
|
|
2019-03-30 21:49:14 +01:00
|
|
|
static NotificationId get_last_notification_id(const NotificationGroup &group);
|
|
|
|
|
2018-12-05 23:59:33 +01:00
|
|
|
static MessageId get_first_message_id(const NotificationGroup &group);
|
|
|
|
|
2019-03-30 21:49:14 +01:00
|
|
|
static MessageId get_last_message_id(const NotificationGroup &group);
|
|
|
|
|
2019-04-02 00:05:31 +02:00
|
|
|
static MessageId get_last_message_id_by_notification_id(const NotificationGroup &group,
|
|
|
|
NotificationId max_notification_id);
|
|
|
|
|
2019-03-30 21:49:14 +01:00
|
|
|
static int32 get_temporary_notification_total_count(const NotificationGroup &group);
|
|
|
|
|
2018-11-30 16:11:58 +01:00
|
|
|
int32 load_message_notification_groups_from_database(int32 limit, bool send_update);
|
2018-11-26 18:05:06 +01:00
|
|
|
|
2018-12-03 16:38:29 +01:00
|
|
|
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<vector<Notification>> r_notifications);
|
|
|
|
|
|
|
|
void add_notifications_to_group_begin(NotificationGroups::iterator group_it, vector<Notification> notifications);
|
2018-12-02 23:25:34 +01:00
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
NotificationGroupKey get_last_updated_group_key() const;
|
|
|
|
|
2019-04-02 21:24:54 +02:00
|
|
|
void try_send_update_active_notifications();
|
2019-03-31 03:30:25 +02:00
|
|
|
|
2019-03-31 16:13:29 +02:00
|
|
|
void send_update_have_pending_notifications() const;
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::updateHavePendingNotifications> get_update_have_pending_notifications() const;
|
|
|
|
|
2018-12-24 02:08:52 +01:00
|
|
|
td_api::object_ptr<td_api::updateActiveNotifications> get_update_active_notifications() const;
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::updateNotificationGroup> get_remove_group_update(
|
|
|
|
const NotificationGroupKey &group_key, const NotificationGroup &group,
|
|
|
|
vector<int32> &&removed_notification_ids) const;
|
2018-12-05 17:11:28 +01:00
|
|
|
|
2018-11-21 16:00:14 +01:00
|
|
|
void send_remove_group_update(const NotificationGroupKey &group_key, const NotificationGroup &group,
|
|
|
|
vector<int32> &&removed_notification_ids);
|
2018-11-15 16:58:33 +01:00
|
|
|
|
2022-06-23 15:36:58 +02:00
|
|
|
void send_add_group_update(const NotificationGroupKey &group_key, const NotificationGroup &group, const char *source);
|
2018-11-15 16:58:33 +01:00
|
|
|
|
2019-01-08 19:24:06 +01:00
|
|
|
int32 get_notification_delay_ms(DialogId dialog_id, const PendingNotification ¬ification,
|
|
|
|
int32 min_delay_ms) const;
|
2018-11-15 16:58:33 +01:00
|
|
|
|
2019-03-30 21:49:14 +01:00
|
|
|
bool do_flush_pending_notifications(NotificationGroupKey &group_key, NotificationGroup &group,
|
|
|
|
vector<PendingNotification> &pending_notifications) TD_WARN_UNUSED_RESULT;
|
2018-11-15 16:58:33 +01:00
|
|
|
|
|
|
|
void flush_pending_notifications(NotificationGroupId group_id);
|
|
|
|
|
2018-11-27 02:10:52 +01:00
|
|
|
void flush_all_pending_notifications();
|
|
|
|
|
2019-04-07 22:57:54 +02:00
|
|
|
void on_notification_processed(NotificationId notification_id);
|
|
|
|
|
2019-03-31 05:00:40 +02:00
|
|
|
void on_notification_removed(NotificationId notification_id);
|
|
|
|
|
2018-11-20 14:11:34 +01:00
|
|
|
void on_notifications_removed(NotificationGroups::iterator &&group_it,
|
|
|
|
vector<td_api::object_ptr<td_api::notification>> &&added_notifications,
|
2019-03-26 23:07:32 +01:00
|
|
|
vector<int32> &&removed_notification_ids, bool force_update);
|
2018-11-20 14:11:34 +01:00
|
|
|
|
2018-11-22 18:17:26 +01:00
|
|
|
void remove_added_notifications_from_pending_updates(
|
|
|
|
NotificationGroupId group_id,
|
2021-10-19 17:11:16 +02:00
|
|
|
const std::function<bool(const td_api::object_ptr<td_api::notification> ¬ification)> &is_removed);
|
2018-11-22 18:17:26 +01:00
|
|
|
|
2018-11-23 12:42:34 +01:00
|
|
|
void flush_pending_updates(int32 group_id, const char *source);
|
2019-03-30 22:38:18 +01:00
|
|
|
|
|
|
|
void force_flush_pending_updates(NotificationGroupId group_id, const char *source);
|
2018-11-21 23:28:56 +01:00
|
|
|
|
2018-11-27 02:10:52 +01:00
|
|
|
void flush_all_pending_updates(bool include_delayed_chats, const char *source);
|
|
|
|
|
2018-12-18 21:59:35 +01:00
|
|
|
NotificationGroupId get_call_notification_group_id(DialogId dialog_id);
|
|
|
|
|
2019-01-31 01:20:27 +01:00
|
|
|
static Result<string> decrypt_push_payload(int64 encryption_key_id, string encryption_key, string payload);
|
|
|
|
|
2019-03-28 22:08:57 +01:00
|
|
|
static string convert_loc_key(const string &loc_key);
|
|
|
|
|
2019-04-20 21:39:41 +02:00
|
|
|
Status process_push_notification_payload(string payload, bool was_encrypted, Promise<Unit> &promise);
|
2019-03-25 04:35:01 +01:00
|
|
|
|
2019-04-07 22:57:54 +02:00
|
|
|
void add_message_push_notification(DialogId dialog_id, MessageId message_id, int64 random_id, UserId sender_user_id,
|
2020-09-08 21:08:10 +02:00
|
|
|
DialogId sender_dialog_id, string sender_name, int32 date, bool is_from_scheduled,
|
2022-05-03 15:09:40 +02:00
|
|
|
bool contains_mention, bool disable_notification, int64 ringtone_id,
|
2022-04-15 17:36:24 +02:00
|
|
|
string loc_key, string arg, Photo photo, Document document,
|
|
|
|
NotificationId notification_id, uint64 log_event_id, Promise<Unit> promise);
|
2019-04-07 22:57:54 +02:00
|
|
|
|
|
|
|
void edit_message_push_notification(DialogId dialog_id, MessageId message_id, int32 edit_date, string loc_key,
|
2020-09-22 01:15:09 +02:00
|
|
|
string arg, Photo photo, Document document, uint64 log_event_id,
|
2019-04-09 22:39:41 +02:00
|
|
|
Promise<Unit> promise);
|
2019-03-26 01:57:38 +01:00
|
|
|
|
2018-12-12 03:10:47 +01:00
|
|
|
void after_get_difference_impl();
|
|
|
|
|
|
|
|
void after_get_chat_difference_impl(NotificationGroupId group_id);
|
|
|
|
|
2019-03-31 16:13:29 +02:00
|
|
|
void on_delayed_notification_update_count_changed(int32 diff, int32 notification_group_id, const char *source);
|
|
|
|
|
|
|
|
void on_unreceived_notification_update_count_changed(int32 diff, int32 notification_group_id, const char *source);
|
2018-12-24 17:45:19 +01:00
|
|
|
|
2019-02-14 16:25:31 +01:00
|
|
|
static string get_is_contact_registered_notifications_synchronized_key();
|
|
|
|
|
|
|
|
void set_contact_registered_notifications_sync_state(SyncState new_state);
|
|
|
|
|
|
|
|
void run_contact_registered_notifications_sync();
|
|
|
|
|
|
|
|
void on_contact_registered_notifications_sync(bool is_disabled, Result<Unit> result);
|
|
|
|
|
2022-08-18 11:55:55 +02:00
|
|
|
void on_get_disable_contact_registered_notifications(bool is_disabled, Promise<Unit> &&promise);
|
|
|
|
|
2019-03-26 20:32:07 +01:00
|
|
|
void save_announcement_ids();
|
|
|
|
|
2019-09-08 01:27:12 +02:00
|
|
|
static ActiveNotificationsUpdate as_active_notifications_update(const td_api::updateActiveNotifications *update);
|
|
|
|
|
|
|
|
static NotificationUpdate as_notification_update(const td_api::Update *update);
|
|
|
|
|
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const ActiveNotificationsUpdate &update);
|
|
|
|
|
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const NotificationUpdate &update);
|
|
|
|
|
2018-11-11 13:58:52 +01:00
|
|
|
NotificationId current_notification_id_;
|
|
|
|
NotificationGroupId current_notification_group_id_;
|
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
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;
|
|
|
|
|
2019-03-31 16:13:29 +02:00
|
|
|
int32 delayed_notification_update_count_ = 0;
|
|
|
|
int32 unreceived_notification_update_count_ = 0;
|
2018-12-24 17:45:19 +01:00
|
|
|
|
2018-12-02 22:30:05 +01:00
|
|
|
NotificationGroupKey last_loaded_notification_group_key_;
|
2018-11-28 22:51:25 +01:00
|
|
|
|
2019-02-14 16:25:31 +01:00
|
|
|
SyncState contact_registered_notifications_sync_state_ = SyncState::NotSynced;
|
|
|
|
bool disable_contact_registered_notifications_ = false;
|
|
|
|
|
2019-04-03 01:22:34 +02:00
|
|
|
bool is_being_destroyed_ = false;
|
2018-12-24 02:08:52 +01:00
|
|
|
bool is_destroyed_ = false;
|
|
|
|
|
2019-03-31 03:30:25 +02:00
|
|
|
bool is_inited_ = false;
|
|
|
|
bool is_binlog_processed_ = false;
|
|
|
|
|
2018-11-21 23:28:56 +01:00
|
|
|
bool running_get_difference_ = false;
|
2022-03-11 19:38:48 +01:00
|
|
|
FlatHashSet<int32> running_get_chat_difference_;
|
2018-11-21 23:28:56 +01:00
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
NotificationGroups groups_;
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<NotificationGroupId, NotificationGroupKey, NotificationGroupIdHash> group_keys_;
|
2018-11-12 15:44:42 +01:00
|
|
|
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<int32, vector<td_api::object_ptr<td_api::Update>>> pending_updates_;
|
2018-11-21 23:28:56 +01:00
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
MultiTimeout flush_pending_notifications_timeout_{"FlushPendingNotificationsTimeout"};
|
2018-11-21 23:28:56 +01:00
|
|
|
MultiTimeout flush_pending_updates_timeout_{"FlushPendingUpdatesTimeout"};
|
2018-11-12 15:44:42 +01:00
|
|
|
|
2018-12-18 21:59:35 +01:00
|
|
|
vector<NotificationGroupId> call_notification_group_ids_;
|
2022-03-11 19:38:48 +01:00
|
|
|
FlatHashSet<NotificationGroupId, NotificationGroupIdHash> available_call_notification_group_ids_;
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<DialogId, NotificationGroupId, DialogIdHash> dialog_id_to_call_notification_group_id_;
|
2018-12-18 21:59:35 +01:00
|
|
|
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<NotificationId, uint64, NotificationIdHash> temporary_notification_log_event_ids_;
|
|
|
|
FlatHashMap<NotificationId, uint64, NotificationIdHash> temporary_edit_notification_log_event_ids_;
|
2019-04-07 22:57:54 +02:00
|
|
|
struct TemporaryNotification {
|
|
|
|
NotificationGroupId group_id;
|
|
|
|
NotificationId notification_id;
|
|
|
|
UserId sender_user_id;
|
2020-09-08 21:08:10 +02:00
|
|
|
DialogId sender_dialog_id;
|
2020-02-18 14:04:37 +01:00
|
|
|
string sender_name;
|
2020-02-29 19:42:02 +01:00
|
|
|
bool is_outgoing;
|
2019-04-07 22:57:54 +02:00
|
|
|
};
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<FullMessageId, TemporaryNotification, FullMessageIdHash> temporary_notifications_;
|
|
|
|
FlatHashMap<NotificationId, FullMessageId, NotificationIdHash> temporary_notification_message_ids_;
|
|
|
|
FlatHashMap<NotificationId, vector<Promise<Unit>>, NotificationIdHash> push_notification_promises_;
|
2019-03-31 05:00:40 +02:00
|
|
|
|
2018-12-18 21:59:35 +01:00
|
|
|
struct ActiveCallNotification {
|
|
|
|
CallId call_id;
|
|
|
|
NotificationId notification_id;
|
|
|
|
};
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<DialogId, vector<ActiveCallNotification>, DialogIdHash> active_call_notifications_;
|
2018-12-18 21:59:35 +01:00
|
|
|
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<int32, int32> announcement_id_date_;
|
2019-03-26 20:32:07 +01:00
|
|
|
|
2018-11-09 15:14:02 +01:00
|
|
|
Td *td_;
|
2018-11-11 13:58:52 +01:00
|
|
|
ActorShared<> parent_;
|
2018-11-09 15:14:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|