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