]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Receiver.php
Store "View" activity from Peertube
[friendica.git] / src / Protocol / ActivityPub / Receiver.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\Database\DBA;
26 use Friendica\Content\Text\HTML;
27 use Friendica\Content\Text\Markdown;
28 use Friendica\Core\Logger;
29 use Friendica\Core\Protocol;
30 use Friendica\Core\System;
31 use Friendica\DI;
32 use Friendica\Model\Contact;
33 use Friendica\Model\APContact;
34 use Friendica\Model\Item;
35 use Friendica\Model\Post;
36 use Friendica\Model\User;
37 use Friendica\Protocol\Activity;
38 use Friendica\Protocol\ActivityPub;
39 use Friendica\Util\HTTPSignature;
40 use Friendica\Util\JsonLD;
41 use Friendica\Util\LDSignature;
42 use Friendica\Util\Network;
43 use Friendica\Util\Strings;
44
45 /**
46  * ActivityPub Receiver Protocol class
47  *
48  * To-Do:
49  * @todo Undo Announce
50  *
51  * Check what this is meant to do:
52  * - Add
53  * - Block
54  * - Flag
55  * - Remove
56  * - Undo Block
57  */
58 class Receiver
59 {
60         const PUBLIC_COLLECTION = 'as:Public';
61         const ACCOUNT_TYPES = ['as:Person', 'as:Organization', 'as:Service', 'as:Group', 'as:Application'];
62         const CONTENT_TYPES = ['as:Note', 'as:Article', 'as:Video', 'as:Image', 'as:Event', 'as:Audio', 'as:Page', 'as:Question'];
63         const ACTIVITY_TYPES = ['as:Like', 'as:Dislike', 'as:Accept', 'as:Reject', 'as:TentativeAccept'];
64
65         const TARGET_UNKNOWN = 0;
66         const TARGET_TO = 1;
67         const TARGET_CC = 2;
68         const TARGET_BTO = 3;
69         const TARGET_BCC = 4;
70         const TARGET_FOLLOWER = 5;
71         const TARGET_ANSWER = 6;
72         const TARGET_GLOBAL = 7;
73
74         const COMPLETION_NONE    = 0;
75         const COMPLETION_ANNOUCE = 1;
76         const COMPLETION_RELAY   = 2;
77         const COMPLETION_MANUAL  = 3;
78         const COMPLETION_AUTO    = 4;
79
80         /**
81          * Checks incoming message from the inbox
82          *
83          * @param         $body
84          * @param         $header
85          * @param integer $uid User ID
86          * @throws \Exception
87          */
88         public static function processInbox($body, $header, $uid)
89         {
90                 $activity = json_decode($body, true);
91                 if (empty($activity)) {
92                         Logger::warning('Invalid body.');
93                         return;
94                 }
95
96                 $ldactivity = JsonLD::compact($activity);
97
98                 $actor = JsonLD::fetchElement($ldactivity, 'as:actor', '@id');
99
100                 $apcontact = APContact::getByURL($actor);
101                 if (empty($apcontact)) {
102                         Logger::notice('Unable to retrieve AP contact for actor - message is discarded', ['actor' => $actor]);
103                         return;
104                 } elseif ($apcontact['type'] == 'Application' && $apcontact['nick'] == 'relay') {
105                         self::processRelayPost($ldactivity, $actor);
106                         return;
107                 } else {
108                         APContact::unmarkForArchival($apcontact);
109                 }
110
111                 $http_signer = HTTPSignature::getSigner($body, $header);
112                 if ($http_signer === false) {
113                         Logger::warning('Invalid HTTP signature, message will be discarded.');
114                         return;
115                 } elseif (empty($http_signer)) {
116                         Logger::info('Signer is a tombstone. The message will be discarded, the signer account is deleted.');
117                         return;
118                 } else {
119                         Logger::info('Valid HTTP signature', ['signer' => $http_signer]);
120                 }
121
122                 $signer = [$http_signer];
123
124                 Logger::info('Message for user ' . $uid . ' is from actor ' . $actor);
125
126                 if (LDSignature::isSigned($activity)) {
127                         $ld_signer = LDSignature::getSigner($activity);
128                         if (empty($ld_signer)) {
129                                 Logger::info('Invalid JSON-LD signature from ' . $actor);
130                         } elseif ($ld_signer != $http_signer) {
131                                 $signer[] = $ld_signer;
132                         }
133                         if (!empty($ld_signer && ($actor == $http_signer))) {
134                                 Logger::info('The HTTP and the JSON-LD signature belong to ' . $ld_signer);
135                                 $trust_source = true;
136                         } elseif (!empty($ld_signer)) {
137                                 Logger::info('JSON-LD signature is signed by ' . $ld_signer);
138                                 $trust_source = true;
139                         } elseif ($actor == $http_signer) {
140                                 Logger::info('Bad JSON-LD signature, but HTTP signer fits the actor.');
141                                 $trust_source = true;
142                         } else {
143                                 Logger::info('Invalid JSON-LD signature and the HTTP signer is different.');
144                                 $trust_source = false;
145                         }
146                 } elseif ($actor == $http_signer) {
147                         Logger::info('Trusting post without JSON-LD signature, The actor fits the HTTP signer.');
148                         $trust_source = true;
149                 } else {
150                         Logger::info('No JSON-LD signature, different actor.');
151                         $trust_source = false;
152                 }
153
154                 self::processActivity($ldactivity, $body, $uid, $trust_source, true, $signer);
155         }
156
157         /**
158          * Process incoming posts from relays
159          *
160          * @param array  $activity
161          * @param string $actor
162          * @return void
163          */
164         private static function processRelayPost(array $activity, string $actor)
165         {
166                 $type = JsonLD::fetchElement($activity, '@type');
167                 if (!$type) {
168                         Logger::info('Empty type', ['activity' => $activity]);
169                         return;
170                 }
171
172                 if ($type != 'as:Announce') {
173                         Logger::info('Not an announcement', ['activity' => $activity]);
174                         return;
175                 }
176
177                 $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
178                 if (empty($object_id)) {
179                         Logger::info('No object id found', ['activity' => $activity]);
180                         return;
181                 }
182
183                 $contact = Contact::getByURL($actor);
184                 if (empty($contact)) {
185                         Logger::info('Relay contact not found', ['actor' => $actor]);
186                         return;
187                 }
188
189                 if (!in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND])) {
190                         Logger::notice('Relay is no sharer', ['actor' => $actor]);
191                         return;
192                 }
193
194                 Logger::info('Got relayed message id', ['id' => $object_id]);
195
196                 $item_id = Item::searchByLink($object_id);
197                 if ($item_id) {
198                         Logger::info('Relayed message already exists', ['id' => $object_id, 'item' => $item_id]);
199                         return;
200                 }
201
202                 $id = Processor::fetchMissingActivity($object_id, [], $actor, self::COMPLETION_RELAY);
203                 if (empty($id)) {
204                         Logger::notice('Relayed message had not been fetched', ['id' => $object_id]);
205                         return;
206                 }
207
208                 $item_id = Item::searchByLink($object_id);
209                 if ($item_id) {
210                         Logger::info('Relayed message had been fetched and stored', ['id' => $object_id, 'item' => $item_id]);
211                 } else {
212                         Logger::notice('Relayed message had not been stored', ['id' => $object_id]);
213                 }
214         }
215
216         /**
217          * Fetches the object type for a given object id
218          *
219          * @param array   $activity
220          * @param string  $object_id Object ID of the the provided object
221          * @param integer $uid       User ID
222          *
223          * @return string with object type
224          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
225          * @throws \ImagickException
226          */
227         private static function fetchObjectType($activity, $object_id, $uid = 0)
228         {
229                 if (!empty($activity['as:object'])) {
230                         $object_type = JsonLD::fetchElement($activity['as:object'], '@type');
231                         if (!empty($object_type)) {
232                                 return $object_type;
233                         }
234                 }
235
236                 if (Post::exists(['uri' => $object_id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]])) {
237                         // We just assume "note" since it doesn't make a difference for the further processing
238                         return 'as:Note';
239                 }
240
241                 $profile = APContact::getByURL($object_id);
242                 if (!empty($profile['type'])) {
243                         APContact::unmarkForArchival($profile);
244                         return 'as:' . $profile['type'];
245                 }
246
247                 $data = ActivityPub::fetchContent($object_id, $uid);
248                 if (!empty($data)) {
249                         $object = JsonLD::compact($data);
250                         $type = JsonLD::fetchElement($object, '@type');
251                         if (!empty($type)) {
252                                 return $type;
253                         }
254                 }
255
256                 return null;
257         }
258
259         /**
260          * Prepare the object array
261          *
262          * @param array   $activity     Array with activity data
263          * @param integer $uid          User ID
264          * @param boolean $push         Message had been pushed to our system
265          * @param boolean $trust_source Do we trust the source?
266          *
267          * @return array with object data
268          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
269          * @throws \ImagickException
270          */
271         public static function prepareObjectData($activity, $uid, $push, &$trust_source)
272         {
273                 $id = JsonLD::fetchElement($activity, '@id');
274                 if (!empty($id) && !$trust_source) {
275                         $fetch_uid = $uid ?: self::getBestUserForActivity($activity);
276
277                         $fetched_activity = ActivityPub::fetchContent($id, $fetch_uid);
278                         if (!empty($fetched_activity)) {
279                                 $object = JsonLD::compact($fetched_activity);
280                                 $fetched_id = JsonLD::fetchElement($object, '@id');
281                                 if ($fetched_id == $id) {
282                                         Logger::info('Activity had been fetched successfully', ['id' => $id]);
283                                         $trust_source = true;
284                                         $activity = $object;
285                                 } else {
286                                         Logger::info('Activity id is not equal', ['id' => $id, 'fetched' => $fetched_id]);
287                                 }
288                         } else {
289                                 Logger::info('Activity could not been fetched', ['id' => $id]);
290                         }
291                 }
292
293                 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
294                 if (empty($actor)) {
295                         Logger::info('Empty actor', ['activity' => $activity]);
296                         return [];
297                 }
298
299                 $type = JsonLD::fetchElement($activity, '@type');
300
301                 // Fetch all receivers from to, cc, bto and bcc
302                 $receiverdata = self::getReceivers($activity, $actor);
303                 $receivers = $reception_types = [];
304                 foreach ($receiverdata as $key => $data) {
305                         $receivers[$key] = $data['uid'];
306                         $reception_types[$data['uid']] = $data['type'] ?? self::TARGET_UNKNOWN;
307                 }
308
309                 $urls = self::getReceiverURL($activity);
310
311                 // When it is a delivery to a personal inbox we add that user to the receivers
312                 if (!empty($uid)) {
313                         $additional = [$uid => $uid];
314                         $receivers = array_replace($receivers, $additional);
315                         if (empty($activity['thread-completion']) && (empty($reception_types[$uid]) || in_array($reception_types[$uid], [self::TARGET_UNKNOWN, self::TARGET_FOLLOWER, self::TARGET_ANSWER, self::TARGET_GLOBAL]))) {
316                                 $reception_types[$uid] = self::TARGET_BCC;
317                                 $owner = User::getOwnerDataById($uid);
318                                 if (!empty($owner['url'])) {
319                                         $urls['as:bcc'][] = $owner['url'];
320                                 }
321                         }
322                 }
323
324                 // We possibly need some user to fetch private content,
325                 // so we fetch one out of the receivers if no uid is provided.
326                 $fetch_uid = $uid ?: self::getBestUserForActivity($activity);
327
328                 $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
329                 if (empty($object_id)) {
330                         Logger::info('No object found');
331                         return [];
332                 }
333
334                 if (!is_string($object_id)) {
335                         Logger::info('Invalid object id', ['object' => $object_id]);
336                         return [];
337                 }
338
339                 $object_type = self::fetchObjectType($activity, $object_id, $fetch_uid);
340
341                 // Fetch the activity on Lemmy "Announce" messages (announces of activities)
342                 if (($type == 'as:Announce') && in_array($object_type, array_merge(self::ACTIVITY_TYPES, ['as:Delete', 'as:Undo', 'as:Update']))) {
343                         $data = ActivityPub::fetchContent($object_id, $fetch_uid);
344                         if (!empty($data)) {
345                                 $type = $object_type;
346                                 $activity = JsonLD::compact($data);
347
348                                 // Some variables need to be refetched since the activity changed
349                                 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
350                                 $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
351                                 $object_type = self::fetchObjectType($activity, $object_id, $fetch_uid);
352                         }
353                 }
354
355                 // Any activities on account types must not be altered
356                 if (in_array($object_type, self::ACCOUNT_TYPES)) {
357                         $object_data = [];
358                         $object_data['id'] = JsonLD::fetchElement($activity, '@id');
359                         $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
360                         $object_data['object_actor'] = JsonLD::fetchElement($activity['as:object'], 'as:actor', '@id');
361                         $object_data['object_object'] = JsonLD::fetchElement($activity['as:object'], 'as:object');
362                         $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
363                         $object_data['push'] = $push;
364                 } elseif (in_array($type, ['as:Create', 'as:Update', 'as:Announce', 'as:Invite']) || strpos($type, '#emojiReaction')) {
365                         // Fetch the content only on activities where this matters
366                         // We can receive "#emojiReaction" when fetching content from Hubzilla systems
367                         // Always fetch on "Announce"
368                         $object_data = self::fetchObject($object_id, $activity['as:object'], $trust_source && ($type != 'as:Announce'), $fetch_uid);
369                         if (empty($object_data)) {
370                                 Logger::info("Object data couldn't be processed");
371                                 return [];
372                         }
373
374                         $object_data['object_id'] = $object_id;
375
376                         if ($type == 'as:Announce') {
377                                 $object_data['push'] = false;
378                         } else {
379                                 $object_data['push'] = $push;
380                         }
381
382                         // Test if it is an answer to a mail
383                         if (DBA::exists('mail', ['uri' => $object_data['reply-to-id']])) {
384                                 $object_data['directmessage'] = true;
385                         } else {
386                                 $object_data['directmessage'] = JsonLD::fetchElement($activity, 'litepub:directMessage');
387                         }
388                 } elseif (in_array($type, array_merge(self::ACTIVITY_TYPES, ['as:Follow', 'litepub:EmojiReact', 'as:View'])) && in_array($object_type, self::CONTENT_TYPES)) {
389                         // Create a mostly empty array out of the activity data (instead of the object).
390                         // This way we later don't have to check for the existence of each individual array element.
391                         $object_data = self::processObject($activity);
392                         $object_data['name'] = $type;
393                         $object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
394                         $object_data['object_id'] = $object_id;
395                         $object_data['object_type'] = ''; // Since we don't fetch the object, we don't know the type
396                         $object_data['push'] = $push;
397                 } elseif (in_array($type, ['as:Add', 'as:Remove'])) {
398                         $object_data = [];
399                         $object_data['id'] = JsonLD::fetchElement($activity, '@id');
400                         $object_data['target_id'] = JsonLD::fetchElement($activity, 'as:target', '@id');
401                         $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
402                         $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
403                         $object_data['object_content'] = JsonLD::fetchElement($activity['as:object'], 'as:content', '@type');
404                         $object_data['push'] = $push;
405                 } else {
406                         $object_data = [];
407                         $object_data['id'] = JsonLD::fetchElement($activity, '@id');
408                         $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
409                         $object_data['object_actor'] = JsonLD::fetchElement($activity['as:object'], 'as:actor', '@id');
410                         $object_data['object_object'] = JsonLD::fetchElement($activity['as:object'], 'as:object');
411                         $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
412                         $object_data['push'] = $push;
413
414                         // An Undo is done on the object of an object, so we need that type as well
415                         if (($type == 'as:Undo') && !empty($object_data['object_object'])) {
416                                 $object_data['object_object_type'] = self::fetchObjectType([], $object_data['object_object'], $fetch_uid);
417                         }
418                 }
419
420                 $object_data = self::addActivityFields($object_data, $activity);
421
422                 if (empty($object_data['object_type'])) {
423                         $object_data['object_type'] = $object_type;
424                 }
425
426                 foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
427                         if ((empty($object_data['receiver_urls'][$element]) || in_array($element, ['as:bto', 'as:bcc'])) && !empty($urls[$element])) {
428                                 $object_data['receiver_urls'][$element] = array_unique(array_merge($object_data['receiver_urls'][$element] ?? [], $urls[$element]));
429                         }
430                 }
431
432                 $object_data['type'] = $type;
433                 $object_data['actor'] = $actor;
434                 $object_data['item_receiver'] = $receivers;
435                 $object_data['receiver'] = array_replace($object_data['receiver'] ?? [], $receivers);
436                 $object_data['reception_type'] = array_replace($object_data['reception_type'] ?? [], $reception_types);
437
438                 $author = $object_data['author'] ?? $actor;
439                 if (!empty($author) && !empty($object_data['id'])) {
440                         $author_host = parse_url($author, PHP_URL_HOST);
441                         $id_host = parse_url($object_data['id'], PHP_URL_HOST);
442                         if ($author_host == $id_host) {
443                                 Logger::info('Valid hosts', ['type' => $type, 'host' => $id_host]);
444                         } else {
445                                 Logger::notice('Differing hosts on author and id', ['type' => $type, 'author' => $author_host, 'id' => $id_host]);
446                                 $trust_source = false;
447                         }
448                 }
449
450                 Logger::info('Processing ' . $object_data['type'] . ' ' . $object_data['object_type'] . ' ' . $object_data['id']);
451
452                 return $object_data;
453         }
454
455         /**
456          * Fetches the first user id from the receiver array
457          *
458          * @param array $receivers Array with receivers
459          * @return integer user id;
460          */
461         public static function getFirstUserFromReceivers($receivers)
462         {
463                 foreach ($receivers as $receiver) {
464                         if (!empty($receiver)) {
465                                 return $receiver;
466                         }
467                 }
468                 return 0;
469         }
470
471         /**
472          * Processes the activity object
473          *
474          * @param array   $activity     Array with activity data
475          * @param string  $body         The unprocessed body
476          * @param integer $uid          User ID
477          * @param boolean $trust_source Do we trust the source?
478          * @param boolean $push         Message had been pushed to our system
479          * @param array   $signer       The signer of the post
480          * @throws \Exception
481          */
482         public static function processActivity($activity, string $body = '', int $uid = null, bool $trust_source = false, bool $push = false, array $signer = [])
483         {
484                 $type = JsonLD::fetchElement($activity, '@type');
485                 if (!$type) {
486                         Logger::info('Empty type', ['activity' => $activity]);
487                         return;
488                 }
489
490                 if (!JsonLD::fetchElement($activity, 'as:object', '@id')) {
491                         Logger::info('Empty object', ['activity' => $activity]);
492                         return;
493                 }
494
495                 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
496                 if (empty($actor)) {
497                         Logger::info('Empty actor', ['activity' => $activity]);
498                         return;
499                 }
500
501                 if (is_array($activity['as:object'])) {
502                         $attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
503                 } else {
504                         $attributed_to = '';
505                 }
506
507                 // Test the provided signatures against the actor and "attributedTo"
508                 if ($trust_source) {
509                         if (!empty($attributed_to) && !empty($actor)) {
510                                 $trust_source = (in_array($actor, $signer) && in_array($attributed_to, $signer));
511                         } else {
512                                 $trust_source = in_array($actor, $signer);
513                         }
514                 }
515
516                 // $trust_source is called by reference and is set to true if the content was retrieved successfully
517                 $object_data = self::prepareObjectData($activity, $uid, $push, $trust_source);
518                 if (empty($object_data)) {
519                         Logger::info('No object data found', ['activity' => $activity]);
520                         return;
521                 }
522
523                 // Lemmy is announcing activities.
524                 // We are changing the announces into regular activities.
525                 if (($type == 'as:Announce') && in_array($object_data['type'] ?? '', array_merge(self::ACTIVITY_TYPES, ['as:Delete', 'as:Undo', 'as:Update']))) {
526                         $type = $object_data['type'];
527                 }
528
529                 if (!$trust_source) {
530                         Logger::info('Activity trust could not be achieved.',  ['id' => $object_data['object_id'], 'type' => $type, 'signer' => $signer, 'actor' => $actor, 'attributedTo' => $attributed_to]);
531                         return;
532                 }
533
534                 if (!empty($body) && empty($object_data['raw'])) {
535                         $object_data['raw'] = $body;
536                 }
537
538                 // Internal flag for thread completion. See Processor.php
539                 if (!empty($activity['thread-completion'])) {
540                         $object_data['thread-completion'] = $activity['thread-completion'];
541                 }
542
543                 if (!empty($activity['completion-mode'])) {
544                         $object_data['completion-mode'] = $activity['completion-mode'];
545                 }
546
547                 if (!empty($activity['thread-children-type'])) {
548                         $object_data['thread-children-type'] = $activity['thread-children-type'];
549                 }
550
551                 // Internal flag for posts that arrived via relay
552                 if (!empty($activity['from-relay'])) {
553                         $object_data['from-relay'] = $activity['from-relay'];
554                 }
555
556                 switch ($type) {
557                         case 'as:Create':
558                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
559                                         $item = ActivityPub\Processor::createItem($object_data);
560                                         ActivityPub\Processor::postItem($object_data, $item);
561                                 } elseif (in_array($object_data['object_type'], ['pt:CacheFile'])) {
562                                         // Unhandled Peertube activity
563                                 } else {
564                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
565                                 }
566                                 break;
567
568                         case 'as:Invite':
569                                 if (in_array($object_data['object_type'], ['as:Event'])) {
570                                         $item = ActivityPub\Processor::createItem($object_data);
571                                         ActivityPub\Processor::postItem($object_data, $item);
572                                 } else {
573                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
574                                 }
575                                 break;
576
577                         case 'as:Add':
578                                 if ($object_data['object_type'] == 'as:tag') {
579                                         ActivityPub\Processor::addTag($object_data);
580                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
581                                         ActivityPub\Processor::addToFeaturedCollection($object_data);
582                                 } elseif ($object_data['object_type'] == '') {
583                                         // The object type couldn't be determined. We don't have it and we can't fetch it. We ignore this activity.
584                                 } else {
585                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
586                                 }
587                                 break;
588
589                         case 'as:Announce':
590                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
591                                         $object_data['thread-completion'] = Contact::getIdForURL($actor);
592                                         $object_data['completion-mode']   = self::COMPLETION_ANNOUCE;
593
594                                         $item = ActivityPub\Processor::createItem($object_data);
595                                         if (empty($item)) {
596                                                 return;
597                                         }
598
599                                         $item['post-reason'] = Item::PR_ANNOUNCEMENT;
600                                         ActivityPub\Processor::postItem($object_data, $item);
601
602                                         $announce_object_data = self::processObject($activity);
603                                         $announce_object_data['name'] = $type;
604                                         $announce_object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
605                                         $announce_object_data['object_id'] = $object_data['object_id'];
606                                         $announce_object_data['object_type'] = $object_data['object_type'];
607                                         $announce_object_data['push'] = $push;
608
609                                         if (!empty($body)) {
610                                                 $announce_object_data['raw'] = $body;
611                                         }
612
613                                         ActivityPub\Processor::createActivity($announce_object_data, Activity::ANNOUNCE);
614                                 } else {
615                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
616                                 }
617                                 break;
618
619                         case 'as:Like':
620                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
621                                         ActivityPub\Processor::createActivity($object_data, Activity::LIKE);
622                                 } elseif ($object_data['object_type'] == '') {
623                                         // The object type couldn't be determined. We don't have it and we can't fetch it. We ignore this activity.
624                                 } else {
625                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
626                                 }
627                                 break;
628
629                         case 'as:Dislike':
630                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
631                                         ActivityPub\Processor::createActivity($object_data, Activity::DISLIKE);
632                                 } elseif ($object_data['object_type'] == '') {
633                                         // The object type couldn't be determined. We don't have it and we can't fetch it. We ignore this activity.
634                                 } else {
635                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
636                                 }
637                                 break;
638
639                         case 'as:TentativeAccept':
640                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
641                                         ActivityPub\Processor::createActivity($object_data, Activity::ATTENDMAYBE);
642                                 } else {
643                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
644                                 }
645                                 break;
646
647                         case 'as:Update':
648                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
649                                         ActivityPub\Processor::updateItem($object_data);
650                                 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
651                                         ActivityPub\Processor::updatePerson($object_data);
652                                 } elseif (in_array($object_data['object_type'], ['pt:CacheFile'])) {
653                                         // Unhandled Peertube activity
654                                 } else {
655                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
656                                 }
657                                 break;
658
659                         case 'as:Delete':
660                                 if (in_array($object_data['object_type'], array_merge(['as:Tombstone'], self::CONTENT_TYPES))) {
661                                         ActivityPub\Processor::deleteItem($object_data);
662                                 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
663                                         ActivityPub\Processor::deletePerson($object_data);
664                                 } elseif ($object_data['object_type'] == '') {
665                                         // The object type couldn't be determined. Most likely we don't have it here. We ignore this activity.
666                                 } else {
667                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
668                                 }
669                                 break;
670
671                         case 'as:Block':
672                                 if (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
673                                         // Used by Mastodon to announce that the sender has blocked the account
674                                         self::storeUnhandledActivity(false, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
675                                 } else {
676                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
677                                 }
678                                 break;
679
680                         case 'as:Remove':
681                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
682                                         ActivityPub\Processor::removeFromFeaturedCollection($object_data);                                      
683                                 } elseif ($object_data['object_type'] == '') {
684                                         // The object type couldn't be determined. We don't have it and we can't fetch it. We ignore this activity.
685                                 } else {
686                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
687                                 }
688                                 break;
689
690                         case 'as:Follow':
691                                 if (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
692                                         ActivityPub\Processor::followUser($object_data);
693                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
694                                         $object_data['reply-to-id'] = $object_data['object_id'];
695                                         ActivityPub\Processor::createActivity($object_data, Activity::FOLLOW);
696                                 } else {
697                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
698                                 }
699                                 break;
700
701                         case 'as:Accept':
702                                 if ($object_data['object_type'] == 'as:Follow') {
703                                         ActivityPub\Processor::acceptFollowUser($object_data);
704                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
705                                         ActivityPub\Processor::createActivity($object_data, Activity::ATTEND);
706                                 } else {
707                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
708                                 }
709                                 break;
710
711                         case 'as:Reject':
712                                 if ($object_data['object_type'] == 'as:Follow') {
713                                         ActivityPub\Processor::rejectFollowUser($object_data);
714                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
715                                         ActivityPub\Processor::createActivity($object_data, Activity::ATTENDNO);
716                                 } else {
717                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
718                                 }
719                                 break;
720
721                         case 'as:Undo':
722                                 if (($object_data['object_type'] == 'as:Follow') &&
723                                         in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
724                                         ActivityPub\Processor::undoFollowUser($object_data);
725                                 } elseif (($object_data['object_type'] == 'as:Follow') &&
726                                         in_array($object_data['object_object_type'], self::CONTENT_TYPES)) {
727                                         ActivityPub\Processor::undoActivity($object_data);
728                                 } elseif (($object_data['object_type'] == 'as:Accept') &&
729                                         in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
730                                         ActivityPub\Processor::rejectFollowUser($object_data);
731                                 } elseif (in_array($object_data['object_type'], array_merge(self::ACTIVITY_TYPES, ['as:Announce'])) &&
732                                         in_array($object_data['object_object_type'], array_merge(['as:Tombstone'], self::CONTENT_TYPES))) {
733                                         ActivityPub\Processor::undoActivity($object_data);
734                                 } elseif (in_array($object_data['object_type'], array_merge(self::ACTIVITY_TYPES, ['as:Announce', 'as:Create', ''])) &&
735                                         empty($object_data['object_object_type'])) {
736                                         // We cannot detect the target object. So we can ignore it.
737                                 } elseif (in_array($object_data['object_type'], ['as:Create']) &&
738                                         in_array($object_data['object_object_type'], ['pt:CacheFile'])) {
739                                         // Unhandled Peertube activity
740                                 } else {
741                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
742                                 }
743                                 break;
744
745                         case 'as:View':
746                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
747                                         ActivityPub\Processor::createActivity($object_data, Activity::VIEW);
748                                 } elseif ($object_data['object_type'] == '') {
749                                         // The object type couldn't be determined. Most likely we don't have it here. We ignore this activity.
750                                 } else {
751                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
752                                 }
753                                 break;
754
755                         case 'litepub:EmojiReact':
756                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
757                                         ActivityPub\Processor::createActivity($object_data, Activity::EMOJIREACT);
758                                 } elseif ($object_data['object_type'] == '') {
759                                         // The object type couldn't be determined. We don't have it and we can't fetch it. We ignore this activity.
760                                 } else {
761                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
762                                 }
763                                 break;
764         
765                         default:
766                                 Logger::info('Unknown activity: ' . $type . ' ' . $object_data['object_type']);
767                                 self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
768                                 break;
769                 }
770         }
771
772         /**
773          * Stores unhandled or unknown Activities as a file
774          *
775          * @param boolean $unknown      "true" if the activity is unknown, "false" if it is unhandled
776          * @param string  $type         Activity type
777          * @param array   $object_data  Preprocessed array that is generated out of the received activity
778          * @param array   $activity     Array with activity data
779          * @param string  $body         The unprocessed body
780          * @param integer $uid          User ID
781          * @param boolean $trust_source Do we trust the source?
782          * @param boolean $push         Message had been pushed to our system
783          * @param array   $signer       The signer of the post
784          * @return void
785          */
786         private static function storeUnhandledActivity(bool $unknown, string $type, array $object_data, array $activity, string $body = '', int $uid = null, bool $trust_source = false, bool $push = false, array $signer = [])
787         {
788                 if (!DI::config()->get('debug', 'ap_log_unknown')) {
789                         return;
790                 }
791
792                 $file = ($unknown  ? 'unknown-' : 'unhandled-') . str_replace(':', '-', $type) . '-';
793         
794                 if (!empty($object_data['object_type'])) {
795                         $file .= str_replace(':', '-', $object_data['object_type']) . '-';
796                 }
797
798                 if (!empty($object_data['object_object_type'])) {
799                         $file .= str_replace(':', '-', $object_data['object_object_type']) . '-';
800                 }
801
802                 $tempfile = tempnam(System::getTempPath(), $file);
803                 file_put_contents($tempfile, json_encode(['activity' => $activity, 'body' => $body, 'uid' => $uid, 'trust_source' => $trust_source, 'push' => $push, 'signer' => $signer, 'object_data' => $object_data], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
804                 Logger::notice('Unknown activity stored', ['type' => $type, 'object_type' => $object_data['object_type'], $object_data['object_object_type'] ?? '', 'file' => $tempfile]);
805         }
806
807         /**
808          * Fetch a user id from an activity array
809          *
810          * @param array  $activity
811          * @param string $actor
812          *
813          * @return int   user id
814          */
815         public static function getBestUserForActivity(array $activity)
816         {
817                 $uid = 0;
818                 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id') ?? '';
819
820                 $receivers = self::getReceivers($activity, $actor);
821                 foreach ($receivers as $receiver) {
822                         if ($receiver['type'] == self::TARGET_GLOBAL) {
823                                 return 0;
824                         }
825                         if (empty($uid) || ($receiver['type'] == self::TARGET_TO)) {
826                                 $uid = $receiver['uid'];
827                         }
828                 }
829
830                 // When we haven't found any user yet, we just chose a user who most likely could have access to the content
831                 if (empty($uid)) {
832                         $contact = Contact::selectFirst(['uid'], ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND]]);
833                         if (!empty($contact['uid'])) {
834                                 $uid = $contact['uid'];
835                         }
836                 }
837
838                 return $uid;
839         }
840
841         public static function getReceiverURL($activity)
842         {
843                 $urls = [];
844
845                 foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
846                         $receiver_list = JsonLD::fetchElementArray($activity, $element, '@id');
847                         if (empty($receiver_list)) {
848                                 continue;
849                         }
850
851                         foreach ($receiver_list as $receiver) {
852                                 if ($receiver == self::PUBLIC_COLLECTION) {
853                                         $receiver = ActivityPub::PUBLIC_COLLECTION;
854                                 }
855                                 $urls[$element][] = $receiver;
856                         }
857                 }
858
859                 return $urls;
860         }
861
862         /**
863          * Fetch the receiver list from an activity array
864          *
865          * @param array   $activity
866          * @param string  $actor
867          * @param array   $tags
868          * @param boolean $fetch_unlisted
869          *
870          * @return array with receivers (user id)
871          * @throws \Exception
872          */
873         private static function getReceivers($activity, $actor, $tags = [], $fetch_unlisted = false)
874         {
875                 $reply = $receivers = [];
876
877                 // When it is an answer, we inherite the receivers from the parent
878                 $replyto = JsonLD::fetchElement($activity, 'as:inReplyTo', '@id');
879                 if (!empty($replyto)) {
880                         $reply = [$replyto];
881
882                         // Fix possibly wrong item URI (could be an answer to a plink uri)
883                         $fixedReplyTo = Item::getURIByLink($replyto);
884                         if (!empty($fixedReplyTo)) {
885                                 $reply[] = $fixedReplyTo;
886                         }
887                 }
888
889                 // Fetch all posts that refer to the object id
890                 $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
891                 if (!empty($object_id)) {
892                         $reply[] = $object_id;
893                 }
894
895                 if (!empty($reply)) {
896                         $parents = Post::select(['uid'], ['uri' => $reply]);
897                         while ($parent = Post::fetch($parents)) {
898                                 $receivers[$parent['uid']] = ['uid' => $parent['uid'], 'type' => self::TARGET_ANSWER];
899                         }
900                         DBA::close($parents);
901                 }
902
903                 if (!empty($actor)) {
904                         $profile   = APContact::getByURL($actor);
905                         $followers = $profile['followers'] ?? '';
906                         $is_forum  = ($actor['type'] ?? '') == 'Group';
907                         Logger::info('Got actor and followers', ['actor' => $actor, 'followers' => $followers]);
908                 } else {
909                         Logger::info('Empty actor', ['activity' => $activity]);
910                         $followers = '';
911                         $is_forum  = false;
912                 }
913
914                 // We have to prevent false follower assumptions upon thread completions
915                 $follower_target = empty($activity['thread-completion']) ? self::TARGET_FOLLOWER : self::TARGET_UNKNOWN;
916
917                 foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
918                         $receiver_list = JsonLD::fetchElementArray($activity, $element, '@id');
919                         if (empty($receiver_list)) {
920                                 continue;
921                         }
922
923                         foreach ($receiver_list as $receiver) {
924                                 if ($receiver == self::PUBLIC_COLLECTION) {
925                                         $receivers[0] = ['uid' => 0, 'type' => self::TARGET_GLOBAL];
926                                 }
927
928                                 // Add receiver "-1" for unlisted posts
929                                 if ($fetch_unlisted && ($receiver == self::PUBLIC_COLLECTION) && ($element == 'as:cc')) {
930                                         $receivers[-1] = ['uid' => -1, 'type' => self::TARGET_GLOBAL];
931                                 }
932
933                                 // Fetch the receivers for the public and the followers collection
934                                 if ((($receiver == $followers) || (($receiver == self::PUBLIC_COLLECTION) && !$is_forum)) && !empty($actor)) {
935                                         $receivers = self::getReceiverForActor($actor, $tags, $receivers, $follower_target);
936                                         continue;
937                                 }
938
939                                 // Fetching all directly addressed receivers
940                                 $condition = ['self' => true, 'nurl' => Strings::normaliseLink($receiver)];
941                                 $contact = DBA::selectFirst('contact', ['uid', 'contact-type'], $condition);
942                                 if (!DBA::isResult($contact)) {
943                                         continue;
944                                 }
945
946                                 // Check if the potential receiver is following the actor
947                                 // Exception: The receiver is targetted via "to" or this is a comment
948                                 if ((($element != 'as:to') && empty($replyto)) || ($contact['contact-type'] == Contact::TYPE_COMMUNITY)) {
949                                         $networks = Protocol::FEDERATED;
950                                         $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND],
951                                                 'network' => $networks, 'archive' => false, 'pending' => false, 'uid' => $contact['uid']];
952
953                                         // Forum posts are only accepted from forum contacts
954                                         if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
955                                                 $condition['rel'] = [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER];
956                                         }
957
958                                         if (!DBA::exists('contact', $condition)) {
959                                                 continue;
960                                         }
961                                 }
962
963                                 $type = $receivers[$contact['uid']]['type'] ?? self::TARGET_UNKNOWN;
964                                 if (in_array($type, [self::TARGET_UNKNOWN, self::TARGET_FOLLOWER, self::TARGET_ANSWER, self::TARGET_GLOBAL])) {
965                                         switch ($element) {
966                                                 case 'as:to':
967                                                         $type = self::TARGET_TO;
968                                                         break;
969                                                 case 'as:cc':
970                                                         $type = self::TARGET_CC;
971                                                         break;
972                                                 case 'as:bto':
973                                                         $type = self::TARGET_BTO;
974                                                         break;
975                                                 case 'as:bcc':
976                                                         $type = self::TARGET_BCC;
977                                                         break;
978                                         }
979
980                                         $receivers[$contact['uid']] = ['uid' => $contact['uid'], 'type' => $type];
981                                 }
982                         }
983                 }
984
985                 self::switchContacts($receivers, $actor);
986
987                 return $receivers;
988         }
989
990         /**
991          * Fetch the receiver list of a given actor
992          *
993          * @param string  $actor
994          * @param array   $tags
995          * @param array   $receivers
996          * @param integer $target_type
997          *
998          * @return array with receivers (user id)
999          * @throws \Exception
1000          */
1001         private static function getReceiverForActor($actor, $tags, $receivers, $target_type)
1002         {
1003                 $basecondition = ['rel' => [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER],
1004                         'network' => Protocol::FEDERATED, 'archive' => false, 'pending' => false];
1005
1006                 $condition = DBA::mergeConditions($basecondition, ["`nurl` = ? AND `uid` != ?", Strings::normaliseLink($actor), 0]);
1007                 $contacts = DBA::select('contact', ['uid', 'rel'], $condition);
1008                 while ($contact = DBA::fetch($contacts)) {
1009                         if (empty($receivers[$contact['uid']]) && self::isValidReceiverForActor($contact, $tags)) {
1010                                 $receivers[$contact['uid']] = ['uid' => $contact['uid'], 'type' => $target_type];
1011                         }
1012                 }
1013                 DBA::close($contacts);
1014
1015                 // The queries are split because of performance issues
1016                 $condition = DBA::mergeConditions($basecondition, ["`alias` IN (?, ?) AND `uid` != ?", Strings::normaliseLink($actor), $actor, 0]);
1017                 $contacts = DBA::select('contact', ['uid', 'rel'], $condition);
1018                 while ($contact = DBA::fetch($contacts)) {
1019                         if (empty($receivers[$contact['uid']]) && self::isValidReceiverForActor($contact, $tags)) {
1020                                 $receivers[$contact['uid']] = ['uid' => $contact['uid'], 'type' => $target_type];
1021                         }
1022                 }
1023                 DBA::close($contacts);
1024                 return $receivers;
1025         }
1026
1027         /**
1028          * Tests if the contact is a valid receiver for this actor
1029          *
1030          * @param array  $contact
1031          * @param string $actor
1032          * @param array  $tags
1033          *
1034          * @return bool with receivers (user id)
1035          * @throws \Exception
1036          */
1037         private static function isValidReceiverForActor($contact, $tags)
1038         {
1039                 // Are we following the contact? Then this is a valid receiver
1040                 if (in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND])) {
1041                         return true;
1042                 }
1043
1044                 // When the possible receiver isn't a community, then it is no valid receiver
1045                 $owner = User::getOwnerDataById($contact['uid']);
1046                 if (empty($owner) || ($owner['contact-type'] != Contact::TYPE_COMMUNITY)) {
1047                         return false;
1048                 }
1049
1050                 // Is the community account tagged?
1051                 foreach ($tags as $tag) {
1052                         if ($tag['type'] != 'Mention') {
1053                                 continue;
1054                         }
1055
1056                         if (Strings::compareLink($tag['href'], $owner['url'])) {
1057                                 return true;
1058                         }
1059                 }
1060
1061                 return false;
1062         }
1063
1064         /**
1065          * Switches existing contacts to ActivityPub
1066          *
1067          * @param integer $cid Contact ID
1068          * @param integer $uid User ID
1069          * @param string  $url Profile URL
1070          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1071          * @throws \ImagickException
1072          */
1073         public static function switchContact($cid, $uid, $url)
1074         {
1075                 if (DBA::exists('contact', ['id' => $cid, 'network' => Protocol::ACTIVITYPUB])) {
1076                         Logger::info('Contact is already ActivityPub', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
1077                         return;
1078                 }
1079
1080                 if (Contact::updateFromProbe($cid)) {
1081                         Logger::info('Update was successful', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
1082                 }
1083
1084                 // Send a new follow request to be sure that the connection still exists
1085                 if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND], 'network' => Protocol::ACTIVITYPUB])) {
1086                         Logger::info('Contact had been switched to ActivityPub. Sending a new follow request.', ['uid' => $uid, 'url' => $url]);
1087                         ActivityPub\Transmitter::sendActivity('Follow', $url, $uid);
1088                 }
1089         }
1090
1091         /**
1092          *
1093          *
1094          * @param $receivers
1095          * @param $actor
1096          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1097          * @throws \ImagickException
1098          */
1099         private static function switchContacts($receivers, $actor)
1100         {
1101                 if (empty($actor)) {
1102                         return;
1103                 }
1104
1105                 foreach ($receivers as $receiver) {
1106                         $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver['uid'], 'network' => Protocol::OSTATUS, 'nurl' => Strings::normaliseLink($actor)]);
1107                         if (DBA::isResult($contact)) {
1108                                 self::switchContact($contact['id'], $receiver['uid'], $actor);
1109                         }
1110
1111                         $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver['uid'], 'network' => Protocol::OSTATUS, 'alias' => [Strings::normaliseLink($actor), $actor]]);
1112                         if (DBA::isResult($contact)) {
1113                                 self::switchContact($contact['id'], $receiver['uid'], $actor);
1114                         }
1115                 }
1116         }
1117
1118         /**
1119          *
1120          *
1121          * @param       $object_data
1122          * @param array $activity
1123          *
1124          * @return mixed
1125          */
1126         private static function addActivityFields($object_data, $activity)
1127         {
1128                 if (!empty($activity['published']) && empty($object_data['published'])) {
1129                         $object_data['published'] = JsonLD::fetchElement($activity, 'as:published', '@value');
1130                 }
1131
1132                 if (!empty($activity['diaspora:guid']) && empty($object_data['diaspora:guid'])) {
1133                         $object_data['diaspora:guid'] = JsonLD::fetchElement($activity, 'diaspora:guid', '@value');
1134                 }
1135
1136                 $object_data['service'] = JsonLD::fetchElement($activity, 'as:instrument', 'as:name', '@type', 'as:Service');
1137                 $object_data['service'] = JsonLD::fetchElement($object_data, 'service', '@value');
1138
1139                 if (!empty($object_data['object_id'])) {
1140                         // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
1141                         $objectId = Item::getURIByLink($object_data['object_id']);
1142                         if (!empty($objectId) && ($object_data['object_id'] != $objectId)) {
1143                                 Logger::notice('Fix wrong object-id', ['received' => $object_data['object_id'], 'correct' => $objectId]);
1144                                 $object_data['object_id'] = $objectId;
1145                         }
1146                 }
1147
1148                 return $object_data;
1149         }
1150
1151         /**
1152          * Fetches the object data from external ressources if needed
1153          *
1154          * @param string  $object_id    Object ID of the the provided object
1155          * @param array   $object       The provided object array
1156          * @param boolean $trust_source Do we trust the provided object?
1157          * @param integer $uid          User ID for the signature that we use to fetch data
1158          *
1159          * @return array|false with trusted and valid object data
1160          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1161          * @throws \ImagickException
1162          */
1163         private static function fetchObject(string $object_id, array $object = [], bool $trust_source = false, int $uid = 0)
1164         {
1165                 // By fetching the type we check if the object is complete.
1166                 $type = JsonLD::fetchElement($object, '@type');
1167
1168                 if (!$trust_source || empty($type)) {
1169                         $data = ActivityPub::fetchContent($object_id, $uid);
1170                         if (!empty($data)) {
1171                                 $object = JsonLD::compact($data);
1172                                 Logger::info('Fetched content for ' . $object_id);
1173                         } else {
1174                                 Logger::info('Empty content for ' . $object_id . ', check if content is available locally.');
1175
1176                                 $item = Post::selectFirst(Item::DELIVER_FIELDLIST, ['uri' => $object_id]);
1177                                 if (!DBA::isResult($item)) {
1178                                         Logger::info('Object with url ' . $object_id . ' was not found locally.');
1179                                         return false;
1180                                 }
1181                                 Logger::info('Using already stored item for url ' . $object_id);
1182                                 $data = ActivityPub\Transmitter::createNote($item);
1183                                 $object = JsonLD::compact($data);
1184                         }
1185
1186                         $id = JsonLD::fetchElement($object, '@id');
1187                         if (empty($id)) {
1188                                 Logger::info('Empty id');
1189                                 return false;
1190                         }
1191
1192                         if ($id != $object_id) {
1193                                 Logger::info('Fetched id differs from provided id', ['provided' => $object_id, 'fetched' => $id]);
1194                                 return false;
1195                         }
1196                 } else {
1197                         Logger::info('Using original object for url ' . $object_id);
1198                 }
1199
1200                 $type = JsonLD::fetchElement($object, '@type');
1201                 if (empty($type)) {
1202                         Logger::info('Empty type');
1203                         return false;
1204                 }
1205
1206                 // Lemmy is resharing "create" activities instead of content
1207                 // We fetch the content from the activity.
1208                 if (in_array($type, ['as:Create'])) {
1209                         $object = $object['as:object'];
1210                         $type = JsonLD::fetchElement($object, '@type');
1211                         if (empty($type)) {
1212                                 Logger::info('Empty type');
1213                                 return false;
1214                         }
1215                         $object_data = self::processObject($object);
1216                 }
1217
1218                 // We currently don't handle 'pt:CacheFile', but with this step we avoid logging
1219                 if (in_array($type, self::CONTENT_TYPES) || ($type == 'pt:CacheFile')) {
1220                         $object_data = self::processObject($object);
1221
1222                         if (!empty($data)) {
1223                                 $object_data['raw'] = json_encode($data);
1224                         }
1225                         return $object_data;
1226                 }
1227
1228                 if ($type == 'as:Announce') {
1229                         $object_id = JsonLD::fetchElement($object, 'object', '@id');
1230                         if (empty($object_id) || !is_string($object_id)) {
1231                                 return false;
1232                         }
1233                         return self::fetchObject($object_id, [], false, $uid);
1234                 }
1235
1236                 Logger::info('Unhandled object type: ' . $type);
1237                 return false;
1238         }
1239
1240         /**
1241          * Converts the language element (Used by Peertube)
1242          *
1243          * @param array $languages
1244          * @return array Languages
1245          */
1246         public static function processLanguages(array $languages)
1247         {
1248                 if (empty($languages)) {
1249                         return [];
1250                 }
1251
1252                 $language_list = [];
1253
1254                 foreach ($languages as $language) {
1255                         if (!empty($language['_:identifier']) && !empty($language['as:name'])) {
1256                                 $language_list[$language['_:identifier']] = $language['as:name'];
1257                         }
1258                 }
1259                 return $language_list;
1260         }
1261
1262         /**
1263          * Convert tags from JSON-LD format into a simplified format
1264          *
1265          * @param array $tags Tags in JSON-LD format
1266          *
1267          * @return array with tags in a simplified format
1268          */
1269         public static function processTags(array $tags)
1270         {
1271                 $taglist = [];
1272
1273                 foreach ($tags as $tag) {
1274                         if (empty($tag)) {
1275                                 continue;
1276                         }
1277
1278                         $element = ['type' => str_replace('as:', '', JsonLD::fetchElement($tag, '@type')),
1279                                 'href' => JsonLD::fetchElement($tag, 'as:href', '@id'),
1280                                 'name' => JsonLD::fetchElement($tag, 'as:name', '@value')];
1281
1282                         if (empty($element['type'])) {
1283                                 continue;
1284                         }
1285
1286                         if (empty($element['href'])) {
1287                                 $element['href'] = $element['name'];
1288                         }
1289
1290                         $taglist[] = $element;
1291                 }
1292                 return $taglist;
1293         }
1294
1295         /**
1296          * Convert emojis from JSON-LD format into a simplified format
1297          *
1298          * @param array $emojis
1299          * @return array with emojis in a simplified format
1300          */
1301         private static function processEmojis(array $emojis)
1302         {
1303                 $emojilist = [];
1304
1305                 foreach ($emojis as $emoji) {
1306                         if (empty($emoji) || (JsonLD::fetchElement($emoji, '@type') != 'toot:Emoji') || empty($emoji['as:icon'])) {
1307                                 continue;
1308                         }
1309
1310                         $url = JsonLD::fetchElement($emoji['as:icon'], 'as:url', '@id');
1311                         $element = ['name' => JsonLD::fetchElement($emoji, 'as:name', '@value'),
1312                                 'href' => $url];
1313
1314                         $emojilist[] = $element;
1315                 }
1316
1317                 return $emojilist;
1318         }
1319
1320         /**
1321          * Convert attachments from JSON-LD format into a simplified format
1322          *
1323          * @param array $attachments Attachments in JSON-LD format
1324          *
1325          * @return array Attachments in a simplified format
1326          */
1327         private static function processAttachments(array $attachments)
1328         {
1329                 $attachlist = [];
1330
1331                 // Removes empty values
1332                 $attachments = array_filter($attachments);
1333
1334                 foreach ($attachments as $attachment) {
1335                         switch (JsonLD::fetchElement($attachment, '@type')) {
1336                                 case 'as:Page':
1337                                         $pageUrl = null;
1338                                         $pageImage = null;
1339
1340                                         $urls = JsonLD::fetchElementArray($attachment, 'as:url');
1341                                         foreach ($urls as $url) {
1342                                                 // Single scalar URL case
1343                                                 if (is_string($url)) {
1344                                                         $pageUrl = $url;
1345                                                         continue;
1346                                                 }
1347
1348                                                 $href = JsonLD::fetchElement($url, 'as:href', '@id');
1349                                                 $mediaType = JsonLD::fetchElement($url, 'as:mediaType', '@value');
1350                                                 if (Strings::startsWith($mediaType, 'image')) {
1351                                                         $pageImage = $href;
1352                                                 } else {
1353                                                         $pageUrl = $href;
1354                                                 }
1355                                         }
1356
1357                                         $attachlist[] = [
1358                                                 'type'  => 'link',
1359                                                 'title' => JsonLD::fetchElement($attachment, 'as:name', '@value'),
1360                                                 'desc'  => JsonLD::fetchElement($attachment, 'as:summary', '@value'),
1361                                                 'url'   => $pageUrl,
1362                                                 'image' => $pageImage,
1363                                         ];
1364                                         break;
1365                                 case 'as:Image':
1366                                         $mediaType = JsonLD::fetchElement($attachment, 'as:mediaType', '@value');
1367                                         $imageFullUrl = JsonLD::fetchElement($attachment, 'as:url', '@id');
1368                                         $imagePreviewUrl = null;
1369                                         // Multiple URLs?
1370                                         if (!$imageFullUrl && ($urls = JsonLD::fetchElementArray($attachment, 'as:url'))) {
1371                                                 $imageVariants = [];
1372                                                 $previewVariants = [];
1373                                                 foreach ($urls as $url) {
1374                                                         // Scalar URL, no discrimination possible
1375                                                         if (is_string($url)) {
1376                                                                 $imageFullUrl = $url;
1377                                                                 continue;
1378                                                         }
1379
1380                                                         // Not sure what to do with a different Link media type than the base Image, we skip
1381                                                         if ($mediaType != JsonLD::fetchElement($url, 'as:mediaType', '@value')) {
1382                                                                 continue;
1383                                                         }
1384
1385                                                         $href = JsonLD::fetchElement($url, 'as:href', '@id');
1386
1387                                                         // Default URL choice if no discriminating width is provided
1388                                                         $imageFullUrl = $href ?? $imageFullUrl;
1389
1390                                                         $width = intval(JsonLD::fetchElement($url, 'as:width', '@value') ?? 1);
1391
1392                                                         if ($href && $width) {
1393                                                                 $imageVariants[$width] = $href;
1394                                                                 // 632 is the ideal width for full screen frio posts, we compute the absolute distance to it
1395                                                                 $previewVariants[abs(632 - $width)] = $href;
1396                                                         }
1397                                                 }
1398
1399                                                 if ($imageVariants) {
1400                                                         // Taking the maximum size image
1401                                                         ksort($imageVariants);
1402                                                         $imageFullUrl = array_pop($imageVariants);
1403
1404                                                         // Taking the minimum number distance to the target distance
1405                                                         ksort($previewVariants);
1406                                                         $imagePreviewUrl = array_shift($previewVariants);
1407                                                 }
1408
1409                                                 unset($imageVariants);
1410                                                 unset($previewVariants);
1411                                         }
1412
1413                                         $attachlist[] = [
1414                                                 'type' => str_replace('as:', '', JsonLD::fetchElement($attachment, '@type')),
1415                                                 'mediaType' => $mediaType,
1416                                                 'name'  => JsonLD::fetchElement($attachment, 'as:name', '@value'),
1417                                                 'url'   => $imageFullUrl,
1418                                                 'image' => $imagePreviewUrl !== $imageFullUrl ? $imagePreviewUrl : null,
1419                                         ];
1420                                         break;
1421                                 default:
1422                                         $attachlist[] = [
1423                                                 'type' => str_replace('as:', '', JsonLD::fetchElement($attachment, '@type')),
1424                                                 'mediaType' => JsonLD::fetchElement($attachment, 'as:mediaType', '@value'),
1425                                                 'name' => JsonLD::fetchElement($attachment, 'as:name', '@value'),
1426                                                 'url' => JsonLD::fetchElement($attachment, 'as:url', '@id'),
1427                                                 'height' => JsonLD::fetchElement($attachment, 'as:height', '@value'),
1428                                                 'width' => JsonLD::fetchElement($attachment, 'as:width', '@value'),
1429                                                 'image' => JsonLD::fetchElement($attachment, 'as:image', '@id')
1430                                         ];
1431                         }
1432                 }
1433
1434                 return $attachlist;
1435         }
1436
1437         /**
1438          * Fetch the original source or content with the "language" Markdown or HTML
1439          *
1440          * @param array $object
1441          * @param array $object_data
1442          *
1443          * @return array
1444          * @throws \Exception
1445          */
1446         private static function getSource($object, $object_data)
1447         {
1448                 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/bbcode');
1449                 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
1450                 if (!empty($object_data['source'])) {
1451                         return $object_data;
1452                 }
1453
1454                 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/markdown');
1455                 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
1456                 if (!empty($object_data['source'])) {
1457                         $object_data['source'] = Markdown::toBBCode($object_data['source']);
1458                         return $object_data;
1459                 }
1460
1461                 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/html');
1462                 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
1463                 if (!empty($object_data['source'])) {
1464                         $object_data['source'] = HTML::toBBCode($object_data['source']);
1465                         return $object_data;
1466                 }
1467
1468                 return $object_data;
1469         }
1470
1471         /**
1472          * Extracts a potential alternate URL from a list of additional URL elements
1473          *
1474          * @param array $urls
1475          * @return string
1476          */
1477         private static function extractAlternateUrl(array $urls): string
1478         {
1479                 $alternateUrl = '';
1480                 foreach ($urls as $key => $url) {
1481                         // Not a list but a single URL element
1482                         if (!is_numeric($key)) {
1483                                 continue;
1484                         }
1485
1486                         if (empty($url['@type']) || ($url['@type'] != 'as:Link')) {
1487                                 continue;
1488                         }
1489
1490                         $href = JsonLD::fetchElement($url, 'as:href', '@id');
1491                         if (empty($href)) {
1492                                 continue;
1493                         }
1494
1495                         $mediatype = JsonLD::fetchElement($url, 'as:mediaType');
1496                         if (empty($mediatype)) {
1497                                 continue;
1498                         }
1499
1500                         if ($mediatype == 'text/html') {
1501                                 $alternateUrl = $href;
1502                         }
1503                 }
1504
1505                 return $alternateUrl;
1506         }
1507
1508         /**
1509          * Check if the "as:url" element is an array with multiple links
1510          * This is the case with audio and video posts.
1511          * Then the links are added as attachments
1512          *
1513          * @param array $urls The object URL list
1514          * @return array an array of attachments
1515          */
1516         private static function processAttachmentUrls(array $urls): array
1517         {
1518                 $attachments = [];
1519                 foreach ($urls as $key => $url) {
1520                         // Not a list but a single URL element
1521                         if (!is_numeric($key)) {
1522                                 continue;
1523                         }
1524
1525                         if (empty($url['@type']) || ($url['@type'] != 'as:Link')) {
1526                                 continue;
1527                         }
1528
1529                         $href = JsonLD::fetchElement($url, 'as:href', '@id');
1530                         if (empty($href)) {
1531                                 continue;
1532                         }
1533
1534                         $mediatype = JsonLD::fetchElement($url, 'as:mediaType');
1535                         if (empty($mediatype)) {
1536                                 continue;
1537                         }
1538
1539                         $filetype = strtolower(substr($mediatype, 0, strpos($mediatype, '/')));
1540
1541                         if ($filetype == 'audio') {
1542                                 $attachments[] = ['type' => $filetype, 'mediaType' => $mediatype, 'url' => $href, 'height' => null, 'size' => null, 'name' => ''];
1543                         } elseif ($filetype == 'video') {
1544                                 $height = (int)JsonLD::fetchElement($url, 'as:height', '@value');
1545                                 // PeerTube audio-only track
1546                                 if ($height === 0) {
1547                                         continue;
1548                                 }
1549
1550                                 $size = (int)JsonLD::fetchElement($url, 'pt:size', '@value');
1551                                 $attachments[] = ['type' => $filetype, 'mediaType' => $mediatype, 'url' => $href, 'height' => $height, 'size' => $size, 'name' => ''];
1552                         } elseif (in_array($mediatype, ['application/x-bittorrent', 'application/x-bittorrent;x-scheme-handler/magnet'])) {
1553                                 $height = (int)JsonLD::fetchElement($url, 'as:height', '@value');
1554
1555                                 // For Torrent links we always store the highest resolution
1556                                 if (!empty($attachments[$mediatype]['height']) && ($height < $attachments[$mediatype]['height'])) {
1557                                         continue;
1558                                 }
1559
1560                                 $attachments[$mediatype] = ['type' => $mediatype, 'mediaType' => $mediatype, 'url' => $href, 'height' => $height, 'size' => null, 'name' => ''];
1561                         } elseif ($mediatype == 'application/x-mpegURL') {
1562                                 // PeerTube exception, actual video link is in the tags of this URL element
1563                                 $attachments = array_merge($attachments, self::processAttachmentUrls($url['as:tag']));
1564                         }
1565                 }
1566
1567                 return array_values($attachments);
1568         }
1569
1570         /**
1571          * Fetches data from the object part of an activity
1572          *
1573          * @param array $object
1574          *
1575          * @return array
1576          * @throws \Exception
1577          */
1578         private static function processObject($object)
1579         {
1580                 if (!JsonLD::fetchElement($object, '@id')) {
1581                         return false;
1582                 }
1583
1584                 $object_data = [];
1585                 $object_data['object_type'] = JsonLD::fetchElement($object, '@type');
1586                 $object_data['id'] = JsonLD::fetchElement($object, '@id');
1587                 $object_data['reply-to-id'] = JsonLD::fetchElement($object, 'as:inReplyTo', '@id');
1588
1589                 // An empty "id" field is translated to "./" by the compactor, so we have to check for this content
1590                 if (empty($object_data['reply-to-id']) || ($object_data['reply-to-id'] == './')) {
1591                         $object_data['reply-to-id'] = $object_data['id'];
1592
1593                         // On activities the "reply to" is the id of the object it refers to
1594                         if (in_array($object_data['object_type'], self::ACTIVITY_TYPES)) {
1595                                 $object_id = JsonLD::fetchElement($object, 'as:object', '@id');
1596                                 if (!empty($object_id)) {
1597                                         $object_data['reply-to-id'] = $object_id;
1598                                 }
1599                         }
1600                 } else {
1601                         // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
1602                         $replyToId = Item::getURIByLink($object_data['reply-to-id']);
1603                         if (!empty($replyToId) && ($object_data['reply-to-id'] != $replyToId)) {
1604                                 Logger::notice('Fix wrong reply-to', ['received' => $object_data['reply-to-id'], 'correct' => $replyToId]);
1605                                 $object_data['reply-to-id'] = $replyToId;
1606                         }
1607                 }
1608
1609                 $object_data['published'] = JsonLD::fetchElement($object, 'as:published', '@value');
1610                 $object_data['updated'] = JsonLD::fetchElement($object, 'as:updated', '@value');
1611
1612                 if (empty($object_data['updated'])) {
1613                         $object_data['updated'] = $object_data['published'];
1614                 }
1615
1616                 if (empty($object_data['published']) && !empty($object_data['updated'])) {
1617                         $object_data['published'] = $object_data['updated'];
1618                 }
1619
1620                 $actor = JsonLD::fetchElement($object, 'as:attributedTo', '@id');
1621                 if (empty($actor)) {
1622                         $actor = JsonLD::fetchElement($object, 'as:actor', '@id');
1623                 }
1624
1625                 $location = JsonLD::fetchElement($object, 'as:location', 'as:name', '@type', 'as:Place');
1626                 $location = JsonLD::fetchElement($location, 'location', '@value');
1627                 if ($location) {
1628                         // Some AP software allow formatted text in post location, so we run all the text converters we have to boil
1629                         // down to HTML and then finally format to plaintext.
1630                         $location = Markdown::convert($location);
1631                         $location = BBCode::toPlaintext($location);
1632                 }
1633
1634                 $object_data['sc:identifier'] = JsonLD::fetchElement($object, 'sc:identifier', '@value');
1635                 $object_data['diaspora:guid'] = JsonLD::fetchElement($object, 'diaspora:guid', '@value');
1636                 $object_data['diaspora:comment'] = JsonLD::fetchElement($object, 'diaspora:comment', '@value');
1637                 $object_data['diaspora:like'] = JsonLD::fetchElement($object, 'diaspora:like', '@value');
1638                 $object_data['actor'] = $object_data['author'] = $actor;
1639                 $object_data['context'] = JsonLD::fetchElement($object, 'as:context', '@id');
1640                 $object_data['conversation'] = JsonLD::fetchElement($object, 'ostatus:conversation', '@id');
1641                 $object_data['sensitive'] = JsonLD::fetchElement($object, 'as:sensitive');
1642                 $object_data['name'] = JsonLD::fetchElement($object, 'as:name', '@value');
1643                 $object_data['summary'] = JsonLD::fetchElement($object, 'as:summary', '@value');
1644                 $object_data['content'] = JsonLD::fetchElement($object, 'as:content', '@value');
1645                 $object_data['mediatype'] = JsonLD::fetchElement($object, 'as:mediaType', '@value');
1646                 $object_data = self::getSource($object, $object_data);
1647                 $object_data['start-time'] = JsonLD::fetchElement($object, 'as:startTime', '@value');
1648                 $object_data['end-time'] = JsonLD::fetchElement($object, 'as:endTime', '@value');
1649                 $object_data['location'] = $location;
1650                 $object_data['latitude'] = JsonLD::fetchElement($object, 'as:location', 'as:latitude', '@type', 'as:Place');
1651                 $object_data['latitude'] = JsonLD::fetchElement($object_data, 'latitude', '@value');
1652                 $object_data['longitude'] = JsonLD::fetchElement($object, 'as:location', 'as:longitude', '@type', 'as:Place');
1653                 $object_data['longitude'] = JsonLD::fetchElement($object_data, 'longitude', '@value');
1654                 $object_data['attachments'] = self::processAttachments(JsonLD::fetchElementArray($object, 'as:attachment') ?? []);
1655                 $object_data['tags'] = self::processTags(JsonLD::fetchElementArray($object, 'as:tag') ?? []);
1656                 $object_data['emojis'] = self::processEmojis(JsonLD::fetchElementArray($object, 'as:tag', null, '@type', 'toot:Emoji') ?? []);
1657                 $object_data['languages'] = self::processLanguages(JsonLD::fetchElementArray($object, 'sc:inLanguage') ?? []);
1658                 $object_data['generator'] = JsonLD::fetchElement($object, 'as:generator', 'as:name', '@type', 'as:Application');
1659                 $object_data['generator'] = JsonLD::fetchElement($object_data, 'generator', '@value');
1660                 $object_data['alternate-url'] = JsonLD::fetchElement($object, 'as:url', '@id');
1661
1662                 // Special treatment for Hubzilla links
1663                 if (is_array($object_data['alternate-url'])) {
1664                         $object_data['alternate-url'] = JsonLD::fetchElement($object_data['alternate-url'], 'as:href', '@id');
1665
1666                         if (!is_string($object_data['alternate-url'])) {
1667                                 $object_data['alternate-url'] = JsonLD::fetchElement($object['as:url'], 'as:href', '@id');
1668                         }
1669                 }
1670
1671                 if (!empty($object_data['alternate-url']) && !Network::isValidHttpUrl($object_data['alternate-url'])) {
1672                         $object_data['alternate-url'] = null;
1673                 }
1674
1675                 if (in_array($object_data['object_type'], ['as:Audio', 'as:Video'])) {
1676                         $object_data['alternate-url'] = self::extractAlternateUrl($object['as:url'] ?? []) ?: $object_data['alternate-url'];
1677                         $object_data['attachments'] = array_merge($object_data['attachments'], self::processAttachmentUrls($object['as:url'] ?? []));
1678                 }
1679
1680                 // For page types we expect that the alternate url posts to some page.
1681                 // So we add this to the attachments if it differs from the id.
1682                 // Currently only Lemmy is using the page type.
1683                 if (($object_data['object_type'] == 'as:Page') && !empty($object_data['alternate-url']) && !Strings::compareLink($object_data['alternate-url'], $object_data['id'])) {
1684                         $object_data['attachments'][] = ['url' => $object_data['alternate-url']];
1685                         $object_data['alternate-url'] = null;
1686                 }
1687
1688                 $receiverdata = self::getReceivers($object, $object_data['actor'], $object_data['tags'], true);
1689                 $receivers = $reception_types = [];
1690                 foreach ($receiverdata as $key => $data) {
1691                         $receivers[$key] = $data['uid'];
1692                         $reception_types[$data['uid']] = $data['type'] ?? 0;
1693                 }
1694
1695                 $object_data['receiver_urls']  = self::getReceiverURL($object);
1696                 $object_data['receiver']       = $receivers;
1697                 $object_data['reception_type'] = $reception_types;
1698
1699                 $object_data['unlisted'] = in_array(-1, $object_data['receiver']);
1700                 unset($object_data['receiver'][-1]);
1701                 unset($object_data['reception_type'][-1]);
1702
1703                 // Common object data:
1704
1705                 // Unhandled
1706                 // @context, type, actor, signature, mediaType, duration, replies, icon
1707
1708                 // Also missing: (Defined in the standard, but currently unused)
1709                 // audience, preview, endTime, startTime, image
1710
1711                 // Data in Notes:
1712
1713                 // Unhandled
1714                 // contentMap, announcement_count, announcements, context_id, likes, like_count
1715                 // inReplyToStatusId, shares, quoteUrl, statusnetConversationId
1716
1717                 // Data in video:
1718
1719                 // To-Do?
1720                 // category, licence, language, commentsEnabled
1721
1722                 // Unhandled
1723                 // views, waitTranscoding, state, support, subtitleLanguage
1724                 // likes, dislikes, shares, comments
1725
1726                 return $object_data;
1727         }
1728 }