]> git.mxchange.org Git - friendica.git/blob - src/Navigation/Notifications/Repository/Notification.php
Merge pull request #11609 from annando/fix-uid
[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 = ["`type` & ? != 0", $this->pconfig->get($uid, 'system', 'notify_type', 3 | 72 | 4 | 16 | 32) | 128 | 256];
121                 if (!$this->pconfig->get($uid, 'system', 'notify_like')) {
122                         $condition = DBA::mergeConditions($condition, ['NOT `vid` IN (?, ?)', Verb::getID(\Friendica\Protocol\Activity::LIKE), Verb::getID(\Friendica\Protocol\Activity::DISLIKE)]);
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, $this->pconfig->get($uid, 'system', 'notify_type', 3 | 72 | 4 | 16 | 32) | 128 | 256];
142
143                 $like_condition = '';
144                 if (!$this->pconfig->get($uid, 'system', 'notify_like')) {
145                         $like_condition = 'AND NOT `vid` IN (?, ?)';
146                         $values[] = Verb::getID(\Friendica\Protocol\Activity::LIKE);
147                         $values[] = Verb::getID(\Friendica\Protocol\Activity::DISLIKE);
148                 }
149
150                 $announce_condition = '';
151                 if (!$this->pconfig->get($uid, 'system', 'notify_announce')) {
152                         $announce_condition = 'AND vid != ?';
153                         $values[] = Verb::getID(\Friendica\Protocol\Activity::ANNOUNCE);
154                 }
155
156                 $rows = $this->db->p("
157                 SELECT notification.*
158                 FROM notification
159                 WHERE `id` IN (
160                     SELECT MAX(`id`)
161                     FROM `notification`
162                     WHERE `uid` = ? AND `type` & ? != 0
163                     $like_condition
164                     $announce_condition
165                     GROUP BY IFNULL(`parent-uri-id`, `actor-id`)
166                 )
167                 ORDER BY `seen`, `id` DESC
168                 LIMIT 50
169                 ", ...$values);
170
171                 $Entities = new Collection\Notifications();
172                 foreach ($rows as $fields) {
173                         $Entities[] = $this->factory->createFromTableRow($fields);
174                 }
175
176                 return $Entities;
177         }
178
179         public function selectAllForUser(int $uid): Collection\Notifications
180         {
181                 return $this->selectForUser($uid);
182         }
183
184         /**
185          * @param array    $condition
186          * @param array    $params
187          * @param int|null $min_id Retrieve models with an id no fewer than this, as close to it as possible
188          * @param int|null $max_id Retrieve models with an id no greater than this, as close to it as possible
189          * @param int      $limit
190          * @return BaseCollection
191          * @throws Exception
192          * @see _selectByBoundaries
193          */
194         public function selectByBoundaries(array $condition = [], array $params = [], int $min_id = null, int $max_id = null, int $limit = self::LIMIT)
195         {
196                 $BaseCollection = parent::_selectByBoundaries($condition, $params, $min_id, $max_id, $limit);
197
198                 return new Collection\Notifications($BaseCollection->getArrayCopy(), $BaseCollection->getTotalCount());
199         }
200
201         public function setAllSeenForUser(int $uid, array $condition = []): bool
202         {
203                 $condition = DBA::mergeConditions($condition, ['uid' => $uid]);
204
205                 return $this->db->update(self::$table_name, ['seen' => true], $condition);
206         }
207
208         public function setAllDismissedForUser(int $uid, array $condition = []): bool
209         {
210                 $condition = DBA::mergeConditions($condition, ['uid' => $uid]);
211
212                 return $this->db->update(self::$table_name, ['dismissed' => true], $condition);
213         }
214
215         /**
216          * @param Entity\Notification $Notification
217          * @return Entity\Notification
218          * @throws Exception
219          */
220         public function save(Entity\Notification $Notification): Entity\Notification
221         {
222                 $fields = [
223                         'uid'           => $Notification->uid,
224                         'vid'           => Verb::getID($Notification->verb),
225                         'type'          => $Notification->type,
226                         'actor-id'      => $Notification->actorId,
227                         'target-uri-id' => $Notification->targetUriId,
228                         'parent-uri-id' => $Notification->parentUriId,
229                         'seen'          => $Notification->seen,
230                         'dismissed'     => $Notification->dismissed,
231                 ];
232
233                 if ($Notification->id) {
234                         $this->db->update(self::$table_name, $fields, ['id' => $Notification->id]);
235                 } else {
236                         $fields['created'] = DateTimeFormat::utcNow();
237                         $this->db->insert(self::$table_name, $fields);
238
239                         $Notification = $this->selectOneById($this->db->lastInsertId());
240                 }
241
242                 return $Notification;
243         }
244
245         public function deleteForUserByVerb(int $uid, string $verb, array $condition = []): bool
246         {
247                 $condition['uid'] = $uid;
248                 $condition['vid'] = Verb::getID($verb);
249
250                 $this->logger->notice('deleteForUserByVerb', ['condition' => $condition]);
251
252                 return $this->db->delete(self::$table_name, $condition);
253         }
254 }