]> git.mxchange.org Git - friendica.git/blob - src/Navigation/Notifications/Factory/Notification.php
Merge pull request #11355 from annando/notifications
[friendica.git] / src / Navigation / Notifications / Factory / 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\Factory;
23
24 use Friendica\App\BaseURL;
25 use Friendica\BaseFactory;
26 use Friendica\Capabilities\ICanCreateFromTableRow;
27 use Friendica\Contact\LocalRelationship\Repository\LocalRelationship;
28 use Friendica\Content\Text\Plaintext;
29 use Friendica\Core\L10n;
30 use Friendica\Model\Contact;
31 use Friendica\Model\Post;
32 use Friendica\Model\Verb;
33 use Friendica\Navigation\Notifications\Entity;
34 use Friendica\Network\HTTPException;
35 use Friendica\Protocol\Activity;
36 use Psr\Log\LoggerInterface;
37
38 class Notification extends BaseFactory implements ICanCreateFromTableRow
39 {
40         /** @var BaseURL */
41         private $baseUrl;
42         /** @var L10n */
43         private $l10n;
44         /** @var LocalRelationship */
45         private $localRelationshipRepo;
46
47         public function __construct(\Friendica\App\BaseURL $baseUrl, \Friendica\Core\L10n $l10n, \Friendica\Contact\LocalRelationship\Repository\LocalRelationship $localRelationshipRepo, LoggerInterface $logger)
48         {
49                 parent::__construct($logger);
50
51                 $this->baseUrl = $baseUrl;
52                 $this->l10n = $l10n;
53                 $this->localRelationshipRepo = $localRelationshipRepo;
54         }
55
56         public function createFromTableRow(array $row): Entity\Notification
57         {
58                 return new Entity\Notification(
59                         $row['uid'] ?? 0,
60                         Verb::getByID($row['vid']),
61                         $row['type'],
62                         $row['actor-id'],
63                         $row['target-uri-id'],
64                         $row['parent-uri-id'],
65                         new \DateTime($row['created'], new \DateTimeZone('UTC')),
66                         $row['seen'],
67                         $row['dismissed'],
68                         $row['id'],
69                 );
70         }
71
72         public function createForUser(int $uid, int $vid, int $type, int $actorId, int $targetUriId, int $parentUriId): Entity\Notification
73         {
74                 return new Entity\Notification(
75                         $uid,
76                         Verb::getByID($vid),
77                         $type,
78                         $actorId,
79                         $targetUriId,
80                         $parentUriId
81                 );
82         }
83
84         /**
85          * @param int    $uid
86          * @param int    $contactId Public contact id
87          * @param string $verb
88          * @return Entity\Notification
89          */
90         public function createForRelationship(int $uid, int $contactId, string $verb): Entity\Notification
91         {
92                 return new Entity\Notification(
93                         $uid,
94                         $verb,
95                         Post\UserNotification::TYPE_NONE,
96                         $contactId
97                 );
98         }
99
100         /**
101          * @param Entity\Notification $Notification
102          * @return array
103          * @throws HTTPException\InternalServerErrorException
104          * @throws HTTPException\NotFoundException
105          */
106         public function getMessageFromNotification(Entity\Notification $Notification): array
107         {
108                 $message = [];
109
110                 $causer = $author = Contact::getById($Notification->actorId, ['id', 'name', 'url', 'contact-type', 'pending']);
111                 if (empty($causer)) {
112                         $this->logger->info('Causer not found', ['contact' => $Notification->actorId]);
113                         return $message;
114                 }
115
116                 if ($Notification->type === Post\UserNotification::TYPE_NONE) {
117                         $localRelationship = $this->localRelationshipRepo->getForUserContact($Notification->uid, $Notification->actorId);
118                         if ($localRelationship->pending) {
119                                 $msg = $this->l10n->t('%1$s wants to follow you');
120                         } else {
121                                 $msg = $this->l10n->t('%1$s has started following you');
122                         }
123
124                         $title = $causer['name'];
125                         $link  = $this->baseUrl . '/contact/' . $causer['id'];
126                 } else {
127                         if (!$Notification->targetUriId) {
128                                 return $message;
129                         }
130
131                         if (Post\ThreadUser::getIgnored($Notification->parentUriId, $Notification->uid)) {
132                                 $this->logger->info('Thread is ignored', ['parent-uri-id' => $Notification->parentUriId, 'type' => $Notification->type]);
133                                 return $message;
134                         }
135         
136                         if (in_array($Notification->type, [Post\UserNotification::TYPE_THREAD_COMMENT, Post\UserNotification::TYPE_COMMENT_PARTICIPATION, Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION, Post\UserNotification::TYPE_EXPLICIT_TAGGED])) {
137                                 $item = Post::selectFirst([], ['uri-id' => $Notification->parentUriId, 'uid' => [0, $Notification->uid]], ['order' => ['uid' => true]]);
138                                 if (empty($item)) {
139                                         $this->logger->info('Parent post not found', ['uri-id' => $Notification->parentUriId]);
140                                         return $message;
141                                 }
142                                 if ($Notification->type == Post\UserNotification::TYPE_COMMENT_PARTICIPATION) {
143                                         $link_item = Post::selectFirst(['guid'], ['uri-id' => $Notification->targetUriId, 'uid' => [0, $Notification->uid]], ['order' => ['uid' => true]]);
144                                 }
145                         } else {
146                                 $item = Post::selectFirst([], ['uri-id' => $Notification->targetUriId, 'uid' => [0, $Notification->uid]], ['order' => ['uid' => true]]);
147                                 if (empty($item)) {
148                                         $this->logger->info('Post not found', ['uri-id' => $Notification->targetUriId]);
149                                         return $message;
150                                 }
151
152                                 if (($Notification->verb == Activity::POST) || ($Notification->type === Post\UserNotification::TYPE_SHARED)) {
153                                         $item = Post::selectFirst([], ['uri-id' => $item['thr-parent-id'], 'uid' => [0, $Notification->uid]], ['order' => ['uid' => true]]);
154                                         if (empty($item)) {
155                                                 $this->logger->info('Thread parent post not found', ['uri-id' => $item['thr-parent-id']]);
156                                                 return $message;
157                                         }
158                                 }
159                         }
160
161                         if (in_array($Notification->type, [Post\UserNotification::TYPE_COMMENT_PARTICIPATION, Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION, Post\UserNotification::TYPE_SHARED])) {
162                                 $author = Contact::getById($item['author-id'], ['id', 'name', 'url', 'contact-type']);
163                                 if (empty($author)) {
164                                         $this->logger->info('Author not found', ['author' => $item['author-id']]);
165                                         return $message;
166                                 }
167                         }
168
169                         $link = $this->baseUrl . '/display/' . urlencode($link_item['guid'] ?? $item['guid']);
170
171                         $content = Plaintext::getPost($item, 70);
172                         if (!empty($content['text'])) {
173                                 $title = '"' . trim(str_replace("\n", " ", $content['text'])) . '"';
174                         } else {
175                                 $title = '';
176                         }
177
178                         $this->logger->debug('Got verb and type', ['verb' => $Notification->verb, 'type' => $Notification->type, 'causer' => $causer['id'], 'author' => $author['id'], 'item' => $item['id'], 'uid' => $Notification->uid]);
179
180                         switch ($Notification->verb) {
181                                 case Activity::LIKE:
182                                         switch ($Notification->type) {
183                                                 case Post\UserNotification::TYPE_DIRECT_COMMENT:
184                                                         $msg = $this->l10n->t('%1$s liked your comment on %2$s');
185                                                         break;
186                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
187                                                         $msg = $this->l10n->t('%1$s liked your post %2$s');
188                                                         break;
189                                         }
190                                         break;
191                                 case Activity::DISLIKE:
192                                         switch ($Notification->type) {
193                                                 case Post\UserNotification::TYPE_DIRECT_COMMENT:
194                                                         $msg = $this->l10n->t('%1$s disliked your comment on %2$s');
195                                                         break;
196                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
197                                                         $msg = $this->l10n->t('%1$s disliked your post %2$s');
198                                                         break;
199                                         }
200                                         break;
201                                 case Activity::ANNOUNCE:
202                                         switch ($Notification->type) {
203                                                 case Post\UserNotification::TYPE_DIRECT_COMMENT:
204                                                         $msg = $this->l10n->t('%1$s shared your comment %2$s');
205                                                         break;
206                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
207                                                         $msg = $this->l10n->t('%1$s shared your post %2$s');
208                                                         break;
209                                                 case Post\UserNotification::TYPE_SHARED:
210                                                         if (($causer['id'] != $author['id']) && ($title != '')) {
211                                                                 $msg = $this->l10n->t('%1$s shared the post %2$s from %3$s');
212                                                         } elseif ($causer['id'] != $author['id']) {
213                                                                 $msg = $this->l10n->t('%1$s shared a post from %3$s');
214                                                         } elseif ($title != '') {
215                                                                 $msg = $this->l10n->t('%1$s shared the post %2$s');
216                                                         } else {
217                                                                 $msg = $this->l10n->t('%1$s shared a post');
218                                                         }
219                                                         break;
220                                         }
221                                         break;
222                                 case Activity::ATTEND:
223                                         switch ($Notification->type) {
224                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
225                                                         $msg = $this->l10n->t('%1$s wants to attend your event %2$s');
226                                                         break;
227                                         }
228                                         break;
229                                 case Activity::ATTENDNO:
230                                         switch ($Notification->type) {
231                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
232                                                         $msg = $this->l10n->t('%1$s does not want to attend your event %2$s');
233                                                         break;
234                                         }
235                                         break;
236                                 case Activity::ATTENDMAYBE:
237                                         switch ($Notification->type) {
238                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
239                                                         $msg = $this->l10n->t('%1$s maybe wants to attend your event %2$s');
240                                                         break;
241                                         }
242                                         break;
243                                 case Activity::POST:
244                                         switch ($Notification->type) {
245                                                 case Post\UserNotification::TYPE_EXPLICIT_TAGGED:
246                                                         $msg = $this->l10n->t('%1$s tagged you on %2$s');
247                                                         break;
248
249                                                 case Post\UserNotification::TYPE_IMPLICIT_TAGGED:
250                                                         $msg = $this->l10n->t('%1$s replied to you on %2$s');
251                                                         break;
252
253                                                 case Post\UserNotification::TYPE_THREAD_COMMENT:
254                                                         $msg = $this->l10n->t('%1$s commented in your thread %2$s');
255                                                         break;
256
257                                                 case Post\UserNotification::TYPE_DIRECT_COMMENT:
258                                                         $msg = $this->l10n->t('%1$s commented on your comment %2$s');
259                                                         break;
260
261                                                 case Post\UserNotification::TYPE_COMMENT_PARTICIPATION:
262                                                 case Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION:
263                                                         if (($causer['id'] == $author['id']) && ($title != '')) {
264                                                                 $msg = $this->l10n->t('%1$s commented in their thread %2$s');
265                                                         } elseif ($causer['id'] == $author['id']) {
266                                                                 $msg = $this->l10n->t('%1$s commented in their thread');
267                                                         } elseif ($title != '') {
268                                                                 $msg = $this->l10n->t('%1$s commented in the thread %2$s from %3$s');
269                                                         } else {
270                                                                 $msg = $this->l10n->t('%1$s commented in the thread from %3$s');
271                                                         }
272                                                         break;
273
274                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
275                                                         $msg = $this->l10n->t('%1$s commented on your thread %2$s');
276                                                         break;
277
278                                                 case Post\UserNotification::TYPE_SHARED:
279                                                         if (($causer['id'] != $author['id']) && ($title != '')) {
280                                                                 $msg = $this->l10n->t('%1$s shared the post %2$s from %3$s');
281                                                         } elseif ($causer['id'] != $author['id']) {
282                                                                 $msg = $this->l10n->t('%1$s shared a post from %3$s');
283                                                         } elseif ($title != '') {
284                                                                 $msg = $this->l10n->t('%1$s shared the post %2$s');
285                                                         } else {
286                                                                 $msg = $this->l10n->t('%1$s shared a post');
287                                                         }
288                                                         break;
289                                         }
290                                         break;
291                         }
292                 }
293
294                 if (!empty($msg)) {
295                         // Name of the notification's causer
296                         $message['causer'] = $causer['name'];
297                         // Format for the "ping" mechanism
298                         $message['notification'] = sprintf($msg, '{0}', $title, $author['name']);
299                         // Plain text for the web push api
300                         $message['plain'] = sprintf($msg, $causer['name'], $title, $author['name']);
301                         // Rich text for other purposes
302                         $message['rich'] = sprintf($msg,
303                                 '[url=' . $causer['url'] . ']' . $causer['name'] . '[/url]',
304                                 '[url=' . $link . ']' . $title . '[/url]',
305                                 '[url=' . $author['url'] . ']' . $author['name'] . '[/url]');
306                         $message['link'] = $link;
307                 } else {
308                         $this->logger->debug('Unhandled notification', ['notification' => $Notification]);
309                 }
310
311                 return $message;
312         }
313 }