2016-10-02 09:30:28 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-10-02 09:30:28 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-10-02 09:30:28 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 10:51:00 +00:00
|
|
|
#include "platform/platform_notifications_manager.h"
|
2019-12-29 15:41:45 +00:00
|
|
|
#include "window/notifications_utilities.h"
|
|
|
|
#include "base/weak_ptr.h"
|
|
|
|
|
2020-01-21 12:51:39 +00:00
|
|
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2020-03-02 15:55:29 +00:00
|
|
|
#include <QtDBus/QDBusConnection>
|
2019-12-29 15:41:45 +00:00
|
|
|
#include <QtDBus/QDBusArgument>
|
2020-02-29 03:42:24 +00:00
|
|
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2016-10-02 09:30:28 +00:00
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
namespace Notifications {
|
|
|
|
|
2020-01-21 12:51:39 +00:00
|
|
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2019-12-29 15:41:45 +00:00
|
|
|
class NotificationData : public QObject {
|
|
|
|
Q_OBJECT
|
2017-03-04 19:36:59 +00:00
|
|
|
|
2016-10-03 08:56:03 +00:00
|
|
|
public:
|
2019-12-29 15:41:45 +00:00
|
|
|
NotificationData(
|
|
|
|
const base::weak_ptr<Manager> &manager,
|
2020-02-22 16:36:01 +00:00
|
|
|
const QString &title,
|
|
|
|
const QString &subtitle,
|
|
|
|
const QString &msg,
|
|
|
|
PeerId peerId,
|
|
|
|
MsgId msgId,
|
|
|
|
bool hideReplyButton);
|
2016-10-04 13:36:50 +00:00
|
|
|
|
2019-12-29 15:41:45 +00:00
|
|
|
NotificationData(const NotificationData &other) = delete;
|
|
|
|
NotificationData &operator=(const NotificationData &other) = delete;
|
|
|
|
NotificationData(NotificationData &&other) = delete;
|
|
|
|
NotificationData &operator=(NotificationData &&other) = delete;
|
|
|
|
|
2020-02-24 23:45:46 +00:00
|
|
|
bool show();
|
2020-03-02 15:55:29 +00:00
|
|
|
void close();
|
2019-12-29 15:41:45 +00:00
|
|
|
void setImage(const QString &imagePath);
|
|
|
|
|
|
|
|
struct ImageData {
|
|
|
|
int width, height, rowStride;
|
|
|
|
bool hasAlpha;
|
|
|
|
int bitsPerSample, channels;
|
|
|
|
QByteArray data;
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2020-03-02 15:55:29 +00:00
|
|
|
QDBusConnection _dbusConnection;
|
2019-12-29 15:41:45 +00:00
|
|
|
base::weak_ptr<Manager> _manager;
|
|
|
|
|
|
|
|
QString _title;
|
|
|
|
QString _body;
|
|
|
|
QStringList _actions;
|
|
|
|
QVariantMap _hints;
|
2020-02-24 23:45:46 +00:00
|
|
|
QString _imageKey;
|
2019-12-29 15:41:45 +00:00
|
|
|
|
|
|
|
uint _notificationId;
|
|
|
|
PeerId _peerId;
|
|
|
|
MsgId _msgId;
|
2016-10-03 15:07:50 +00:00
|
|
|
|
2019-12-29 15:41:45 +00:00
|
|
|
private slots:
|
|
|
|
void notificationClosed(uint id);
|
2020-03-06 05:55:22 +00:00
|
|
|
void actionInvoked(uint id, const QString &actionName);
|
2020-01-21 12:27:50 +00:00
|
|
|
void notificationReplied(uint id, const QString &text);
|
2019-12-29 15:41:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
using Notification = std::shared_ptr<NotificationData>;
|
|
|
|
|
2020-02-22 16:36:01 +00:00
|
|
|
QDBusArgument &operator<<(
|
|
|
|
QDBusArgument &argument,
|
2019-12-29 15:41:45 +00:00
|
|
|
const NotificationData::ImageData &imageData);
|
|
|
|
|
2020-02-22 16:36:01 +00:00
|
|
|
const QDBusArgument &operator>>(
|
|
|
|
const QDBusArgument &argument,
|
2019-12-29 15:41:45 +00:00
|
|
|
NotificationData::ImageData &imageData);
|
|
|
|
|
|
|
|
class Manager
|
|
|
|
: public Window::Notifications::NativeManager
|
|
|
|
, public base::has_weak_ptr {
|
|
|
|
public:
|
2020-02-29 03:42:24 +00:00
|
|
|
Manager(not_null<Window::Notifications::System*> system);
|
2019-12-29 15:41:45 +00:00
|
|
|
void clearNotification(PeerId peerId, MsgId msgId);
|
2016-10-03 08:56:03 +00:00
|
|
|
~Manager();
|
|
|
|
|
|
|
|
protected:
|
2019-08-28 14:24:12 +00:00
|
|
|
void doShowNativeNotification(
|
|
|
|
not_null<PeerData*> peer,
|
2020-05-29 16:55:01 +00:00
|
|
|
std::shared_ptr<Data::CloudImageView> &userpicView,
|
2019-08-28 14:24:12 +00:00
|
|
|
MsgId msgId,
|
|
|
|
const QString &title,
|
|
|
|
const QString &subtitle,
|
|
|
|
const QString &msg,
|
|
|
|
bool hideNameAndPhoto,
|
|
|
|
bool hideReplyButton) override;
|
2016-10-03 08:56:03 +00:00
|
|
|
void doClearAllFast() override;
|
2019-08-30 14:06:21 +00:00
|
|
|
void doClearFromHistory(not_null<History*> history) override;
|
2016-10-03 08:56:03 +00:00
|
|
|
|
|
|
|
private:
|
2017-03-04 19:36:59 +00:00
|
|
|
class Private;
|
|
|
|
const std::unique_ptr<Private> _private;
|
2016-10-03 08:56:03 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2019-12-29 15:41:45 +00:00
|
|
|
class Manager::Private {
|
|
|
|
public:
|
|
|
|
using Type = Window::Notifications::CachedUserpics::Type;
|
2020-02-29 03:42:24 +00:00
|
|
|
explicit Private(not_null<Manager*> manager, Type type);
|
2019-12-29 15:41:45 +00:00
|
|
|
|
|
|
|
void showNotification(
|
|
|
|
not_null<PeerData*> peer,
|
2020-05-29 16:55:01 +00:00
|
|
|
std::shared_ptr<Data::CloudImageView> &userpicView,
|
2019-12-29 15:41:45 +00:00
|
|
|
MsgId msgId,
|
|
|
|
const QString &title,
|
|
|
|
const QString &subtitle,
|
|
|
|
const QString &msg,
|
|
|
|
bool hideNameAndPhoto,
|
|
|
|
bool hideReplyButton);
|
|
|
|
void clearAll();
|
|
|
|
void clearFromHistory(not_null<History*> history);
|
|
|
|
void clearNotification(PeerId peerId, MsgId msgId);
|
|
|
|
|
|
|
|
~Private();
|
|
|
|
|
|
|
|
private:
|
|
|
|
using Notifications = QMap<PeerId, QMap<MsgId, Notification>>;
|
|
|
|
Notifications _notifications;
|
|
|
|
|
|
|
|
Window::Notifications::CachedUserpics _cachedUserpics;
|
|
|
|
base::weak_ptr<Manager> _manager;
|
|
|
|
};
|
2020-02-29 03:42:24 +00:00
|
|
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2019-12-29 15:41:45 +00:00
|
|
|
|
2016-10-02 09:30:28 +00:00
|
|
|
} // namespace Notifications
|
|
|
|
} // namespace Platform
|
2019-12-29 15:41:45 +00:00
|
|
|
|
2020-01-21 12:51:39 +00:00
|
|
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2019-12-29 15:41:45 +00:00
|
|
|
Q_DECLARE_METATYPE(Platform::Notifications::NotificationData::ImageData)
|
2020-02-29 03:42:24 +00:00
|
|
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|