-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathNotificationHandler.php
175 lines (140 loc) · 5.7 KB
/
NotificationHandler.php
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?php
/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);
namespace Ibexa\Core\Persistence\Cache;
use Ibexa\Contracts\Core\Persistence\Notification\CreateStruct;
use Ibexa\Contracts\Core\Persistence\Notification\Handler;
use Ibexa\Contracts\Core\Persistence\Notification\Notification;
use Ibexa\Contracts\Core\Persistence\Notification\UpdateStruct;
use Ibexa\Contracts\Core\Repository\Values\Notification\Notification as APINotification;
class NotificationHandler extends AbstractHandler implements Handler
{
private const NOTIFICATION_IDENTIFIER = 'notification';
private const NOTIFICATION_COUNT_IDENTIFIER = 'notification_count';
private const NOTIFICATION_PENDING_COUNT_IDENTIFIER = 'notification_pending_count';
/**
* {@inheritdoc}
*/
public function createNotification(CreateStruct $createStruct): Notification
{
$this->logger->logCall(__METHOD__, [
'createStruct' => $createStruct,
]);
$this->cache->deleteItems([
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_COUNT_IDENTIFIER, [$createStruct->ownerId], true),
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_PENDING_COUNT_IDENTIFIER, [$createStruct->ownerId], true),
]);
return $this->persistenceHandler->notificationHandler()->createNotification($createStruct);
}
/**
* {@inheritdoc}
*/
public function updateNotification(APINotification $notification, UpdateStruct $updateStruct): Notification
{
$this->logger->logCall(__METHOD__, [
'notificationId' => $notification->id,
]);
$this->cache->deleteItems([
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_IDENTIFIER, [$notification->id], true),
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_PENDING_COUNT_IDENTIFIER, [$notification->ownerId], true),
]);
return $this->persistenceHandler->notificationHandler()->updateNotification($notification, $updateStruct);
}
/**
* {@inheritdoc}
*/
public function delete(APINotification $notification): void
{
$this->logger->logCall(__METHOD__, [
'notificationId' => $notification->id,
]);
$this->cache->deleteItems([
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_IDENTIFIER, [$notification->id], true),
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_COUNT_IDENTIFIER, [$notification->ownerId], true),
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_PENDING_COUNT_IDENTIFIER, [$notification->ownerId], true),
]);
$this->persistenceHandler->notificationHandler()->delete($notification);
}
/**
* {@inheritdoc}
*/
public function countPendingNotifications(int $ownerId): int
{
$cacheItem = $this->cache->getItem(
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_PENDING_COUNT_IDENTIFIER, [$ownerId], true)
);
$count = $cacheItem->get();
if ($cacheItem->isHit()) {
return $count;
}
$this->logger->logCall(__METHOD__, [
'ownerId' => $ownerId,
]);
$count = $this->persistenceHandler->notificationHandler()->countPendingNotifications($ownerId);
$cacheItem->set($count);
$this->cache->save($cacheItem);
return $count;
}
/**
* @param string[] $query
*/
public function countNotifications(int $ownerId, array $query = []): int
{
$cacheKeyParams = [$ownerId];
if (!empty($query)) {
$cacheKeyParams[] = json_encode($query);
}
$cacheItem = $this->cache->getItem(
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_COUNT_IDENTIFIER, $cacheKeyParams, true)
);
$count = $cacheItem->get();
if ($cacheItem->isHit()) {
return $count;
}
$this->logger->logCall(__METHOD__, [
'ownerId' => $ownerId,
'query' => $query,
]);
$count = $this->persistenceHandler->notificationHandler()->countNotifications($ownerId, $query);
$cacheItem->set($count);
$this->cache->save($cacheItem);
return $count;
}
/**
* {@inheritdoc}
*/
public function getNotificationById(int $notificationId): Notification
{
$cacheItem = $this->cache->getItem(
$this->cacheIdentifierGenerator->generateKey(self::NOTIFICATION_IDENTIFIER, [$notificationId], true)
);
$notification = $cacheItem->get();
if ($cacheItem->isHit()) {
return $notification;
}
$this->logger->logCall(__METHOD__, [
'notificationId' => $notificationId,
]);
$notification = $this->persistenceHandler->notificationHandler()->getNotificationById($notificationId);
$cacheItem->set($notification);
$this->cache->save($cacheItem);
return $notification;
}
/**
* @param string[] $query
*/
public function loadUserNotifications(int $userId, int $offset, int $limit, array $query = []): array
{
$this->logger->logCall(__METHOD__, [
'ownerId' => $userId,
'offset' => $offset,
'limit' => $limit,
'query' => $query,
]);
return $this->persistenceHandler->notificationHandler()->loadUserNotifications($userId, $offset, $limit, $query);
}
}
class_alias(NotificationHandler::class, 'eZ\Publish\Core\Persistence\Cache\NotificationHandler');