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