]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Receiver.php
f9ddb6fd7a80e744323e9ff9b128a7357fac4bb9
[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'])) && 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                                         // Seems to be used by Mastodon to announce that a post is pinned
582                                         self::storeUnhandledActivity(false, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
583                                 } elseif ($object_data['object_type'] == '') {
584                                         // The object type couldn't be determined. We don't have it and we can't fetch it. We ignore this activity.
585                                 } else {
586                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
587                                 }
588                                 break;
589
590                         case 'as:Announce':
591                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
592                                         $object_data['thread-completion'] = Contact::getIdForURL($actor);
593                                         $object_data['completion-mode']   = self::COMPLETION_ANNOUCE;
594
595                                         $item = ActivityPub\Processor::createItem($object_data);
596                                         if (empty($item)) {
597                                                 return;
598                                         }
599
600                                         $item['post-reason'] = Item::PR_ANNOUNCEMENT;
601                                         ActivityPub\Processor::postItem($object_data, $item);
602
603                                         $announce_object_data = self::processObject($activity);
604                                         $announce_object_data['name'] = $type;
605                                         $announce_object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
606                                         $announce_object_data['object_id'] = $object_data['object_id'];
607                                         $announce_object_data['object_type'] = $object_data['object_type'];
608                                         $announce_object_data['push'] = $push;
609
610                                         if (!empty($body)) {
611                                                 $announce_object_data['raw'] = $body;
612                                         }
613
614                                         ActivityPub\Processor::createActivity($announce_object_data, Activity::ANNOUNCE);
615                                 } else {
616                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
617                                 }
618                                 break;
619
620                         case 'as:Like':
621                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
622                                         ActivityPub\Processor::createActivity($object_data, Activity::LIKE);
623                                 } elseif ($object_data['object_type'] == '') {
624                                         // The object type couldn't be determined. We don't have it and we can't fetch it. We ignore this activity.
625                                 } else {
626                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
627                                 }
628                                 break;
629
630                         case 'as:Dislike':
631                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
632                                         ActivityPub\Processor::createActivity($object_data, Activity::DISLIKE);
633                                 } elseif ($object_data['object_type'] == '') {
634                                         // The object type couldn't be determined. We don't have it and we can't fetch it. We ignore this activity.
635                                 } else {
636                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
637                                 }
638                                 break;
639
640                         case 'as:TentativeAccept':
641                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
642                                         ActivityPub\Processor::createActivity($object_data, Activity::ATTENDMAYBE);
643                                 } else {
644                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
645                                 }
646                                 break;
647
648                         case 'as:Update':
649                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
650                                         ActivityPub\Processor::updateItem($object_data);
651                                 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
652                                         ActivityPub\Processor::updatePerson($object_data);
653                                 } elseif (in_array($object_data['object_type'], ['pt:CacheFile'])) {
654                                         // Unhandled Peertube activity
655                                 } else {
656                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
657                                 }
658                                 break;
659
660                         case 'as:Delete':
661                                 if (in_array($object_data['object_type'], array_merge(['as:Tombstone'], self::CONTENT_TYPES))) {
662                                         ActivityPub\Processor::deleteItem($object_data);
663                                 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
664                                         ActivityPub\Processor::deletePerson($object_data);
665                                 } elseif ($object_data['object_type'] == '') {
666                                         // The object type couldn't be determined. Most likely we don't have it here. We ignore this activity.
667                                 } else {
668                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
669                                 }
670                                 break;
671
672                         case 'as:Block':
673                                 if (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
674                                         // Used by Mastodon to announce that the sender has blocked the account
675                                         self::storeUnhandledActivity(false, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
676                                 } else {
677                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
678                                 }
679                                 break;
680
681                         case 'as:Remove':
682                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
683                                         // Seems to be used by Mastodon to remove the pinned status of a post
684                                         self::storeUnhandledActivity(false, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
685                                 } elseif ($object_data['object_type'] == '') {
686                                         // The object type couldn't be determined. We don't have it and we can't fetch it. We ignore this activity.
687                                 } else {
688                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
689                                 }
690                                 break;
691
692                         case 'as:Follow':
693                                 if (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
694                                         ActivityPub\Processor::followUser($object_data);
695                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
696                                         $object_data['reply-to-id'] = $object_data['object_id'];
697                                         ActivityPub\Processor::createActivity($object_data, Activity::FOLLOW);
698                                 } else {
699                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
700                                 }
701                                 break;
702
703                         case 'as:Accept':
704                                 if ($object_data['object_type'] == 'as:Follow') {
705                                         ActivityPub\Processor::acceptFollowUser($object_data);
706                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
707                                         ActivityPub\Processor::createActivity($object_data, Activity::ATTEND);
708                                 } else {
709                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
710                                 }
711                                 break;
712
713                         case 'as:Reject':
714                                 if ($object_data['object_type'] == 'as:Follow') {
715                                         ActivityPub\Processor::rejectFollowUser($object_data);
716                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
717                                         ActivityPub\Processor::createActivity($object_data, Activity::ATTENDNO);
718                                 } else {
719                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
720                                 }
721                                 break;
722
723                         case 'as:Undo':
724                                 if (($object_data['object_type'] == 'as:Follow') &&
725                                         in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
726                                         ActivityPub\Processor::undoFollowUser($object_data);
727                                 } elseif (($object_data['object_type'] == 'as:Follow') &&
728                                         in_array($object_data['object_object_type'], self::CONTENT_TYPES)) {
729                                         ActivityPub\Processor::undoActivity($object_data);
730                                 } elseif (($object_data['object_type'] == 'as:Accept') &&
731                                         in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
732                                         ActivityPub\Processor::rejectFollowUser($object_data);
733                                 } elseif (in_array($object_data['object_type'], array_merge(self::ACTIVITY_TYPES, ['as:Announce'])) &&
734                                         in_array($object_data['object_object_type'], array_merge(['as:Tombstone'], self::CONTENT_TYPES))) {
735                                         ActivityPub\Processor::undoActivity($object_data);
736                                 } elseif (in_array($object_data['object_type'], array_merge(self::ACTIVITY_TYPES, ['as:Announce', 'as:Create', ''])) &&
737                                         empty($object_data['object_object_type'])) {
738                                         // We cannot detect the target object. So we can ignore it.
739                                 } elseif (in_array($object_data['object_type'], ['as:Create']) &&
740                                         in_array($object_data['object_object_type'], ['pt:CacheFile'])) {
741                                         // Unhandled Peertube activity
742                                 } else {
743                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
744                                 }
745                                 break;
746
747                         case 'as:View':
748                                 if (in_array($object_data['object_type'], ['as:Note', 'as:Video'])) {
749                                         // Unhandled Peertube 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'], array_merge([''], self::CONTENT_TYPES))) {
757                                         // Unhandled Pleroma activity to react to a post via an emoji
758                                 } else {
759                                         self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
760                                 }
761                                 break;
762         
763                         default:
764                                 Logger::info('Unknown activity: ' . $type . ' ' . $object_data['object_type']);
765                                 self::storeUnhandledActivity(true, $type, $object_data, $activity, $body, $uid, $trust_source, $push, $signer);
766                                 break;
767                 }
768         }
769
770         /**
771          * Stores unhandled or unknown Activities as a file
772          *
773          * @param boolean $unknown      "true" if the activity is unknown, "false" if it is unhandled
774          * @param string  $type         Activity type
775          * @param array   $object_data  Preprocessed array that is generated out of the received activity
776          * @param array   $activity     Array with activity data
777          * @param string  $body         The unprocessed body
778          * @param integer $uid          User ID
779          * @param boolean $trust_source Do we trust the source?
780          * @param boolean $push         Message had been pushed to our system
781          * @param array   $signer       The signer of the post
782          * @return void
783          */
784         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 = [])
785         {
786                 if (!DI::config()->get('debug', 'ap_log_unknown')) {
787                         return;
788                 }
789
790                 $tempfile = tempnam(System::getTempPath(), ($unknown  ? 'unknown-' : 'unhandled-') . str_replace(':', '-', $type) . '-' . str_replace(':', '-', $object_data['object_type']) . '-' . str_replace(':', '-', $object_data['object_object_type'] ?? '') . '-');
791                 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));
792                 Logger::notice('Unknown activity stored', ['type' => $type, 'object_type' => $object_data['object_type'], $object_data['object_object_type'] ?? '', 'file' => $tempfile]);
793         }
794
795         /**
796          * Fetch a user id from an activity array
797          *
798          * @param array  $activity
799          * @param string $actor
800          *
801          * @return int   user id
802          */
803         public static function getBestUserForActivity(array $activity)
804         {
805                 $uid = 0;
806                 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id') ?? '';
807
808                 $receivers = self::getReceivers($activity, $actor);
809                 foreach ($receivers as $receiver) {
810                         if ($receiver['type'] == self::TARGET_GLOBAL) {
811                                 return 0;
812                         }
813                         if (empty($uid) || ($receiver['type'] == self::TARGET_TO)) {
814                                 $uid = $receiver['uid'];
815                         }
816                 }
817
818                 // When we haven't found any user yet, we just chose a user who most likely could have access to the content
819                 if (empty($uid)) {
820                         $contact = Contact::selectFirst(['uid'], ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND]]);
821                         if (!empty($contact['uid'])) {
822                                 $uid = $contact['uid'];
823                         }
824                 }
825
826                 return $uid;
827         }
828
829         public static function getReceiverURL($activity)
830         {
831                 $urls = [];
832
833                 foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
834                         $receiver_list = JsonLD::fetchElementArray($activity, $element, '@id');
835                         if (empty($receiver_list)) {
836                                 continue;
837                         }
838
839                         foreach ($receiver_list as $receiver) {
840                                 if ($receiver == self::PUBLIC_COLLECTION) {
841                                         $receiver = ActivityPub::PUBLIC_COLLECTION;
842                                 }
843                                 $urls[$element][] = $receiver;
844                         }
845                 }
846
847                 return $urls;
848         }
849
850         /**
851          * Fetch the receiver list from an activity array
852          *
853          * @param array   $activity
854          * @param string  $actor
855          * @param array   $tags
856          * @param boolean $fetch_unlisted
857          *
858          * @return array with receivers (user id)
859          * @throws \Exception
860          */
861         private static function getReceivers($activity, $actor, $tags = [], $fetch_unlisted = false)
862         {
863                 $reply = $receivers = [];
864
865                 // When it is an answer, we inherite the receivers from the parent
866                 $replyto = JsonLD::fetchElement($activity, 'as:inReplyTo', '@id');
867                 if (!empty($replyto)) {
868                         $reply = [$replyto];
869
870                         // Fix possibly wrong item URI (could be an answer to a plink uri)
871                         $fixedReplyTo = Item::getURIByLink($replyto);
872                         if (!empty($fixedReplyTo)) {
873                                 $reply[] = $fixedReplyTo;
874                         }
875                 }
876
877                 // Fetch all posts that refer to the object id
878                 $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
879                 if (!empty($object_id)) {
880                         $reply[] = $object_id;
881                 }
882
883                 if (!empty($reply)) {
884                         $parents = Post::select(['uid'], ['uri' => $reply]);
885                         while ($parent = Post::fetch($parents)) {
886                                 $receivers[$parent['uid']] = ['uid' => $parent['uid'], 'type' => self::TARGET_ANSWER];
887                         }
888                         DBA::close($parents);
889                 }
890
891                 if (!empty($actor)) {
892                         $profile   = APContact::getByURL($actor);
893                         $followers = $profile['followers'] ?? '';
894                         $is_forum  = ($actor['type'] ?? '') == 'Group';
895                         Logger::info('Got actor and followers', ['actor' => $actor, 'followers' => $followers]);
896                 } else {
897                         Logger::info('Empty actor', ['activity' => $activity]);
898                         $followers = '';
899                         $is_forum  = false;
900                 }
901
902                 // We have to prevent false follower assumptions upon thread completions
903                 $follower_target = empty($activity['thread-completion']) ? self::TARGET_FOLLOWER : self::TARGET_UNKNOWN;
904
905                 foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
906                         $receiver_list = JsonLD::fetchElementArray($activity, $element, '@id');
907                         if (empty($receiver_list)) {
908                                 continue;
909                         }
910
911                         foreach ($receiver_list as $receiver) {
912                                 if ($receiver == self::PUBLIC_COLLECTION) {
913                                         $receivers[0] = ['uid' => 0, 'type' => self::TARGET_GLOBAL];
914                                 }
915
916                                 // Add receiver "-1" for unlisted posts
917                                 if ($fetch_unlisted && ($receiver == self::PUBLIC_COLLECTION) && ($element == 'as:cc')) {
918                                         $receivers[-1] = ['uid' => -1, 'type' => self::TARGET_GLOBAL];
919                                 }
920
921                                 // Fetch the receivers for the public and the followers collection
922                                 if ((($receiver == $followers) || (($receiver == self::PUBLIC_COLLECTION) && !$is_forum)) && !empty($actor)) {
923                                         $receivers = self::getReceiverForActor($actor, $tags, $receivers, $follower_target);
924                                         continue;
925                                 }
926
927                                 // Fetching all directly addressed receivers
928                                 $condition = ['self' => true, 'nurl' => Strings::normaliseLink($receiver)];
929                                 $contact = DBA::selectFirst('contact', ['uid', 'contact-type'], $condition);
930                                 if (!DBA::isResult($contact)) {
931                                         continue;
932                                 }
933
934                                 // Check if the potential receiver is following the actor
935                                 // Exception: The receiver is targetted via "to" or this is a comment
936                                 if ((($element != 'as:to') && empty($replyto)) || ($contact['contact-type'] == Contact::TYPE_COMMUNITY)) {
937                                         $networks = Protocol::FEDERATED;
938                                         $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND],
939                                                 'network' => $networks, 'archive' => false, 'pending' => false, 'uid' => $contact['uid']];
940
941                                         // Forum posts are only accepted from forum contacts
942                                         if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
943                                                 $condition['rel'] = [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER];
944                                         }
945
946                                         if (!DBA::exists('contact', $condition)) {
947                                                 continue;
948                                         }
949                                 }
950
951                                 $type = $receivers[$contact['uid']]['type'] ?? self::TARGET_UNKNOWN;
952                                 if (in_array($type, [self::TARGET_UNKNOWN, self::TARGET_FOLLOWER, self::TARGET_ANSWER, self::TARGET_GLOBAL])) {
953                                         switch ($element) {
954                                                 case 'as:to':
955                                                         $type = self::TARGET_TO;
956                                                         break;
957                                                 case 'as:cc':
958                                                         $type = self::TARGET_CC;
959                                                         break;
960                                                 case 'as:bto':
961                                                         $type = self::TARGET_BTO;
962                                                         break;
963                                                 case 'as:bcc':
964                                                         $type = self::TARGET_BCC;
965                                                         break;
966                                         }
967
968                                         $receivers[$contact['uid']] = ['uid' => $contact['uid'], 'type' => $type];
969                                 }
970                         }
971                 }
972
973                 self::switchContacts($receivers, $actor);
974
975                 return $receivers;
976         }
977
978         /**
979          * Fetch the receiver list of a given actor
980          *
981          * @param string  $actor
982          * @param array   $tags
983          * @param array   $receivers
984          * @param integer $target_type
985          *
986          * @return array with receivers (user id)
987          * @throws \Exception
988          */
989         private static function getReceiverForActor($actor, $tags, $receivers, $target_type)
990         {
991                 $basecondition = ['rel' => [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER],
992                         'network' => Protocol::FEDERATED, 'archive' => false, 'pending' => false];
993
994                 $condition = DBA::mergeConditions($basecondition, ["`nurl` = ? AND `uid` != ?", Strings::normaliseLink($actor), 0]);
995                 $contacts = DBA::select('contact', ['uid', 'rel'], $condition);
996                 while ($contact = DBA::fetch($contacts)) {
997                         if (empty($receivers[$contact['uid']]) && self::isValidReceiverForActor($contact, $tags)) {
998                                 $receivers[$contact['uid']] = ['uid' => $contact['uid'], 'type' => $target_type];
999                         }
1000                 }
1001                 DBA::close($contacts);
1002
1003                 // The queries are split because of performance issues
1004                 $condition = DBA::mergeConditions($basecondition, ["`alias` IN (?, ?) AND `uid` != ?", Strings::normaliseLink($actor), $actor, 0]);
1005                 $contacts = DBA::select('contact', ['uid', 'rel'], $condition);
1006                 while ($contact = DBA::fetch($contacts)) {
1007                         if (empty($receivers[$contact['uid']]) && self::isValidReceiverForActor($contact, $tags)) {
1008                                 $receivers[$contact['uid']] = ['uid' => $contact['uid'], 'type' => $target_type];
1009                         }
1010                 }
1011                 DBA::close($contacts);
1012                 return $receivers;
1013         }
1014
1015         /**
1016          * Tests if the contact is a valid receiver for this actor
1017          *
1018          * @param array  $contact
1019          * @param string $actor
1020          * @param array  $tags
1021          *
1022          * @return bool with receivers (user id)
1023          * @throws \Exception
1024          */
1025         private static function isValidReceiverForActor($contact, $tags)
1026         {
1027                 // Are we following the contact? Then this is a valid receiver
1028                 if (in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND])) {
1029                         return true;
1030                 }
1031
1032                 // When the possible receiver isn't a community, then it is no valid receiver
1033                 $owner = User::getOwnerDataById($contact['uid']);
1034                 if (empty($owner) || ($owner['contact-type'] != Contact::TYPE_COMMUNITY)) {
1035                         return false;
1036                 }
1037
1038                 // Is the community account tagged?
1039                 foreach ($tags as $tag) {
1040                         if ($tag['type'] != 'Mention') {
1041                                 continue;
1042                         }
1043
1044                         if (Strings::compareLink($tag['href'], $owner['url'])) {
1045                                 return true;
1046                         }
1047                 }
1048
1049                 return false;
1050         }
1051
1052         /**
1053          * Switches existing contacts to ActivityPub
1054          *
1055          * @param integer $cid Contact ID
1056          * @param integer $uid User ID
1057          * @param string  $url Profile URL
1058          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1059          * @throws \ImagickException
1060          */
1061         public static function switchContact($cid, $uid, $url)
1062         {
1063                 if (DBA::exists('contact', ['id' => $cid, 'network' => Protocol::ACTIVITYPUB])) {
1064                         Logger::info('Contact is already ActivityPub', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
1065                         return;
1066                 }
1067
1068                 if (Contact::updateFromProbe($cid)) {
1069                         Logger::info('Update was successful', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
1070                 }
1071
1072                 // Send a new follow request to be sure that the connection still exists
1073                 if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND], 'network' => Protocol::ACTIVITYPUB])) {
1074                         Logger::info('Contact had been switched to ActivityPub. Sending a new follow request.', ['uid' => $uid, 'url' => $url]);
1075                         ActivityPub\Transmitter::sendActivity('Follow', $url, $uid);
1076                 }
1077         }
1078
1079         /**
1080          *
1081          *
1082          * @param $receivers
1083          * @param $actor
1084          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1085          * @throws \ImagickException
1086          */
1087         private static function switchContacts($receivers, $actor)
1088         {
1089                 if (empty($actor)) {
1090                         return;
1091                 }
1092
1093                 foreach ($receivers as $receiver) {
1094                         $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver['uid'], 'network' => Protocol::OSTATUS, 'nurl' => Strings::normaliseLink($actor)]);
1095                         if (DBA::isResult($contact)) {
1096                                 self::switchContact($contact['id'], $receiver['uid'], $actor);
1097                         }
1098
1099                         $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver['uid'], 'network' => Protocol::OSTATUS, 'alias' => [Strings::normaliseLink($actor), $actor]]);
1100                         if (DBA::isResult($contact)) {
1101                                 self::switchContact($contact['id'], $receiver['uid'], $actor);
1102                         }
1103                 }
1104         }
1105
1106         /**
1107          *
1108          *
1109          * @param       $object_data
1110          * @param array $activity
1111          *
1112          * @return mixed
1113          */
1114         private static function addActivityFields($object_data, $activity)
1115         {
1116                 if (!empty($activity['published']) && empty($object_data['published'])) {
1117                         $object_data['published'] = JsonLD::fetchElement($activity, 'as:published', '@value');
1118                 }
1119
1120                 if (!empty($activity['diaspora:guid']) && empty($object_data['diaspora:guid'])) {
1121                         $object_data['diaspora:guid'] = JsonLD::fetchElement($activity, 'diaspora:guid', '@value');
1122                 }
1123
1124                 $object_data['service'] = JsonLD::fetchElement($activity, 'as:instrument', 'as:name', '@type', 'as:Service');
1125                 $object_data['service'] = JsonLD::fetchElement($object_data, 'service', '@value');
1126
1127                 if (!empty($object_data['object_id'])) {
1128                         // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
1129                         $objectId = Item::getURIByLink($object_data['object_id']);
1130                         if (!empty($objectId) && ($object_data['object_id'] != $objectId)) {
1131                                 Logger::notice('Fix wrong object-id', ['received' => $object_data['object_id'], 'correct' => $objectId]);
1132                                 $object_data['object_id'] = $objectId;
1133                         }
1134                 }
1135
1136                 return $object_data;
1137         }
1138
1139         /**
1140          * Fetches the object data from external ressources if needed
1141          *
1142          * @param string  $object_id    Object ID of the the provided object
1143          * @param array   $object       The provided object array
1144          * @param boolean $trust_source Do we trust the provided object?
1145          * @param integer $uid          User ID for the signature that we use to fetch data
1146          *
1147          * @return array|false with trusted and valid object data
1148          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1149          * @throws \ImagickException
1150          */
1151         private static function fetchObject(string $object_id, array $object = [], bool $trust_source = false, int $uid = 0)
1152         {
1153                 // By fetching the type we check if the object is complete.
1154                 $type = JsonLD::fetchElement($object, '@type');
1155
1156                 if (!$trust_source || empty($type)) {
1157                         $data = ActivityPub::fetchContent($object_id, $uid);
1158                         if (!empty($data)) {
1159                                 $object = JsonLD::compact($data);
1160                                 Logger::info('Fetched content for ' . $object_id);
1161                         } else {
1162                                 Logger::info('Empty content for ' . $object_id . ', check if content is available locally.');
1163
1164                                 $item = Post::selectFirst(Item::DELIVER_FIELDLIST, ['uri' => $object_id]);
1165                                 if (!DBA::isResult($item)) {
1166                                         Logger::info('Object with url ' . $object_id . ' was not found locally.');
1167                                         return false;
1168                                 }
1169                                 Logger::info('Using already stored item for url ' . $object_id);
1170                                 $data = ActivityPub\Transmitter::createNote($item);
1171                                 $object = JsonLD::compact($data);
1172                         }
1173
1174                         $id = JsonLD::fetchElement($object, '@id');
1175                         if (empty($id)) {
1176                                 Logger::info('Empty id');
1177                                 return false;
1178                         }
1179
1180                         if ($id != $object_id) {
1181                                 Logger::info('Fetched id differs from provided id', ['provided' => $object_id, 'fetched' => $id]);
1182                                 return false;
1183                         }
1184                 } else {
1185                         Logger::info('Using original object for url ' . $object_id);
1186                 }
1187
1188                 $type = JsonLD::fetchElement($object, '@type');
1189                 if (empty($type)) {
1190                         Logger::info('Empty type');
1191                         return false;
1192                 }
1193
1194                 // Lemmy is resharing "create" activities instead of content
1195                 // We fetch the content from the activity.
1196                 if (in_array($type, ['as:Create'])) {
1197                         $object = $object['as:object'];
1198                         $type = JsonLD::fetchElement($object, '@type');
1199                         if (empty($type)) {
1200                                 Logger::info('Empty type');
1201                                 return false;
1202                         }
1203                         $object_data = self::processObject($object);
1204                 }
1205
1206                 // We currently don't handle 'pt:CacheFile', but with this step we avoid logging
1207                 if (in_array($type, self::CONTENT_TYPES) || ($type == 'pt:CacheFile')) {
1208                         $object_data = self::processObject($object);
1209
1210                         if (!empty($data)) {
1211                                 $object_data['raw'] = json_encode($data);
1212                         }
1213                         return $object_data;
1214                 }
1215
1216                 if ($type == 'as:Announce') {
1217                         $object_id = JsonLD::fetchElement($object, 'object', '@id');
1218                         if (empty($object_id) || !is_string($object_id)) {
1219                                 return false;
1220                         }
1221                         return self::fetchObject($object_id, [], false, $uid);
1222                 }
1223
1224                 Logger::info('Unhandled object type: ' . $type);
1225                 return false;
1226         }
1227
1228         /**
1229          * Converts the language element (Used by Peertube)
1230          *
1231          * @param array $languages
1232          * @return array Languages
1233          */
1234         public static function processLanguages(array $languages)
1235         {
1236                 if (empty($languages)) {
1237                         return [];
1238                 }
1239
1240                 $language_list = [];
1241
1242                 foreach ($languages as $language) {
1243                         if (!empty($language['_:identifier']) && !empty($language['as:name'])) {
1244                                 $language_list[$language['_:identifier']] = $language['as:name'];
1245                         }
1246                 }
1247                 return $language_list;
1248         }
1249
1250         /**
1251          * Convert tags from JSON-LD format into a simplified format
1252          *
1253          * @param array $tags Tags in JSON-LD format
1254          *
1255          * @return array with tags in a simplified format
1256          */
1257         public static function processTags(array $tags)
1258         {
1259                 $taglist = [];
1260
1261                 foreach ($tags as $tag) {
1262                         if (empty($tag)) {
1263                                 continue;
1264                         }
1265
1266                         $element = ['type' => str_replace('as:', '', JsonLD::fetchElement($tag, '@type')),
1267                                 'href' => JsonLD::fetchElement($tag, 'as:href', '@id'),
1268                                 'name' => JsonLD::fetchElement($tag, 'as:name', '@value')];
1269
1270                         if (empty($element['type'])) {
1271                                 continue;
1272                         }
1273
1274                         if (empty($element['href'])) {
1275                                 $element['href'] = $element['name'];
1276                         }
1277
1278                         $taglist[] = $element;
1279                 }
1280                 return $taglist;
1281         }
1282
1283         /**
1284          * Convert emojis from JSON-LD format into a simplified format
1285          *
1286          * @param array $emojis
1287          * @return array with emojis in a simplified format
1288          */
1289         private static function processEmojis(array $emojis)
1290         {
1291                 $emojilist = [];
1292
1293                 foreach ($emojis as $emoji) {
1294                         if (empty($emoji) || (JsonLD::fetchElement($emoji, '@type') != 'toot:Emoji') || empty($emoji['as:icon'])) {
1295                                 continue;
1296                         }
1297
1298                         $url = JsonLD::fetchElement($emoji['as:icon'], 'as:url', '@id');
1299                         $element = ['name' => JsonLD::fetchElement($emoji, 'as:name', '@value'),
1300                                 'href' => $url];
1301
1302                         $emojilist[] = $element;
1303                 }
1304
1305                 return $emojilist;
1306         }
1307
1308         /**
1309          * Convert attachments from JSON-LD format into a simplified format
1310          *
1311          * @param array $attachments Attachments in JSON-LD format
1312          *
1313          * @return array Attachments in a simplified format
1314          */
1315         private static function processAttachments(array $attachments)
1316         {
1317                 $attachlist = [];
1318
1319                 // Removes empty values
1320                 $attachments = array_filter($attachments);
1321
1322                 foreach ($attachments as $attachment) {
1323                         switch (JsonLD::fetchElement($attachment, '@type')) {
1324                                 case 'as:Page':
1325                                         $pageUrl = null;
1326                                         $pageImage = null;
1327
1328                                         $urls = JsonLD::fetchElementArray($attachment, 'as:url');
1329                                         foreach ($urls as $url) {
1330                                                 // Single scalar URL case
1331                                                 if (is_string($url)) {
1332                                                         $pageUrl = $url;
1333                                                         continue;
1334                                                 }
1335
1336                                                 $href = JsonLD::fetchElement($url, 'as:href', '@id');
1337                                                 $mediaType = JsonLD::fetchElement($url, 'as:mediaType', '@value');
1338                                                 if (Strings::startsWith($mediaType, 'image')) {
1339                                                         $pageImage = $href;
1340                                                 } else {
1341                                                         $pageUrl = $href;
1342                                                 }
1343                                         }
1344
1345                                         $attachlist[] = [
1346                                                 'type'  => 'link',
1347                                                 'title' => JsonLD::fetchElement($attachment, 'as:name', '@value'),
1348                                                 'desc'  => JsonLD::fetchElement($attachment, 'as:summary', '@value'),
1349                                                 'url'   => $pageUrl,
1350                                                 'image' => $pageImage,
1351                                         ];
1352                                         break;
1353                                 case 'as:Image':
1354                                         $mediaType = JsonLD::fetchElement($attachment, 'as:mediaType', '@value');
1355                                         $imageFullUrl = JsonLD::fetchElement($attachment, 'as:url', '@id');
1356                                         $imagePreviewUrl = null;
1357                                         // Multiple URLs?
1358                                         if (!$imageFullUrl && ($urls = JsonLD::fetchElementArray($attachment, 'as:url'))) {
1359                                                 $imageVariants = [];
1360                                                 $previewVariants = [];
1361                                                 foreach ($urls as $url) {
1362                                                         // Scalar URL, no discrimination possible
1363                                                         if (is_string($url)) {
1364                                                                 $imageFullUrl = $url;
1365                                                                 continue;
1366                                                         }
1367
1368                                                         // Not sure what to do with a different Link media type than the base Image, we skip
1369                                                         if ($mediaType != JsonLD::fetchElement($url, 'as:mediaType', '@value')) {
1370                                                                 continue;
1371                                                         }
1372
1373                                                         $href = JsonLD::fetchElement($url, 'as:href', '@id');
1374
1375                                                         // Default URL choice if no discriminating width is provided
1376                                                         $imageFullUrl = $href ?? $imageFullUrl;
1377
1378                                                         $width = intval(JsonLD::fetchElement($url, 'as:width', '@value') ?? 1);
1379
1380                                                         if ($href && $width) {
1381                                                                 $imageVariants[$width] = $href;
1382                                                                 // 632 is the ideal width for full screen frio posts, we compute the absolute distance to it
1383                                                                 $previewVariants[abs(632 - $width)] = $href;
1384                                                         }
1385                                                 }
1386
1387                                                 if ($imageVariants) {
1388                                                         // Taking the maximum size image
1389                                                         ksort($imageVariants);
1390                                                         $imageFullUrl = array_pop($imageVariants);
1391
1392                                                         // Taking the minimum number distance to the target distance
1393                                                         ksort($previewVariants);
1394                                                         $imagePreviewUrl = array_shift($previewVariants);
1395                                                 }
1396
1397                                                 unset($imageVariants);
1398                                                 unset($previewVariants);
1399                                         }
1400
1401                                         $attachlist[] = [
1402                                                 'type' => str_replace('as:', '', JsonLD::fetchElement($attachment, '@type')),
1403                                                 'mediaType' => $mediaType,
1404                                                 'name'  => JsonLD::fetchElement($attachment, 'as:name', '@value'),
1405                                                 'url'   => $imageFullUrl,
1406                                                 'image' => $imagePreviewUrl !== $imageFullUrl ? $imagePreviewUrl : null,
1407                                         ];
1408                                         break;
1409                                 default:
1410                                         $attachlist[] = [
1411                                                 'type' => str_replace('as:', '', JsonLD::fetchElement($attachment, '@type')),
1412                                                 'mediaType' => JsonLD::fetchElement($attachment, 'as:mediaType', '@value'),
1413                                                 'name' => JsonLD::fetchElement($attachment, 'as:name', '@value'),
1414                                                 'url' => JsonLD::fetchElement($attachment, 'as:url', '@id'),
1415                                                 'height' => JsonLD::fetchElement($attachment, 'as:height', '@value'),
1416                                                 'width' => JsonLD::fetchElement($attachment, 'as:width', '@value'),
1417                                                 'image' => JsonLD::fetchElement($attachment, 'as:image', '@id')
1418                                         ];
1419                         }
1420                 }
1421
1422                 return $attachlist;
1423         }
1424
1425         /**
1426          * Fetch the original source or content with the "language" Markdown or HTML
1427          *
1428          * @param array $object
1429          * @param array $object_data
1430          *
1431          * @return array
1432          * @throws \Exception
1433          */
1434         private static function getSource($object, $object_data)
1435         {
1436                 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/bbcode');
1437                 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
1438                 if (!empty($object_data['source'])) {
1439                         return $object_data;
1440                 }
1441
1442                 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/markdown');
1443                 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
1444                 if (!empty($object_data['source'])) {
1445                         $object_data['source'] = Markdown::toBBCode($object_data['source']);
1446                         return $object_data;
1447                 }
1448
1449                 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/html');
1450                 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
1451                 if (!empty($object_data['source'])) {
1452                         $object_data['source'] = HTML::toBBCode($object_data['source']);
1453                         return $object_data;
1454                 }
1455
1456                 return $object_data;
1457         }
1458
1459         /**
1460          * Extracts a potential alternate URL from a list of additional URL elements
1461          *
1462          * @param array $urls
1463          * @return string
1464          */
1465         private static function extractAlternateUrl(array $urls): string
1466         {
1467                 $alternateUrl = '';
1468                 foreach ($urls as $key => $url) {
1469                         // Not a list but a single URL element
1470                         if (!is_numeric($key)) {
1471                                 continue;
1472                         }
1473
1474                         if (empty($url['@type']) || ($url['@type'] != 'as:Link')) {
1475                                 continue;
1476                         }
1477
1478                         $href = JsonLD::fetchElement($url, 'as:href', '@id');
1479                         if (empty($href)) {
1480                                 continue;
1481                         }
1482
1483                         $mediatype = JsonLD::fetchElement($url, 'as:mediaType');
1484                         if (empty($mediatype)) {
1485                                 continue;
1486                         }
1487
1488                         if ($mediatype == 'text/html') {
1489                                 $alternateUrl = $href;
1490                         }
1491                 }
1492
1493                 return $alternateUrl;
1494         }
1495
1496         /**
1497          * Check if the "as:url" element is an array with multiple links
1498          * This is the case with audio and video posts.
1499          * Then the links are added as attachments
1500          *
1501          * @param array $urls The object URL list
1502          * @return array an array of attachments
1503          */
1504         private static function processAttachmentUrls(array $urls): array
1505         {
1506                 $attachments = [];
1507                 foreach ($urls as $key => $url) {
1508                         // Not a list but a single URL element
1509                         if (!is_numeric($key)) {
1510                                 continue;
1511                         }
1512
1513                         if (empty($url['@type']) || ($url['@type'] != 'as:Link')) {
1514                                 continue;
1515                         }
1516
1517                         $href = JsonLD::fetchElement($url, 'as:href', '@id');
1518                         if (empty($href)) {
1519                                 continue;
1520                         }
1521
1522                         $mediatype = JsonLD::fetchElement($url, 'as:mediaType');
1523                         if (empty($mediatype)) {
1524                                 continue;
1525                         }
1526
1527                         $filetype = strtolower(substr($mediatype, 0, strpos($mediatype, '/')));
1528
1529                         if ($filetype == 'audio') {
1530                                 $attachments[] = ['type' => $filetype, 'mediaType' => $mediatype, 'url' => $href, 'height' => null, 'size' => null, 'name' => ''];
1531                         } elseif ($filetype == 'video') {
1532                                 $height = (int)JsonLD::fetchElement($url, 'as:height', '@value');
1533                                 // PeerTube audio-only track
1534                                 if ($height === 0) {
1535                                         continue;
1536                                 }
1537
1538                                 $size = (int)JsonLD::fetchElement($url, 'pt:size', '@value');
1539                                 $attachments[] = ['type' => $filetype, 'mediaType' => $mediatype, 'url' => $href, 'height' => $height, 'size' => $size, 'name' => ''];
1540                         } elseif (in_array($mediatype, ['application/x-bittorrent', 'application/x-bittorrent;x-scheme-handler/magnet'])) {
1541                                 $height = (int)JsonLD::fetchElement($url, 'as:height', '@value');
1542
1543                                 // For Torrent links we always store the highest resolution
1544                                 if (!empty($attachments[$mediatype]['height']) && ($height < $attachments[$mediatype]['height'])) {
1545                                         continue;
1546                                 }
1547
1548                                 $attachments[$mediatype] = ['type' => $mediatype, 'mediaType' => $mediatype, 'url' => $href, 'height' => $height, 'size' => null, 'name' => ''];
1549                         } elseif ($mediatype == 'application/x-mpegURL') {
1550                                 // PeerTube exception, actual video link is in the tags of this URL element
1551                                 $attachments = array_merge($attachments, self::processAttachmentUrls($url['as:tag']));
1552                         }
1553                 }
1554
1555                 return array_values($attachments);
1556         }
1557
1558         /**
1559          * Fetches data from the object part of an activity
1560          *
1561          * @param array $object
1562          *
1563          * @return array
1564          * @throws \Exception
1565          */
1566         private static function processObject($object)
1567         {
1568                 if (!JsonLD::fetchElement($object, '@id')) {
1569                         return false;
1570                 }
1571
1572                 $object_data = [];
1573                 $object_data['object_type'] = JsonLD::fetchElement($object, '@type');
1574                 $object_data['id'] = JsonLD::fetchElement($object, '@id');
1575                 $object_data['reply-to-id'] = JsonLD::fetchElement($object, 'as:inReplyTo', '@id');
1576
1577                 // An empty "id" field is translated to "./" by the compactor, so we have to check for this content
1578                 if (empty($object_data['reply-to-id']) || ($object_data['reply-to-id'] == './')) {
1579                         $object_data['reply-to-id'] = $object_data['id'];
1580
1581                         // On activities the "reply to" is the id of the object it refers to
1582                         if (in_array($object_data['object_type'], self::ACTIVITY_TYPES)) {
1583                                 $object_id = JsonLD::fetchElement($object, 'as:object', '@id');
1584                                 if (!empty($object_id)) {
1585                                         $object_data['reply-to-id'] = $object_id;
1586                                 }
1587                         }
1588                 } else {
1589                         // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
1590                         $replyToId = Item::getURIByLink($object_data['reply-to-id']);
1591                         if (!empty($replyToId) && ($object_data['reply-to-id'] != $replyToId)) {
1592                                 Logger::notice('Fix wrong reply-to', ['received' => $object_data['reply-to-id'], 'correct' => $replyToId]);
1593                                 $object_data['reply-to-id'] = $replyToId;
1594                         }
1595                 }
1596
1597                 $object_data['published'] = JsonLD::fetchElement($object, 'as:published', '@value');
1598                 $object_data['updated'] = JsonLD::fetchElement($object, 'as:updated', '@value');
1599
1600                 if (empty($object_data['updated'])) {
1601                         $object_data['updated'] = $object_data['published'];
1602                 }
1603
1604                 if (empty($object_data['published']) && !empty($object_data['updated'])) {
1605                         $object_data['published'] = $object_data['updated'];
1606                 }
1607
1608                 $actor = JsonLD::fetchElement($object, 'as:attributedTo', '@id');
1609                 if (empty($actor)) {
1610                         $actor = JsonLD::fetchElement($object, 'as:actor', '@id');
1611                 }
1612
1613                 $location = JsonLD::fetchElement($object, 'as:location', 'as:name', '@type', 'as:Place');
1614                 $location = JsonLD::fetchElement($location, 'location', '@value');
1615                 if ($location) {
1616                         // Some AP software allow formatted text in post location, so we run all the text converters we have to boil
1617                         // down to HTML and then finally format to plaintext.
1618                         $location = Markdown::convert($location);
1619                         $location = BBCode::toPlaintext($location);
1620                 }
1621
1622                 $object_data['sc:identifier'] = JsonLD::fetchElement($object, 'sc:identifier', '@value');
1623                 $object_data['diaspora:guid'] = JsonLD::fetchElement($object, 'diaspora:guid', '@value');
1624                 $object_data['diaspora:comment'] = JsonLD::fetchElement($object, 'diaspora:comment', '@value');
1625                 $object_data['diaspora:like'] = JsonLD::fetchElement($object, 'diaspora:like', '@value');
1626                 $object_data['actor'] = $object_data['author'] = $actor;
1627                 $object_data['context'] = JsonLD::fetchElement($object, 'as:context', '@id');
1628                 $object_data['conversation'] = JsonLD::fetchElement($object, 'ostatus:conversation', '@id');
1629                 $object_data['sensitive'] = JsonLD::fetchElement($object, 'as:sensitive');
1630                 $object_data['name'] = JsonLD::fetchElement($object, 'as:name', '@value');
1631                 $object_data['summary'] = JsonLD::fetchElement($object, 'as:summary', '@value');
1632                 $object_data['content'] = JsonLD::fetchElement($object, 'as:content', '@value');
1633                 $object_data['mediatype'] = JsonLD::fetchElement($object, 'as:mediaType', '@value');
1634                 $object_data = self::getSource($object, $object_data);
1635                 $object_data['start-time'] = JsonLD::fetchElement($object, 'as:startTime', '@value');
1636                 $object_data['end-time'] = JsonLD::fetchElement($object, 'as:endTime', '@value');
1637                 $object_data['location'] = $location;
1638                 $object_data['latitude'] = JsonLD::fetchElement($object, 'as:location', 'as:latitude', '@type', 'as:Place');
1639                 $object_data['latitude'] = JsonLD::fetchElement($object_data, 'latitude', '@value');
1640                 $object_data['longitude'] = JsonLD::fetchElement($object, 'as:location', 'as:longitude', '@type', 'as:Place');
1641                 $object_data['longitude'] = JsonLD::fetchElement($object_data, 'longitude', '@value');
1642                 $object_data['attachments'] = self::processAttachments(JsonLD::fetchElementArray($object, 'as:attachment') ?? []);
1643                 $object_data['tags'] = self::processTags(JsonLD::fetchElementArray($object, 'as:tag') ?? []);
1644                 $object_data['emojis'] = self::processEmojis(JsonLD::fetchElementArray($object, 'as:tag', null, '@type', 'toot:Emoji') ?? []);
1645                 $object_data['languages'] = self::processLanguages(JsonLD::fetchElementArray($object, 'sc:inLanguage') ?? []);
1646                 $object_data['generator'] = JsonLD::fetchElement($object, 'as:generator', 'as:name', '@type', 'as:Application');
1647                 $object_data['generator'] = JsonLD::fetchElement($object_data, 'generator', '@value');
1648                 $object_data['alternate-url'] = JsonLD::fetchElement($object, 'as:url', '@id');
1649
1650                 // Special treatment for Hubzilla links
1651                 if (is_array($object_data['alternate-url'])) {
1652                         $object_data['alternate-url'] = JsonLD::fetchElement($object_data['alternate-url'], 'as:href', '@id');
1653
1654                         if (!is_string($object_data['alternate-url'])) {
1655                                 $object_data['alternate-url'] = JsonLD::fetchElement($object['as:url'], 'as:href', '@id');
1656                         }
1657                 }
1658
1659                 if (!empty($object_data['alternate-url']) && !Network::isValidHttpUrl($object_data['alternate-url'])) {
1660                         $object_data['alternate-url'] = null;
1661                 }
1662
1663                 if (in_array($object_data['object_type'], ['as:Audio', 'as:Video'])) {
1664                         $object_data['alternate-url'] = self::extractAlternateUrl($object['as:url'] ?? []) ?: $object_data['alternate-url'];
1665                         $object_data['attachments'] = array_merge($object_data['attachments'], self::processAttachmentUrls($object['as:url'] ?? []));
1666                 }
1667
1668                 // For page types we expect that the alternate url posts to some page.
1669                 // So we add this to the attachments if it differs from the id.
1670                 // Currently only Lemmy is using the page type.
1671                 if (($object_data['object_type'] == 'as:Page') && !empty($object_data['alternate-url']) && !Strings::compareLink($object_data['alternate-url'], $object_data['id'])) {
1672                         $object_data['attachments'][] = ['url' => $object_data['alternate-url']];
1673                         $object_data['alternate-url'] = null;
1674                 }
1675
1676                 $receiverdata = self::getReceivers($object, $object_data['actor'], $object_data['tags'], true);
1677                 $receivers = $reception_types = [];
1678                 foreach ($receiverdata as $key => $data) {
1679                         $receivers[$key] = $data['uid'];
1680                         $reception_types[$data['uid']] = $data['type'] ?? 0;
1681                 }
1682
1683                 $object_data['receiver_urls']  = self::getReceiverURL($object);
1684                 $object_data['receiver']       = $receivers;
1685                 $object_data['reception_type'] = $reception_types;
1686
1687                 $object_data['unlisted'] = in_array(-1, $object_data['receiver']);
1688                 unset($object_data['receiver'][-1]);
1689                 unset($object_data['reception_type'][-1]);
1690
1691                 // Common object data:
1692
1693                 // Unhandled
1694                 // @context, type, actor, signature, mediaType, duration, replies, icon
1695
1696                 // Also missing: (Defined in the standard, but currently unused)
1697                 // audience, preview, endTime, startTime, image
1698
1699                 // Data in Notes:
1700
1701                 // Unhandled
1702                 // contentMap, announcement_count, announcements, context_id, likes, like_count
1703                 // inReplyToStatusId, shares, quoteUrl, statusnetConversationId
1704
1705                 // Data in video:
1706
1707                 // To-Do?
1708                 // category, licence, language, commentsEnabled
1709
1710                 // Unhandled
1711                 // views, waitTranscoding, state, support, subtitleLanguage
1712                 // likes, dislikes, shares, comments
1713
1714                 return $object_data;
1715         }
1716 }