-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathNotificationGenerator.php
More file actions
154 lines (124 loc) · 5.06 KB
/
NotificationGenerator.php
File metadata and controls
154 lines (124 loc) · 5.06 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Activity;
use OCP\Activity\Exceptions\UnknownActivityException;
use OCP\Activity\IEvent;
use OCP\Activity\IManager as ActivityManager;
use OCP\IL10N;
use OCP\Notification\AlreadyProcessedException;
use OCP\Notification\IManager as NotificationManager;
use OCP\Notification\INotification;
use OCP\Notification\INotifier;
use OCP\Notification\UnknownNotificationException;
use Psr\Log\LoggerInterface;
class NotificationGenerator implements INotifier {
public function __construct(
protected Data $data,
protected ActivityManager $activityManager,
protected NotificationManager $notificationManager,
protected UserSettings $userSettings,
protected IL10N $l10n,
protected LoggerInterface $logger,
) {
}
private function sanitizeUrl(string $url): string {
if (str_starts_with($url, 'http://') || str_starts_with($url, 'https://')) {
return $url;
}
return '';
}
public function deferNotifications(): bool {
return $this->notificationManager->defer();
}
public function flushNotifications() {
$this->notificationManager->flush();
}
public function sendNotificationForEvent(IEvent $event, int $activityId, ?bool $notificationSetting = null) {
$selfAction = $event->getAffectedUser() === $event->getAuthor();
$notifySetting = $notificationSetting ?? $this->userSettings->getUserSetting($event->getAffectedUser(), 'notification', $event->getType());
if ($notifySetting && !$selfAction && $event->getGenerateNotification()) {
$this->notificationManager->notify($this->getNotificationForEvent($event, $activityId));
}
}
private function getNotificationForEvent(IEvent $event, int $activityId): INotification {
$notification = $this->notificationManager->createNotification();
$notification->setApp($event->getApp());
$notification->setUser($event->getAffectedUser());
$notification->setDateTime(\DateTime::createFromFormat('U', (string)$event->getTimestamp()));
$notification->setObject('activity_notification', (string)$activityId);
$notification->setSubject($event->getSubject(), $event->getSubjectParameters());
if ($event->getRichSubject()) {
$notification->setRichSubject($event->getRichSubject(), $event->getRichSubjectParameters());
}
if ($event->getRichMessage()) {
$notification->setRichMessage($event->getRichMessage(), $event->getRichMessageParameters());
}
if ($event->getMessage()) {
$notification->setMessage($event->getMessage(), $event->getMessageParameters());
}
$link = $event->getLink() ? $this->sanitizeUrl($event->getLink()) : '';
if ($link !== '') {
$notification->setLink($link);
}
return $notification;
}
private function populateEvent(IEvent $event, string $language) {
$this->activityManager->setFormattingObject($event->getObjectType(), $event->getObjectId());
foreach ($this->activityManager->getProviders() as $provider) {
try {
$event = $provider->parse($language, $event);
} catch (UnknownActivityException) {
} catch (\InvalidArgumentException $e) {
// todo 39.0.0 Log as error
$this->logger->warning(get_class($provider) . '::parse() threw \InvalidArgumentException which is deprecated. Throw \OCP\Activity\Exceptions\UnknownActivityException when the event is not known to your provider and otherwise handle all \InvalidArgumentException yourself.');
}
}
$this->activityManager->setFormattingObject('', 0);
return $event;
}
#[\Override]
public function getID(): string {
return 'activity';
}
#[\Override]
public function getName(): string {
return 'Activity';
}
#[\Override]
public function prepare(INotification $notification, string $languageCode): INotification {
if ($notification->getObjectType() !== 'activity_notification') {
throw new UnknownNotificationException();
}
$event = $this->data->getById((int)$notification->getObjectId());
if (!$event) {
throw new AlreadyProcessedException();
}
if ($event->getAffectedUser() !== $notification->getUser()) {
throw new AlreadyProcessedException();
}
$this->activityManager->setCurrentUserId($notification->getUser());
$event = $this->populateEvent($event, $languageCode);
$this->activityManager->setCurrentUserId(null);
return $this->getDisplayNotificationForEvent($event, $event->getObjectId());
}
private function getDisplayNotificationForEvent(IEvent $event, int $activityId): INotification {
$notification = $this->getNotificationForEvent($event, $activityId);
$notification->setRichSubject($event->getRichSubject(), $event->getRichSubjectParameters());
$notification->setParsedSubject($event->getParsedSubject());
$icon = $event->getIcon() ? $this->sanitizeUrl($event->getIcon()) : '';
if ($icon !== '') {
$notification->setIcon($icon);
}
if ($event->getRichMessage()) {
$notification->setRichMessage($event->getRichMessage(), $event->getRichMessageParameters());
}
if ($event->getParsedMessage()) {
$notification->setParsedMessage($event->getParsedMessage());
}
return $notification;
}
}