]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Processor.php
Merge pull request #11334 from annando/guid-style
[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\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\System;
30 use Friendica\Database\DBA;
31 use Friendica\DI;
32 use Friendica\Model\APContact;
33 use Friendica\Model\Contact;
34 use Friendica\Model\Conversation;
35 use Friendica\Model\Event;
36 use Friendica\Model\GServer;
37 use Friendica\Model\Item;
38 use Friendica\Model\ItemURI;
39 use Friendica\Model\Mail;
40 use Friendica\Model\Tag;
41 use Friendica\Model\User;
42 use Friendica\Model\Post;
43 use Friendica\Protocol\Activity;
44 use Friendica\Protocol\ActivityPub;
45 use Friendica\Protocol\Relay;
46 use Friendica\Util\DateTimeFormat;
47 use Friendica\Util\JsonLD;
48 use Friendica\Util\Strings;
49
50 /**
51  * ActivityPub Processor Protocol class
52  */
53 class Processor
54 {
55         /**
56          * Extracts the tag character (#, @, !) from mention links
57          *
58          * @param string $body
59          * @return string
60          */
61         protected static function normalizeMentionLinks(string $body): string
62         {
63                 return preg_replace('%\[url=([^\[\]]*)]([#@!])(.*?)\[/url]%ism', '$2[url=$1]$3[/url]', $body);
64         }
65
66         /**
67          * Convert the language array into a language JSON
68          *
69          * @param array $languages
70          * @return string language JSON
71          */
72         private static function processLanguages(array $languages)
73         {
74                 $codes = array_keys($languages);
75                 $lang = [];
76                 foreach ($codes as $code) {
77                         $lang[$code] = 1;
78                 }
79
80                 if (empty($lang)) {
81                         return '';
82                 }
83
84                 return json_encode($lang);
85         }
86         /**
87          * Replaces emojis in the body
88          *
89          * @param array $emojis
90          * @param string $body
91          *
92          * @return string with replaced emojis
93          */
94         private static function replaceEmojis(int $uri_id, $body, array $emojis)
95         {
96                 $body = strtr($body,
97                         array_combine(
98                                 array_column($emojis, 'name'),
99                                 array_map(function ($emoji) {
100                                         return '[emoji=' . $emoji['href'] . ']' . $emoji['name'] . '[/emoji]';
101                                 }, $emojis)
102                         )
103                 );
104
105                 // We store the emoji here to be able to avoid storing it in the media
106                 foreach ($emojis as $emoji) {
107                         Post\Link::getByLink($uri_id, $emoji['href']);
108                 }
109                 return $body;
110         }
111
112         /**
113          * Store attached media files in the post-media table
114          *
115          * @param int $uriid
116          * @param array $attachment
117          * @return void
118          */
119         private static function storeAttachmentAsMedia(int $uriid, array $attachment)
120         {
121                 if (empty($attachment['url'])) {
122                         return;
123                 }
124
125                 $data = ['uri-id' => $uriid];
126                 $data['type'] = Post\Media::UNKNOWN;
127                 $data['url'] = $attachment['url'];
128                 $data['mimetype'] = $attachment['mediaType'] ?? null;
129                 $data['height'] = $attachment['height'] ?? null;
130                 $data['width'] = $attachment['width'] ?? null;
131                 $data['size'] = $attachment['size'] ?? null;
132                 $data['preview'] = $attachment['image'] ?? null;
133                 $data['description'] = $attachment['name'] ?? null;
134
135                 Post\Media::insert($data);
136         }
137
138         /**
139          * Stire attachment data
140          *
141          * @param array   $activity
142          * @param array   $item
143          */
144         private static function storeAttachments($activity, $item)
145         {
146                 if (empty($activity['attachments'])) {
147                         return;
148                 }
149
150                 foreach ($activity['attachments'] as $attach) {
151                         self::storeAttachmentAsMedia($item['uri-id'], $attach);
152                 }
153         }
154
155         /**
156          * Updates a message
157          *
158          * @param array $activity Activity array
159          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
160          */
161         public static function updateItem($activity)
162         {
163                 $item = Post::selectFirst(['uri', 'uri-id', 'thr-parent', 'gravity', 'post-type'], ['uri' => $activity['id']]);
164                 if (!DBA::isResult($item)) {
165                         Logger::warning('No existing item, item will be created', ['uri' => $activity['id']]);
166                         $item = self::createItem($activity);
167                         self::postItem($activity, $item);
168                         return;
169                 }
170
171                 $item['changed'] = DateTimeFormat::utcNow();
172                 $item['edited'] = DateTimeFormat::utc($activity['updated']);
173
174                 $item = self::processContent($activity, $item);
175
176                 self::storeAttachments($activity, $item);
177
178                 if (empty($item)) {
179                         return;
180                 }
181
182                 Item::update($item, ['uri' => $activity['id']]);
183
184                 if ($activity['object_type'] == 'as:Event') {
185                         $posts = Post::select(['event-id', 'uid'], ["`uri` = ? AND `event-id` > ?", $activity['id'], 0]);
186                         while ($post = DBA::fetch($posts)) {
187                                 self::updateEvent($post['event-id'], $activity);
188                         }
189                 }
190         }
191
192         /**
193          * Update an existing event
194          *
195          * @param int $event_id
196          * @param array $activity
197          */
198         private static function updateEvent(int $event_id, array $activity)
199         {
200                 $event = DBA::selectFirst('event', [], ['id' => $event_id]);
201
202                 $event['edited']   = DateTimeFormat::utc($activity['updated']);
203                 $event['summary']  = HTML::toBBCode($activity['name']);
204                 $event['desc']     = HTML::toBBCode($activity['content']);
205                 $event['start']    = $activity['start-time'];
206                 $event['finish']   = $activity['end-time'];
207                 $event['nofinish'] = empty($event['finish']);
208                 $event['location'] = $activity['location'];
209
210                 Logger::info('Updating event', ['uri' => $activity['id'], 'id' => $event_id]);
211                 Event::store($event);
212         }
213
214         /**
215          * Prepares data for a message
216          *
217          * @param array $activity Activity array
218          * @return array Internal item
219          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
220          * @throws \ImagickException
221          */
222         public static function createItem($activity)
223         {
224                 $item = [];
225                 $item['verb'] = Activity::POST;
226                 $item['thr-parent'] = $activity['reply-to-id'];
227
228                 if ($activity['reply-to-id'] == $activity['id']) {
229                         $item['gravity'] = GRAVITY_PARENT;
230                         $item['object-type'] = Activity\ObjectType::NOTE;
231                 } else {
232                         $item['gravity'] = GRAVITY_COMMENT;
233                         $item['object-type'] = Activity\ObjectType::COMMENT;
234                 }
235
236                 if (empty($activity['directmessage']) && ($activity['id'] != $activity['reply-to-id']) && !Post::exists(['uri' => $activity['reply-to-id']])) {
237                         Logger::notice('Parent not found. Try to refetch it.', ['parent' => $activity['reply-to-id']]);
238                         self::fetchMissingActivity($activity['reply-to-id'], $activity, '', Receiver::COMPLETION_AUTO);
239                 }
240
241                 $item['diaspora_signed_text'] = $activity['diaspora:comment'] ?? '';
242
243                 /// @todo What to do with $activity['context']?
244                 if (empty($activity['directmessage']) && ($item['gravity'] != GRAVITY_PARENT) && !Post::exists(['uri' => $item['thr-parent']])) {
245                         Logger::info('Parent not found, message will be discarded.', ['thr-parent' => $item['thr-parent']]);
246                         return [];
247                 }
248
249                 $item['network'] = Protocol::ACTIVITYPUB;
250                 $item['author-link'] = $activity['author'];
251                 $item['author-id'] = Contact::getIdForURL($activity['author']);
252                 $item['owner-link'] = $activity['actor'];
253                 $item['owner-id'] = Contact::getIdForURL($activity['actor']);
254
255                 if (in_array(0, $activity['receiver']) && !empty($activity['unlisted'])) {
256                         $item['private'] = Item::UNLISTED;
257                 } elseif (in_array(0, $activity['receiver'])) {
258                         $item['private'] = Item::PUBLIC;
259                 } else {
260                         $item['private'] = Item::PRIVATE;
261                 }
262
263                 if (!empty($activity['raw'])) {
264                         $item['source'] = $activity['raw'];
265                         $item['protocol'] = Conversation::PARCEL_ACTIVITYPUB;
266                         $item['conversation-href'] = $activity['context'] ?? '';
267                         $item['conversation-uri'] = $activity['conversation'] ?? '';
268
269                         if (isset($activity['push'])) {
270                                 $item['direction'] = $activity['push'] ? Conversation::PUSH : Conversation::PULL;
271                         }
272                 }
273
274                 if (!empty($activity['from-relay'])) {
275                         $item['direction'] = Conversation::RELAY;
276                 }
277
278                 if ($activity['object_type'] == 'as:Article') {
279                         $item['post-type'] = Item::PT_ARTICLE;
280                 } elseif ($activity['object_type'] == 'as:Audio') {
281                         $item['post-type'] = Item::PT_AUDIO;
282                 } elseif ($activity['object_type'] == 'as:Document') {
283                         $item['post-type'] = Item::PT_DOCUMENT;
284                 } elseif ($activity['object_type'] == 'as:Event') {
285                         $item['post-type'] = Item::PT_EVENT;
286                 } elseif ($activity['object_type'] == 'as:Image') {
287                         $item['post-type'] = Item::PT_IMAGE;
288                 } elseif ($activity['object_type'] == 'as:Page') {
289                         $item['post-type'] = Item::PT_PAGE;
290                 } elseif ($activity['object_type'] == 'as:Question') {
291                         $item['post-type'] = Item::PT_POLL;
292                 } elseif ($activity['object_type'] == 'as:Video') {
293                         $item['post-type'] = Item::PT_VIDEO;
294                 } else {
295                         $item['post-type'] = Item::PT_NOTE;
296                 }
297
298                 $item['isForum'] = false;
299
300                 if (!empty($activity['thread-completion'])) {
301                         if ($activity['thread-completion'] != $item['owner-id']) {
302                                 $actor = Contact::getById($activity['thread-completion'], ['url']);
303                                 $item['causer-link'] = $actor['url'];
304                                 $item['causer-id'] = $activity['thread-completion'];
305                                 Logger::info('Use inherited actor as causer.', ['id' => $item['owner-id'], 'activity' => $activity['thread-completion'], 'owner' => $item['owner-link'], 'actor' => $actor['url']]);
306                         } else {
307                                 // Store the original actor in the "causer" fields to enable the check for ignored or blocked contacts
308                                 $item['causer-link'] = $item['owner-link'];
309                                 $item['causer-id']   = $item['owner-id'];
310                                 Logger::info('Use actor as causer.', ['id' => $item['owner-id'], 'actor' => $item['owner-link']]);
311                         }
312
313                         $item['owner-link'] = $item['author-link'];
314                         $item['owner-id'] = $item['author-id'];
315                 } else {
316                         $actor = APContact::getByURL($item['owner-link'], false);
317                         $item['isForum'] = ($actor['type'] == 'Group');
318                 }
319
320                 $item['uri'] = $activity['id'];
321
322                 if (empty($activity['published']) || empty($activity['updated'])) {
323                         DI::logger()->notice('published or updated keys are empty for activity', ['activity' => $activity, 'callstack' => System::callstack(10)]);
324                 }
325
326                 $item['created'] = DateTimeFormat::utc($activity['published'] ?? 'now');
327                 $item['edited'] = DateTimeFormat::utc($activity['updated'] ?? 'now');
328                 $guid = $activity['sc:identifier'] ?: self::getGUIDByURL($item['uri']);
329                 $item['guid'] = $activity['diaspora:guid'] ?: $guid;
330
331                 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
332                 if (empty($item['uri-id'])) {
333                         Logger::warning('Unable to get a uri-id for an item uri', ['uri' => $item['uri'], 'guid' => $item['guid']]);
334                         return [];
335                 }
336
337                 $item = self::processContent($activity, $item);
338                 if (empty($item)) {
339                         Logger::info('Message was not processed');
340                         return [];
341                 }
342
343                 $item['plink'] = $activity['alternate-url'] ?? $item['uri'];
344
345                 self::storeAttachments($activity, $item);
346
347                 // We received the post via AP, so we set the protocol of the server to AP
348                 $contact = Contact::getById($item['author-id'], ['gsid']);
349                 if (!empty($contact['gsid'])) {
350                         GServer::setProtocol($contact['gsid'], Post\DeliveryData::ACTIVITYPUB);
351                 }
352
353                 if ($item['author-id'] != $item['owner-id']) {
354                         $contact = Contact::getById($item['owner-id'], ['gsid']);
355                         if (!empty($contact['gsid'])) {
356                                 GServer::setProtocol($contact['gsid'], Post\DeliveryData::ACTIVITYPUB);
357                         }
358                 }
359
360                 return $item;
361         }
362
363         /**
364          * Delete items
365          *
366          * @param array $activity
367          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
368          * @throws \ImagickException
369          */
370         public static function deleteItem($activity)
371         {
372                 $owner = Contact::getIdForURL($activity['actor']);
373
374                 Logger::info('Deleting item', ['object' => $activity['object_id'], 'owner'  => $owner]);
375                 Item::markForDeletion(['uri' => $activity['object_id'], 'owner-id' => $owner]);
376         }
377
378         /**
379          * Prepare the item array for an activity
380          *
381          * @param array $activity Activity array
382          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
383          * @throws \ImagickException
384          */
385         public static function addTag($activity)
386         {
387                 if (empty($activity['object_content']) || empty($activity['object_id'])) {
388                         return;
389                 }
390
391                 foreach ($activity['receiver'] as $receiver) {
392                         $item = Post::selectFirst(['id', 'uri-id', 'origin', 'author-link'], ['uri' => $activity['target_id'], 'uid' => $receiver]);
393                         if (!DBA::isResult($item)) {
394                                 // We don't fetch missing content for this purpose
395                                 continue;
396                         }
397
398                         if (($item['author-link'] != $activity['actor']) && !$item['origin']) {
399                                 Logger::info('Not origin, not from the author, skipping update', ['id' => $item['id'], 'author' => $item['author-link'], 'actor' => $activity['actor']]);
400                                 continue;
401                         }
402
403                         Tag::store($item['uri-id'], Tag::HASHTAG, $activity['object_content'], $activity['object_id']);
404                         Logger::info('Tagged item', ['id' => $item['id'], 'tag' => $activity['object_content'], 'uri' => $activity['target_id'], 'actor' => $activity['actor']]);
405                 }
406         }
407
408         /**
409          * Prepare the item array for an activity
410          *
411          * @param array  $activity Activity array
412          * @param string $verb     Activity verb
413          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
414          * @throws \ImagickException
415          */
416         public static function createActivity($activity, $verb)
417         {
418                 $item = self::createItem($activity);
419                 $item['verb'] = $verb;
420                 $item['thr-parent'] = $activity['object_id'];
421                 $item['gravity'] = GRAVITY_ACTIVITY;
422                 unset($item['post-type']);
423                 $item['object-type'] = Activity\ObjectType::NOTE;
424
425                 $item['diaspora_signed_text'] = $activity['diaspora:like'] ?? '';
426
427                 self::postItem($activity, $item);
428         }
429
430         /**
431          * Create an event
432          *
433          * @param array $activity Activity array
434          * @param array $item
435          *
436          * @return int event id
437          * @throws \Exception
438          */
439         public static function createEvent($activity, $item)
440         {
441                 $event['summary']   = HTML::toBBCode($activity['name']);
442                 $event['desc']      = HTML::toBBCode($activity['content']);
443                 $event['start']     = $activity['start-time'];
444                 $event['finish']    = $activity['end-time'];
445                 $event['nofinish']  = empty($event['finish']);
446                 $event['location']  = $activity['location'];
447                 $event['cid']       = $item['contact-id'];
448                 $event['uid']       = $item['uid'];
449                 $event['uri']       = $item['uri'];
450                 $event['edited']    = $item['edited'];
451                 $event['private']   = $item['private'];
452                 $event['guid']      = $item['guid'];
453                 $event['plink']     = $item['plink'];
454                 $event['network']   = $item['network'];
455                 $event['protocol']  = $item['protocol'];
456                 $event['direction'] = $item['direction'];
457                 $event['source']    = $item['source'];
458
459                 $ev = DBA::selectFirst('event', ['id'], ['uri' => $item['uri'], 'uid' => $item['uid']]);
460                 if (DBA::isResult($ev)) {
461                         $event['id'] = $ev['id'];
462                 }
463
464                 $event_id = Event::store($event);
465
466                 Logger::info('Event was stored', ['id' => $event_id]);
467
468                 return $event_id;
469         }
470
471         /**
472          * Process the content
473          *
474          * @param array $activity Activity array
475          * @param array $item
476          * @return array|bool Returns the item array or false if there was an unexpected occurrence
477          * @throws \Exception
478          */
479         private static function processContent($activity, $item)
480         {
481                 if (!empty($activity['mediatype']) && ($activity['mediatype'] == 'text/markdown')) {
482                         $item['title'] = Markdown::toBBCode($activity['name']);
483                         $content = Markdown::toBBCode($activity['content']);
484                 } elseif (!empty($activity['mediatype']) && ($activity['mediatype'] == 'text/bbcode')) {
485                         $item['title'] = $activity['name'];
486                         $content = $activity['content'];
487                 } else {
488                         // By default assume "text/html"
489                         $item['title'] = HTML::toBBCode($activity['name']);
490                         $content = HTML::toBBCode($activity['content']);
491                 }
492
493                 if (!empty($activity['languages'])) {
494                         $item['language'] = self::processLanguages($activity['languages']);
495                 }
496
497                 if (!empty($activity['emojis'])) {
498                         $content = self::replaceEmojis($item['uri-id'], $content, $activity['emojis']);
499                 }
500
501                 $content = self::addMentionLinks($content, $activity['tags']);
502
503                 if (!empty($activity['source'])) {
504                         $item['body'] = $activity['source'];
505                         $item['raw-body'] = $content;
506                         $item['body'] = Item::improveSharedDataInBody($item);
507                 } else {
508                         if (empty($activity['directmessage']) && ($item['thr-parent'] != $item['uri']) && ($item['gravity'] == GRAVITY_COMMENT)) {
509                                 $item_private = !in_array(0, $activity['item_receiver']);
510                                 $parent = Post::selectFirst(['id', 'uri-id', 'private', 'author-link', 'alias'], ['uri' => $item['thr-parent']]);
511                                 if (!DBA::isResult($parent)) {
512                                         Logger::warning('Unknown parent item.', ['uri' => $item['thr-parent']]);
513                                         return false;
514                                 }
515                                 if ($item_private && ($parent['private'] != Item::PRIVATE)) {
516                                         Logger::warning('Item is private but the parent is not. Dropping.', ['item-uri' => $item['uri'], 'thr-parent' => $item['thr-parent']]);
517                                         return false;
518                                 }
519
520                                 $content = self::removeImplicitMentionsFromBody($content, $parent);
521                         }
522                         $item['content-warning'] = HTML::toBBCode($activity['summary']);
523                         $item['raw-body'] = $item['body'] = $content;
524                 }
525
526                 self::storeFromBody($item);
527                 self::storeTags($item['uri-id'], $activity['tags']);
528
529                 self::storeReceivers($item['uri-id'], $activity['receiver_urls'] ?? []);
530
531                 $item['location'] = $activity['location'];
532
533                 if (!empty($activity['latitude']) && !empty($activity['longitude'])) {
534                         $item['coord'] = $activity['latitude'] . ' ' . $activity['longitude'];
535                 }
536
537                 $item['app'] = $activity['generator'];
538
539                 return $item;
540         }
541
542         /**
543          * Store hashtags and mentions
544          *
545          * @param array $item
546          */
547         private static function storeFromBody(array $item)
548         {
549                 // Make sure to delete all existing tags (can happen when called via the update functionality)
550                 DBA::delete('post-tag', ['uri-id' => $item['uri-id']]);
551
552                 Tag::storeFromBody($item['uri-id'], $item['body'], '@!');
553         }
554
555         /**
556          * Generate a GUID out of an URL of an ActivityPub post.
557          *
558          * @param string $url message URL
559          * @return string with GUID
560          */
561         private static function getGUIDByURL(string $url)
562         {
563                 $parsed = parse_url($url);
564
565                 $host_hash = hash('crc32', $parsed['host']);
566
567                 unset($parsed["scheme"]);
568                 unset($parsed["host"]);
569
570                 $path = implode("/", $parsed);
571
572                 return $host_hash . '-'. hash('fnv164', $path) . '-'. hash('joaat', $path);
573         }
574
575         /**
576          * Checks if an incoming message is wanted
577          *
578          * @param array $activity
579          * @param array $item
580          * @return boolean Is the message wanted?
581          */
582         private static function isSolicitedMessage(array $activity, array $item)
583         {
584                 // The checks are split to improve the support when searching why a message was accepted.
585                 if (count($activity['receiver']) != 1) {
586                         // The message has more than one receiver, so it is wanted.
587                         Logger::debug('Message has got several receivers - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
588                         return true;
589                 }
590
591                 if ($item['private'] == Item::PRIVATE) {
592                         // We only look at public posts here. Private posts are expected to be intentionally posted to the single receiver.
593                         Logger::debug('Message is private - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
594                         return true;
595                 }
596
597                 if (!empty($activity['from-relay'])) {
598                         // We check relay posts at another place. When it arrived here, the message is already checked.
599                         Logger::debug('Message is a relay post that is already checked - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
600                         return true;
601                 }
602
603                 if (in_array($activity['completion-mode'] ?? Receiver::COMPLETION_NONE, [Receiver::COMPLETION_MANUAL, Receiver::COMPLETION_ANNOUCE])) {
604                         // Manual completions and completions caused by reshares are allowed without any further checks.
605                         Logger::debug('Message is in completion mode - accepted', ['mode' => $activity['completion-mode'], 'uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
606                         return true;
607                 }
608
609                 if ($item['gravity'] != GRAVITY_PARENT) {
610                         // We cannot reliably check at this point if a comment or activity belongs to an accepted post or needs to be fetched
611                         // This can possibly be improved in the future.
612                         Logger::debug('Message is no parent - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
613                         return true;
614                 }
615
616                 $tags = array_column(Tag::getByURIId($item['uri-id'], [Tag::HASHTAG]), 'name');
617                 if (Relay::isSolicitedPost($tags, $item['body'], $item['author-id'], $item['uri'], Protocol::ACTIVITYPUB)) {
618                         Logger::debug('Post is accepted because of the relay settings', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
619                         return true;
620                 } else {
621                         return false;
622                 }
623         }
624
625         /**
626          * Creates an item post
627          *
628          * @param array $activity Activity data
629          * @param array $item     item array
630          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
631          * @throws \ImagickException
632          */
633         public static function postItem(array $activity, array $item)
634         {
635                 if (empty($item)) {
636                         return;
637                 }
638
639                 $stored = false;
640                 ksort($activity['receiver']);
641
642                 if (!self::isSolicitedMessage($activity, $item)) {
643                         DBA::delete('item-uri', ['id' => $item['uri-id']]);
644                         return;
645                 }
646
647                 foreach ($activity['receiver'] as $receiver) {
648                         if ($receiver == -1) {
649                                 continue;
650                         }
651
652                         $item['uid'] = $receiver;
653
654                         $type = $activity['reception_type'][$receiver] ?? Receiver::TARGET_UNKNOWN;
655                         switch($type) {
656                                 case Receiver::TARGET_TO:
657                                         $item['post-reason'] = Item::PR_TO;
658                                         break;
659                                 case Receiver::TARGET_CC:
660                                         $item['post-reason'] = Item::PR_CC;
661                                         break;
662                                 case Receiver::TARGET_BTO:
663                                         $item['post-reason'] = Item::PR_BTO;
664                                         break;
665                                 case Receiver::TARGET_BCC:
666                                         $item['post-reason'] = Item::PR_BCC;
667                                         break;
668                                 case Receiver::TARGET_FOLLOWER:
669                                         $item['post-reason'] = Item::PR_FOLLOWER;
670                                         break;
671                                 case Receiver::TARGET_ANSWER:
672                                         $item['post-reason'] = Item::PR_COMMENT;
673                                         break;
674                                 case Receiver::TARGET_GLOBAL:
675                                         $item['post-reason'] = Item::PR_GLOBAL;
676                                         break;
677                                 default:
678                                         $item['post-reason'] = Item::PR_NONE;
679                         }
680
681                         if (!empty($activity['from-relay'])) {
682                                 $item['post-reason'] = Item::PR_RELAY;
683                         } elseif (!empty($activity['thread-completion'])) {
684                                 $item['post-reason'] = Item::PR_FETCHED;
685                         }
686
687                         if ($item['isForum'] ?? false) {
688                                 $item['contact-id'] = Contact::getIdForURL($activity['actor'], $receiver);
689                         } else {
690                                 $item['contact-id'] = Contact::getIdForURL($activity['author'], $receiver);
691                         }
692
693                         if (($receiver != 0) && empty($item['contact-id'])) {
694                                 $item['contact-id'] = Contact::getIdForURL($activity['author']);
695                         }
696
697                         if (!empty($activity['directmessage'])) {
698                                 self::postMail($activity, $item);
699                                 continue;
700                         }
701
702                         if (!($item['isForum'] ?? false) && ($receiver != 0) && ($item['gravity'] == GRAVITY_PARENT) && !Contact::isSharingByURL($activity['author'], $receiver)) {
703                                 if ($item['post-reason'] == Item::PR_BCC) {
704                                         Logger::info('Top level post via BCC from a non sharer, ignoring', ['uid' => $receiver, 'contact' => $item['contact-id']]);
705                                         continue;
706                                 }
707
708                                 if (
709                                         !empty($activity['thread-children-type'])
710                                         && in_array($activity['thread-children-type'], Receiver::ACTIVITY_TYPES)
711                                         && DI::pConfig()->get($receiver, 'system', 'accept_only_sharer') != Item::COMPLETION_LIKE
712                                 ) {
713                                         Logger::info('Top level post from thread completion from a non sharer had been initiated via an activity, ignoring',
714                                                 ['type' => $activity['thread-children-type'], 'user' => $item['uid'], 'causer' => $item['causer-link'], 'author' => $activity['author'], 'url' => $item['uri']]);
715                                         continue;
716                                 }
717                         }
718
719                         $is_forum = false;
720
721                         if ($receiver != 0) {
722                                 $user = User::getById($receiver, ['account-type']);
723                                 if (!empty($user['account-type'])) {
724                                         $is_forum = ($user['account-type'] == User::ACCOUNT_TYPE_COMMUNITY);
725                                 }
726                         }
727
728                         if (!$is_forum && DI::pConfig()->get($receiver, 'system', 'accept_only_sharer') == Item::COMPLETION_NONE && ($receiver != 0) && ($item['gravity'] == GRAVITY_PARENT)) {
729                                 $skip = !Contact::isSharingByURL($activity['author'], $receiver);
730
731                                 if ($skip && (($activity['type'] == 'as:Announce') || ($item['isForum'] ?? false))) {
732                                         $skip = !Contact::isSharingByURL($activity['actor'], $receiver);
733                                 }
734
735                                 if ($skip) {
736                                         Logger::info('Skipping post', ['uid' => $receiver, 'url' => $item['uri']]);
737                                         continue;
738                                 }
739
740                                 Logger::info('Accepting post', ['uid' => $receiver, 'url' => $item['uri']]);
741                         }
742
743                         if (($item['gravity'] != GRAVITY_ACTIVITY) && ($activity['object_type'] == 'as:Event')) {
744                                 $event_id = self::createEvent($activity, $item);
745
746                                 $item = Event::getItemArrayForImportedId($event_id, $item);
747                         }
748
749                         $item_id = Item::insert($item);
750                         if ($item_id) {
751                                 Logger::info('Item insertion successful', ['user' => $item['uid'], 'item_id' => $item_id]);
752                         } else {
753                                 Logger::notice('Item insertion aborted', ['user' => $item['uid']]);
754                         }
755
756                         if ($item['uid'] == 0) {
757                                 $stored = $item_id;
758                         }
759                 }
760
761                 // Store send a follow request for every reshare - but only when the item had been stored
762                 if ($stored && ($item['private'] != Item::PRIVATE) && ($item['gravity'] == GRAVITY_PARENT) && ($item['author-link'] != $item['owner-link'])) {
763                         $author = APContact::getByURL($item['owner-link'], false);
764                         // We send automatic follow requests for reshared messages. (We don't need though for forum posts)
765                         if ($author['type'] != 'Group') {
766                                 Logger::info('Send follow request', ['uri' => $item['uri'], 'stored' => $stored, 'to' => $item['author-link']]);
767                                 ActivityPub\Transmitter::sendFollowObject($item['uri'], $item['author-link']);
768                         }
769                 }
770         }
771
772         /**
773          * Store tags and mentions into the tag table
774          *
775          * @param integer $uriid
776          * @param array $tags
777          */
778         private static function storeTags(int $uriid, array $tags = null)
779         {
780                 foreach ($tags as $tag) {
781                         if (empty($tag['name']) || empty($tag['type']) || !in_array($tag['type'], ['Mention', 'Hashtag'])) {
782                                 continue;
783                         }
784
785                         $hash = substr($tag['name'], 0, 1);
786
787                         if ($tag['type'] == 'Mention') {
788                                 if (in_array($hash, [Tag::TAG_CHARACTER[Tag::MENTION],
789                                         Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION],
790                                         Tag::TAG_CHARACTER[Tag::IMPLICIT_MENTION]])) {
791                                         $tag['name'] = substr($tag['name'], 1);
792                                 }
793                                 $type = Tag::IMPLICIT_MENTION;
794
795                                 if (!empty($tag['href'])) {
796                                         $apcontact = APContact::getByURL($tag['href']);
797                                         if (!empty($apcontact['name']) || !empty($apcontact['nick'])) {
798                                                 $tag['name'] = $apcontact['name'] ?: $apcontact['nick'];
799                                         }
800                                 }
801                         } elseif ($tag['type'] == 'Hashtag') {
802                                 if ($hash == Tag::TAG_CHARACTER[Tag::HASHTAG]) {
803                                         $tag['name'] = substr($tag['name'], 1);
804                                 }
805                                 $type = Tag::HASHTAG;
806                         }
807
808                         if (empty($tag['name'])) {
809                                 continue;
810                         }
811
812                         Tag::store($uriid, $type, $tag['name'], $tag['href']);
813                 }
814         }
815
816         public static function storeReceivers(int $uriid, array $receivers)
817         {
818                 foreach (['as:to' => Tag::TO, 'as:cc' => Tag::CC, 'as:bto' => Tag::BTO, 'as:bcc' => Tag::BCC] as $element => $type) {
819                         if (!empty($receivers[$element])) {
820                                 foreach ($receivers[$element] as $receiver) {
821                                         if ($receiver == ActivityPub::PUBLIC_COLLECTION) {
822                                                 $name = Receiver::PUBLIC_COLLECTION;
823                                         } else {
824                                                 $name = trim(parse_url($receiver, PHP_URL_PATH), '/');
825                                         }
826                                         Tag::store($uriid, $type, $name, $receiver);
827                                 }
828                         }
829                 }
830         }
831
832         /**
833          * Creates an mail post
834          *
835          * @param array $activity Activity data
836          * @param array $item     item array
837          * @return int|bool New mail table row id or false on error
838          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
839          */
840         private static function postMail($activity, $item)
841         {
842                 if (($item['gravity'] != GRAVITY_PARENT) && !DBA::exists('mail', ['uri' => $item['thr-parent'], 'uid' => $item['uid']])) {
843                         Logger::info('Parent not found, mail will be discarded.', ['uid' => $item['uid'], 'uri' => $item['thr-parent']]);
844                         return false;
845                 }
846
847                 Logger::info('Direct Message', $item);
848
849                 $msg = [];
850                 $msg['uid'] = $item['uid'];
851
852                 $msg['contact-id'] = $item['contact-id'];
853
854                 $contact = Contact::getById($item['contact-id'], ['name', 'url', 'photo']);
855                 $msg['from-name'] = $contact['name'];
856                 $msg['from-url'] = $contact['url'];
857                 $msg['from-photo'] = $contact['photo'];
858
859                 $msg['uri'] = $item['uri'];
860                 $msg['created'] = $item['created'];
861
862                 $parent = DBA::selectFirst('mail', ['parent-uri', 'title'], ['uri' => $item['thr-parent']]);
863                 if (DBA::isResult($parent)) {
864                         $msg['parent-uri'] = $parent['parent-uri'];
865                         $msg['title'] = $parent['title'];
866                 } else {
867                         $msg['parent-uri'] = $item['thr-parent'];
868
869                         if (!empty($item['title'])) {
870                                 $msg['title'] = $item['title'];
871                         } elseif (!empty($item['content-warning'])) {
872                                 $msg['title'] = $item['content-warning'];
873                         } else {
874                                 // Trying to generate a title out of the body
875                                 $title = $item['body'];
876
877                                 while (preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#is', $title, $matches)) {
878                                         $title = $matches[3];
879                                 }
880
881                                 $title = trim(BBCode::toPlaintext($title));
882
883                                 if (strlen($title) > 20) {
884                                         $title = substr($title, 0, 20) . '...';
885                                 }
886
887                                 $msg['title'] = $title;
888                         }
889                 }
890                 $msg['body'] = $item['body'];
891
892                 return Mail::insert($msg);
893         }
894
895         /**
896          * Fetches missing posts
897          *
898          * @param string $url         message URL
899          * @param array  $child       activity array with the child of this message
900          * @param string $relay_actor Relay actor
901          * @param int    $completion  Completion mode, see Receiver::COMPLETION_*
902          * @return string fetched message URL
903          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
904          */
905         public static function fetchMissingActivity(string $url, array $child = [], string $relay_actor = '', int $completion = Receiver::COMPLETION_MANUAL)
906         {
907                 if (!empty($child['receiver'])) {
908                         $uid = ActivityPub\Receiver::getFirstUserFromReceivers($child['receiver']);
909                 } else {
910                         $uid = 0;
911                 }
912
913                 $object = ActivityPub::fetchContent($url, $uid);
914                 if (empty($object)) {
915                         Logger::notice('Activity was not fetchable, aborting.', ['url' => $url]);
916                         return '';
917                 }
918
919                 if (empty($object['id'])) {
920                         Logger::notice('Activity has got not id, aborting. ', ['url' => $url, 'object' => $object]);
921                         return '';
922                 }
923
924                 if (!empty($object['actor'])) {
925                         $object_actor = $object['actor'];
926                 } elseif (!empty($object['attributedTo'])) {
927                         $object_actor = $object['attributedTo'];
928                         if (is_array($object_actor)) {
929                                 $compacted = JsonLD::compact($object);
930                                 $object_actor = JsonLD::fetchElement($compacted, 'as:attributedTo', '@id');
931                         }
932                 } else {
933                         // Shouldn't happen
934                         $object_actor = '';
935                 }
936
937                 $signer = [$object_actor];
938
939                 if (!empty($child['author'])) {
940                         $actor = $child['author'];
941                         $signer[] = $actor;
942                 } else {
943                         $actor = $object_actor;
944                 }
945
946                 if (!empty($object['published'])) {
947                         $published = $object['published'];
948                 } elseif (!empty($child['published'])) {
949                         $published = $child['published'];
950                 } else {
951                         $published = DateTimeFormat::utcNow();
952                 }
953
954                 $activity = [];
955                 $activity['@context'] = $object['@context'] ?? ActivityPub::CONTEXT;
956                 unset($object['@context']);
957                 $activity['id'] = $object['id'];
958                 $activity['to'] = $object['to'] ?? [];
959                 $activity['cc'] = $object['cc'] ?? [];
960                 $activity['actor'] = $actor;
961                 $activity['object'] = $object;
962                 $activity['published'] = $published;
963                 $activity['type'] = 'Create';
964
965                 $ldactivity = JsonLD::compact($activity);
966
967                 if (!empty($relay_actor)) {
968                         $ldactivity['thread-completion'] = $ldactivity['from-relay'] = Contact::getIdForURL($relay_actor);
969                         $ldactivity['completion-mode']   = Receiver::COMPLETION_RELAY;
970                 } elseif (!empty($child['thread-completion'])) {
971                         $ldactivity['thread-completion'] = $child['thread-completion'];
972                         $ldactivity['completion-mode']   = $child['completion-mode'] ?? Receiver::COMPLETION_NONE;
973                 } else {
974                         $ldactivity['thread-completion'] = Contact::getIdForURL($actor);
975                         $ldactivity['completion-mode']   = $completion;
976                 }
977
978                 if (!empty($child['type'])) {
979                         $ldactivity['thread-children-type'] = $child['type'];
980                 }
981
982                 if (!empty($relay_actor) && !self::acceptIncomingMessage($ldactivity, $object['id'])) {
983                         return '';
984                 }
985
986                 ActivityPub\Receiver::processActivity($ldactivity, json_encode($activity), $uid, true, false, $signer);
987
988                 Logger::notice('Activity had been fetched and processed.', ['url' => $url, 'object' => $activity['id']]);
989
990                 return $activity['id'];
991         }
992
993         /**
994          * Test if incoming relay messages should be accepted
995          *
996          * @param array $activity activity array
997          * @param string $id      object ID
998          * @return boolean true if message is accepted
999          */
1000         private static function acceptIncomingMessage(array $activity, string $id)
1001         {
1002                 if (empty($activity['as:object'])) {
1003                         Logger::info('No object field in activity - accepted', ['id' => $id]);
1004                         return true;
1005                 }
1006
1007                 $replyto = JsonLD::fetchElement($activity['as:object'], 'as:inReplyTo', '@id');
1008                 $uriid = ItemURI::getIdByURI($replyto);
1009                 if (Post::exists(['uri-id' => $uriid])) {
1010                         Logger::info('Post is a reply to an existing post - accepted', ['id' => $id, 'uri-id' => $uriid, 'replyto' => $replyto]);
1011                         return true;
1012                 }
1013
1014                 $attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
1015                 $authorid = Contact::getIdForURL($attributed_to);
1016
1017                 $body = HTML::toBBCode(JsonLD::fetchElement($activity['as:object'], 'as:content', '@value'));
1018
1019                 $messageTags = [];
1020                 $tags = Receiver::processTags(JsonLD::fetchElementArray($activity['as:object'], 'as:tag') ?? []);
1021                 if (!empty($tags)) {
1022                         foreach ($tags as $tag) {
1023                                 if ($tag['type'] != 'Hashtag') {
1024                                         continue;
1025                                 }
1026                                 $messageTags[] = ltrim(mb_strtolower($tag['name']), '#');
1027                         }
1028                 }
1029
1030                 return Relay::isSolicitedPost($messageTags, $body, $authorid, $id, Protocol::ACTIVITYPUB);
1031         }
1032
1033         /**
1034          * perform a "follow" request
1035          *
1036          * @param array $activity
1037          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1038          * @throws \ImagickException
1039          */
1040         public static function followUser($activity)
1041         {
1042                 $uid = User::getIdForURL($activity['object_id']);
1043                 if (empty($uid)) {
1044                         return;
1045                 }
1046
1047                 $owner = User::getOwnerDataById($uid);
1048                 if (empty($owner)) {
1049                         return;
1050                 }
1051
1052                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1053                 if (!empty($cid)) {
1054                         self::switchContact($cid);
1055                         Contact::update(['hub-verify' => $activity['id'], 'protocol' => Protocol::ACTIVITYPUB], ['id' => $cid]);
1056                 }
1057
1058                 $item = ['author-id' => Contact::getIdForURL($activity['actor']),
1059                         'author-link' => $activity['actor']];
1060
1061                 // Ensure that the contact has got the right network type
1062                 self::switchContact($item['author-id']);
1063
1064                 $result = Contact::addRelationship($owner, [], $item, false, $activity['content'] ?? '');
1065                 if ($result === true) {
1066                         ActivityPub\Transmitter::sendContactAccept($item['author-link'], $activity['id'], $owner['uid']);
1067                 }
1068
1069                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1070                 if (empty($cid)) {
1071                         return;
1072                 }
1073
1074                 if (empty($contact)) {
1075                         Contact::update(['hub-verify' => $activity['id'], 'protocol' => Protocol::ACTIVITYPUB], ['id' => $cid]);
1076                 }
1077
1078                 Logger::notice('Follow user ' . $uid . ' from contact ' . $cid . ' with id ' . $activity['id']);
1079         }
1080
1081         /**
1082          * Update the given profile
1083          *
1084          * @param array $activity
1085          * @throws \Exception
1086          */
1087         public static function updatePerson($activity)
1088         {
1089                 if (empty($activity['object_id'])) {
1090                         return;
1091                 }
1092
1093                 Logger::info('Updating profile', ['object' => $activity['object_id']]);
1094                 Contact::updateFromProbeByURL($activity['object_id']);
1095         }
1096
1097         /**
1098          * Delete the given profile
1099          *
1100          * @param array $activity
1101          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1102          */
1103         public static function deletePerson($activity)
1104         {
1105                 if (empty($activity['object_id']) || empty($activity['actor'])) {
1106                         Logger::info('Empty object id or actor.');
1107                         return;
1108                 }
1109
1110                 if ($activity['object_id'] != $activity['actor']) {
1111                         Logger::info('Object id does not match actor.');
1112                         return;
1113                 }
1114
1115                 $contacts = DBA::select('contact', ['id'], ['nurl' => Strings::normaliseLink($activity['object_id'])]);
1116                 while ($contact = DBA::fetch($contacts)) {
1117                         Contact::remove($contact['id']);
1118                 }
1119                 DBA::close($contacts);
1120
1121                 Logger::info('Deleted contact', ['object' => $activity['object_id']]);
1122         }
1123
1124         /**
1125          * Accept a follow request
1126          *
1127          * @param array $activity
1128          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1129          * @throws \ImagickException
1130          */
1131         public static function acceptFollowUser($activity)
1132         {
1133                 $uid = User::getIdForURL($activity['object_actor']);
1134                 if (empty($uid)) {
1135                         return;
1136                 }
1137
1138                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1139                 if (empty($cid)) {
1140                         Logger::info('No contact found', ['actor' => $activity['actor']]);
1141                         return;
1142                 }
1143
1144                 self::switchContact($cid);
1145
1146                 $fields = ['pending' => false];
1147
1148                 $contact = DBA::selectFirst('contact', ['rel'], ['id' => $cid]);
1149                 if ($contact['rel'] == Contact::FOLLOWER) {
1150                         $fields['rel'] = Contact::FRIEND;
1151                 }
1152
1153                 $condition = ['id' => $cid];
1154                 Contact::update($fields, $condition);
1155                 Logger::info('Accept contact request', ['contact' => $cid, 'user' => $uid]);
1156         }
1157
1158         /**
1159          * Reject a follow request
1160          *
1161          * @param array $activity
1162          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1163          * @throws \ImagickException
1164          */
1165         public static function rejectFollowUser($activity)
1166         {
1167                 $uid = User::getIdForURL($activity['object_actor']);
1168                 if (empty($uid)) {
1169                         return;
1170                 }
1171
1172                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1173                 if (empty($cid)) {
1174                         Logger::info('No contact found', ['actor' => $activity['actor']]);
1175                         return;
1176                 }
1177
1178                 self::switchContact($cid);
1179
1180                 $contact = Contact::getById($cid, ['rel']);
1181                 if ($contact['rel'] == Contact::SHARING) {
1182                         Contact::remove($cid);
1183                         Logger::info('Rejected contact request - contact removed', ['contact' => $cid, 'user' => $uid]);
1184                 } elseif ($contact['rel'] == Contact::FRIEND) {
1185                         Contact::update(['rel' => Contact::FOLLOWER], ['id' => $cid]);
1186                 } else {
1187                         Logger::info('Rejected contact request', ['contact' => $cid, 'user' => $uid]);
1188                 }
1189         }
1190
1191         /**
1192          * Undo activity like "like" or "dislike"
1193          *
1194          * @param array $activity
1195          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1196          * @throws \ImagickException
1197          */
1198         public static function undoActivity($activity)
1199         {
1200                 if (empty($activity['object_id'])) {
1201                         return;
1202                 }
1203
1204                 if (empty($activity['object_actor'])) {
1205                         return;
1206                 }
1207
1208                 $author_id = Contact::getIdForURL($activity['object_actor']);
1209                 if (empty($author_id)) {
1210                         return;
1211                 }
1212
1213                 Item::markForDeletion(['uri' => $activity['object_id'], 'author-id' => $author_id, 'gravity' => GRAVITY_ACTIVITY]);
1214         }
1215
1216         /**
1217          * Activity to remove a follower
1218          *
1219          * @param array $activity
1220          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1221          * @throws \ImagickException
1222          */
1223         public static function undoFollowUser($activity)
1224         {
1225                 $uid = User::getIdForURL($activity['object_object']);
1226                 if (empty($uid)) {
1227                         return;
1228                 }
1229
1230                 $owner = User::getOwnerDataById($uid);
1231                 if (empty($owner)) {
1232                         return;
1233                 }
1234
1235                 $cid = Contact::getIdForURL($activity['actor'], $uid);
1236                 if (empty($cid)) {
1237                         Logger::info('No contact found', ['actor' => $activity['actor']]);
1238                         return;
1239                 }
1240
1241                 self::switchContact($cid);
1242
1243                 $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
1244                 if (!DBA::isResult($contact)) {
1245                         return;
1246                 }
1247
1248                 Contact::removeFollower($contact);
1249                 Logger::info('Undo following request', ['contact' => $cid, 'user' => $uid]);
1250         }
1251
1252         /**
1253          * Switches a contact to AP if needed
1254          *
1255          * @param integer $cid Contact ID
1256          * @throws \Exception
1257          */
1258         private static function switchContact($cid)
1259         {
1260                 $contact = DBA::selectFirst('contact', ['network', 'url'], ['id' => $cid]);
1261                 if (!DBA::isResult($contact) || in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN]) || Contact::isLocal($contact['url'])) {
1262                         return;
1263                 }
1264
1265                 Logger::info('Change existing contact', ['cid' => $cid, 'previous' => $contact['network']]);
1266                 Contact::updateFromProbe($cid);
1267         }
1268
1269         /**
1270          * Collects implicit mentions like:
1271          * - the author of the parent item
1272          * - all the mentioned conversants in the parent item
1273          *
1274          * @param array $parent Item array with at least ['id', 'author-link', 'alias']
1275          * @return array
1276          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1277          */
1278         private static function getImplicitMentionList(array $parent)
1279         {
1280                 $parent_terms = Tag::getByURIId($parent['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
1281
1282                 $parent_author = Contact::getByURL($parent['author-link'], false, ['url', 'nurl', 'alias']);
1283
1284                 $implicit_mentions = [];
1285                 if (empty($parent_author['url'])) {
1286                         Logger::notice('Author public contact unknown.', ['author-link' => $parent['author-link'], 'parent-id' => $parent['id']]);
1287                 } else {
1288                         $implicit_mentions[] = $parent_author['url'];
1289                         $implicit_mentions[] = $parent_author['nurl'];
1290                         $implicit_mentions[] = $parent_author['alias'];
1291                 }
1292
1293                 if (!empty($parent['alias'])) {
1294                         $implicit_mentions[] = $parent['alias'];
1295                 }
1296
1297                 foreach ($parent_terms as $term) {
1298                         $contact = Contact::getByURL($term['url'], false, ['url', 'nurl', 'alias']);
1299                         if (!empty($contact['url'])) {
1300                                 $implicit_mentions[] = $contact['url'];
1301                                 $implicit_mentions[] = $contact['nurl'];
1302                                 $implicit_mentions[] = $contact['alias'];
1303                         }
1304                 }
1305
1306                 return $implicit_mentions;
1307         }
1308
1309         /**
1310          * Strips from the body prepended implicit mentions
1311          *
1312          * @param string $body
1313          * @param array $parent
1314          * @return string
1315          */
1316         private static function removeImplicitMentionsFromBody(string $body, array $parent)
1317         {
1318                 if (DI::config()->get('system', 'disable_implicit_mentions')) {
1319                         return $body;
1320                 }
1321
1322                 $potential_mentions = self::getImplicitMentionList($parent);
1323
1324                 $kept_mentions = [];
1325
1326                 // Extract one prepended mention at a time from the body
1327                 while(preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#is', $body, $matches)) {
1328                         if (!in_array($matches[2], $potential_mentions)) {
1329                                 $kept_mentions[] = $matches[1];
1330                         }
1331
1332                         $body = $matches[3];
1333                 }
1334
1335                 // Re-appending the kept mentions to the body after extraction
1336                 $kept_mentions[] = $body;
1337
1338                 return implode('', $kept_mentions);
1339         }
1340
1341         /**
1342          * Adds links to string mentions
1343          *
1344          * @param string $body
1345          * @param array  $tags
1346          * @return string
1347          */
1348         protected static function addMentionLinks(string $body, array $tags): string
1349         {
1350                 // This prevents links to be added again to Pleroma-style mention links
1351                 $body = self::normalizeMentionLinks($body);
1352
1353                 $body = BBCode::performWithEscapedTags($body, ['url'], function ($body) use ($tags) {
1354                         foreach ($tags as $tag) {
1355                                 if (empty($tag['name']) || empty($tag['type']) || empty($tag['href']) || !in_array($tag['type'], ['Mention', 'Hashtag'])) {
1356                                         continue;
1357                                 }
1358
1359                                 $hash = substr($tag['name'], 0, 1);
1360                                 $name = substr($tag['name'], 1);
1361                                 if (!in_array($hash, Tag::TAG_CHARACTER)) {
1362                                         $hash = '';
1363                                         $name = $tag['name'];
1364                                 }
1365
1366                                 $body = str_replace($tag['name'], $hash . '[url=' . $tag['href'] . ']' . $name . '[/url]', $body);
1367                         }
1368
1369                         return $body;
1370                 });
1371
1372                 return $body;
1373         }
1374 }