]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Processor.php
Merge pull request #11817 from annando/double-processing
[friendica.git] / src / Protocol / ActivityPub / Processor.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\Protocol\ActivityPub;
23
24 use Friendica\Content\Text\BBCode;
25 use Friendica\Content\Text\HTML;
26 use Friendica\Content\Text\Markdown;
27 use Friendica\Core\Cache\Enum\Duration;
28 use Friendica\Core\Logger;
29 use Friendica\Core\Protocol;
30 use Friendica\Core\System;
31 use Friendica\Core\Worker;
32 use Friendica\Database\DBA;
33 use Friendica\DI;
34 use Friendica\Model\APContact;
35 use Friendica\Model\Contact;
36 use Friendica\Model\Conversation;
37 use Friendica\Model\Event;
38 use Friendica\Model\GServer;
39 use Friendica\Model\Item;
40 use Friendica\Model\ItemURI;
41 use Friendica\Model\Mail;
42 use Friendica\Model\Tag;
43 use Friendica\Model\User;
44 use Friendica\Model\Post;
45 use Friendica\Protocol\Activity;
46 use Friendica\Protocol\ActivityPub;
47 use Friendica\Protocol\Relay;
48 use Friendica\Util\DateTimeFormat;
49 use Friendica\Util\HTTPSignature;
50 use Friendica\Util\JsonLD;
51 use Friendica\Util\Network;
52 use Friendica\Util\Strings;
53 use Friendica\Worker\Delivery;
54
55 /**
56  * ActivityPub Processor Protocol class
57  */
58 class Processor
59 {
60         const CACHEKEY_FETCH_ACTIVITY = 'processor:fetchMissingActivity:';
61         const CACHEKEY_JUST_FETCHED   = 'processor:isJustFetched:';
62
63         static $processed = [];
64
65         /**
66          * Add an activity id to the list of processed ids
67          *
68          * @param string $id
69          *
70          * @return void
71          */
72         public static function addActivityId(string $id)
73         {
74                 self::$processed[] = $id;
75                 if (count(self::$processed) > 100) {
76                         self::$processed = array_slice(self::$processed, 1);
77                 }
78         }
79
80         /**
81          * Checks if the given has just been processed
82          *
83          * @param string $id
84          *
85          * @return boolean
86          */
87         public static function isProcessed(string $id): bool
88         {
89                 return in_array($id, self::$processed);
90         }
91
92         /**
93          * Extracts the tag character (#, @, !) from mention links
94          *
95          * @param string $body
96          * @return string
97          */
98         protected static function normalizeMentionLinks(string $body): string
99         {
100                 return preg_replace('%\[url=([^\[\]]*)]([#@!])(.*?)\[/url]%ism', '$2[url=$1]$3[/url]', $body);
101         }
102
103         /**
104          * Convert the language array into a language JSON
105          *
106          * @param array $languages
107          * @return string language JSON
108          */
109         private static function processLanguages(array $languages): string
110         {
111                 $codes = array_keys($languages);
112                 $lang = [];
113                 foreach ($codes as $code) {
114                         $lang[$code] = 1;
115                 }
116
117                 if (empty($lang)) {
118                         return '';
119                 }
120
121                 return json_encode($lang);
122         }
123         /**
124          * Replaces emojis in the body
125          *
126          * @param int $uri_id
127          * @param string $body
128          * @param array $emojis
129          *
130          * @return string with replaced emojis
131          */
132         private static function replaceEmojis(int $uri_id, string $body, array $emojis): string
133         {
134                 $body = strtr($body,
135                         array_combine(
136                                 array_column($emojis, 'name'),
137                                 array_map(function ($emoji) {
138                                         return '[emoji=' . $emoji['href'] . ']' . $emoji['name'] . '[/emoji]';
139                                 }, $emojis)
140                         )
141                 );
142
143                 // We store the emoji here to be able to avoid storing it in the media
144                 foreach ($emojis as $emoji) {
145                         Post\Link::getByLink($uri_id, $emoji['href']);
146                 }
147                 return $body;
148         }
149
150         /**
151          * Store attached media files in the post-media table
152          *
153          * @param int $uriid
154          * @param array $attachment
155          * @return void
156          */
157         private static function storeAttachmentAsMedia(int $uriid, array $attachment)
158         {
159                 if (empty($attachment['url'])) {
160                         return;
161                 }
162
163                 $data = ['uri-id' => $uriid];
164                 $data['type'] = Post\Media::UNKNOWN;
165                 $data['url'] = $attachment['url'];
166                 $data['mimetype'] = $attachment['mediaType'] ?? null;
167                 $data['height'] = $attachment['height'] ?? null;
168                 $data['width'] = $attachment['width'] ?? null;
169                 $data['size'] = $attachment['size'] ?? null;
170                 $data['preview'] = $attachment['image'] ?? null;
171                 $data['description'] = $attachment['name'] ?? null;
172
173                 Post\Media::insert($data);
174         }
175
176         /**
177          * Stire attachment data
178          *
179          * @param array   $activity
180          * @param array   $item
181          */
182         private static function storeAttachments(array $activity, array $item)
183         {
184                 if (empty($activity['attachments'])) {
185                         return;
186                 }
187
188                 foreach ($activity['attachments'] as $attach) {
189                         self::storeAttachmentAsMedia($item['uri-id'], $attach);
190                 }
191         }
192
193         /**
194          * Store attachment data
195          *
196          * @param array   $activity
197          * @param array   $item
198          */
199         private static function storeQuestion(array $activity, array $item)
200         {
201                 if (empty($activity['question'])) {
202                         return;
203                 }
204                 $question = ['multiple' => $activity['question']['multiple']];
205
206                 if (!empty($activity['question']['voters'])) {
207                         $question['voters'] = $activity['question']['voters'];
208                 }
209
210                 if (!empty($activity['question']['end-time'])) {
211                         $question['end-time'] = DateTimeFormat::utc($activity['question']['end-time']);
212                 }
213
214                 Post\Question::update($item['uri-id'], $question);
215
216                 foreach ($activity['question']['options'] as $key => $option) {
217                         $option = ['name' => $option['name'], 'replies' => $option['replies']];
218                         Post\QuestionOption::update($item['uri-id'], $key, $option);
219                 }
220
221                 Logger::debug('Storing incoming question', ['type' => $activity['type'], 'uri-id' => $item['uri-id'], 'question' => $activity['question']]);
222         }
223
224         /**
225          * Updates a message
226          *
227          * @param array      $activity   Activity array
228          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
229          * @throws \ImagickException
230          */
231         public static function updateItem(array $activity)
232         {
233                 $item = Post::selectFirst(['uri', 'uri-id', 'thr-parent', 'gravity', 'post-type', 'private'], ['uri' => $activity['id']]);
234                 if (!DBA::isResult($item)) {
235                         Logger::warning('No existing item, item will be created', ['uri' => $activity['id']]);
236                         $item = self::createItem($activity);
237                         if (empty($item)) {
238                                 return;
239                         }
240
241                         self::postItem($activity, $item);
242                         return;
243                 }
244
245                 $item['changed'] = DateTimeFormat::utcNow();
246                 $item['edited'] = DateTimeFormat::utc($activity['updated']);
247
248                 $item = self::processContent($activity, $item);
249                 if (empty($item)) {
250                         return;
251                 }
252
253                 self::storeAttachments($activity, $item);
254                 self::storeQuestion($activity, $item);
255
256                 Post\History::add($item['uri-id'], $item);
257                 Item::update($item, ['uri' => $activity['id']]);
258
259                 Queue::remove($activity);
260
261                 if ($activity['object_type'] == 'as:Event') {
262                         $posts = Post::select(['event-id', 'uid'], ["`uri` = ? AND `event-id` > ?", $activity['id'], 0]);
263                         while ($post = DBA::fetch($posts)) {
264                                 self::updateEvent($post['event-id'], $activity);
265                         }
266                 }
267         }
268
269         /**
270          * Update an existing event
271          *
272          * @param int $event_id
273          * @param array $activity
274          */
275         private static function updateEvent(int $event_id, array $activity)
276         {
277                 $event = DBA::selectFirst('event', [], ['id' => $event_id]);
278
279                 $event['edited']   = DateTimeFormat::utc($activity['updated']);
280                 $event['summary']  = HTML::toBBCode($activity['name']);
281                 $event['desc']     = HTML::toBBCode($activity['content']);
282                 if (!empty($activity['start-time'])) {
283                         $event['start']  = DateTimeFormat::utc($activity['start-time']);
284                 }
285                 if (!empty($activity['end-time'])) {
286                         $event['finish'] = DateTimeFormat::utc($activity['end-time']);
287                 }
288                 $event['nofinish'] = empty($event['finish']);
289                 $event['location'] = $activity['location'];
290
291                 Logger::info('Updating event', ['uri' => $activity['id'], 'id' => $event_id]);
292                 Event::store($event);
293         }
294
295         /**
296          * Prepares data for a message
297          *
298          * @param array $activity      Activity array
299          * @param bool  $fetch_parents
300          *
301          * @return array Internal item
302          *
303          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
304          * @throws \ImagickException
305          */
306         public static function createItem(array $activity, bool $fetch_parents = true): array
307         {
308                 if (self::isProcessed($activity['id'])) {
309                         Logger::info('Id is already processed', ['id' => $activity['id']]);
310                         return [];
311                 }
312
313                 self::addActivityId($activity['id']);
314
315                 $item = [];
316                 $item['verb'] = Activity::POST;
317                 $item['thr-parent'] = $activity['reply-to-id'];
318
319                 if ($activity['reply-to-id'] == $activity['id']) {
320                         $item['gravity'] = GRAVITY_PARENT;
321                         $item['object-type'] = Activity\ObjectType::NOTE;
322                 } else {
323                         $item['gravity'] = GRAVITY_COMMENT;
324                         $item['object-type'] = Activity\ObjectType::COMMENT;
325                 }
326
327                 if (!empty($activity['context'])) {
328                         $item['conversation'] = $activity['context'];
329                 } elseif (!empty($activity['conversation'])) {
330                         $item['conversation'] = $activity['conversation'];
331                 }
332
333                 if (!empty($item['conversation'])) {
334                         $conversation = Post::selectFirstThread(['uri'], ['conversation' => $item['conversation']]);
335                         if (!empty($conversation)) {
336                                 Logger::debug('Got conversation', ['conversation' => $item['conversation'], 'parent' => $conversation]);
337                                 $item['parent-uri'] = $conversation['uri'];
338                         }
339                 } else {
340                         $conversation = [];
341                 }
342
343                 if (empty($activity['author']) && empty($activity['actor'])) {
344                         Logger::notice('Missing author and actor. We quit here.', ['activity' => $activity]);
345                         return [];
346                 }
347
348                 if (!in_array(0, $activity['receiver']) && !DI::config()->get('system', 'fetch_parents')) {
349                         $fetch_parents = false;
350                 }
351
352                 if ($fetch_parents && empty($activity['directmessage']) && ($activity['id'] != $activity['reply-to-id']) && !Post::exists(['uri' => $activity['reply-to-id']])) {
353                         $result = self::fetchParent($activity);
354                         if (!empty($result)) {
355                                 if (($item['thr-parent'] != $result) && Post::exists(['uri' => $result])) {
356                                         $item['thr-parent'] = $result;
357                                 }
358                         } elseif (empty($conversation)) {
359                                 return [];
360                         }
361                 }
362
363                 $item['diaspora_signed_text'] = $activity['diaspora:comment'] ?? '';
364
365                 if (empty($conversation) && empty($activity['directmessage']) && ($item['gravity'] != GRAVITY_PARENT) && !Post::exists(['uri' => $item['thr-parent']])) {
366                         Logger::info('Parent not found, message will be discarded.', ['thr-parent' => $item['thr-parent']]);
367                         return [];
368                 }
369
370                 $item['network'] = Protocol::ACTIVITYPUB;
371                 $item['author-link'] = $activity['author'];
372                 $item['author-id'] = Contact::getIdForURL($activity['author']);
373                 $item['owner-link'] = $activity['actor'];
374                 $item['owner-id'] = Contact::getIdForURL($activity['actor']);
375
376                 if (in_array(0, $activity['receiver']) && !empty($activity['unlisted'])) {
377                         $item['private'] = Item::UNLISTED;
378                 } elseif (in_array(0, $activity['receiver'])) {
379                         $item['private'] = Item::PUBLIC;
380                 } else {
381                         $item['private'] = Item::PRIVATE;
382                 }
383
384                 if (!empty($activity['raw'])) {
385                         $item['source'] = $activity['raw'];
386                 }
387
388                 $item['protocol'] = Conversation::PARCEL_ACTIVITYPUB;
389
390                 if (isset($activity['push'])) {
391                         $item['direction'] = $activity['push'] ? Conversation::PUSH : Conversation::PULL;
392                 }
393
394                 if (!empty($activity['from-relay'])) {
395                         $item['direction'] = Conversation::RELAY;
396                 }
397
398                 if ($activity['object_type'] == 'as:Article') {
399                         $item['post-type'] = Item::PT_ARTICLE;
400                 } elseif ($activity['object_type'] == 'as:Audio') {
401                         $item['post-type'] = Item::PT_AUDIO;
402                 } elseif ($activity['object_type'] == 'as:Document') {
403                         $item['post-type'] = Item::PT_DOCUMENT;
404                 } elseif ($activity['object_type'] == 'as:Event') {
405                         $item['post-type'] = Item::PT_EVENT;
406                 } elseif ($activity['object_type'] == 'as:Image') {
407                         $item['post-type'] = Item::PT_IMAGE;
408                 } elseif ($activity['object_type'] == 'as:Page') {
409                         $item['post-type'] = Item::PT_PAGE;
410                 } elseif ($activity['object_type'] == 'as:Question') {
411                         $item['post-type'] = Item::PT_POLL;
412                 } elseif ($activity['object_type'] == 'as:Video') {
413                         $item['post-type'] = Item::PT_VIDEO;
414                 } else {
415                         $item['post-type'] = Item::PT_NOTE;
416                 }
417
418                 $item['isForum'] = false;
419
420                 if (!empty($activity['thread-completion'])) {
421                         if ($activity['thread-completion'] != $item['owner-id']) {
422                                 $actor = Contact::getById($activity['thread-completion'], ['url']);
423                                 $item['causer-link'] = $actor['url'];
424                                 $item['causer-id'] = $activity['thread-completion'];
425                                 Logger::info('Use inherited actor as causer.', ['id' => $item['owner-id'], 'activity' => $activity['thread-completion'], 'owner' => $item['owner-link'], 'actor' => $actor['url']]);
426                         } else {
427                                 // Store the original actor in the "causer" fields to enable the check for ignored or blocked contacts
428                                 $item['causer-link'] = $item['owner-link'];
429                                 $item['causer-id']   = $item['owner-id'];
430                                 Logger::info('Use actor as causer.', ['id' => $item['owner-id'], 'actor' => $item['owner-link']]);
431                         }
432
433                         $item['owner-link'] = $item['author-link'];
434                         $item['owner-id'] = $item['author-id'];
435                 } else {
436                         $actor = APContact::getByURL($item['owner-link'], false);
437                         $item['isForum'] = ($actor['type'] == 'Group');
438                 }
439
440                 $item['uri'] = $activity['id'];
441
442                 if (empty($activity['published']) || empty($activity['updated'])) {
443                         DI::logger()->notice('published or updated keys are empty for activity', ['activity' => $activity, 'callstack' => System::callstack(10)]);
444                 }
445
446                 $item['created'] = DateTimeFormat::utc($activity['published'] ?? 'now');
447                 $item['edited'] = DateTimeFormat::utc($activity['updated'] ?? 'now');
448                 $guid = $activity['sc:identifier'] ?: self::getGUIDByURL($item['uri']);
449                 $item['guid'] = $activity['diaspora:guid'] ?: $guid;
450
451                 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
452                 if (empty($item['uri-id'])) {
453                         Logger::warning('Unable to get a uri-id for an item uri', ['uri' => $item['uri'], 'guid' => $item['guid']]);
454                         return [];
455                 }
456
457                 $item = self::processContent($activity, $item);
458                 if (empty($item)) {
459                         Logger::info('Message was not processed');
460                         return [];
461                 }
462
463                 $item['plink'] = $activity['alternate-url'] ?? $item['uri'];
464
465                 self::storeAttachments($activity, $item);
466                 self::storeQuestion($activity, $item);
467
468                 // We received the post via AP, so we set the protocol of the server to AP
469                 $contact = Contact::getById($item['author-id'], ['gsid']);
470                 if (!empty($contact['gsid'])) {
471                         GServer::setProtocol($contact['gsid'], Post\DeliveryData::ACTIVITYPUB);
472                 }
473
474                 if ($item['author-id'] != $item['owner-id']) {
475                         $contact = Contact::getById($item['owner-id'], ['gsid']);
476                         if (!empty($contact['gsid'])) {
477                                 GServer::setProtocol($contact['gsid'], Post\DeliveryData::ACTIVITYPUB);
478                         }
479                 }
480
481                 return $item;
482         }
483
484         /**
485          * Fetch and process parent posts for the given activity
486          *
487          * @param array $activity
488          *
489          * @return string
490          */
491         private static function fetchParent(array $activity): string
492         {
493                 if (self::hasJustBeenFetched($activity['reply-to-id'])) {
494                         Logger::notice('We just have tried to fetch this activity. We don\'t try it again.', ['parent' => $activity['reply-to-id']]);
495                         return '';
496                 } 
497
498                 $recursion_depth = $activity['recursion-depth'] ?? 0;
499
500                 if ($recursion_depth < DI::config()->get('system', 'max_recursion_depth')) {
501                         Logger::notice('Parent not found. Try to refetch it.', ['parent' => $activity['reply-to-id'], 'recursion-depth' => $recursion_depth]);
502                         $result = self::fetchMissingActivity($activity['reply-to-id'], $activity, '', Receiver::COMPLETION_AUTO);
503                         if (empty($result) && self::isActivityGone($activity['reply-to-id'])) {
504                                 Logger::notice('The activity is gone, the queue entry will be deleted', ['parent' => $activity['reply-to-id']]);
505                                 if (!empty($activity['entry-id'])) {
506                                         Queue::deleteById($activity['entry-id']);
507                                 }
508                                 return '';
509                         } elseif (!empty($result)) {
510                                 $exists = Post::exists(['uri' => [$result, $activity['reply-to-id']]]);
511                                 if ($exists) {
512                                         Logger::notice('The activity has been fetched and created.', ['parent' => $result]);
513                                         return $result;
514                                 } elseif (DI::config()->get('system', 'fetch_by_worker') || DI::config()->get('system', 'decoupled_receiver')) {
515                                         Logger::notice('The activity has been fetched and will hopefully be created later.', ['parent' => $result]);
516                                 } else {
517                                         Logger::notice('The activity exists but has not been created, the queue entry will be deleted.', ['parent' => $result]);
518                                         if (!empty($activity['entry-id'])) {
519                                                 Queue::deleteById($activity['entry-id']);
520                                         }
521                                 }
522                                 return '';
523                         }
524                         if (empty($result) && !DI::config()->get('system', 'fetch_by_worker')) {
525                                 return '';
526                         }
527                 } elseif (self::isActivityGone($activity['reply-to-id'])) {
528                         Logger::notice('The activity is gone. We will not spawn a worker. The queue entry will be deleted', ['parent' => $activity['reply-to-id']]);
529                         if (!empty($activity['entry-id'])) {
530                                 Queue::deleteById($activity['entry-id']);
531                         }
532                         return '';
533                 } else {
534                         Logger::notice('Recursion level is too high.', ['parent' => $activity['reply-to-id'], 'recursion-depth' => $recursion_depth]);
535                 }
536
537                 if (Queue::hasWorker($activity['worker-id'] ?? 0)) {
538                         Logger::notice('There is already a worker task to fetch the post.', ['id' => $activity['id'], 'parent' => $activity['reply-to-id']]);
539                         return '';
540                 }
541
542                 if (!Fetch::hasWorker($activity['reply-to-id'])) {
543                         Logger::notice('Fetching is done by worker.', ['parent' => $activity['reply-to-id'], 'recursion-depth' => $recursion_depth]);
544                         Fetch::add($activity['reply-to-id']);
545                         $activity['recursion-depth'] = 0;
546                         $wid = Worker::add(PRIORITY_HIGH, 'FetchMissingActivity', $activity['reply-to-id'], $activity, '', Receiver::COMPLETION_AUTO);
547                         Fetch::setWorkerId($activity['reply-to-id'], $wid);
548                 } else {
549                         Logger::debug('Activity will already be fetched via a worker.', ['url' => $activity['reply-to-id']]);
550                 }
551
552                 return '';
553         }
554
555         /**
556          * Check if a given activity has recently been fetched
557          *
558          * @param string $url
559          * @return boolean
560          */
561         private static function hasJustBeenFetched(string $url): bool
562         {
563                 $cachekey = self::CACHEKEY_JUST_FETCHED . $url;
564                 $time = DI::cache()->get($cachekey);
565                 if (is_null($time)) {
566                         DI::cache()->set($cachekey, time(), Duration::FIVE_MINUTES);
567                         return false;
568                 }
569                 return ($time + 300) > time();
570         }
571
572         /**
573          * Check if a given activity is no longer available
574          *
575          * @param string $url
576          *
577          * @return boolean
578          */
579         public static function isActivityGone(string $url): bool
580         {
581                 $curlResult = HTTPSignature::fetchRaw($url, 0);
582
583                 if (Network::isUrlBlocked($url)) {
584                         return true;
585                 }
586
587                 // @todo To ensure that the remote system is working correctly, we can check if the "Content-Type" contains JSON
588                 if (in_array($curlResult->getReturnCode(), [404])) {
589                         return true;
590                 }
591
592                 $object = json_decode($curlResult->getBody(), true);
593                 if (!empty($object)) {
594                         $activity = JsonLD::compact($object);
595                         if (JsonLD::fetchElement($activity, '@type') == 'as:Tombstone') {
596                                 return true;
597                         }                       
598                 }
599
600                 return false;
601         }
602         /**
603          * Delete items
604          *
605          * @param array $activity
606          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
607          * @throws \ImagickException
608          */
609         public static function deleteItem(array $activity)
610         {
611                 $owner = Contact::getIdForURL($activity['actor']);
612
613                 Logger::info('Deleting item', ['object' => $activity['object_id'], 'owner'  => $owner]);
614                 Item::markForDeletion(['uri' => $activity['object_id'], 'owner-id' => $owner]);
615                 Queue::remove($activity);
616         }
617
618         /**
619          * Prepare the item array for an activity
620          *
621          * @param array $activity Activity array
622          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
623          * @throws \ImagickException
624          */
625         public static function addTag(array $activity)
626         {
627                 if (empty($activity['object_content']) || empty($activity['object_id'])) {
628                         return;
629                 }
630
631                 foreach ($activity['receiver'] as $receiver) {
632                         $item = Post::selectFirst(['id', 'uri-id', 'origin', 'author-link'], ['uri' => $activity['target_id'], 'uid' => $receiver]);
633                         if (!DBA::isResult($item)) {
634                                 // We don't fetch missing content for this purpose
635                                 continue;
636                         }
637
638                         if (($item['author-link'] != $activity['actor']) && !$item['origin']) {
639                                 Logger::info('Not origin, not from the author, skipping update', ['id' => $item['id'], 'author' => $item['author-link'], 'actor' => $activity['actor']]);
640                                 continue;
641                         }
642
643                         Tag::store($item['uri-id'], Tag::HASHTAG, $activity['object_content'], $activity['object_id']);
644                         Logger::info('Tagged item', ['id' => $item['id'], 'tag' => $activity['object_content'], 'uri' => $activity['target_id'], 'actor' => $activity['actor']]);
645                 }
646         }
647
648         /**
649          * Prepare the item array for an activity
650          *
651          * @param array      $activity   Activity array
652          * @param string     $verb       Activity verb
653          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
654          * @throws \ImagickException
655          */
656         public static function createActivity(array $activity, string $verb)
657         {
658                 $activity['reply-to-id'] = $activity['object_id'];
659                 $item = self::createItem($activity);
660                 if (empty($item)) {
661                         return;
662                 }
663
664                 $item['verb'] = $verb;
665                 $item['thr-parent'] = $activity['object_id'];
666                 $item['gravity'] = GRAVITY_ACTIVITY;
667                 unset($item['post-type']);
668                 $item['object-type'] = Activity\ObjectType::NOTE;
669
670                 if (!empty($activity['content'])) {
671                         $item['body'] = HTML::toBBCode($activity['content']);
672                 }
673
674                 $item['diaspora_signed_text'] = $activity['diaspora:like'] ?? '';
675
676                 self::postItem($activity, $item);
677         }
678
679         /**
680          * Fetch the Uri-Id of a post for the "featured" collection
681          *
682          * @param array $activity
683          * @return null|int
684          */
685         private static function getUriIdForFeaturedCollection(array $activity)
686         {
687                 $actor = APContact::getByURL($activity['actor']);
688                 if (empty($actor)) {
689                         return null;
690                 }
691
692                 // Refetch the account when the "featured" collection is missing.
693                 // This can be removed in a future version (end of 2022 should be good).
694                 if (empty($actor['featured'])) {
695                         $actor = APContact::getByURL($activity['actor'], true);
696                         if (empty($actor)) {
697                                 return null;
698                         }
699                 }
700
701                 $parent = Post::selectFirst(['uri-id'], ['uri' => $activity['object_id']]);
702                 if (empty($parent['uri-id'])) {
703                         if (self::fetchMissingActivity($activity['object_id'], $activity, '', Receiver::COMPLETION_AUTO)) {
704                                 $parent = Post::selectFirst(['uri-id'], ['uri' => $activity['object_id']]);
705                         }
706                 }
707
708                 if (!empty($parent['uri-id'])) {
709                         return $parent['uri-id'];
710                 }
711
712                 return null;
713         }
714
715         /**
716          * Add a post to the "Featured" collection
717          *
718          * @param array $activity
719          */
720         public static function addToFeaturedCollection(array $activity)
721         {
722                 $uriid = self::getUriIdForFeaturedCollection($activity);
723                 if (empty($uriid)) {
724                         return;
725                 }
726
727                 Logger::debug('Add post to featured collection', ['uri-id' => $uriid]);
728
729                 Post\Collection::add($uriid, Post\Collection::FEATURED);
730                 Queue::remove($activity);
731         }
732
733         /**
734          * Remove a post to the "Featured" collection
735          *
736          * @param array $activity
737          */
738         public static function removeFromFeaturedCollection(array $activity)
739         {
740                 $uriid = self::getUriIdForFeaturedCollection($activity);
741                 if (empty($uriid)) {
742                         return;
743                 }
744
745                 Logger::debug('Remove post from featured collection', ['uri-id' => $uriid]);
746
747                 Post\Collection::remove($uriid, Post\Collection::FEATURED);
748                 Queue::remove($activity);
749         }
750
751         /**
752          * Create an event
753          *
754          * @param array $activity Activity array
755          * @param array $item
756          *
757          * @return int event id
758          * @throws \Exception
759          */
760         public static function createEvent(array $activity, array $item): int
761         {
762                 $event['summary']   = HTML::toBBCode($activity['name'] ?: $activity['summary']);
763                 $event['desc']      = HTML::toBBCode($activity['content']);
764                 if (!empty($activity['start-time'])) {
765                         $event['start']  = DateTimeFormat::utc($activity['start-time']);
766                 }
767                 if (!empty($activity['end-time'])) {
768                         $event['finish'] = DateTimeFormat::utc($activity['end-time']);
769                 }
770                 $event['nofinish']  = empty($event['finish']);
771                 $event['location']  = $activity['location'];
772                 $event['cid']       = $item['contact-id'];
773                 $event['uid']       = $item['uid'];
774                 $event['uri']       = $item['uri'];
775                 $event['edited']    = $item['edited'];
776                 $event['private']   = $item['private'];
777                 $event['guid']      = $item['guid'];
778                 $event['plink']     = $item['plink'];
779                 $event['network']   = $item['network'];
780                 $event['protocol']  = $item['protocol'];
781                 $event['direction'] = $item['direction'];
782                 $event['source']    = $item['source'];
783
784                 $ev = DBA::selectFirst('event', ['id'], ['uri' => $item['uri'], 'uid' => $item['uid']]);
785                 if (DBA::isResult($ev)) {
786                         $event['id'] = $ev['id'];
787                 }
788
789                 $event_id = Event::store($event);
790
791                 Logger::info('Event was stored', ['id' => $event_id]);
792
793                 return $event_id;
794         }
795
796         /**
797          * Process the content
798          *
799          * @param array $activity Activity array
800          * @param array $item
801          * @return array|bool Returns the item array or false if there was an unexpected occurrence
802          * @throws \Exception
803          */
804         private static function processContent(array $activity, array $item)
805         {
806                 if (!empty($activity['mediatype']) && ($activity['mediatype'] == 'text/markdown')) {
807                         $item['title'] = strip_tags($activity['name']);
808                         $content = Markdown::toBBCode($activity['content']);
809                 } elseif (!empty($activity['mediatype']) && ($activity['mediatype'] == 'text/bbcode')) {
810                         $item['title'] = $activity['name'];
811                         $content = $activity['content'];
812                 } else {
813                         // By default assume "text/html"
814                         $item['title'] = HTML::toBBCode($activity['name'] ?? '');
815                         $content = HTML::toBBCode($activity['content'] ?? '');
816                 }
817
818                 $item['title'] = trim(BBCode::toPlaintext($item['title']));
819
820                 if (!empty($activity['languages'])) {
821                         $item['language'] = self::processLanguages($activity['languages']);
822                 }
823
824                 if (!empty($activity['emojis'])) {
825                         $content = self::replaceEmojis($item['uri-id'], $content, $activity['emojis']);
826                 }
827
828                 $content = self::addMentionLinks($content, $activity['tags']);
829
830                 if (!empty($activity['source'])) {
831                         $item['body'] = $activity['source'];
832                         $item['raw-body'] = $content;
833                         $item['body'] = Item::improveSharedDataInBody($item);
834                 } else {
835                         $parent_uri = $item['parent-uri'] ?? $item['thr-parent'];
836                         if (empty($activity['directmessage']) && ($parent_uri != $item['uri']) && ($item['gravity'] == GRAVITY_COMMENT)) {
837                                 $parent = Post::selectFirst(['id', 'uri-id', 'private', 'author-link', 'alias'], ['uri' => $parent_uri]);
838                                 if (!DBA::isResult($parent)) {
839                                         Logger::warning('Unknown parent item.', ['uri' => $parent_uri]);
840                                         return false;
841                                 }
842                                 if (($item['private'] == Item::PRIVATE) && ($parent['private'] != Item::PRIVATE)) {
843                                         Logger::warning('Item is private but the parent is not. Dropping.', ['item-uri' => $item['uri'], 'thr-parent' => $item['thr-parent']]);
844                                         return false;
845                                 }
846
847                                 $content = self::removeImplicitMentionsFromBody($content, $parent);
848                         }
849                         $item['content-warning'] = HTML::toBBCode($activity['summary'] ?? '');
850                         $item['raw-body'] = $item['body'] = $content;
851                 }
852
853                 self::storeFromBody($item);
854                 self::storeTags($item['uri-id'], $activity['tags']);
855
856                 self::storeReceivers($item['uri-id'], $activity['receiver_urls'] ?? []);
857
858                 $item['location'] = $activity['location'];
859
860                 if (!empty($activity['latitude']) && !empty($activity['longitude'])) {
861                         $item['coord'] = $activity['latitude'] . ' ' . $activity['longitude'];
862                 }
863
864                 $item['app'] = $activity['generator'];
865
866                 return $item;
867         }
868
869         /**
870          * Store hashtags and mentions
871          *
872          * @param array $item
873          */
874         private static function storeFromBody(array $item)
875         {
876                 // Make sure to delete all existing tags (can happen when called via the update functionality)
877                 DBA::delete('post-tag', ['uri-id' => $item['uri-id']]);
878
879                 Tag::storeFromBody($item['uri-id'], $item['body'], '@!');
880         }
881
882         /**
883          * Generate a GUID out of an URL of an ActivityPub post.
884          *
885          * @param string $url message URL
886          * @return string with GUID
887          */
888         private static function getGUIDByURL(string $url): string
889         {
890                 $parsed = parse_url($url);
891
892                 $host_hash = hash('crc32', $parsed['host']);
893
894                 unset($parsed["scheme"]);
895                 unset($parsed["host"]);
896
897                 $path = implode("/", $parsed);
898
899                 return $host_hash . '-'. hash('fnv164', $path) . '-'. hash('joaat', $path);
900         }
901
902         /**
903          * Checks if an incoming message is wanted
904          *
905          * @param array $activity
906          * @param array $item
907          * @return boolean Is the message wanted?
908          */
909         private static function isSolicitedMessage(array $activity, array $item): bool
910         {
911                 // The checks are split to improve the support when searching why a message was accepted.
912                 if (count($activity['receiver']) != 1) {
913                         // The message has more than one receiver, so it is wanted.
914                         Logger::debug('Message has got several receivers - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
915                         return true;
916                 }
917
918                 if ($item['private'] == Item::PRIVATE) {
919                         // We only look at public posts here. Private posts are expected to be intentionally posted to the single receiver.
920                         Logger::debug('Message is private - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
921                         return true;
922                 }
923
924                 if (!empty($activity['from-relay'])) {
925                         // We check relay posts at another place. When it arrived here, the message is already checked.
926                         Logger::debug('Message is a relay post that is already checked - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
927                         return true;
928                 }
929
930                 if (in_array($activity['completion-mode'] ?? Receiver::COMPLETION_NONE, [Receiver::COMPLETION_MANUAL, Receiver::COMPLETION_ANNOUCE])) {
931                         // Manual completions and completions caused by reshares are allowed without any further checks.
932                         Logger::debug('Message is in completion mode - accepted', ['mode' => $activity['completion-mode'], 'uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
933                         return true;
934                 }
935
936                 if ($item['gravity'] != GRAVITY_PARENT) {
937                         // We cannot reliably check at this point if a comment or activity belongs to an accepted post or needs to be fetched
938                         // This can possibly be improved in the future.
939                         Logger::debug('Message is no parent - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
940                         return true;
941                 }
942
943                 $tags = array_column(Tag::getByURIId($item['uri-id'], [Tag::HASHTAG]), 'name');
944                 if (Relay::isSolicitedPost($tags, $item['body'], $item['author-id'], $item['uri'], Protocol::ACTIVITYPUB)) {
945                         Logger::debug('Post is accepted because of the relay settings', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
946                         return true;
947                 } else {
948                         return false;
949                 }
950         }
951
952         /**
953          * Creates an item post
954          *
955          * @param array $activity Activity data
956          * @param array $item     item array
957          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
958          * @throws \ImagickException
959          */
960         public static function postItem(array $activity, array $item)
961         {
962                 if (empty($item)) {
963                         return;
964                 }
965
966                 $stored = false;
967                 $success = false;
968                 ksort($activity['receiver']);
969
970                 if (!self::isSolicitedMessage($activity, $item)) {
971                         DBA::delete('item-uri', ['id' => $item['uri-id']]);
972                         return;
973                 }
974
975                 foreach ($activity['receiver'] as $receiver) {
976                         if ($receiver == -1) {
977                                 continue;
978                         }
979
980                         $item['uid'] = $receiver;
981
982                         $type = $activity['reception_type'][$receiver] ?? Receiver::TARGET_UNKNOWN;
983                         switch($type) {
984                                 case Receiver::TARGET_TO:
985                                         $item['post-reason'] = Item::PR_TO;
986                                         break;
987                                 case Receiver::TARGET_CC:
988                                         $item['post-reason'] = Item::PR_CC;
989                                         break;
990                                 case Receiver::TARGET_BTO:
991                                         $item['post-reason'] = Item::PR_BTO;
992                                         break;
993                                 case Receiver::TARGET_BCC:
994                                         $item['post-reason'] = Item::PR_BCC;
995                                         break;
996                                 case Receiver::TARGET_FOLLOWER:
997                                         $item['post-reason'] = Item::PR_FOLLOWER;
998                                         break;
999                                 case Receiver::TARGET_ANSWER:
1000                                         $item['post-reason'] = Item::PR_COMMENT;
1001                                         break;
1002                                 case Receiver::TARGET_GLOBAL:
1003                                         $item['post-reason'] = Item::PR_GLOBAL;
1004                                         break;
1005                                 default:
1006                                         $item['post-reason'] = Item::PR_NONE;
1007                         }
1008
1009                         if (!empty($activity['from-relay'])) {
1010                                 $item['post-reason'] = Item::PR_RELAY;
1011                         } elseif (!empty($activity['thread-completion'])) {
1012                                 $item['post-reason'] = Item::PR_FETCHED;
1013                         } elseif (in_array($item['post-reason'], [Item::PR_GLOBAL, Item::PR_NONE]) && !empty($activity['push'])) {
1014                                 $item['post-reason'] = Item::PR_PUSHED;
1015                         }
1016
1017                         if ($item['isForum'] ?? false) {
1018                                 $item['contact-id'] = Contact::getIdForURL($activity['actor'], $receiver);
1019                         } else {
1020                                 $item['contact-id'] = Contact::getIdForURL($activity['author'], $receiver);
1021                         }
1022
1023                         if (($receiver != 0) && empty($item['contact-id'])) {
1024                                 $item['contact-id'] = Contact::getIdForURL($activity['author']);
1025                         }
1026
1027                         if (!empty($activity['directmessage'])) {
1028                                 self::postMail($activity, $item);
1029                                 continue;
1030                         }
1031
1032                         if (!($item['isForum'] ?? false) && ($receiver != 0) && ($item['gravity'] == GRAVITY_PARENT) && !Contact::isSharingByURL($activity['author'], $receiver)) {
1033                                 if ($item['post-reason'] == Item::PR_BCC) {
1034                                         Logger::info('Top level post via BCC from a non sharer, ignoring', ['uid' => $receiver, 'contact' => $item['contact-id']]);
1035                                         continue;
1036                                 }
1037
1038                                 if (
1039                                         !empty($activity['thread-children-type'])
1040                                         && in_array($activity['thread-children-type'], Receiver::ACTIVITY_TYPES)
1041                                         && DI::pConfig()->get($receiver, 'system', 'accept_only_sharer') != Item::COMPLETION_LIKE
1042                                 ) {
1043                                         Logger::info('Top level post from thread completion from a non sharer had been initiated via an activity, ignoring',
1044                                                 ['type' => $activity['thread-children-type'], 'user' => $item['uid'], 'causer' => $item['causer-link'], 'author' => $activity['author'], 'url' => $item['uri']]);
1045                                         continue;
1046                                 }
1047                         }
1048
1049                         $is_forum = false;
1050
1051                         if ($receiver != 0) {
1052                                 $user = User::getById($receiver, ['account-type']);
1053                                 if (!empty($user['account-type'])) {
1054                                         $is_forum = ($user['account-type'] == User::ACCOUNT_TYPE_COMMUNITY);
1055                                 }
1056                         }
1057
1058                         if (!$is_forum && DI::pConfig()->get($receiver, 'system', 'accept_only_sharer') == Item::COMPLETION_NONE && ($receiver != 0) && ($item['gravity'] == GRAVITY_PARENT)) {
1059                                 $skip = !Contact::isSharingByURL($activity['author'], $receiver);
1060
1061                                 if ($skip && (($activity['type'] == 'as:Announce') || ($item['isForum'] ?? false))) {
1062                                         $skip = !Contact::isSharingByURL($activity['actor'], $receiver);
1063                                 }
1064
1065                                 if ($skip) {
1066                                         Logger::info('Skipping post', ['uid' => $receiver, 'url' => $item['uri']]);
1067                                         continue;
1068                                 }
1069
1070                                 Logger::info('Accepting post', ['uid' => $receiver, 'url' => $item['uri']]);
1071                         }
1072
1073                         if (($item['gravity'] != GRAVITY_ACTIVITY) && ($activity['object_type'] == 'as:Event')) {
1074                                 $event_id = self::createEvent($activity, $item);
1075
1076                                 $item = Event::getItemArrayForImportedId($event_id, $item);
1077                         }
1078
1079                         $item_id = Item::insert($item);
1080                         if ($item_id) {
1081                                 Logger::info('Item insertion successful', ['user' => $item['uid'], 'item_id' => $item_id]);
1082                                 $success = true;
1083                         } else {
1084                                 Logger::notice('Item insertion aborted', ['uri' => $item['uri'], 'uid' => $item['uid']]);
1085                                 if (($item['uid'] == 0) && (count($activity['receiver']) > 1)) {
1086                                         Logger::info('Public item was aborted. We skip for all users.', ['uri' => $item['uri']]);
1087                                         break;
1088                                 }
1089                         }
1090
1091                         if ($item['uid'] == 0) {
1092                                 $stored = $item_id;
1093                         }
1094                 }
1095
1096                 Queue::remove($activity);
1097
1098                 if ($success && Queue::hasChildren($item['uri']) && Post::exists(['uri' => $item['uri']])) {
1099                         Queue::processReplyByUri($item['uri']);
1100                 }
1101
1102                 // Store send a follow request for every reshare - but only when the item had been stored
1103                 if ($stored && ($item['private'] != Item::PRIVATE) && ($item['gravity'] == GRAVITY_PARENT) && !empty($item['author-link']) && ($item['author-link'] != $item['owner-link'])) {
1104                         $author = APContact::getByURL($item['owner-link'], false);
1105                         // We send automatic follow requests for reshared messages. (We don't need though for forum posts)
1106                         if ($author['type'] != 'Group') {
1107                                 Logger::info('Send follow request', ['uri' => $item['uri'], 'stored' => $stored, 'to' => $item['author-link']]);
1108                                 ActivityPub\Transmitter::sendFollowObject($item['uri'], $item['author-link']);
1109                         }
1110                 }
1111         }
1112
1113         /**
1114          * Store tags and mentions into the tag table
1115          *
1116          * @param integer $uriid
1117          * @param array $tags
1118          */
1119         private static function storeTags(int $uriid, array $tags = null)
1120         {
1121                 foreach ($tags as $tag) {
1122                         if (empty($tag['name']) || empty($tag['type']) || !in_array($tag['type'], ['Mention', 'Hashtag'])) {
1123                                 continue;
1124                         }
1125
1126                         $hash = substr($tag['name'], 0, 1);
1127
1128                         if ($tag['type'] == 'Mention') {
1129                                 if (in_array($hash, [Tag::TAG_CHARACTER[Tag::MENTION],
1130                                         Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION],
1131                                         Tag::TAG_CHARACTER[Tag::IMPLICIT_MENTION]])) {
1132                                         $tag['name'] = substr($tag['name'], 1);
1133                                 }
1134                                 $type = Tag::IMPLICIT_MENTION;
1135
1136                                 if (!empty($tag['href'])) {
1137                                         $apcontact = APContact::getByURL($tag['href']);
1138                                         if (!empty($apcontact['name']) || !empty($apcontact['nick'])) {
1139                                                 $tag['name'] = $apcontact['name'] ?: $apcontact['nick'];
1140                                         }
1141                                 }
1142                         } elseif ($tag['type'] == 'Hashtag') {
1143                                 if ($hash == Tag::TAG_CHARACTER[Tag::HASHTAG]) {
1144                                         $tag['name'] = substr($tag['name'], 1);
1145                                 }
1146                                 $type = Tag::HASHTAG;
1147                         }
1148
1149                         if (empty($tag['name'])) {
1150                                 continue;
1151                         }
1152
1153                         Tag::store($uriid, $type, $tag['name'], $tag['href']);
1154                 }
1155         }
1156
1157         public static function storeReceivers(int $uriid, array $receivers)
1158         {
1159                 foreach (['as:to' => Tag::TO, 'as:cc' => Tag::CC, 'as:bto' => Tag::BTO, 'as:bcc' => Tag::BCC] as $element => $type) {
1160                         if (!empty($receivers[$element])) {
1161                                 foreach ($receivers[$element] as $receiver) {
1162                                         if ($receiver == ActivityPub::PUBLIC_COLLECTION) {
1163                                                 $name = Receiver::PUBLIC_COLLECTION;
1164                                         } else {
1165                                                 $name = trim(parse_url($receiver, PHP_URL_PATH), '/');
1166                                         }
1167
1168                                         $target = Tag::getTargetType($receiver);
1169                                         Logger::debug('Got target type', ['type' => $target, 'url' => $receiver]);
1170                                         Tag::store($uriid, $type, $name, $receiver, $target);
1171                                 }
1172                         }
1173                 }
1174         }
1175
1176         /**
1177          * Creates an mail post
1178          *
1179          * @param array $activity Activity data
1180          * @param array $item     item array
1181          * @return int|bool New mail table row id or false on error
1182          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1183          */
1184         private static function postMail(array $activity, array $item)
1185         {
1186                 if (($item['gravity'] != GRAVITY_PARENT) && !DBA::exists('mail', ['uri' => $item['thr-parent'], 'uid' => $item['uid']])) {
1187                         Logger::info('Parent not found, mail will be discarded.', ['uid' => $item['uid'], 'uri' => $item['thr-parent']]);
1188                         return false;
1189                 }
1190
1191                 Logger::info('Direct Message', $item);
1192
1193                 $msg = [];
1194                 $msg['uid'] = $item['uid'];
1195
1196                 $msg['contact-id'] = $item['contact-id'];
1197
1198                 $contact = Contact::getById($item['contact-id'], ['name', 'url', 'photo']);
1199                 $msg['from-name'] = $contact['name'];
1200                 $msg['from-url'] = $contact['url'];
1201                 $msg['from-photo'] = $contact['photo'];
1202
1203                 $msg['uri'] = $item['uri'];
1204                 $msg['created'] = $item['created'];
1205
1206                 $parent = DBA::selectFirst('mail', ['parent-uri', 'title'], ['uri' => $item['thr-parent']]);
1207                 if (DBA::isResult($parent)) {
1208                         $msg['parent-uri'] = $parent['parent-uri'];
1209                         $msg['title'] = $parent['title'];
1210                 } else {
1211                         $msg['parent-uri'] = $item['thr-parent'];
1212
1213                         if (!empty($item['title'])) {
1214                                 $msg['title'] = $item['title'];
1215                         } elseif (!empty($item['content-warning'])) {
1216                                 $msg['title'] = $item['content-warning'];
1217                         } else {
1218                                 // Trying to generate a title out of the body
1219                                 $title = $item['body'];
1220
1221                                 while (preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#is', $title, $matches)) {
1222                                         $title = $matches[3];
1223                                 }
1224
1225                                 $title = trim(BBCode::toPlaintext($title));
1226
1227                                 if (strlen($title) > 20) {
1228                                         $title = substr($title, 0, 20) . '...';
1229                                 }
1230
1231                                 $msg['title'] = $title;
1232                         }
1233                 }
1234                 $msg['body'] = $item['body'];
1235
1236                 return Mail::insert($msg);
1237         }
1238
1239         /**
1240          * Fetch featured posts from a contact with the given url
1241          *
1242          * @param string $url
1243          * @return void
1244          */
1245         public static function fetchFeaturedPosts(string $url)
1246         {
1247                 Logger::info('Fetch featured posts', ['contact' => $url]);
1248
1249                 $apcontact = APContact::getByURL($url);
1250                 if (empty($apcontact['featured'])) {
1251                         Logger::info('Contact does not have a featured collection', ['contact' => $url]);
1252                         return;
1253                 }
1254
1255                 $pcid = Contact::getIdForURL($url, 0, false);
1256                 if (empty($pcid)) {
1257                         Logger::info('Contact not found', ['contact' => $url]);
1258                         return;
1259                 }
1260
1261                 $posts = Post\Collection::selectToArrayForContact($pcid, Post\Collection::FEATURED);
1262                 if (!empty($posts)) {
1263                         $old_featured = array_column($posts, 'uri-id');
1264                 } else {
1265                         $old_featured = [];
1266                 }
1267
1268                 $featured = ActivityPub::fetchItems($apcontact['featured']);
1269                 if (empty($featured)) {
1270                         Logger::info('Contact does not have featured posts', ['contact' => $url]);
1271
1272                         foreach ($old_featured as $uri_id) {
1273                                 Post\Collection::remove($uri_id, Post\Collection::FEATURED);
1274                                 Logger::debug('Removed no longer featured post', ['uri-id' => $uri_id, 'contact' => $url]);
1275                         }
1276                         return;
1277                 }
1278
1279                 $new = 0;
1280                 $old = 0;
1281
1282                 foreach ($featured as $post) {
1283                         if (empty($post['id'])) {
1284                                 continue;
1285                         }
1286                         $id = Item::fetchByLink($post['id']);
1287                         if (!empty($id)) {
1288                                 $item = Post::selectFirst(['uri-id', 'featured'], ['id' => $id]);
1289                                 if (!empty($item['uri-id'])) {
1290                                         if (!$item['featured']) {
1291                                                 Post\Collection::add($item['uri-id'], Post\Collection::FEATURED);
1292                                                 Logger::debug('Added featured post', ['uri-id' => $item['uri-id'], 'contact' => $url]);
1293                                                 $new++;
1294                                         } else {
1295                                                 Logger::debug('Post already had been featured', ['uri-id' => $item['uri-id'], 'contact' => $url]);
1296                                                 $old++;
1297                                         }
1298
1299                                         $index = array_search($item['uri-id'], $old_featured);
1300                                         if (!($index === false)) {
1301                                                 unset($old_featured[$index]);
1302                                         }
1303                                 }
1304                         }
1305                 }
1306
1307                 foreach ($old_featured as $uri_id) {
1308                         Post\Collection::remove($uri_id, Post\Collection::FEATURED);
1309                         Logger::debug('Removed no longer featured post', ['uri-id' => $uri_id, 'contact' => $url]);
1310                 }
1311
1312                 Logger::info('Fetched featured posts', ['new' => $new, 'old' => $old, 'contact' => $url]);
1313         }
1314
1315         public static function fetchCachedActivity(string $url, int $uid): array
1316         {
1317                 $cachekey = self::CACHEKEY_FETCH_ACTIVITY . $uid . ':' . $url;
1318                 $object = DI::cache()->get($cachekey);
1319
1320                 if (!is_null($object)) {
1321                         if (!empty($object)) {
1322                                 Logger::debug('Fetch from cache', ['url' => $url, 'uid' => $uid]);
1323                         } else {
1324                                 Logger::debug('Fetch from negative cache', ['url' => $url, 'uid' => $uid]);
1325                         }
1326                         return $object;
1327                 }
1328
1329                 $object = ActivityPub::fetchContent($url, $uid);
1330                 if (empty($object)) {
1331                         Logger::notice('Activity was not fetchable, aborting.', ['url' => $url, 'uid' => $uid]);
1332                         // We perform negative caching.
1333                         DI::cache()->set($cachekey, [], Duration::FIVE_MINUTES);
1334                         return [];
1335                 }
1336
1337                 if (empty($object['id'])) {
1338                         Logger::notice('Activity has got not id, aborting. ', ['url' => $url, 'object' => $object]);
1339                         return [];
1340                 }
1341                 DI::cache()->set($cachekey, $object, Duration::FIVE_MINUTES);
1342
1343                 Logger::debug('Activity was fetched successfully', ['url' => $url, 'uid' => $uid]);
1344
1345                 return $object;
1346         }
1347
1348         /**
1349          * Fetches missing posts
1350          *
1351          * @param string     $url         message URL
1352          * @param array      $child       activity array with the child of this message
1353          * @param string     $relay_actor Relay actor
1354          * @param int        $completion  Completion mode, see Receiver::COMPLETION_*
1355          * @return string fetched message URL
1356          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1357          * @throws \ImagickException
1358          */
1359         public static function fetchMissingActivity(string $url, array $child = [], string $relay_actor = '', int $completion = Receiver::COMPLETION_MANUAL): string
1360         {
1361                 if (!empty($child['receiver'])) {
1362                         $uid = ActivityPub\Receiver::getFirstUserFromReceivers($child['receiver']);
1363                 } else {
1364                         $uid = 0;
1365                 }
1366
1367                 $object = self::fetchCachedActivity($url, $uid);
1368                 if (empty($object)) {
1369                         return '';
1370                 }
1371
1372                 $signer = [];
1373
1374                 if (!empty($object['attributedTo'])) {
1375                         $attributed_to = $object['attributedTo'];
1376                         if (is_array($attributed_to)) {
1377                                 $compacted = JsonLD::compact($object);
1378                                 $attributed_to = JsonLD::fetchElement($compacted, 'as:attributedTo', '@id');
1379                         }
1380                         $signer[] = $attributed_to;     
1381                 }
1382
1383                 if (!empty($object['actor'])) {
1384                         $object_actor = $object['actor'];
1385                 } elseif (!empty($attributed_to)) {
1386                         $object_actor = $attributed_to;
1387                 } else {
1388                         // Shouldn't happen
1389                         $object_actor = '';
1390                 }
1391
1392                 $signer[] = $object_actor;
1393
1394                 if (!empty($child['author'])) {
1395                         $actor = $child['author'];
1396                         $signer[] = $actor;
1397                 } else {
1398                         $actor = $object_actor;
1399                 }
1400
1401                 if (!empty($object['published'])) {
1402                         $published = $object['published'];
1403                 } elseif (!empty($child['published'])) {
1404                         $published = $child['published'];
1405                 } else {
1406                         $published = DateTimeFormat::utcNow();
1407                 }
1408
1409                 $activity = [];
1410                 $activity['@context'] = $object['@context'] ?? ActivityPub::CONTEXT;
1411                 unset($object['@context']);
1412                 $activity['id'] = $object['id'];
1413                 $activity['to'] = $object['to'] ?? [];
1414                 $activity['cc'] = $object['cc'] ?? [];
1415                 $activity['actor'] = $actor;
1416                 $activity['object'] = $object;
1417                 $activity['published'] = $published;
1418                 $activity['type'] = 'Create';
1419
1420                 $ldactivity = JsonLD::compact($activity);
1421
1422                 $ldactivity['recursion-depth'] = !empty($child['recursion-depth']) ? $child['recursion-depth'] + 1 : 1;
1423
1424                 if (!empty($relay_actor)) {
1425                         $ldactivity['thread-completion'] = $ldactivity['from-relay'] = Contact::getIdForURL($relay_actor);
1426                         $ldactivity['completion-mode']   = Receiver::COMPLETION_RELAY;
1427                 } elseif (!empty($child['thread-completion'])) {
1428                         $ldactivity['thread-completion'] = $child['thread-completion'];
1429                         $ldactivity['completion-mode']   = $child['completion-mode'] ?? Receiver::COMPLETION_NONE;
1430                 } else {
1431                         $ldactivity['thread-completion'] = Contact::getIdForURL($actor);
1432                         $ldactivity['completion-mode']   = $completion;
1433                 }
1434
1435                 if (!empty($child['type'])) {
1436                         $ldactivity['thread-children-type'] = $child['type'];
1437                 }
1438
1439                 if (!empty($relay_actor) && !self::acceptIncomingMessage($ldactivity, $object['id'])) {
1440                         return '';
1441                 }
1442
1443                 if (($completion == Receiver::COMPLETION_RELAY) && Queue::exists($url, 'as:Create')) {
1444                         Logger::notice('Activity has already been queued.', ['url' => $url, 'object' => $activity['id']]);
1445                 } elseif (ActivityPub\Receiver::processActivity($ldactivity, json_encode($activity), $uid, true, false, $signer, '', $completion)) {
1446                         Logger::notice('Activity had been fetched and processed.', ['url' => $url, 'entry' => $child['entry-id'] ?? 0, 'completion' => $completion, 'object' => $activity['id']]);
1447                 } else {
1448                         Logger::notice('Activity had been fetched and will be processed later.', ['url' => $url, 'entry' => $child['entry-id'] ?? 0, 'completion' => $completion, 'object' => $activity['id']]);
1449                 }
1450
1451                 return $activity['id'];
1452         }
1453
1454         /**
1455          * Test if incoming relay messages should be accepted
1456          *
1457          * @param array $activity activity array
1458          * @param string $id      object ID
1459          * @return boolean true if message is accepted
1460          */
1461         private static function acceptIncomingMessage(array $activity, string $id): bool
1462         {
1463                 if (empty($activity['as:object'])) {
1464                         Logger::info('No object field in activity - accepted', ['id' => $id]);
1465                         return true;
1466                 }
1467
1468                 $replyto = JsonLD::fetchElement($activity['as:object'], 'as:inReplyTo', '@id');
1469                 $uriid = ItemURI::getIdByURI($replyto ?? '');
1470                 if (Post::exists(['uri-id' => $uriid])) {
1471                         Logger::info('Post is a reply to an existing post - accepted', ['id' => $id, 'uri-id' => $uriid, 'replyto' => $replyto]);
1472                         return true;
1473                 }
1474
1475                 $attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
1476                 $authorid = Contact::getIdForURL($attributed_to);
1477
1478                 $body = HTML::toBBCode(JsonLD::fetchElement($activity['as:object'], 'as:content', '@value') ?? '');
1479
1480                 $messageTags = [];
1481                 $tags = Receiver::processTags(JsonLD::fetchElementArray($activity['as:object'], 'as:tag') ?? []);
1482                 if (!empty($tags)) {
1483                         foreach ($tags as $tag) {
1484                                 if ($tag['type'] != 'Hashtag') {
1485                                         continue;
1486                                 }
1487                                 $messageTags[] = ltrim(mb_strtolower($tag['name']), '#');
1488                         }
1489                 }
1490
1491                 return Relay::isSolicitedPost($messageTags, $body, $authorid, $id, Protocol::ACTIVITYPUB);
1492         }
1493
1494         /**
1495          * perform a "follow" request
1496          *
1497          * @param array $activity
1498          * @return void
1499          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1500          * @throws \ImagickException
1501          */
1502         public static function followUser(array $activity)
1503         {
1504                 $uid = User::getIdForURL($activity['object_id']);
1505                 if (empty($uid)) {
1506                         Queue::remove($activity);
1507                         return;
1508                 }
1509
1510                 $owner = User::getOwnerDataById($uid);
1511                 if (empty($owner)) {
1512                         return;
1513                 }
1514
1515                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1516                 if (!empty($cid)) {
1517                         self::switchContact($cid);
1518                         Contact::update(['hub-verify' => $activity['id'], 'protocol' => Protocol::ACTIVITYPUB], ['id' => $cid]);
1519                 }
1520
1521                 $item = [
1522                         'author-id' => Contact::getIdForURL($activity['actor']),
1523                         'author-link' => $activity['actor'],
1524                 ];
1525
1526                 // Ensure that the contact has got the right network type
1527                 self::switchContact($item['author-id']);
1528
1529                 $result = Contact::addRelationship($owner, [], $item, false, $activity['content'] ?? '');
1530                 if ($result === true) {
1531                         ActivityPub\Transmitter::sendContactAccept($item['author-link'], $activity['id'], $owner['uid']);
1532                 }
1533
1534                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1535                 if (empty($cid)) {
1536                         return;
1537                 }
1538
1539                 if ($result && DI::config()->get('system', 'transmit_pending_events') && ($owner['contact-type'] == Contact::TYPE_COMMUNITY)) {
1540                         self::transmitPendingEvents($cid, $owner['uid']);
1541                 }
1542
1543                 if (empty($contact)) {
1544                         Contact::update(['hub-verify' => $activity['id'], 'protocol' => Protocol::ACTIVITYPUB], ['id' => $cid]);
1545                 }
1546                 Logger::notice('Follow user ' . $uid . ' from contact ' . $cid . ' with id ' . $activity['id']);
1547                 Queue::remove($activity);
1548         }
1549
1550         /**
1551          * Transmit pending events to the new follower
1552          *
1553          * @param integer $cid Contact id
1554          * @param integer $uid User id
1555          * @return void
1556          */
1557         private static function transmitPendingEvents(int $cid, int $uid)
1558         {
1559                 $account = DBA::selectFirst('account-user-view', ['ap-inbox', 'ap-sharedinbox'], ['id' => $cid]);
1560                 $inbox = $account['ap-sharedinbox'] ?: $account['ap-inbox'];
1561
1562                 $events = DBA::select('event', ['id'], ["`uid` = ? AND `start` > ? AND `type` != ?", $uid, DateTimeFormat::utcNow(), 'birthday']);
1563                 while ($event = DBA::fetch($events)) {
1564                         $post = Post::selectFirst(['id', 'uri-id', 'created'], ['event-id' => $event['id']]);
1565                         if (empty($post)) {
1566                                 continue;
1567                         }
1568                         if (DI::config()->get('system', 'bulk_delivery')) {
1569                                 Post\Delivery::add($post['uri-id'], $uid, $inbox, $post['created'], Delivery::POST, [$cid]);
1570                                 Worker::add(PRIORITY_HIGH, 'APDelivery', '', 0, $inbox, 0);
1571                         } else {
1572                                 Worker::add(PRIORITY_HIGH, 'APDelivery', Delivery::POST, $post['id'], $inbox, $uid, [$cid], $post['uri-id']);
1573                         }
1574                 }
1575         }
1576
1577         /**
1578          * Update the given profile
1579          *
1580          * @param array $activity
1581          * @throws \Exception
1582          */
1583         public static function updatePerson(array $activity)
1584         {
1585                 if (empty($activity['object_id'])) {
1586                         return;
1587                 }
1588
1589                 Logger::info('Updating profile', ['object' => $activity['object_id']]);
1590                 Contact::updateFromProbeByURL($activity['object_id']);
1591                 Queue::remove($activity);
1592         }
1593
1594         /**
1595          * Delete the given profile
1596          *
1597          * @param array $activity
1598          * @return void
1599          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1600          */
1601         public static function deletePerson(array $activity)
1602         {
1603                 if (empty($activity['object_id']) || empty($activity['actor'])) {
1604                         Logger::info('Empty object id or actor.');
1605                         return;
1606                 }
1607
1608                 if ($activity['object_id'] != $activity['actor']) {
1609                         Logger::info('Object id does not match actor.');
1610                         return;
1611                 }
1612
1613                 $contacts = DBA::select('contact', ['id'], ['nurl' => Strings::normaliseLink($activity['object_id'])]);
1614                 while ($contact = DBA::fetch($contacts)) {
1615                         Contact::remove($contact['id']);
1616                 }
1617                 DBA::close($contacts);
1618
1619                 Logger::info('Deleted contact', ['object' => $activity['object_id']]);
1620                 Queue::remove($activity);
1621         }
1622
1623         /**
1624          * Blocks the user by the contact
1625          *
1626          * @param array $activity
1627          * @return void
1628          * @throws \Exception
1629          */
1630         public static function blockAccount(array $activity)
1631         {
1632                 $cid = Contact::getIdForURL($activity['actor']);
1633                 if (empty($cid)) {
1634                         return;
1635                 }
1636
1637                 $uid = User::getIdForURL($activity['object_id']);
1638                 if (empty($uid)) {
1639                         return;
1640                 }
1641
1642                 Contact\User::setIsBlocked($cid, $uid, true);
1643
1644                 Logger::info('Contact blocked user', ['contact' => $cid, 'user' => $uid]);
1645                 Queue::remove($activity);
1646         }
1647
1648         /**
1649          * Unblocks the user by the contact
1650          *
1651          * @param array $activity
1652          * @return void
1653          * @throws \Exception
1654          */
1655         public static function unblockAccount(array $activity)
1656         {
1657                 $cid = Contact::getIdForURL($activity['actor']);
1658                 if (empty($cid)) {
1659                         return;
1660                 }
1661
1662                 $uid = User::getIdForURL($activity['object_object']);
1663                 if (empty($uid)) {
1664                         return;
1665                 }
1666
1667                 Contact\User::setIsBlocked($cid, $uid, false);
1668
1669                 Logger::info('Contact unblocked user', ['contact' => $cid, 'user' => $uid]);
1670                 Queue::remove($activity);
1671         }
1672
1673         /**
1674          * Accept a follow request
1675          *
1676          * @param array $activity
1677          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1678          * @throws \ImagickException
1679          */
1680         public static function acceptFollowUser(array $activity)
1681         {
1682                 $uid = User::getIdForURL($activity['object_actor']);
1683                 if (empty($uid)) {
1684                         return;
1685                 }
1686
1687                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1688                 if (empty($cid)) {
1689                         Logger::info('No contact found', ['actor' => $activity['actor']]);
1690                         return;
1691                 }
1692
1693                 self::switchContact($cid);
1694
1695                 $fields = ['pending' => false];
1696
1697                 $contact = DBA::selectFirst('contact', ['rel'], ['id' => $cid]);
1698                 if ($contact['rel'] == Contact::FOLLOWER) {
1699                         $fields['rel'] = Contact::FRIEND;
1700                 }
1701
1702                 $condition = ['id' => $cid];
1703                 Contact::update($fields, $condition);
1704                 Logger::info('Accept contact request', ['contact' => $cid, 'user' => $uid]);
1705                 Queue::remove($activity);
1706         }
1707
1708         /**
1709          * Reject a follow request
1710          *
1711          * @param array $activity
1712          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1713          * @throws \ImagickException
1714          */
1715         public static function rejectFollowUser(array $activity)
1716         {
1717                 $uid = User::getIdForURL($activity['object_actor']);
1718                 if (empty($uid)) {
1719                         return;
1720                 }
1721
1722                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1723                 if (empty($cid)) {
1724                         Logger::info('No contact found', ['actor' => $activity['actor']]);
1725                         return;
1726                 }
1727
1728                 self::switchContact($cid);
1729
1730                 $contact = Contact::getById($cid, ['rel']);
1731                 if ($contact['rel'] == Contact::SHARING) {
1732                         Contact::remove($cid);
1733                         Logger::info('Rejected contact request - contact removed', ['contact' => $cid, 'user' => $uid]);
1734                 } elseif ($contact['rel'] == Contact::FRIEND) {
1735                         Contact::update(['rel' => Contact::FOLLOWER], ['id' => $cid]);
1736                 } else {
1737                         Logger::info('Rejected contact request', ['contact' => $cid, 'user' => $uid]);
1738                 }
1739                 Queue::remove($activity);
1740         }
1741
1742         /**
1743          * Undo activity like "like" or "dislike"
1744          *
1745          * @param array $activity
1746          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1747          * @throws \ImagickException
1748          */
1749         public static function undoActivity(array $activity)
1750         {
1751                 if (empty($activity['object_id'])) {
1752                         return;
1753                 }
1754
1755                 if (empty($activity['object_actor'])) {
1756                         return;
1757                 }
1758
1759                 $author_id = Contact::getIdForURL($activity['object_actor']);
1760                 if (empty($author_id)) {
1761                         return;
1762                 }
1763
1764                 Item::markForDeletion(['uri' => $activity['object_id'], 'author-id' => $author_id, 'gravity' => GRAVITY_ACTIVITY]);
1765                 Queue::remove($activity);
1766         }
1767
1768         /**
1769          * Activity to remove a follower
1770          *
1771          * @param array $activity
1772          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1773          * @throws \ImagickException
1774          */
1775         public static function undoFollowUser(array $activity)
1776         {
1777                 $uid = User::getIdForURL($activity['object_object']);
1778                 if (empty($uid)) {
1779                         return;
1780                 }
1781
1782                 $owner = User::getOwnerDataById($uid);
1783                 if (empty($owner)) {
1784                         return;
1785                 }
1786
1787                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1788                 if (empty($cid)) {
1789                         Logger::info('No contact found', ['actor' => $activity['actor']]);
1790                         return;
1791                 }
1792
1793                 self::switchContact($cid);
1794
1795                 $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
1796                 if (!DBA::isResult($contact)) {
1797                         return;
1798                 }
1799
1800                 Contact::removeFollower($contact);
1801                 Logger::info('Undo following request', ['contact' => $cid, 'user' => $uid]);
1802                 Queue::remove($activity);
1803         }
1804
1805         /**
1806          * Switches a contact to AP if needed
1807          *
1808          * @param integer $cid Contact ID
1809          * @return void
1810          * @throws \Exception
1811          */
1812         private static function switchContact(int $cid)
1813         {
1814                 $contact = DBA::selectFirst('contact', ['network', 'url'], ['id' => $cid]);
1815                 if (!DBA::isResult($contact) || in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN]) || Contact::isLocal($contact['url'])) {
1816                         return;
1817                 }
1818
1819                 Logger::info('Change existing contact', ['cid' => $cid, 'previous' => $contact['network']]);
1820                 Contact::updateFromProbe($cid);
1821         }
1822
1823         /**
1824          * Collects implicit mentions like:
1825          * - the author of the parent item
1826          * - all the mentioned conversants in the parent item
1827          *
1828          * @param array $parent Item array with at least ['id', 'author-link', 'alias']
1829          * @return array
1830          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1831          */
1832         private static function getImplicitMentionList(array $parent): array
1833         {
1834                 $parent_terms = Tag::getByURIId($parent['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
1835
1836                 $parent_author = Contact::getByURL($parent['author-link'], false, ['url', 'nurl', 'alias']);
1837
1838                 $implicit_mentions = [];
1839                 if (empty($parent_author['url'])) {
1840                         Logger::notice('Author public contact unknown.', ['author-link' => $parent['author-link'], 'parent-id' => $parent['id']]);
1841                 } else {
1842                         $implicit_mentions[] = $parent_author['url'];
1843                         $implicit_mentions[] = $parent_author['nurl'];
1844                         $implicit_mentions[] = $parent_author['alias'];
1845                 }
1846
1847                 if (!empty($parent['alias'])) {
1848                         $implicit_mentions[] = $parent['alias'];
1849                 }
1850
1851                 foreach ($parent_terms as $term) {
1852                         $contact = Contact::getByURL($term['url'], false, ['url', 'nurl', 'alias']);
1853                         if (!empty($contact['url'])) {
1854                                 $implicit_mentions[] = $contact['url'];
1855                                 $implicit_mentions[] = $contact['nurl'];
1856                                 $implicit_mentions[] = $contact['alias'];
1857                         }
1858                 }
1859
1860                 return $implicit_mentions;
1861         }
1862
1863         /**
1864          * Strips from the body prepended implicit mentions
1865          *
1866          * @param string $body
1867          * @param array $parent
1868          * @return string
1869          */
1870         private static function removeImplicitMentionsFromBody(string $body, array $parent): string
1871         {
1872                 if (DI::config()->get('system', 'disable_implicit_mentions')) {
1873                         return $body;
1874                 }
1875
1876                 $potential_mentions = self::getImplicitMentionList($parent);
1877
1878                 $kept_mentions = [];
1879
1880                 // Extract one prepended mention at a time from the body
1881                 while(preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#is', $body, $matches)) {
1882                         if (!in_array($matches[2], $potential_mentions)) {
1883                                 $kept_mentions[] = $matches[1];
1884                         }
1885
1886                         $body = $matches[3];
1887                 }
1888
1889                 // Re-appending the kept mentions to the body after extraction
1890                 $kept_mentions[] = $body;
1891
1892                 return implode('', $kept_mentions);
1893         }
1894
1895         /**
1896          * Adds links to string mentions
1897          *
1898          * @param string $body
1899          * @param array  $tags
1900          * @return string
1901          */
1902         protected static function addMentionLinks(string $body, array $tags): string
1903         {
1904                 // This prevents links to be added again to Pleroma-style mention links
1905                 $body = self::normalizeMentionLinks($body);
1906
1907                 $body = BBCode::performWithEscapedTags($body, ['url'], function ($body) use ($tags) {
1908                         foreach ($tags as $tag) {
1909                                 if (empty($tag['name']) || empty($tag['type']) || empty($tag['href']) || !in_array($tag['type'], ['Mention', 'Hashtag'])) {
1910                                         continue;
1911                                 }
1912
1913                                 $hash = substr($tag['name'], 0, 1);
1914                                 $name = substr($tag['name'], 1);
1915                                 if (!in_array($hash, Tag::TAG_CHARACTER)) {
1916                                         $hash = '';
1917                                         $name = $tag['name'];
1918                                 }
1919
1920                                 $body = str_replace($tag['name'], $hash . '[url=' . $tag['href'] . ']' . $name . '[/url]', $body);
1921                         }
1922
1923                         return $body;
1924                 });
1925
1926                 return $body;
1927         }
1928 }