]> git.mxchange.org Git - friendica.git/blob - src/Navigation/Notifications/Factory/Notification.php
Merge pull request #11360 from annando/announce-notification
[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                                 $link_item = Post::selectFirstPost(['guid'], ['uri-id' => $Notification->targetUriId]);
143                         } else {
144                                 $item = Post::selectFirst([], ['uri-id' => $Notification->targetUriId, 'uid' => [0, $Notification->uid]], ['order' => ['uid' => true]]);
145                                 if (empty($item)) {
146                                         $this->logger->info('Post not found', ['uri-id' => $Notification->targetUriId]);
147                                         return $message;
148                                 }
149
150                                 if (($Notification->verb == Activity::POST) || ($Notification->type === Post\UserNotification::TYPE_SHARED)) {
151                                         $item = Post::selectFirst([], ['uri-id' => $item['thr-parent-id'], 'uid' => [0, $Notification->uid]], ['order' => ['uid' => true]]);
152                                         if (empty($item)) {
153                                                 $this->logger->info('Thread parent post not found', ['uri-id' => $item['thr-parent-id']]);
154                                                 return $message;
155                                         }
156                                 }
157                                 $link_item = $item;
158                         }
159
160                         if (in_array($Notification->type, [Post\UserNotification::TYPE_COMMENT_PARTICIPATION, Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION, Post\UserNotification::TYPE_SHARED])) {
161                                 $author = Contact::getById($item['author-id'], ['id', 'name', 'url', 'contact-type']);
162                                 if (empty($author)) {
163                                         $this->logger->info('Author not found', ['author' => $item['author-id']]);
164                                         return $message;
165                                 }
166                         }
167
168                         $link = $this->baseUrl . '/display/' . urlencode($link_item['guid']);
169
170                         $content = Plaintext::getPost($item, 70);
171                         if (!empty($content['text'])) {
172                                 $title = '"' . trim(str_replace("\n", " ", $content['text'])) . '"';
173                         } else {
174                                 $title = '';
175                         }
176
177                         $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]);
178
179                         switch ($Notification->verb) {
180                                 case Activity::LIKE:
181                                         switch ($Notification->type) {
182                                                 case Post\UserNotification::TYPE_DIRECT_COMMENT:
183                                                         $msg = $this->l10n->t('%1$s liked your comment on %2$s');
184                                                         break;
185                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
186                                                         $msg = $this->l10n->t('%1$s liked your post %2$s');
187                                                         break;
188                                         }
189                                         break;
190                                 case Activity::DISLIKE:
191                                         switch ($Notification->type) {
192                                                 case Post\UserNotification::TYPE_DIRECT_COMMENT:
193                                                         $msg = $this->l10n->t('%1$s disliked your comment on %2$s');
194                                                         break;
195                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
196                                                         $msg = $this->l10n->t('%1$s disliked your post %2$s');
197                                                         break;
198                                         }
199                                         break;
200                                 case Activity::ANNOUNCE:
201                                         switch ($Notification->type) {
202                                                 case Post\UserNotification::TYPE_DIRECT_COMMENT:
203                                                         $msg = $this->l10n->t('%1$s shared your comment %2$s');
204                                                         break;
205                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
206                                                         $msg = $this->l10n->t('%1$s shared your post %2$s');
207                                                         break;
208                                                 case Post\UserNotification::TYPE_SHARED:
209                                                         if (($causer['id'] != $author['id']) && ($title != '')) {
210                                                                 $msg = $this->l10n->t('%1$s shared the post %2$s from %3$s');
211                                                         } elseif ($causer['id'] != $author['id']) {
212                                                                 $msg = $this->l10n->t('%1$s shared a post from %3$s');
213                                                         } elseif ($title != '') {
214                                                                 $msg = $this->l10n->t('%1$s shared the post %2$s');
215                                                         } else {
216                                                                 $msg = $this->l10n->t('%1$s shared a post');
217                                                         }
218                                                         break;
219                                         }
220                                         break;
221                                 case Activity::ATTEND:
222                                         switch ($Notification->type) {
223                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
224                                                         $msg = $this->l10n->t('%1$s wants to attend your event %2$s');
225                                                         break;
226                                         }
227                                         break;
228                                 case Activity::ATTENDNO:
229                                         switch ($Notification->type) {
230                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
231                                                         $msg = $this->l10n->t('%1$s does not want to attend your event %2$s');
232                                                         break;
233                                         }
234                                         break;
235                                 case Activity::ATTENDMAYBE:
236                                         switch ($Notification->type) {
237                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
238                                                         $msg = $this->l10n->t('%1$s maybe wants to attend your event %2$s');
239                                                         break;
240                                         }
241                                         break;
242                                 case Activity::POST:
243                                         switch ($Notification->type) {
244                                                 case Post\UserNotification::TYPE_EXPLICIT_TAGGED:
245                                                         $msg = $this->l10n->t('%1$s tagged you on %2$s');
246                                                         break;
247
248                                                 case Post\UserNotification::TYPE_IMPLICIT_TAGGED:
249                                                         $msg = $this->l10n->t('%1$s replied to you on %2$s');
250                                                         break;
251
252                                                 case Post\UserNotification::TYPE_THREAD_COMMENT:
253                                                         $msg = $this->l10n->t('%1$s commented in your thread %2$s');
254                                                         break;
255
256                                                 case Post\UserNotification::TYPE_DIRECT_COMMENT:
257                                                         $msg = $this->l10n->t('%1$s commented on your comment %2$s');
258                                                         break;
259
260                                                 case Post\UserNotification::TYPE_COMMENT_PARTICIPATION:
261                                                 case Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION:
262                                                         if (($causer['id'] == $author['id']) && ($title != '')) {
263                                                                 $msg = $this->l10n->t('%1$s commented in their thread %2$s');
264                                                         } elseif ($causer['id'] == $author['id']) {
265                                                                 $msg = $this->l10n->t('%1$s commented in their thread');
266                                                         } elseif ($title != '') {
267                                                                 $msg = $this->l10n->t('%1$s commented in the thread %2$s from %3$s');
268                                                         } else {
269                                                                 $msg = $this->l10n->t('%1$s commented in the thread from %3$s');
270                                                         }
271                                                         break;
272
273                                                 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
274                                                         $msg = $this->l10n->t('%1$s commented on your thread %2$s');
275                                                         break;
276
277                                                 case Post\UserNotification::TYPE_SHARED:
278                                                         if (($causer['id'] != $author['id']) && ($title != '')) {
279                                                                 $msg = $this->l10n->t('%1$s shared the post %2$s from %3$s');
280                                                         } elseif ($causer['id'] != $author['id']) {
281                                                                 $msg = $this->l10n->t('%1$s shared a post from %3$s');
282                                                         } elseif ($title != '') {
283                                                                 $msg = $this->l10n->t('%1$s shared the post %2$s');
284                                                         } else {
285                                                                 $msg = $this->l10n->t('%1$s shared a post');
286                                                         }
287                                                         break;
288                                         }
289                                         break;
290                         }
291                 }
292
293                 if (!empty($msg)) {
294                         // Name of the notification's causer
295                         $message['causer'] = $causer['name'];
296                         // Format for the "ping" mechanism
297                         $message['notification'] = sprintf($msg, '{0}', $title, $author['name']);
298                         // Plain text for the web push api
299                         $message['plain'] = sprintf($msg, $causer['name'], $title, $author['name']);
300                         // Rich text for other purposes
301                         $message['rich'] = sprintf($msg,
302                                 '[url=' . $causer['url'] . ']' . $causer['name'] . '[/url]',
303                                 '[url=' . $link . ']' . $title . '[/url]',
304                                 '[url=' . $author['url'] . ']' . $author['name'] . '[/url]');
305                         $message['link'] = $link;
306                 } else {
307                         $this->logger->debug('Unhandled notification', ['notification' => $Notification]);
308                 }
309
310                 return $message;
311         }
312 }