]> git.mxchange.org Git - friendica.git/blob - src/Navigation/Notifications/Repository/Notification.php
Merge pull request #11360 from annando/announce-notification
[friendica.git] / src / Navigation / Notifications / Repository / Notification.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Navigation\Notifications\Repository;
23
24 use Exception;
25 use Friendica\BaseCollection;
26 use Friendica\BaseRepository;
27 use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
28 use Friendica\Database\Database;
29 use Friendica\Database\DBA;
30 use Friendica\Model\Post\UserNotification;
31 use Friendica\Model\Verb;
32 use Friendica\Navigation\Notifications\Collection;
33 use Friendica\Navigation\Notifications\Entity;
34 use Friendica\Navigation\Notifications\Factory;
35 use Friendica\Network\HTTPException\NotFoundException;
36 use Friendica\Util\DateTimeFormat;
37 use Psr\Log\LoggerInterface;
38
39 class Notification extends BaseRepository
40 {
41         /** @var Factory\Notification  */
42         protected $factory;
43
44         protected static $table_name = 'notification';
45
46         /** @var IManagePersonalConfigValues */
47         private $pconfig;
48
49         public function __construct(IManagePersonalConfigValues $pconfig, Database $database, LoggerInterface $logger, Factory\Notification $factory)
50         {
51                 parent::__construct($database, $logger, $factory);
52
53                 $this->pconfig = $pconfig;
54         }
55
56         /**
57          * @param array $condition
58          * @param array $params
59          * @return Entity\Notification
60          * @throws NotFoundException
61          */
62         private function selectOne(array $condition, array $params = []): Entity\Notification
63         {
64                 return parent::_selectOne($condition, $params);
65         }
66
67         private function select(array $condition, array $params = []): Collection\Notifications
68         {
69                 return new Collection\Notifications(parent::_select($condition, $params)->getArrayCopy());
70         }
71
72         public function countForUser($uid, array $condition, array $params = []): int
73         {
74                 $condition = DBA::mergeConditions($condition, ['uid' => $uid]);
75
76                 return $this->count($condition, $params);
77         }
78
79         public function existsForUser($uid, array $condition): bool
80         {
81                 $condition = DBA::mergeConditions($condition, ['uid' => $uid]);
82
83                 return $this->exists($condition);
84         }
85
86         /**
87          * @param int $id
88          * @return Entity\Notification
89          * @throws NotFoundException
90          */
91         public function selectOneById(int $id): Entity\Notification
92         {
93                 return $this->selectOne(['id' => $id]);
94         }
95
96         public function selectOneForUser(int $uid, array $condition, array $params = []): Entity\Notification
97         {
98                 $condition = DBA::mergeConditions($condition, ['uid' => $uid]);
99
100                 return $this->selectOne($condition, $params);
101         }
102
103         public function selectForUser(int $uid, array $condition = [], array $params = []): Collection\Notifications
104         {
105                 $condition = DBA::mergeConditions($condition, ['uid' => $uid]);
106
107                 return $this->select($condition, $params);
108         }
109
110
111         /**
112          * Returns only the most recent notifications for the same conversation or contact
113          *
114          * @param int $uid
115          * @return Collection\Notifications
116          * @throws Exception
117          */
118         public function selectDetailedForUser(int $uid): Collection\Notifications
119         {
120                 $condition = [];
121                 if (!$this->pconfig->get($uid, 'system', 'notify_like')) {
122                         $condition = DBA::mergeConditions($condition, ['`vid` != ?', Verb::getID(\Friendica\Protocol\Activity::LIKE)]);
123                 }
124
125                 if (!$this->pconfig->get($uid, 'system', 'notify_announce')) {
126                         $condition = DBA::mergeConditions($condition, ['`vid` != ?', Verb::getID(\Friendica\Protocol\Activity::ANNOUNCE)]);
127                 }
128
129                 return $this->selectForUser($uid, $condition, ['limit' => 50, 'order' => ['id' => true]]);
130         }
131
132         /**
133          * Returns only the most recent notifications for the same conversation or contact
134          *
135          * @param int $uid
136          * @return Collection\Notifications
137          * @throws Exception
138          */
139         public function selectDigestForUser(int $uid): Collection\Notifications
140         {
141                 $values = [$uid];
142
143                 $like_condition = '';
144                 if (!$this->pconfig->get($uid, 'system', 'notify_like')) {
145                         $like_condition = 'AND vid != ?';
146                         $values[] = Verb::getID(\Friendica\Protocol\Activity::LIKE);
147                 }
148
149                 $announce_condition = '';
150                 if (!$this->pconfig->get($uid, 'system', 'notify_announce')) {
151                         $announce_condition = 'AND vid != ?';
152                         $values[] = Verb::getID(\Friendica\Protocol\Activity::ANNOUNCE);
153                 }
154
155                 $rows = $this->db->p("
156                 SELECT notification.*
157                 FROM notification
158                 WHERE `id` IN (
159                     SELECT MAX(`id`)
160                     FROM `notification`
161                     WHERE `uid` = ?
162                     $like_condition
163                     $announce_condition
164                     GROUP BY IFNULL(`parent-uri-id`, `actor-id`)
165                 )
166                 ORDER BY `seen`, `id` DESC
167                 LIMIT 50
168                 ", ...$values);
169
170                 $Entities = new Collection\Notifications();
171                 foreach ($rows as $fields) {
172                         $Entities[] = $this->factory->createFromTableRow($fields);
173                 }
174
175                 return $Entities;
176         }
177
178         public function selectAllForUser(int $uid): Collection\Notifications
179         {
180                 return $this->selectForUser($uid);
181         }
182
183         /**
184          * @param array    $condition
185          * @param array    $params
186          * @param int|null $min_id Retrieve models with an id no fewer than this, as close to it as possible
187          * @param int|null $max_id Retrieve models with an id no greater than this, as close to it as possible
188          * @param int      $limit
189          * @return BaseCollection
190          * @throws Exception
191          * @see _selectByBoundaries
192          */
193         public function selectByBoundaries(array $condition = [], array $params = [], int $min_id = null, int $max_id = null, int $limit = self::LIMIT)
194         {
195                 $BaseCollection = parent::_selectByBoundaries($condition, $params, $min_id, $max_id, $limit);
196
197                 return new Collection\Notifications($BaseCollection->getArrayCopy(), $BaseCollection->getTotalCount());
198         }
199
200         public function setAllSeenForUser(int $uid, array $condition = []): bool
201         {
202                 $condition = DBA::mergeConditions($condition, ['uid' => $uid]);
203
204                 return $this->db->update(self::$table_name, ['seen' => true], $condition);
205         }
206
207         public function setAllDismissedForUser(int $uid, array $condition = []): bool
208         {
209                 $condition = DBA::mergeConditions($condition, ['uid' => $uid]);
210
211                 return $this->db->update(self::$table_name, ['dismissed' => true], $condition);
212         }
213
214         /**
215          * @param Entity\Notification $Notification
216          * @return Entity\Notification
217          * @throws Exception
218          */
219         public function save(Entity\Notification $Notification): Entity\Notification
220         {
221                 $fields = [
222                         'uid'           => $Notification->uid,
223                         'vid'           => Verb::getID($Notification->verb),
224                         'type'          => $Notification->type,
225                         'actor-id'      => $Notification->actorId,
226                         'target-uri-id' => $Notification->targetUriId,
227                         'parent-uri-id' => $Notification->parentUriId,
228                         'seen'          => $Notification->seen,
229                         'dismissed'     => $Notification->dismissed,
230                 ];
231
232                 if ($Notification->id) {
233                         $this->db->update(self::$table_name, $fields, ['id' => $Notification->id]);
234                 } else {
235                         $fields['created'] = DateTimeFormat::utcNow();
236                         $this->db->insert(self::$table_name, $fields);
237
238                         $Notification = $this->selectOneById($this->db->lastInsertId());
239                 }
240
241                 return $Notification;
242         }
243
244         public function deleteForUserByVerb(int $uid, string $verb, array $condition = []): bool
245         {
246                 $condition['uid'] = $uid;
247                 $condition['vid'] = Verb::getID($verb);
248
249                 $this->logger->notice('deleteForUserByVerb', ['condition' => $condition]);
250
251                 return $this->db->delete(self::$table_name, $condition);
252         }
253 }