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