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