]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Processor.php
We don't need to pass the protocol that way
[friendica.git] / src / Protocol / ActivityPub / Processor.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\Core\Logger;
27 use Friendica\Core\Protocol;
28 use Friendica\Database\DBA;
29 use Friendica\DI;
30 use Friendica\Model\APContact;
31 use Friendica\Model\Contact;
32 use Friendica\Model\Conversation;
33 use Friendica\Model\Event;
34 use Friendica\Model\Item;
35 use Friendica\Model\Mail;
36 use Friendica\Model\Term;
37 use Friendica\Model\User;
38 use Friendica\Protocol\Activity;
39 use Friendica\Protocol\ActivityPub;
40 use Friendica\Util\DateTimeFormat;
41 use Friendica\Util\JsonLD;
42 use Friendica\Util\Strings;
43
44 /**
45  * ActivityPub Processor Protocol class
46  */
47 class Processor
48 {
49         /**
50          * Converts mentions from Pleroma into the Friendica format
51          *
52          * @param string $body
53          *
54          * @return string converted body
55          */
56         private static function convertMentions($body)
57         {
58                 $URLSearchString = "^\[\]";
59                 $body = preg_replace("/\[url\=([$URLSearchString]*)\]([#@!])(.*?)\[\/url\]/ism", '$2[url=$1]$3[/url]', $body);
60
61                 return $body;
62         }
63
64         /**
65          * Replaces emojis in the body
66          *
67          * @param array $emojis
68          * @param string $body
69          *
70          * @return string with replaced emojis
71          */
72         private static function replaceEmojis($body, array $emojis)
73         {
74                 foreach ($emojis as $emoji) {
75                         $replace = '[class=emoji mastodon][img=' . $emoji['href'] . ']' . $emoji['name'] . '[/img][/class]';
76                         $body = str_replace($emoji['name'], $replace, $body);
77                 }
78                 return $body;
79         }
80
81         /**
82          * Constructs a string with tags for a given tag array
83          *
84          * @param array   $tags
85          * @param boolean $sensitive
86          * @return string with tags
87          */
88         private static function constructTagString(array $tags = null, $sensitive = false)
89         {
90                 if (empty($tags)) {
91                         return '';
92                 }
93
94                 $tag_text = '';
95                 foreach ($tags as $tag) {
96                         if (in_array($tag['type'] ?? '', ['Mention', 'Hashtag'])) {
97                                 if (!empty($tag_text)) {
98                                         $tag_text .= ',';
99                                 }
100
101                                 $tag_text .= substr($tag['name'], 0, 1) . '[url=' . $tag['href'] . ']' . substr($tag['name'], 1) . '[/url]';
102                         }
103                 }
104
105                 /// @todo add nsfw for $sensitive
106
107                 return $tag_text;
108         }
109
110         /**
111          * Add attachment data to the item array
112          *
113          * @param array   $activity
114          * @param array   $item
115          *
116          * @return array array
117          */
118         private static function constructAttachList($activity, $item)
119         {
120                 if (empty($activity['attachments'])) {
121                         return $item;
122                 }
123
124                 foreach ($activity['attachments'] as $attach) {
125                         $filetype = strtolower(substr($attach['mediaType'], 0, strpos($attach['mediaType'], '/')));
126                         if ($filetype == 'image') {
127                                 if (!empty($activity['source']) && strpos($activity['source'], $attach['url'])) {
128                                         continue;
129                                 }
130
131                                 if (empty($attach['name'])) {
132                                         $item['body'] .= "\n[img]" . $attach['url'] . '[/img]';
133                                 } else {
134                                         $item['body'] .= "\n[img=" . $attach['url'] . ']' . $attach['name'] . '[/img]';
135                                 }
136                         } else {
137                                 if (!empty($item["attach"])) {
138                                         $item["attach"] .= ',';
139                                 } else {
140                                         $item["attach"] = '';
141                                 }
142                                 if (!isset($attach['length'])) {
143                                         $attach['length'] = "0";
144                                 }
145                                 $item["attach"] .= '[attach]href="'.$attach['url'].'" length="'.$attach['length'].'" type="'.$attach['mediaType'].'" title="'.($attach['name'] ?? '') .'"[/attach]';
146                         }
147                 }
148
149                 return $item;
150         }
151
152         /**
153          * Updates a message
154          *
155          * @param array $activity Activity array
156          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
157          */
158         public static function updateItem($activity)
159         {
160                 $item = Item::selectFirst(['uri', 'thr-parent', 'gravity'], ['uri' => $activity['id']]);
161                 if (!DBA::isResult($item)) {
162                         Logger::warning('Unknown item', ['uri' => $activity['id']]);
163                         return;
164                 }
165
166                 $item['changed'] = DateTimeFormat::utcNow();
167                 $item['edited'] = DateTimeFormat::utc($activity['updated']);
168
169                 $item = self::processContent($activity, $item);
170                 if (empty($item)) {
171                         return;
172                 }
173
174                 Item::update($item, ['uri' => $activity['id']]);
175         }
176
177         /**
178          * Prepares data for a message
179          *
180          * @param array $activity Activity array
181          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
182          * @throws \ImagickException
183          */
184         public static function createItem($activity)
185         {
186                 $item = [];
187                 $item['verb'] = Activity::POST;
188                 $item['thr-parent'] = $activity['reply-to-id'];
189
190                 if ($activity['reply-to-id'] == $activity['id']) {
191                         $item['gravity'] = GRAVITY_PARENT;
192                         $item['object-type'] = Activity\ObjectType::NOTE;
193                 } else {
194                         $item['gravity'] = GRAVITY_COMMENT;
195                         $item['object-type'] = Activity\ObjectType::COMMENT;
196
197                         // Ensure that the comment reaches all receivers of the referring post
198                         $activity['receiver'] = self::addReceivers($activity);
199                 }
200
201                 if (empty($activity['directmessage']) && ($activity['id'] != $activity['reply-to-id']) && !Item::exists(['uri' => $activity['reply-to-id']])) {
202                         Logger::notice('Parent not found. Try to refetch it.', ['parent' => $activity['reply-to-id']]);
203                         self::fetchMissingActivity($activity['reply-to-id'], $activity);
204                 }
205
206                 $item['diaspora_signed_text'] = $activity['diaspora:comment'] ?? '';
207
208                 self::postItem($activity, $item);
209         }
210
211         /**
212          * Delete items
213          *
214          * @param array $activity
215          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
216          * @throws \ImagickException
217          */
218         public static function deleteItem($activity)
219         {
220                 $owner = Contact::getIdForURL($activity['actor']);
221
222                 Logger::log('Deleting item ' . $activity['object_id'] . ' from ' . $owner, Logger::DEBUG);
223                 Item::delete(['uri' => $activity['object_id'], 'owner-id' => $owner]);
224         }
225
226         /**
227          * Prepare the item array for an activity
228          *
229          * @param array $activity Activity array
230          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
231          * @throws \ImagickException
232          */
233         public static function addTag($activity)
234         {
235                 if (empty($activity['object_content']) || empty($activity['object_id'])) {
236                         return;
237                 }
238
239                 foreach ($activity['receiver'] as $receiver) {
240                         $item = Item::selectFirst(['id', 'tag', 'origin', 'author-link'], ['uri' => $activity['target_id'], 'uid' => $receiver]);
241                         if (!DBA::isResult($item)) {
242                                 // We don't fetch missing content for this purpose
243                                 continue;
244                         }
245
246                         if (($item['author-link'] != $activity['actor']) && !$item['origin']) {
247                                 Logger::info('Not origin, not from the author, skipping update', ['id' => $item['id'], 'author' => $item['author-link'], 'actor' => $activity['actor']]);
248                                 continue;
249                         }
250
251                         // To-Do:
252                         // - Check if "blocktag" is set
253                         // - Check if actor is a contact
254
255                         if (!stristr($item['tag'], trim($activity['object_content']))) {
256                                 $tag = $item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . $activity['object_id'] . ']'. $activity['object_content'] . '[/url]';
257                                 Item::update(['tag' => $tag], ['id' => $item['id']]);
258                                 Logger::info('Tagged item', ['id' => $item['id'], 'tag' => $activity['object_content'], 'uri' => $activity['target_id'], 'actor' => $activity['actor']]);
259                         }
260                 }
261         }
262
263         /**
264          * Add users to the receiver list of the given public activity.
265          * This is used to ensure that the activity will be stored in every thread.
266          *
267          * @param array $activity Activity array
268          * @return array Modified receiver list
269          */
270         private static function addReceivers(array $activity)
271         {
272                 if (!in_array(0, $activity['receiver'])) {
273                         // Private activities will not be modified
274                         return $activity['receiver'];
275                 }
276
277                 // Add all owners of the referring item to the receivers
278                 $original = $receivers = $activity['receiver'];
279                 $items = Item::select(['uid'], ['uri' => $activity['object_id']]);
280                 while ($item = DBA::fetch($items)) {
281                         $receivers['uid:' . $item['uid']] = $item['uid'];
282                 }
283                 DBA::close($items);
284
285                 if (count($original) != count($receivers)) {
286                         Logger::info('Improved data', ['id' => $activity['id'], 'object' => $activity['object_id'], 'original' => $original, 'improved' => $receivers]);
287                 }
288
289                 return $receivers;
290         }
291
292         /**
293          * Prepare the item array for an activity
294          *
295          * @param array  $activity Activity array
296          * @param string $verb     Activity verb
297          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
298          * @throws \ImagickException
299          */
300         public static function createActivity($activity, $verb)
301         {
302                 $item = [];
303                 $item['verb'] = $verb;
304                 $item['thr-parent'] = $activity['object_id'];
305                 $item['gravity'] = GRAVITY_ACTIVITY;
306                 $item['object-type'] = Activity\ObjectType::NOTE;
307
308                 $item['diaspora_signed_text'] = $activity['diaspora:like'] ?? '';
309
310                 $activity['receiver'] = self::addReceivers($activity);
311
312                 self::postItem($activity, $item);
313         }
314
315         /**
316          * Create an event
317          *
318          * @param array $activity Activity array
319          * @param array $item
320          * @throws \Exception
321          */
322         public static function createEvent($activity, $item)
323         {
324                 $event['summary']  = HTML::toBBCode($activity['name']);
325                 $event['desc']     = HTML::toBBCode($activity['content']);
326                 $event['start']    = $activity['start-time'];
327                 $event['finish']   = $activity['end-time'];
328                 $event['nofinish'] = empty($event['finish']);
329                 $event['location'] = $activity['location'];
330                 $event['adjust']   = true;
331                 $event['cid']      = $item['contact-id'];
332                 $event['uid']      = $item['uid'];
333                 $event['uri']      = $item['uri'];
334                 $event['edited']   = $item['edited'];
335                 $event['private']  = $item['private'];
336                 $event['guid']     = $item['guid'];
337                 $event['plink']    = $item['plink'];
338
339                 $condition = ['uri' => $item['uri'], 'uid' => $item['uid']];
340                 $ev = DBA::selectFirst('event', ['id'], $condition);
341                 if (DBA::isResult($ev)) {
342                         $event['id'] = $ev['id'];
343                 }
344
345                 $event_id = Event::store($event);
346                 Logger::log('Event '.$event_id.' was stored', Logger::DEBUG);
347         }
348
349         /**
350          * Process the content
351          *
352          * @param array $activity Activity array
353          * @param array $item
354          * @return array|bool Returns the item array or false if there was an unexpected occurrence
355          * @throws \Exception
356          */
357         private static function processContent($activity, $item)
358         {
359                 $item['title'] = HTML::toBBCode($activity['name']);
360
361                 if (!empty($activity['source'])) {
362                         $item['body'] = $activity['source'];
363                 } else {
364                         $content = HTML::toBBCode($activity['content']);
365
366                         if (!empty($activity['emojis'])) {
367                                 $content = self::replaceEmojis($content, $activity['emojis']);
368                         }
369
370                         $content = self::convertMentions($content);
371
372                         if (empty($activity['directmessage']) && ($item['thr-parent'] != $item['uri']) && ($item['gravity'] == GRAVITY_COMMENT)) {
373                                 $item_private = !in_array(0, $activity['item_receiver']);
374                                 $parent = Item::selectFirst(['id', 'private', 'author-link', 'alias'], ['uri' => $item['thr-parent']]);
375                                 if (!DBA::isResult($parent)) {
376                                         Logger::warning('Unknown parent item.', ['uri' => $item['thr-parent']]);
377                                         return false;
378                                 }
379                                 if ($item_private && !$parent['private']) {
380                                         Logger::warning('Item is private but the parent is not. Dropping.', ['item-uri' => $item['uri'], 'thr-parent' => $item['thr-parent']]);
381                                         return false;
382                                 }
383
384                                 $potential_implicit_mentions = self::getImplicitMentionList($parent);
385                                 $content = self::removeImplicitMentionsFromBody($content, $potential_implicit_mentions);
386                                 $activity['tags'] = self::convertImplicitMentionsInTags($activity['tags'], $potential_implicit_mentions);
387                         }
388                         $item['content-warning'] = HTML::toBBCode($activity['summary']);
389                         $item['body'] = $content;
390
391                         if (($activity['object_type'] == 'as:Video') && !empty($activity['alternate-url'])) {
392                                 $item['body'] .= "\n[video]" . $activity['alternate-url'] . '[/video]';
393                         }
394                 }
395
396                 $item['tag'] = self::constructTagString($activity['tags'], $activity['sensitive']);
397
398                 $item['location'] = $activity['location'];
399
400                 if (!empty($item['latitude']) && !empty($item['longitude'])) {
401                         $item['coord'] = $item['latitude'] . ' ' . $item['longitude'];
402                 }
403
404                 $item['app'] = $activity['generator'];
405
406                 return $item;
407         }
408
409         /**
410          * Generate a GUID out of an URL
411          *
412          * @param string $url message URL
413          * @return string with GUID
414          */
415         private static function getGUIDByURL(string $url)
416         {
417                 $parsed = parse_url($url);
418
419                 $host_hash = hash('crc32', $parsed['host']);
420
421                 unset($parsed["scheme"]);
422                 unset($parsed["host"]);
423
424                 $path = implode("/", $parsed);
425
426                 return $host_hash . '-'. hash('fnv164', $path) . '-'. hash('joaat', $path);
427         }
428
429         /**
430          * Creates an item post
431          *
432          * @param array $activity Activity data
433          * @param array $item     item array
434          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
435          * @throws \ImagickException
436          */
437         private static function postItem($activity, $item)
438         {
439                 /// @todo What to do with $activity['context']?
440                 if (empty($activity['directmessage']) && ($item['gravity'] != GRAVITY_PARENT) && !Item::exists(['uri' => $item['thr-parent']])) {
441                         Logger::info('Parent not found, message will be discarded.', ['thr-parent' => $item['thr-parent']]);
442                         return;
443                 }
444
445                 $item['network'] = Protocol::ACTIVITYPUB;
446                 $item['private'] = !in_array(0, $activity['receiver']);
447                 $item['author-link'] = $activity['author'];
448                 $item['author-id'] = Contact::getIdForURL($activity['author'], 0, true);
449                 $item['owner-link'] = $activity['actor'];
450                 $item['owner-id'] = Contact::getIdForURL($activity['actor'], 0, true);
451
452                 if (!empty($activity['raw'])) {
453                         $item['source'] = $activity['raw'];
454                         $item['protocol'] = Conversation::PARCEL_ACTIVITYPUB;
455                         $item['conversation-href'] = $activity['context'] ?? '';
456                         $item['conversation-uri'] = $activity['conversation'] ?? '';
457                 }
458
459                 $isForum = false;
460
461                 if (!empty($activity['thread-completion'])) {
462                         // Store the original actor in the "causer" fields to enable the check for ignored or blocked contacts
463                         $item['causer-link'] = $item['owner-link'];
464                         $item['causer-id'] = $item['owner-id'];
465
466                         Logger::info('Ignoring actor because of thread completion.', ['actor' => $item['owner-link']]);
467                         $item['owner-link'] = $item['author-link'];
468                         $item['owner-id'] = $item['author-id'];
469                 } else {
470                         $actor = APContact::getByURL($item['owner-link'], false);
471                         $isForum = ($actor['type'] == 'Group');
472                 }
473
474                 $item['uri'] = $activity['id'];
475
476                 $item['created'] = DateTimeFormat::utc($activity['published']);
477                 $item['edited'] = DateTimeFormat::utc($activity['updated']);
478                 $item['guid'] = $activity['diaspora:guid'] ?: self::getGUIDByURL($item['uri']);
479
480                 $item = self::processContent($activity, $item);
481                 if (empty($item)) {
482                         return;
483                 }
484
485                 $item['plink'] = $activity['alternate-url'] ?? $item['uri'];
486
487                 $item = self::constructAttachList($activity, $item);
488
489                 $stored = false;
490
491                 foreach ($activity['receiver'] as $receiver) {
492                         $item['uid'] = $receiver;
493
494                         if ($isForum) {
495                                 $item['contact-id'] = Contact::getIdForURL($activity['actor'], $receiver, true);
496                         } else {
497                                 $item['contact-id'] = Contact::getIdForURL($activity['author'], $receiver, true);
498                         }
499
500                         if (($receiver != 0) && empty($item['contact-id'])) {
501                                 $item['contact-id'] = Contact::getIdForURL($activity['author'], 0, true);
502                         }
503
504                         if (!empty($activity['directmessage'])) {
505                                 self::postMail($activity, $item);
506                                 continue;
507                         }
508
509                         if (DI::pConfig()->get($receiver, 'system', 'accept_only_sharer', false) && ($receiver != 0) && ($item['gravity'] == GRAVITY_PARENT)) {
510                                 $skip = !Contact::isSharingByURL($activity['author'], $receiver);
511
512                                 if ($skip && (($activity['type'] == 'as:Announce') || $isForum)) {
513                                         $skip = !Contact::isSharingByURL($activity['actor'], $receiver);
514                                 }
515
516                                 if ($skip) {
517                                         Logger::info('Skipping post', ['uid' => $receiver, 'url' => $item['uri']]);
518                                         continue;
519                                 }
520
521                                 Logger::info('Accepting post', ['uid' => $receiver, 'url' => $item['uri']]);
522                         }
523
524                         if ($activity['object_type'] == 'as:Event') {
525                                 self::createEvent($activity, $item);
526                         }
527
528                         $item_id = Item::insert($item);
529                         if ($item_id) {
530                                 Logger::info('Item insertion successful', ['user' => $item['uid'], 'item_id' => $item_id]);
531                         } else {
532                                 Logger::notice('Item insertion aborted', ['user' => $item['uid']]);
533                         }
534
535                         if ($item['uid'] == 0) {
536                                 $stored = $item_id;
537                         }
538                 }
539
540                 // Store send a follow request for every reshare - but only when the item had been stored
541                 if ($stored && !$item['private'] && ($item['gravity'] == GRAVITY_PARENT) && ($item['author-link'] != $item['owner-link'])) {
542                         $author = APContact::getByURL($item['owner-link'], false);
543                         // We send automatic follow requests for reshared messages. (We don't need though for forum posts)
544                         if ($author['type'] != 'Group') {
545                                 Logger::log('Send follow request for ' . $item['uri'] . ' (' . $stored . ') to ' . $item['author-link'], Logger::DEBUG);
546                                 ActivityPub\Transmitter::sendFollowObject($item['uri'], $item['author-link']);
547                         }
548                 }
549         }
550
551         /**
552          * Creates an mail post
553          *
554          * @param array $activity Activity data
555          * @param array $item     item array
556          * @return int|bool New mail table row id or false on error
557          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
558          */
559         private static function postMail($activity, $item)
560         {
561                 if (($item['gravity'] != GRAVITY_PARENT) && !DBA::exists('mail', ['uri' => $item['thr-parent'], 'uid' => $item['uid']])) {
562                         Logger::info('Parent not found, mail will be discarded.', ['uid' => $item['uid'], 'uri' => $item['thr-parent']]);
563                         return false;
564                 }
565
566                 Logger::info('Direct Message', $item);
567
568                 $msg = [];
569                 $msg['uid'] = $item['uid'];
570
571                 $msg['contact-id'] = $item['contact-id'];
572
573                 $contact = Contact::getById($item['contact-id'], ['name', 'url', 'photo']);
574                 $msg['from-name'] = $contact['name'];
575                 $msg['from-url'] = $contact['url'];
576                 $msg['from-photo'] = $contact['photo'];
577
578                 $msg['uri'] = $item['uri'];
579                 $msg['created'] = $item['created'];
580
581                 $parent = DBA::selectFirst('mail', ['parent-uri', 'title'], ['uri' => $item['thr-parent']]);
582                 if (DBA::isResult($parent)) {
583                         $msg['parent-uri'] = $parent['parent-uri'];
584                         $msg['title'] = $parent['title'];
585                 } else {
586                         $msg['parent-uri'] = $item['thr-parent'];
587
588                         if (!empty($item['title'])) {
589                                 $msg['title'] = $item['title'];
590                         } elseif (!empty($item['content-warning'])) {
591                                 $msg['title'] = $item['content-warning'];
592                         } else {
593                                 // Trying to generate a title out of the body
594                                 $title = $item['body'];
595
596                                 while (preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#is', $title, $matches)) {
597                                         $title = $matches[3];
598                                 }
599
600                                 $title = trim(HTML::toPlaintext(BBCode::convert($title, false, 2, true), 0));
601
602                                 if (strlen($title) > 20) {
603                                         $title = substr($title, 0, 20) . '...';
604                                 }
605
606                                 $msg['title'] = $title;
607                         }
608                 }
609                 $msg['body'] = $item['body'];
610
611                 return Mail::insert($msg);
612         }
613
614         /**
615          * Fetches missing posts
616          *
617          * @param string $url message URL
618          * @param array $child activity array with the child of this message
619          * @return string fetched message URL
620          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
621          */
622         public static function fetchMissingActivity($url, $child = [])
623         {
624                 if (!empty($child['receiver'])) {
625                         $uid = ActivityPub\Receiver::getFirstUserFromReceivers($child['receiver']);
626                 } else {
627                         $uid = 0;
628                 }
629
630                 $object = ActivityPub::fetchContent($url, $uid);
631                 if (empty($object)) {
632                         Logger::log('Activity ' . $url . ' was not fetchable, aborting.');
633                         return '';
634                 }
635
636                 if (empty($object['id'])) {
637                         Logger::log('Activity ' . $url . ' has got not id, aborting. ' . json_encode($object));
638                         return '';
639                 }
640
641                 if (!empty($child['author'])) {
642                         $actor = $child['author'];
643                 } elseif (!empty($object['actor'])) {
644                         $actor = $object['actor'];
645                 } elseif (!empty($object['attributedTo'])) {
646                         $actor = $object['attributedTo'];
647                 } else {
648                         // Shouldn't happen
649                         $actor = '';
650                 }
651
652                 if (!empty($object['published'])) {
653                         $published = $object['published'];
654                 } elseif (!empty($child['published'])) {
655                         $published = $child['published'];
656                 } else {
657                         $published = DateTimeFormat::utcNow();
658                 }
659
660                 $activity = [];
661                 $activity['@context'] = $object['@context'];
662                 unset($object['@context']);
663                 $activity['id'] = $object['id'];
664                 $activity['to'] = $object['to'] ?? [];
665                 $activity['cc'] = $object['cc'] ?? [];
666                 $activity['actor'] = $actor;
667                 $activity['object'] = $object;
668                 $activity['published'] = $published;
669                 $activity['type'] = 'Create';
670
671                 $ldactivity = JsonLD::compact($activity);
672
673                 $ldactivity['thread-completion'] = true;
674
675                 ActivityPub\Receiver::processActivity($ldactivity);
676                 Logger::notice('Activity had been fetched and processed.', ['url' => $url, 'object' => $activity['id']]);
677
678                 return $activity['id'];
679         }
680
681         /**
682          * perform a "follow" request
683          *
684          * @param array $activity
685          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
686          * @throws \ImagickException
687          */
688         public static function followUser($activity)
689         {
690                 $uid = User::getIdForURL($activity['object_id']);
691                 if (empty($uid)) {
692                         return;
693                 }
694
695                 $owner = User::getOwnerDataById($uid);
696
697                 $cid = Contact::getIdForURL($activity['actor'], $uid);
698                 if (!empty($cid)) {
699                         self::switchContact($cid);
700                         DBA::update('contact', ['hub-verify' => $activity['id'], 'protocol' => Protocol::ACTIVITYPUB], ['id' => $cid]);
701                         $contact = DBA::selectFirst('contact', [], ['id' => $cid, 'network' => Protocol::NATIVE_SUPPORT]);
702                 } else {
703                         $contact = [];
704                 }
705
706                 $item = ['author-id' => Contact::getIdForURL($activity['actor']),
707                         'author-link' => $activity['actor']];
708
709                 $note = Strings::escapeTags(trim($activity['content'] ?? ''));
710
711                 // Ensure that the contact has got the right network type
712                 self::switchContact($item['author-id']);
713
714                 $result = Contact::addRelationship($owner, $contact, $item, false, $note);
715                 if ($result === true) {
716                         ActivityPub\Transmitter::sendContactAccept($item['author-link'], $item['author-id'], $owner['uid']);
717                 }
718
719                 $cid = Contact::getIdForURL($activity['actor'], $uid);
720                 if (empty($cid)) {
721                         return;
722                 }
723
724                 if (empty($contact)) {
725                         DBA::update('contact', ['hub-verify' => $activity['id'], 'protocol' => Protocol::ACTIVITYPUB], ['id' => $cid]);
726                 }
727
728                 Logger::log('Follow user ' . $uid . ' from contact ' . $cid . ' with id ' . $activity['id']);
729         }
730
731         /**
732          * Update the given profile
733          *
734          * @param array $activity
735          * @throws \Exception
736          */
737         public static function updatePerson($activity)
738         {
739                 if (empty($activity['object_id'])) {
740                         return;
741                 }
742
743                 Logger::log('Updating profile for ' . $activity['object_id'], Logger::DEBUG);
744                 Contact::updateFromProbeByURL($activity['object_id'], true);
745         }
746
747         /**
748          * Delete the given profile
749          *
750          * @param array $activity
751          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
752          */
753         public static function deletePerson($activity)
754         {
755                 if (empty($activity['object_id']) || empty($activity['actor'])) {
756                         Logger::log('Empty object id or actor.', Logger::DEBUG);
757                         return;
758                 }
759
760                 if ($activity['object_id'] != $activity['actor']) {
761                         Logger::log('Object id does not match actor.', Logger::DEBUG);
762                         return;
763                 }
764
765                 $contacts = DBA::select('contact', ['id'], ['nurl' => Strings::normaliseLink($activity['object_id'])]);
766                 while ($contact = DBA::fetch($contacts)) {
767                         Contact::remove($contact['id']);
768                 }
769                 DBA::close($contacts);
770
771                 Logger::log('Deleted contact ' . $activity['object_id'], Logger::DEBUG);
772         }
773
774         /**
775          * Accept a follow request
776          *
777          * @param array $activity
778          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
779          * @throws \ImagickException
780          */
781         public static function acceptFollowUser($activity)
782         {
783                 $uid = User::getIdForURL($activity['object_actor']);
784                 if (empty($uid)) {
785                         return;
786                 }
787
788                 $cid = Contact::getIdForURL($activity['actor'], $uid);
789                 if (empty($cid)) {
790                         Logger::log('No contact found for ' . $activity['actor'], Logger::DEBUG);
791                         return;
792                 }
793
794                 self::switchContact($cid);
795
796                 $fields = ['pending' => false];
797
798                 $contact = DBA::selectFirst('contact', ['rel'], ['id' => $cid]);
799                 if ($contact['rel'] == Contact::FOLLOWER) {
800                         $fields['rel'] = Contact::FRIEND;
801                 }
802
803                 $condition = ['id' => $cid];
804                 DBA::update('contact', $fields, $condition);
805                 Logger::log('Accept contact request from contact ' . $cid . ' for user ' . $uid, Logger::DEBUG);
806         }
807
808         /**
809          * Reject a follow request
810          *
811          * @param array $activity
812          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
813          * @throws \ImagickException
814          */
815         public static function rejectFollowUser($activity)
816         {
817                 $uid = User::getIdForURL($activity['object_actor']);
818                 if (empty($uid)) {
819                         return;
820                 }
821
822                 $cid = Contact::getIdForURL($activity['actor'], $uid);
823                 if (empty($cid)) {
824                         Logger::log('No contact found for ' . $activity['actor'], Logger::DEBUG);
825                         return;
826                 }
827
828                 self::switchContact($cid);
829
830                 if (DBA::exists('contact', ['id' => $cid, 'rel' => Contact::SHARING])) {
831                         Contact::remove($cid);
832                         Logger::log('Rejected contact request from contact ' . $cid . ' for user ' . $uid . ' - contact had been removed.', Logger::DEBUG);
833                 } else {
834                         Logger::log('Rejected contact request from contact ' . $cid . ' for user ' . $uid . '.', Logger::DEBUG);
835                 }
836         }
837
838         /**
839          * Undo activity like "like" or "dislike"
840          *
841          * @param array $activity
842          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
843          * @throws \ImagickException
844          */
845         public static function undoActivity($activity)
846         {
847                 if (empty($activity['object_id'])) {
848                         return;
849                 }
850
851                 if (empty($activity['object_actor'])) {
852                         return;
853                 }
854
855                 $author_id = Contact::getIdForURL($activity['object_actor']);
856                 if (empty($author_id)) {
857                         return;
858                 }
859
860                 Item::delete(['uri' => $activity['object_id'], 'author-id' => $author_id, 'gravity' => GRAVITY_ACTIVITY]);
861         }
862
863         /**
864          * Activity to remove a follower
865          *
866          * @param array $activity
867          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
868          * @throws \ImagickException
869          */
870         public static function undoFollowUser($activity)
871         {
872                 $uid = User::getIdForURL($activity['object_object']);
873                 if (empty($uid)) {
874                         return;
875                 }
876
877                 $owner = User::getOwnerDataById($uid);
878
879                 $cid = Contact::getIdForURL($activity['actor'], $uid);
880                 if (empty($cid)) {
881                         Logger::log('No contact found for ' . $activity['actor'], Logger::DEBUG);
882                         return;
883                 }
884
885                 self::switchContact($cid);
886
887                 $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
888                 if (!DBA::isResult($contact)) {
889                         return;
890                 }
891
892                 Contact::removeFollower($owner, $contact);
893                 Logger::log('Undo following request from contact ' . $cid . ' for user ' . $uid, Logger::DEBUG);
894         }
895
896         /**
897          * Switches a contact to AP if needed
898          *
899          * @param integer $cid Contact ID
900          * @throws \Exception
901          */
902         private static function switchContact($cid)
903         {
904                 $contact = DBA::selectFirst('contact', ['network', 'url'], ['id' => $cid]);
905                 if (!DBA::isResult($contact) || in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN]) || Contact::isLocal($contact['url'])) {
906                         return;
907                 }
908
909                 Logger::info('Change existing contact', ['cid' => $cid, 'previous' => $contact['network']]);
910                 Contact::updateFromProbe($cid);
911         }
912
913         /**
914          * Collects implicit mentions like:
915          * - the author of the parent item
916          * - all the mentioned conversants in the parent item
917          *
918          * @param array $parent Item array with at least ['id', 'author-link', 'alias']
919          * @return array
920          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
921          */
922         private static function getImplicitMentionList(array $parent)
923         {
924                 if (DI::config()->get('system', 'disable_implicit_mentions')) {
925                         return [];
926                 }
927
928                 $parent_terms = Term::tagArrayFromItemId($parent['id'], [Term::MENTION, Term::IMPLICIT_MENTION]);
929
930                 $parent_author = Contact::getDetailsByURL($parent['author-link'], 0);
931
932                 $implicit_mentions = [];
933                 if (empty($parent_author)) {
934                         Logger::notice('Author public contact unknown.', ['author-link' => $parent['author-link'], 'item-id' => $parent['id']]);
935                 } else {
936                         $implicit_mentions[] = $parent_author['url'];
937                         $implicit_mentions[] = $parent_author['nurl'];
938                         $implicit_mentions[] = $parent_author['alias'];
939                 }
940
941                 if (!empty($parent['alias'])) {
942                         $implicit_mentions[] = $parent['alias'];
943                 }
944
945                 foreach ($parent_terms as $term) {
946                         $contact = Contact::getDetailsByURL($term['url'], 0);
947                         if (!empty($contact)) {
948                                 $implicit_mentions[] = $contact['url'];
949                                 $implicit_mentions[] = $contact['nurl'];
950                                 $implicit_mentions[] = $contact['alias'];
951                         }
952                 }
953
954                 return $implicit_mentions;
955         }
956
957         /**
958          * Strips from the body prepended implicit mentions
959          *
960          * @param string $body
961          * @param array $potential_mentions
962          * @return string
963          */
964         private static function removeImplicitMentionsFromBody($body, array $potential_mentions)
965         {
966                 if (DI::config()->get('system', 'disable_implicit_mentions')) {
967                         return $body;
968                 }
969
970                 $kept_mentions = [];
971
972                 // Extract one prepended mention at a time from the body
973                 while(preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#is', $body, $matches)) {
974                         if (!in_array($matches[2], $potential_mentions)) {
975                                 $kept_mentions[] = $matches[1];
976                         }
977
978                         $body = $matches[3];
979                 }
980
981                 // Re-appending the kept mentions to the body after extraction
982                 $kept_mentions[] = $body;
983
984                 return implode('', $kept_mentions);
985         }
986
987         private static function convertImplicitMentionsInTags($activity_tags, array $potential_mentions)
988         {
989                 if (DI::config()->get('system', 'disable_implicit_mentions')) {
990                         return $activity_tags;
991                 }
992
993                 foreach ($activity_tags as $index => $tag) {
994                         if (in_array($tag['href'], $potential_mentions)) {
995                                 $activity_tags[$index]['name'] = preg_replace(
996                                         '/' . preg_quote(Term::TAG_CHARACTER[Term::MENTION], '/') . '/',
997                                         Term::TAG_CHARACTER[Term::IMPLICIT_MENTION],
998                                         $activity_tags[$index]['name'],
999                                         1
1000                                 );
1001                         }
1002                 }
1003
1004                 return $activity_tags;
1005         }
1006 }