2022-04-04 23:40:22 +02:00
|
|
|
//
|
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2022-04-08 16:17:56 +02:00
|
|
|
#include "td/telegram/DialogId.h"
|
2022-04-12 21:50:20 +02:00
|
|
|
#include "td/telegram/files/FileId.h"
|
2022-04-08 16:17:56 +02:00
|
|
|
#include "td/telegram/NotificationSettings.h"
|
2022-04-11 11:45:52 +02:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
2022-04-08 16:17:56 +02:00
|
|
|
|
2022-04-04 23:40:22 +02:00
|
|
|
#include "td/actor/actor.h"
|
2022-04-08 16:17:56 +02:00
|
|
|
#include "td/actor/PromiseFuture.h"
|
2022-04-11 11:45:52 +02:00
|
|
|
#include "td/actor/Timeout.h"
|
2022-04-04 23:40:22 +02:00
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2022-04-08 16:17:56 +02:00
|
|
|
#include "td/utils/FlatHashMap.h"
|
2022-04-10 21:10:41 +02:00
|
|
|
#include "td/utils/Status.h"
|
2022-04-04 23:40:22 +02:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2022-04-11 11:45:52 +02:00
|
|
|
struct BinlogEvent;
|
|
|
|
|
2022-04-04 23:40:22 +02:00
|
|
|
class Td;
|
|
|
|
|
|
|
|
class NotificationSettingsManager final : public Actor {
|
|
|
|
public:
|
|
|
|
NotificationSettingsManager(Td *td, ActorShared<> parent);
|
|
|
|
NotificationSettingsManager(const NotificationSettingsManager &) = delete;
|
|
|
|
NotificationSettingsManager &operator=(const NotificationSettingsManager &) = delete;
|
|
|
|
NotificationSettingsManager(NotificationSettingsManager &&) = delete;
|
|
|
|
NotificationSettingsManager &operator=(NotificationSettingsManager &&) = delete;
|
|
|
|
~NotificationSettingsManager() final;
|
|
|
|
|
2022-04-11 11:45:52 +02:00
|
|
|
int32 get_scope_mute_until(NotificationSettingsScope scope) const;
|
|
|
|
|
|
|
|
bool get_scope_disable_pinned_message_notifications(NotificationSettingsScope scope) const;
|
|
|
|
|
|
|
|
bool get_scope_disable_mention_notifications(NotificationSettingsScope scope) const;
|
|
|
|
|
2022-04-11 12:06:16 +02:00
|
|
|
tl_object_ptr<telegram_api::InputNotifyPeer> get_input_notify_peer(DialogId dialog_id) const;
|
|
|
|
|
2022-04-11 11:45:52 +02:00
|
|
|
void on_update_scope_notify_settings(NotificationSettingsScope scope,
|
|
|
|
tl_object_ptr<telegram_api::peerNotifySettings> &&peer_notify_settings);
|
|
|
|
|
2022-04-14 12:23:43 +02:00
|
|
|
FileId get_saved_ringtone(int64 ringtone_id, Promise<Unit> &&promise);
|
|
|
|
|
2022-04-13 21:14:40 +02:00
|
|
|
vector<FileId> get_saved_ringtones(Promise<Unit> &&promise);
|
|
|
|
|
2022-04-14 13:31:18 +02:00
|
|
|
void remove_saved_ringtone(int64 ringtone_id, Promise<Unit> &&promise);
|
|
|
|
|
2022-04-13 21:14:40 +02:00
|
|
|
void reload_saved_ringtones(Promise<Unit> &&promise);
|
2022-04-13 19:36:57 +02:00
|
|
|
|
2022-04-14 13:31:18 +02:00
|
|
|
void send_save_ringtone_query(FileId ringtone_file_id, bool unsave,
|
|
|
|
Promise<telegram_api::object_ptr<telegram_api::account_SavedRingtone>> &&promise);
|
|
|
|
|
2022-04-08 16:17:56 +02:00
|
|
|
void send_get_dialog_notification_settings_query(DialogId dialog_id, Promise<Unit> &&promise);
|
|
|
|
|
2022-04-11 11:45:52 +02:00
|
|
|
const ScopeNotificationSettings *get_scope_notification_settings(NotificationSettingsScope scope,
|
|
|
|
Promise<Unit> &&promise);
|
2022-04-08 16:17:56 +02:00
|
|
|
void send_get_scope_notification_settings_query(NotificationSettingsScope scope, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void on_get_dialog_notification_settings_query_finished(DialogId dialog_id, Status &&status);
|
|
|
|
|
|
|
|
void update_dialog_notify_settings(DialogId dialog_id, const DialogNotificationSettings &new_settings,
|
|
|
|
Promise<Unit> &&promise);
|
2022-04-04 23:40:22 +02:00
|
|
|
|
2022-04-11 11:45:52 +02:00
|
|
|
Status set_scope_notification_settings(NotificationSettingsScope scope,
|
|
|
|
td_api::object_ptr<td_api::scopeNotificationSettings> &¬ification_settings)
|
|
|
|
TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
void reset_scope_notification_settings();
|
2022-04-08 16:17:56 +02:00
|
|
|
|
|
|
|
void reset_notify_settings(Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void get_notify_settings_exceptions(NotificationSettingsScope scope, bool filter_scope, bool compare_sound,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2022-04-11 11:45:52 +02:00
|
|
|
void init();
|
|
|
|
|
|
|
|
void after_get_difference();
|
|
|
|
|
|
|
|
void on_binlog_events(vector<BinlogEvent> &&events);
|
|
|
|
|
|
|
|
void get_current_state(vector<td_api::object_ptr<td_api::Update>> &updates) const;
|
|
|
|
|
2022-04-08 16:17:56 +02:00
|
|
|
private:
|
2022-04-11 11:45:52 +02:00
|
|
|
class UpdateScopeNotificationSettingsOnServerLogEvent;
|
|
|
|
|
|
|
|
void start_up() final;
|
|
|
|
|
2022-04-04 23:40:22 +02:00
|
|
|
void tear_down() final;
|
|
|
|
|
2022-04-13 19:36:57 +02:00
|
|
|
void timeout_expired() final;
|
|
|
|
|
|
|
|
bool is_active() const;
|
|
|
|
|
2022-04-11 11:45:52 +02:00
|
|
|
static void on_scope_unmute_timeout_callback(void *notification_settings_manager_ptr, int64 scope_int);
|
|
|
|
|
2022-04-13 19:36:57 +02:00
|
|
|
Result<FileId> get_ringtone(telegram_api::object_ptr<telegram_api::Document> &&ringtone) const;
|
|
|
|
|
2022-04-14 13:31:18 +02:00
|
|
|
void on_remove_saved_ringtone(int64 ringtone_id, Promise<Unit> &&promise);
|
|
|
|
|
2022-04-13 21:14:40 +02:00
|
|
|
void on_reload_saved_ringtones(Result<telegram_api::object_ptr<telegram_api::account_SavedRingtones>> &&result);
|
2022-04-13 19:36:57 +02:00
|
|
|
|
2022-04-11 11:45:52 +02:00
|
|
|
ScopeNotificationSettings *get_scope_notification_settings(NotificationSettingsScope scope);
|
|
|
|
|
|
|
|
const ScopeNotificationSettings *get_scope_notification_settings(NotificationSettingsScope scope) const;
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::updateScopeNotificationSettings> get_update_scope_notification_settings_object(
|
|
|
|
NotificationSettingsScope scope) const;
|
|
|
|
|
|
|
|
void on_scope_unmute(NotificationSettingsScope scope);
|
|
|
|
|
|
|
|
static string get_notification_settings_scope_database_key(NotificationSettingsScope scope);
|
|
|
|
|
|
|
|
static void save_scope_notification_settings(NotificationSettingsScope scope,
|
|
|
|
const ScopeNotificationSettings &new_settings);
|
|
|
|
|
|
|
|
bool update_scope_notification_settings(NotificationSettingsScope scope, ScopeNotificationSettings *current_settings,
|
2022-04-11 19:01:44 +02:00
|
|
|
ScopeNotificationSettings &&new_settings);
|
2022-04-11 11:45:52 +02:00
|
|
|
|
|
|
|
static uint64 save_update_scope_notification_settings_on_server_log_event(NotificationSettingsScope scope);
|
|
|
|
|
|
|
|
void update_scope_notification_settings_on_server(NotificationSettingsScope scope, uint64 log_event_id);
|
|
|
|
|
|
|
|
void schedule_scope_unmute(NotificationSettingsScope scope, int32 mute_until);
|
|
|
|
|
|
|
|
void update_scope_unmute_timeout(NotificationSettingsScope scope, int32 &old_mute_until, int32 new_mute_until);
|
|
|
|
|
2022-04-04 23:40:22 +02:00
|
|
|
Td *td_;
|
|
|
|
ActorShared<> parent_;
|
2022-04-08 16:17:56 +02:00
|
|
|
|
2022-04-11 11:45:52 +02:00
|
|
|
bool is_inited_ = false;
|
2022-04-13 21:14:40 +02:00
|
|
|
bool are_saved_ringtones_loaded_ = false;
|
|
|
|
bool are_saved_ringtones_reloaded_ = false;
|
2022-04-11 11:45:52 +02:00
|
|
|
|
|
|
|
ScopeNotificationSettings users_notification_settings_;
|
|
|
|
ScopeNotificationSettings chats_notification_settings_;
|
|
|
|
ScopeNotificationSettings channels_notification_settings_;
|
|
|
|
|
|
|
|
MultiTimeout scope_unmute_timeout_{"ScopeUnmuteTimeout"};
|
|
|
|
|
2022-04-13 21:14:40 +02:00
|
|
|
int64 saved_ringtone_hash_ = 0;
|
|
|
|
vector<FileId> saved_ringtone_file_ids_;
|
2022-04-13 19:36:57 +02:00
|
|
|
|
2022-04-13 21:14:40 +02:00
|
|
|
vector<Promise<Unit>> reload_saved_ringtone_queries_;
|
2022-04-13 19:36:57 +02:00
|
|
|
|
2022-04-08 16:17:56 +02:00
|
|
|
FlatHashMap<DialogId, vector<Promise<Unit>>, DialogIdHash> get_dialog_notification_settings_queries_;
|
2022-04-04 23:40:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|