summary refs log tree commit diff
path: root/src/notifications/ManagerWin.cpp
blob: fe7830a76f9b46b7440ea9a5949420a8364371b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

#include "notifications/Manager.h"
#include "wintoastlib.h"

#include <QRegularExpression>
#include <QStandardPaths>
#include <QTextDocumentFragment>

#include <variant>

#include "Cache.h"
#include "EventAccessors.h"
#include "Utils.h"

using namespace WinToastLib;

class CustomHandler : public IWinToastHandler
{
public:
        void toastActivated() const {}
        void toastActivated(int) const {}
        void toastFailed() const { std::wcout << L"Error showing current toast" << std::endl; }
        void toastDismissed(WinToastDismissalReason) const {}
};

namespace {
bool isInitialized = false;

void
init()
{
        isInitialized = true;

        WinToast::instance()->setAppName(L"Nheko");
        WinToast::instance()->setAppUserModelId(WinToast::configureAUMI(L"nheko", L"nheko"));
        if (!WinToast::instance()->initialize())
                std::wcout << "Your system is not compatible with toast notifications\n";
}
}

NotificationsManager::NotificationsManager(QObject *parent)
  : QObject(parent)
{}

void
NotificationsManager::postNotification(const mtx::responses::Notification &notification,
                                       const QImage &icon)
{
        const auto room_name =
          QString::fromStdString(cache::singleRoomInfo(notification.room_id).name);
        const auto sender =
          cache::displayName(QString::fromStdString(notification.room_id),
                             QString::fromStdString(mtx::accessors::sender(notification.event)));

        const auto isEncrypted =
          std::get_if<mtx::events::EncryptedEvent<mtx::events::msg::Encrypted>>(
            &notification.event) != nullptr;
        const auto isReply = utils::isReply(notification.event);

        auto formatNotification = [this, notification, sender] {
                const auto template_ = getMessageTemplate(notification);
                if (std::holds_alternative<
                      mtx::events::EncryptedEvent<mtx::events::msg::Encrypted>>(
                      notification.event)) {
                        return template_;
                }

                return template_.arg(
                  utils::stripReplyFallbacks(notification.event, {}, {}).quoted_body);
        };

        const auto line1 =
          (room_name == sender) ? sender : QString("%1 - %2").arg(sender).arg(room_name);
        const auto line2 = (isEncrypted ? (isReply ? tr("%1 replied with an encrypted message")
                                                   : tr("%1 sent an encrypted message"))
                                        : formatNotification());

        auto iconPath = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) +
                        room_name + "-room-avatar.png";
        if (!icon.save(iconPath))
                iconPath.clear();

        systemPostNotification(line1, line2, iconPath);
}

void
NotificationsManager::systemPostNotification(const QString &line1,
                                             const QString &line2,
                                             const QString &iconPath)
{
        if (!isInitialized)
                init();

        auto templ = WinToastTemplate(WinToastTemplate::ImageAndText02);
        templ.setTextField(line1.toStdWString(), WinToastTemplate::FirstLine);
        templ.setTextField(line2.toStdWString(), WinToastTemplate::SecondLine);

        if (!iconPath.isNull())
                templ.setImagePath(iconPath.toStdWString());

        WinToast::instance()->showToast(templ, new CustomHandler());
}

void NotificationsManager::actionInvoked(uint, QString) {}
void NotificationsManager::notificationReplied(uint, QString) {}

void NotificationsManager::notificationClosed(uint, uint) {}

void
NotificationsManager::removeNotification(const QString &, const QString &)
{}