/* SPDX-FileCopyrightText: 2020 Shah Bhushan SPDX-FileCopyrightText: 2018-2019 Kai Uwe Broulik SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ #include "notificationsmodel.h" #include "notification_p.h" #include "server.h" #include "debug.h" #include #include using namespace NotificationManager; NotificationsModel::Ptr NotificationsModel::createNotificationsModel() { static std::weak_ptr s_instance; if (s_instance.expired()) { std::shared_ptr ptr(new NotificationsModel()); s_instance = ptr; return ptr; } return s_instance.lock(); } NotificationsModel::NotificationsModel() { connect(&Server::self(), &Server::notificationAdded, this, [this](const Notification ¬ification) { onNotificationAdded(notification); }); connect(&Server::self(), &Server::notificationReplaced, this, [this](uint replacedId, const Notification ¬ification) { onNotificationReplaced(replacedId, notification); }); connect(&Server::self(), &Server::notificationRemoved, this, [this](uint removedId, Server::CloseReason reason) { onNotificationRemoved(removedId, reason); }); connect(&Server::self(), &Server::serviceOwnershipLost, this, [this] { // Expire all notifications as we're defunct now const auto notificationList = notifications(); for (const Notification ¬ification : notificationList) { if (!notification.expired()) { onNotificationRemoved(notification.id(), Server::CloseReason::Expired); } } }); Server::self().init(); } void NotificationsModel::expire(uint notificationId) { if (rowOfNotification(notificationId) > -1) { Server::self().closeNotification(notificationId, Server::CloseReason::Expired); } } void NotificationsModel::close(uint notificationId) { if (rowOfNotification(notificationId) > -1) { Server::self().closeNotification(notificationId, Server::CloseReason::DismissedByUser); } } void NotificationsModel::invokeDefaultAction(uint notificationId, Notifications::InvokeBehavior behavior) { const int row = rowOfNotification(notificationId); if (row == -1) { return; } const Notification ¬ification = notifications().at(row); if (!notification.hasDefaultAction()) { qCWarning(NOTIFICATIONMANAGER) << "Trying to invoke default action on notification" << notificationId << "which doesn't have one"; return; } Server::self().invokeAction(notificationId, QStringLiteral("default"), // FIXME make a static Notification::defaultActionName() or something notification.d->xdgTokenAppId, behavior, window()); } void NotificationsModel::invokeAction(uint notificationId, const QString &actionName, Notifications::InvokeBehavior behavior) { const int row = rowOfNotification(notificationId); if (row == -1) { return; } const Notification ¬ification = notifications().at(row); if (!notification.actionNames().contains(actionName)) { qCWarning(NOTIFICATIONMANAGER) << "Trying to invoke action" << actionName << "on notification" << notificationId << "which it doesn't have"; return; } Server::self().invokeAction(notificationId, actionName, notification.d->xdgTokenAppId, behavior, window()); } void NotificationsModel::reply(uint notificationId, const QString &text, Notifications::InvokeBehavior behavior) { const int row = rowOfNotification(notificationId); if (row == -1) { return; } const Notification ¬ification = notifications().at(row); if (!notification.hasReplyAction()) { qCWarning(NOTIFICATIONMANAGER) << "Trying to reply to a notification which doesn't have a reply action"; return; } Server::self().reply(notification.dBusService(), notificationId, text, behavior); } void NotificationsModel::configure(uint notificationId) { const int row = rowOfNotification(notificationId); if (row == -1) { return; } const Notification ¬ification = notifications().at(row); if (notification.d->hasConfigureAction) { Server::self().invokeAction(notificationId, QStringLiteral("settings"), notification.d->xdgTokenAppId, Notifications::None, // FIXME make a static Notification::configureActionName() or something window()); return; } if (!notification.desktopEntry().isEmpty() || !notification.notifyRcName().isEmpty()) { configure(notification.desktopEntry(), notification.notifyRcName(), notification.eventId()); return; } qCWarning(NOTIFICATIONMANAGER) << "Trying to configure notification" << notificationId << "which isn't configurable"; } void NotificationsModel::configure(const QString &desktopEntry, const QString ¬ifyRcName, const QString &eventId) { // TODO would be nice to just have a signal but since NotificationsModel is shared, // if we connect to this from Notifications you would get a signal in every instance // and potentially open the config dialog multiple times. QStringList args; if (!desktopEntry.isEmpty()) { args.append(QStringLiteral("--desktop-entry")); args.append(desktopEntry); } if (!notifyRcName.isEmpty()) { args.append(QStringLiteral("--notifyrc")); args.append(notifyRcName); } if (!eventId.isEmpty()) { args.append(QStringLiteral("--event-id")); args.append(eventId); } QProcess::startDetached(QStringLiteral("kcmshell6"), {QStringLiteral("notifications"), QStringLiteral("--args"), KShell::joinArgs(args)}); }