2016-10-02 16:54:27 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-10-02 16:54:27 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-10-02 16:54:27 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2019-01-18 15:26:43 +04:00
|
|
|
#include "base/timer.h"
|
|
|
|
|
2019-09-13 09:06:02 +03:00
|
|
|
class History;
|
2022-01-14 16:41:29 +03:00
|
|
|
struct ItemNotification;
|
|
|
|
enum class ItemNotificationType;
|
2019-09-13 09:06:02 +03:00
|
|
|
|
2020-05-29 20:55:01 +04:00
|
|
|
namespace Data {
|
|
|
|
class CloudImageView;
|
|
|
|
} // namespace Data
|
|
|
|
|
2019-07-24 13:45:24 +02:00
|
|
|
namespace Main {
|
|
|
|
class Session;
|
|
|
|
} // namespace Main
|
2017-03-04 22:36:59 +03:00
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
namespace Notifications {
|
|
|
|
class Manager;
|
|
|
|
} // namespace Notifications
|
|
|
|
} // namespace Platform
|
|
|
|
|
2017-05-03 16:01:15 +03:00
|
|
|
namespace Media {
|
|
|
|
namespace Audio {
|
|
|
|
class Track;
|
|
|
|
} // namespace Audio
|
|
|
|
} // namespace Media
|
|
|
|
|
2017-03-04 22:36:59 +03:00
|
|
|
namespace Window {
|
2021-02-25 19:12:51 +04:00
|
|
|
|
|
|
|
class SessionController;
|
|
|
|
|
2017-03-04 22:36:59 +03:00
|
|
|
namespace Notifications {
|
|
|
|
|
2021-01-21 14:18:40 +04:00
|
|
|
enum class ManagerType {
|
|
|
|
Dummy,
|
|
|
|
Default,
|
|
|
|
Native,
|
|
|
|
};
|
|
|
|
|
2017-03-04 22:36:59 +03:00
|
|
|
enum class ChangeType {
|
|
|
|
SoundEnabled,
|
2020-05-12 14:04:53 +04:00
|
|
|
FlashBounceEnabled,
|
2017-03-04 22:36:59 +03:00
|
|
|
IncludeMuted,
|
2018-12-04 14:32:06 +04:00
|
|
|
CountMessages,
|
2017-03-04 22:36:59 +03:00
|
|
|
DesktopEnabled,
|
|
|
|
ViewParams,
|
|
|
|
MaxCount,
|
|
|
|
Corner,
|
|
|
|
DemoIsShown,
|
2021-05-26 01:22:55 +03:00
|
|
|
DemoIsHidden,
|
2017-03-04 22:36:59 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Notifications
|
|
|
|
} // namespace Window
|
|
|
|
|
|
|
|
namespace base {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct custom_is_fast_copy_type<Window::Notifications::ChangeType> : public std::true_type {
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace base
|
|
|
|
|
2016-10-02 16:54:27 +03:00
|
|
|
namespace Window {
|
|
|
|
namespace Notifications {
|
|
|
|
|
|
|
|
class Manager;
|
|
|
|
|
2021-05-25 16:51:59 +03:00
|
|
|
class System final {
|
2017-03-04 22:36:59 +03:00
|
|
|
public:
|
2020-06-19 16:59:31 +04:00
|
|
|
System();
|
|
|
|
~System();
|
|
|
|
|
2020-06-24 13:05:56 +04:00
|
|
|
[[nodiscard]] Main::Session *findSession(uint64 sessionId) const;
|
2017-03-04 22:36:59 +03:00
|
|
|
|
|
|
|
void createManager();
|
2021-01-21 14:18:40 +04:00
|
|
|
void setManager(std::unique_ptr<Manager> manager);
|
|
|
|
[[nodiscard]] std::optional<ManagerType> managerType() const;
|
2017-03-04 22:36:59 +03:00
|
|
|
|
|
|
|
void checkDelayed();
|
2022-01-14 16:41:29 +03:00
|
|
|
void schedule(ItemNotification notification);
|
2019-08-30 17:06:21 +03:00
|
|
|
void clearFromHistory(not_null<History*> history);
|
|
|
|
void clearIncomingFromHistory(not_null<History*> history);
|
2020-06-19 16:59:31 +04:00
|
|
|
void clearFromSession(not_null<Main::Session*> session);
|
2019-08-30 17:06:21 +03:00
|
|
|
void clearFromItem(not_null<HistoryItem*> item);
|
2017-03-04 22:36:59 +03:00
|
|
|
void clearAll();
|
|
|
|
void clearAllFast();
|
|
|
|
void updateAll();
|
|
|
|
|
2021-05-25 16:51:59 +03:00
|
|
|
[[nodiscard]] rpl::producer<ChangeType> settingsChanged() const;
|
|
|
|
void notifySettingsChanged(ChangeType type);
|
|
|
|
|
|
|
|
[[nodiscard]] rpl::lifetime &lifetime() {
|
|
|
|
return _lifetime;
|
2017-03-04 22:36:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2022-01-31 16:18:40 +03:00
|
|
|
struct Waiter;
|
|
|
|
|
2019-08-28 17:24:12 +03:00
|
|
|
struct SkipState {
|
|
|
|
enum Value {
|
|
|
|
Unknown,
|
|
|
|
Skip,
|
|
|
|
DontSkip
|
|
|
|
};
|
|
|
|
Value value = Value::Unknown;
|
|
|
|
bool silent = false;
|
2022-01-14 16:41:29 +03:00
|
|
|
};
|
|
|
|
struct NotificationInHistoryKey {
|
|
|
|
NotificationInHistoryKey(ItemNotification notification);
|
|
|
|
NotificationInHistoryKey(MsgId messageId, ItemNotificationType type);
|
|
|
|
|
|
|
|
MsgId messageId = 0;
|
|
|
|
ItemNotificationType type = ItemNotificationType();
|
|
|
|
|
|
|
|
friend inline bool operator<(
|
|
|
|
NotificationInHistoryKey a,
|
|
|
|
NotificationInHistoryKey b) {
|
|
|
|
return std::pair(a.messageId, a.type)
|
|
|
|
< std::pair(b.messageId, b.type);
|
|
|
|
}
|
2019-08-28 17:24:12 +03:00
|
|
|
};
|
2022-01-14 16:41:29 +03:00
|
|
|
struct Timing {
|
|
|
|
crl::time delay = 0;
|
|
|
|
crl::time when = 0;
|
|
|
|
};
|
|
|
|
struct ReactionNotificationId {
|
|
|
|
FullMsgId itemId;
|
|
|
|
uint64 sessionId = 0;
|
|
|
|
|
|
|
|
friend inline bool operator<(
|
|
|
|
ReactionNotificationId a,
|
|
|
|
ReactionNotificationId b) {
|
|
|
|
return std::pair(a.itemId, a.sessionId)
|
|
|
|
< std::pair(b.itemId, b.sessionId);
|
|
|
|
}
|
2020-06-19 16:59:31 +04:00
|
|
|
};
|
2019-08-28 17:24:12 +03:00
|
|
|
|
2020-06-19 16:59:31 +04:00
|
|
|
[[nodiscard]] SkipState skipNotification(
|
2022-01-14 16:41:29 +03:00
|
|
|
ItemNotification notification) const;
|
|
|
|
[[nodiscard]] SkipState computeSkipState(
|
2022-01-31 16:18:40 +03:00
|
|
|
ItemNotification notification) const;
|
2022-01-14 16:41:29 +03:00
|
|
|
[[nodiscard]] Timing countTiming(
|
|
|
|
not_null<History*> history,
|
|
|
|
crl::time minimalDelay) const;
|
|
|
|
[[nodiscard]] bool skipReactionNotification(
|
2020-06-19 16:59:31 +04:00
|
|
|
not_null<HistoryItem*> item) const;
|
2019-08-28 17:24:12 +03:00
|
|
|
|
2017-03-04 22:36:59 +03:00
|
|
|
void showNext();
|
2019-03-10 10:42:25 +03:00
|
|
|
void showGrouped();
|
2017-05-03 16:01:15 +03:00
|
|
|
void ensureSoundCreated();
|
2017-03-04 22:36:59 +03:00
|
|
|
|
2020-06-19 16:59:31 +04:00
|
|
|
base::flat_map<
|
|
|
|
not_null<History*>,
|
2022-01-14 16:41:29 +03:00
|
|
|
base::flat_map<NotificationInHistoryKey, crl::time>> _whenMaps;
|
2017-03-04 22:36:59 +03:00
|
|
|
|
2020-06-19 16:59:31 +04:00
|
|
|
base::flat_map<not_null<History*>, Waiter> _waiters;
|
|
|
|
base::flat_map<not_null<History*>, Waiter> _settingWaiters;
|
2019-01-18 15:26:43 +04:00
|
|
|
base::Timer _waitTimer;
|
2019-03-10 10:42:25 +03:00
|
|
|
base::Timer _waitForAllGroupedTimer;
|
2017-03-04 22:36:59 +03:00
|
|
|
|
2022-01-14 16:41:29 +03:00
|
|
|
base::flat_map<
|
|
|
|
not_null<History*>,
|
|
|
|
base::flat_map<crl::time, PeerData*>> _whenAlerts;
|
|
|
|
|
|
|
|
mutable base::flat_map<
|
|
|
|
ReactionNotificationId,
|
|
|
|
crl::time> _sentReactionNotifications;
|
2017-03-04 22:36:59 +03:00
|
|
|
|
|
|
|
std::unique_ptr<Manager> _manager;
|
|
|
|
|
2021-05-25 16:51:59 +03:00
|
|
|
rpl::event_stream<ChangeType> _settingsChanged;
|
2017-03-04 22:36:59 +03:00
|
|
|
|
2017-05-03 16:01:15 +03:00
|
|
|
std::unique_ptr<Media::Audio::Track> _soundTrack;
|
|
|
|
|
2019-03-10 10:42:25 +03:00
|
|
|
int _lastForwardedCount = 0;
|
2020-06-24 13:05:56 +04:00
|
|
|
uint64 _lastHistorySessionId = 0;
|
2019-03-10 10:42:25 +03:00
|
|
|
FullMsgId _lastHistoryItemId;
|
2019-06-05 23:41:51 +03:00
|
|
|
|
2021-05-25 16:51:59 +03:00
|
|
|
rpl::lifetime _lifetime;
|
|
|
|
|
2017-03-04 22:36:59 +03:00
|
|
|
};
|
2016-10-02 16:54:27 +03:00
|
|
|
|
|
|
|
class Manager {
|
|
|
|
public:
|
2020-06-19 16:59:31 +04:00
|
|
|
struct FullPeer {
|
2020-06-24 13:05:56 +04:00
|
|
|
uint64 sessionId = 0;
|
2020-06-19 16:59:31 +04:00
|
|
|
PeerId peerId = 0;
|
|
|
|
|
|
|
|
friend inline bool operator<(const FullPeer &a, const FullPeer &b) {
|
2020-06-24 13:05:56 +04:00
|
|
|
return std::tie(a.sessionId, a.peerId)
|
|
|
|
< std::tie(b.sessionId, b.peerId);
|
2020-06-19 16:59:31 +04:00
|
|
|
}
|
|
|
|
};
|
2020-06-24 13:05:56 +04:00
|
|
|
struct NotificationId {
|
|
|
|
FullPeer full;
|
|
|
|
MsgId msgId = 0;
|
2021-10-15 17:57:27 +04:00
|
|
|
|
|
|
|
friend inline bool operator<(
|
|
|
|
const NotificationId &a,
|
|
|
|
const NotificationId &b) {
|
|
|
|
return std::tie(a.full, a.msgId) < std::tie(b.full, b.msgId);
|
|
|
|
}
|
2020-06-24 13:05:56 +04:00
|
|
|
};
|
2022-01-14 16:41:29 +03:00
|
|
|
struct NotificationFields {
|
|
|
|
not_null<HistoryItem*> item;
|
|
|
|
int forwardedCount = 0;
|
2022-01-28 18:47:04 +03:00
|
|
|
PeerData *reactionFrom = nullptr;
|
|
|
|
QString reactionEmoji;
|
2022-01-14 16:41:29 +03:00
|
|
|
};
|
2020-06-19 16:59:31 +04:00
|
|
|
|
2019-07-24 13:13:51 +02:00
|
|
|
explicit Manager(not_null<System*> system) : _system(system) {
|
2017-03-04 22:36:59 +03:00
|
|
|
}
|
|
|
|
|
2022-01-14 16:41:29 +03:00
|
|
|
void showNotification(NotificationFields fields) {
|
|
|
|
doShowNotification(std::move(fields));
|
2016-10-02 16:54:27 +03:00
|
|
|
}
|
|
|
|
void updateAll() {
|
|
|
|
doUpdateAll();
|
|
|
|
}
|
|
|
|
void clearAll() {
|
|
|
|
doClearAll();
|
|
|
|
}
|
|
|
|
void clearAllFast() {
|
|
|
|
doClearAllFast();
|
|
|
|
}
|
2019-08-30 17:06:21 +03:00
|
|
|
void clearFromItem(not_null<HistoryItem*> item) {
|
2016-10-02 16:54:27 +03:00
|
|
|
doClearFromItem(item);
|
|
|
|
}
|
2019-08-30 17:06:21 +03:00
|
|
|
void clearFromHistory(not_null<History*> history) {
|
2016-10-02 16:54:27 +03:00
|
|
|
doClearFromHistory(history);
|
|
|
|
}
|
2020-06-19 16:59:31 +04:00
|
|
|
void clearFromSession(not_null<Main::Session*> session) {
|
|
|
|
doClearFromSession(session);
|
|
|
|
}
|
2016-10-02 20:06:34 +03:00
|
|
|
|
2021-10-05 22:37:34 +04:00
|
|
|
void notificationActivated(
|
|
|
|
NotificationId id,
|
|
|
|
const TextWithTags &draft = {});
|
2020-06-19 16:59:31 +04:00
|
|
|
void notificationReplied(NotificationId id, const TextWithTags &reply);
|
2016-10-02 19:32:46 +03:00
|
|
|
|
2016-10-08 11:38:53 +03:00
|
|
|
struct DisplayOptions {
|
2020-06-19 16:59:31 +04:00
|
|
|
bool hideNameAndPhoto = false;
|
|
|
|
bool hideMessageText = false;
|
2021-10-06 19:24:30 +04:00
|
|
|
bool hideMarkAsRead = false;
|
2020-06-19 16:59:31 +04:00
|
|
|
bool hideReplyButton = false;
|
2016-10-08 11:38:53 +03:00
|
|
|
};
|
2021-04-27 13:51:52 +04:00
|
|
|
[[nodiscard]] DisplayOptions getNotificationOptions(
|
2022-01-14 16:41:29 +03:00
|
|
|
HistoryItem *item,
|
|
|
|
ItemNotificationType type) const;
|
|
|
|
[[nodiscard]] static TextWithEntities ComposeReactionNotification(
|
|
|
|
not_null<HistoryItem*> item,
|
|
|
|
const QString &reaction,
|
|
|
|
bool hideContent);
|
2016-10-08 11:38:53 +03:00
|
|
|
|
2020-06-19 17:34:43 +04:00
|
|
|
[[nodiscard]] QString addTargetAccountName(
|
|
|
|
const QString &title,
|
|
|
|
not_null<Main::Session*> session);
|
|
|
|
|
2021-01-21 14:18:40 +04:00
|
|
|
[[nodiscard]] virtual ManagerType type() const = 0;
|
|
|
|
|
2021-04-28 11:20:39 +04:00
|
|
|
[[nodiscard]] bool skipAudio() const {
|
|
|
|
return doSkipAudio();
|
|
|
|
}
|
|
|
|
[[nodiscard]] bool skipToast() const {
|
|
|
|
return doSkipToast();
|
|
|
|
}
|
|
|
|
[[nodiscard]] bool skipFlashBounce() const {
|
|
|
|
return doSkipFlashBounce();
|
|
|
|
}
|
|
|
|
|
2016-10-02 18:44:54 +03:00
|
|
|
virtual ~Manager() = default;
|
2016-10-02 16:54:27 +03:00
|
|
|
|
|
|
|
protected:
|
2019-07-24 13:13:51 +02:00
|
|
|
not_null<System*> system() const {
|
2017-03-04 22:36:59 +03:00
|
|
|
return _system;
|
|
|
|
}
|
|
|
|
|
2016-10-02 16:54:27 +03:00
|
|
|
virtual void doUpdateAll() = 0;
|
2022-01-14 16:41:29 +03:00
|
|
|
virtual void doShowNotification(NotificationFields &&fields) = 0;
|
2016-10-02 16:54:27 +03:00
|
|
|
virtual void doClearAll() = 0;
|
|
|
|
virtual void doClearAllFast() = 0;
|
2019-08-30 17:06:21 +03:00
|
|
|
virtual void doClearFromItem(not_null<HistoryItem*> item) = 0;
|
|
|
|
virtual void doClearFromHistory(not_null<History*> history) = 0;
|
2020-06-19 16:59:31 +04:00
|
|
|
virtual void doClearFromSession(not_null<Main::Session*> session) = 0;
|
2021-04-28 11:20:39 +04:00
|
|
|
virtual bool doSkipAudio() const = 0;
|
|
|
|
virtual bool doSkipToast() const = 0;
|
|
|
|
virtual bool doSkipFlashBounce() const = 0;
|
2021-04-27 13:51:52 +04:00
|
|
|
[[nodiscard]] virtual bool forceHideDetails() const {
|
|
|
|
return false;
|
|
|
|
}
|
2020-06-19 16:59:31 +04:00
|
|
|
virtual void onBeforeNotificationActivated(NotificationId id) {
|
2016-10-02 19:32:46 +03:00
|
|
|
}
|
2021-02-25 19:12:51 +04:00
|
|
|
virtual void onAfterNotificationActivated(
|
|
|
|
NotificationId id,
|
|
|
|
not_null<SessionController*> window) {
|
2016-10-02 19:32:46 +03:00
|
|
|
}
|
2020-06-19 17:34:43 +04:00
|
|
|
[[nodiscard]] virtual QString accountNameSeparator();
|
2016-10-02 16:54:27 +03:00
|
|
|
|
2017-03-04 22:36:59 +03:00
|
|
|
private:
|
2018-02-12 14:10:40 +03:00
|
|
|
void openNotificationMessage(
|
|
|
|
not_null<History*> history,
|
|
|
|
MsgId messageId);
|
|
|
|
|
2019-07-24 13:13:51 +02:00
|
|
|
const not_null<System*> _system;
|
2017-03-04 22:36:59 +03:00
|
|
|
|
2016-10-02 16:54:27 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class NativeManager : public Manager {
|
2021-01-21 14:18:40 +04:00
|
|
|
public:
|
|
|
|
[[nodiscard]] ManagerType type() const override {
|
|
|
|
return ManagerType::Native;
|
|
|
|
}
|
|
|
|
|
2016-10-02 16:54:27 +03:00
|
|
|
protected:
|
2017-03-04 22:36:59 +03:00
|
|
|
using Manager::Manager;
|
|
|
|
|
2016-10-02 16:54:27 +03:00
|
|
|
void doUpdateAll() override {
|
|
|
|
doClearAllFast();
|
|
|
|
}
|
|
|
|
void doClearAll() override {
|
|
|
|
doClearAllFast();
|
|
|
|
}
|
2022-01-14 16:41:29 +03:00
|
|
|
void doShowNotification(NotificationFields &&fields) override;
|
2016-10-02 16:54:27 +03:00
|
|
|
|
2021-04-27 13:51:52 +04:00
|
|
|
bool forceHideDetails() const override;
|
|
|
|
|
2019-08-28 17:24:12 +03:00
|
|
|
virtual void doShowNativeNotification(
|
|
|
|
not_null<PeerData*> peer,
|
2020-05-29 20:55:01 +04:00
|
|
|
std::shared_ptr<Data::CloudImageView> &userpicView,
|
2019-08-28 17:24:12 +03:00
|
|
|
MsgId msgId,
|
|
|
|
const QString &title,
|
|
|
|
const QString &subtitle,
|
|
|
|
const QString &msg,
|
2021-10-06 19:24:30 +04:00
|
|
|
DisplayOptions options) = 0;
|
2016-10-02 16:54:27 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2021-01-05 17:02:54 +04:00
|
|
|
class DummyManager : public NativeManager {
|
|
|
|
public:
|
|
|
|
using NativeManager::NativeManager;
|
|
|
|
|
2021-01-21 14:18:40 +04:00
|
|
|
[[nodiscard]] ManagerType type() const override {
|
|
|
|
return ManagerType::Dummy;
|
|
|
|
}
|
|
|
|
|
2021-01-05 17:02:54 +04:00
|
|
|
protected:
|
|
|
|
void doShowNativeNotification(
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
std::shared_ptr<Data::CloudImageView> &userpicView,
|
|
|
|
MsgId msgId,
|
|
|
|
const QString &title,
|
|
|
|
const QString &subtitle,
|
|
|
|
const QString &msg,
|
2021-10-06 19:24:30 +04:00
|
|
|
DisplayOptions options) override {
|
2021-01-05 17:02:54 +04:00
|
|
|
}
|
|
|
|
void doClearAllFast() override {
|
|
|
|
}
|
2021-10-15 17:57:27 +04:00
|
|
|
void doClearFromItem(not_null<HistoryItem*> item) override {
|
|
|
|
}
|
2021-01-05 17:02:54 +04:00
|
|
|
void doClearFromHistory(not_null<History*> history) override {
|
|
|
|
}
|
|
|
|
void doClearFromSession(not_null<Main::Session*> session) override {
|
|
|
|
}
|
2021-04-28 14:08:02 +04:00
|
|
|
bool doSkipAudio() const override {
|
2021-04-28 11:20:39 +04:00
|
|
|
return false;
|
|
|
|
}
|
2021-04-28 14:08:02 +04:00
|
|
|
bool doSkipToast() const override {
|
2021-04-28 11:20:39 +04:00
|
|
|
return false;
|
|
|
|
}
|
2021-04-28 14:08:02 +04:00
|
|
|
bool doSkipFlashBounce() const override {
|
2021-04-28 11:20:39 +04:00
|
|
|
return false;
|
|
|
|
}
|
2021-01-05 17:02:54 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2019-08-28 17:24:12 +03:00
|
|
|
QString WrapFromScheduled(const QString &text);
|
|
|
|
|
2016-10-02 16:54:27 +03:00
|
|
|
} // namespace Notifications
|
|
|
|
} // namespace Window
|