3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Protocol\ActivityPub;
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\Model\Contact;
31 use Friendica\Model\APContact;
32 use Friendica\Model\Item;
33 use Friendica\Model\User;
34 use Friendica\Protocol\Activity;
35 use Friendica\Protocol\ActivityPub;
36 use Friendica\Util\DateTimeFormat;
37 use Friendica\Util\HTTPSignature;
38 use Friendica\Util\JsonLD;
39 use Friendica\Util\LDSignature;
40 use Friendica\Util\Strings;
43 * ActivityPub Receiver Protocol class
48 * Check what this is meant to do:
57 const PUBLIC_COLLECTION = 'as:Public';
58 const ACCOUNT_TYPES = ['as:Person', 'as:Organization', 'as:Service', 'as:Group', 'as:Application'];
59 const CONTENT_TYPES = ['as:Note', 'as:Article', 'as:Video', 'as:Image', 'as:Event', 'as:Audio'];
60 const ACTIVITY_TYPES = ['as:Like', 'as:Dislike', 'as:Accept', 'as:Reject', 'as:TentativeAccept'];
63 * Checks if the web request is done for the AP protocol
65 * @return bool is it AP?
67 public static function isRequest()
69 return stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/activity+json') ||
70 stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/ld+json');
74 * Checks incoming message from the inbox
78 * @param integer $uid User ID
81 public static function processInbox($body, $header, $uid)
83 $http_signer = HTTPSignature::getSigner($body, $header);
84 if (empty($http_signer)) {
85 Logger::warning('Invalid HTTP signature, message will be discarded.');
88 Logger::info('Valid HTTP signature', ['signer' => $http_signer]);
91 $activity = json_decode($body, true);
93 if (empty($activity)) {
94 Logger::warning('Invalid body.');
98 $ldactivity = JsonLD::compact($activity);
100 $actor = JsonLD::fetchElement($ldactivity, 'as:actor', '@id');
102 Logger::info('Message for user ' . $uid . ' is from actor ' . $actor);
104 if (LDSignature::isSigned($activity)) {
105 $ld_signer = LDSignature::getSigner($activity);
106 if (empty($ld_signer)) {
107 Logger::log('Invalid JSON-LD signature from ' . $actor, Logger::DEBUG);
109 if (!empty($ld_signer && ($actor == $http_signer))) {
110 Logger::log('The HTTP and the JSON-LD signature belong to ' . $ld_signer, Logger::DEBUG);
111 $trust_source = true;
112 } elseif (!empty($ld_signer)) {
113 Logger::log('JSON-LD signature is signed by ' . $ld_signer, Logger::DEBUG);
114 $trust_source = true;
115 } elseif ($actor == $http_signer) {
116 Logger::log('Bad JSON-LD signature, but HTTP signer fits the actor.', Logger::DEBUG);
117 $trust_source = true;
119 Logger::log('Invalid JSON-LD signature and the HTTP signer is different.', Logger::DEBUG);
120 $trust_source = false;
122 } elseif ($actor == $http_signer) {
123 Logger::log('Trusting post without JSON-LD signature, The actor fits the HTTP signer.', Logger::DEBUG);
124 $trust_source = true;
126 Logger::log('No JSON-LD signature, different actor.', Logger::DEBUG);
127 $trust_source = false;
130 self::processActivity($ldactivity, $body, $uid, $trust_source, true);
134 * Fetches the object type for a given object id
136 * @param array $activity
137 * @param string $object_id Object ID of the the provided object
138 * @param integer $uid User ID
140 * @return string with object type
141 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
142 * @throws \ImagickException
144 private static function fetchObjectType($activity, $object_id, $uid = 0)
146 if (!empty($activity['as:object'])) {
147 $object_type = JsonLD::fetchElement($activity['as:object'], '@type');
148 if (!empty($object_type)) {
153 if (Item::exists(['uri' => $object_id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]])) {
154 // We just assume "note" since it doesn't make a difference for the further processing
158 $profile = APContact::getByURL($object_id);
159 if (!empty($profile['type'])) {
160 return 'as:' . $profile['type'];
163 $data = ActivityPub::fetchContent($object_id, $uid);
165 $object = JsonLD::compact($data);
166 $type = JsonLD::fetchElement($object, '@type');
176 * Prepare the object array
178 * @param array $activity Array with activity data
179 * @param integer $uid User ID
180 * @param boolean $push Message had been pushed to our system
181 * @param boolean $trust_source Do we trust the source?
183 * @return array with object data
184 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
185 * @throws \ImagickException
187 private static function prepareObjectData($activity, $uid, $push, &$trust_source)
189 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
191 Logger::log('Empty actor', Logger::DEBUG);
195 $type = JsonLD::fetchElement($activity, '@type');
197 // Fetch all receivers from to, cc, bto and bcc
198 $receivers = self::getReceivers($activity, $actor);
200 // When it is a delivery to a personal inbox we add that user to the receivers
202 $additional = ['uid:' . $uid => $uid];
203 $receivers = array_merge($receivers, $additional);
205 // We possibly need some user to fetch private content,
206 // so we fetch the first out ot the list.
207 $uid = self::getFirstUserFromReceivers($receivers);
210 Logger::log('Receivers: ' . $uid . ' - ' . json_encode($receivers), Logger::DEBUG);
212 $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
213 if (empty($object_id)) {
214 Logger::log('No object found', Logger::DEBUG);
218 if (!is_string($object_id)) {
219 Logger::info('Invalid object id', ['object' => $object_id]);
223 $object_type = self::fetchObjectType($activity, $object_id, $uid);
225 // Fetch the content only on activities where this matters
226 if (in_array($type, ['as:Create', 'as:Update', 'as:Announce'])) {
227 if ($type == 'as:Announce') {
228 $trust_source = false;
230 $object_data = self::fetchObject($object_id, $activity['as:object'], $trust_source, $uid);
231 if (empty($object_data)) {
232 Logger::log("Object data couldn't be processed", Logger::DEBUG);
236 $object_data['object_id'] = $object_id;
238 if ($type == 'as:Announce') {
239 $object_data['push'] = false;
241 $object_data['push'] = $push;
244 // Test if it is an answer to a mail
245 if (DBA::exists('mail', ['uri' => $object_data['reply-to-id']])) {
246 $object_data['directmessage'] = true;
248 $object_data['directmessage'] = JsonLD::fetchElement($activity, 'litepub:directMessage');
251 // We had been able to retrieve the object data - so we can trust the source
252 $trust_source = true;
253 } elseif (in_array($type, array_merge(self::ACTIVITY_TYPES, ['as:Follow'])) && in_array($object_type, self::CONTENT_TYPES)) {
254 // Create a mostly empty array out of the activity data (instead of the object).
255 // This way we later don't have to check for the existence of ech individual array element.
256 $object_data = self::processObject($activity);
257 $object_data['name'] = $type;
258 $object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
259 $object_data['object_id'] = $object_id;
260 $object_data['object_type'] = ''; // Since we don't fetch the object, we don't know the type
261 } elseif (in_array($type, ['as:Add'])) {
263 $object_data['id'] = JsonLD::fetchElement($activity, '@id');
264 $object_data['target_id'] = JsonLD::fetchElement($activity, 'as:target', '@id');
265 $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
266 $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
267 $object_data['object_content'] = JsonLD::fetchElement($activity['as:object'], 'as:content', '@type');
270 $object_data['id'] = JsonLD::fetchElement($activity, '@id');
271 $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
272 $object_data['object_actor'] = JsonLD::fetchElement($activity['as:object'], 'as:actor', '@id');
273 $object_data['object_object'] = JsonLD::fetchElement($activity['as:object'], 'as:object');
274 $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
276 // An Undo is done on the object of an object, so we need that type as well
277 if (($type == 'as:Undo') && !empty($object_data['object_object'])) {
278 $object_data['object_object_type'] = self::fetchObjectType([], $object_data['object_object'], $uid);
282 $object_data = self::addActivityFields($object_data, $activity);
284 if (empty($object_data['object_type'])) {
285 $object_data['object_type'] = $object_type;
288 $object_data['type'] = $type;
289 $object_data['actor'] = $actor;
290 $object_data['item_receiver'] = $receivers;
291 $object_data['receiver'] = array_merge($object_data['receiver'] ?? [], $receivers);
293 Logger::log('Processing ' . $object_data['type'] . ' ' . $object_data['object_type'] . ' ' . $object_data['id'], Logger::DEBUG);
299 * Fetches the first user id from the receiver array
301 * @param array $receivers Array with receivers
302 * @return integer user id;
304 public static function getFirstUserFromReceivers($receivers)
306 foreach ($receivers as $receiver) {
307 if (!empty($receiver)) {
315 * Processes the activity object
317 * @param array $activity Array with activity data
318 * @param string $body
319 * @param integer $uid User ID
320 * @param boolean $trust_source Do we trust the source?
321 * @param boolean $push Message had been pushed to our system
324 public static function processActivity($activity, $body = '', $uid = null, $trust_source = false, $push = false)
326 $type = JsonLD::fetchElement($activity, '@type');
328 Logger::log('Empty type', Logger::DEBUG);
332 if (!JsonLD::fetchElement($activity, 'as:object', '@id')) {
333 Logger::log('Empty object', Logger::DEBUG);
337 if (!JsonLD::fetchElement($activity, 'as:actor', '@id')) {
338 Logger::log('Empty actor', Logger::DEBUG);
343 // Don't trust the source if "actor" differs from "attributedTo". The content could be forged.
344 if ($trust_source && ($type == 'as:Create') && is_array($activity['as:object'])) {
345 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
346 $attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
347 $trust_source = ($actor == $attributed_to);
348 if (!$trust_source) {
349 Logger::log('Not trusting actor: ' . $actor . '. It differs from attributedTo: ' . $attributed_to, Logger::DEBUG);
353 // $trust_source is called by reference and is set to true if the content was retrieved successfully
354 $object_data = self::prepareObjectData($activity, $uid, $push, $trust_source);
355 if (empty($object_data)) {
356 Logger::log('No object data found', Logger::DEBUG);
360 if (!$trust_source) {
361 Logger::log('No trust for activity type "' . $type . '", so we quit now.', Logger::DEBUG);
365 if (!empty($body) && empty($object_data['raw'])) {
366 $object_data['raw'] = $body;
369 // Internal flag for thread completion. See Processor.php
370 if (!empty($activity['thread-completion'])) {
371 $object_data['thread-completion'] = $activity['thread-completion'];
376 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
377 ActivityPub\Processor::createItem($object_data);
382 if ($object_data['object_type'] == 'as:tag') {
383 ActivityPub\Processor::addTag($object_data);
388 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
389 $profile = APContact::getByURL($object_data['actor']);
390 // Reshared posts from persons appear as summary at the bottom
391 // If this isn't set, then a single reshare appears on top. This is used for groups.
392 $object_data['thread-completion'] = ($profile['type'] != 'Group');
394 ActivityPub\Processor::createItem($object_data);
396 // Add the bottom reshare information only for persons
397 if ($profile['type'] != 'Group') {
398 $announce_object_data = self::processObject($activity);
399 $announce_object_data['name'] = $type;
400 $announce_object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
401 $announce_object_data['object_id'] = $object_data['object_id'];
402 $announce_object_data['object_type'] = $object_data['object_type'];
403 $announce_object_data['push'] = $push;
406 $announce_object_data['raw'] = $body;
409 ActivityPub\Processor::createActivity($announce_object_data, Activity::ANNOUNCE);
415 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
416 ActivityPub\Processor::createActivity($object_data, Activity::LIKE);
421 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
422 ActivityPub\Processor::createActivity($object_data, Activity::DISLIKE);
426 case 'as:TentativeAccept':
427 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
428 ActivityPub\Processor::createActivity($object_data, Activity::ATTENDMAYBE);
433 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
434 ActivityPub\Processor::updateItem($object_data);
435 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
436 ActivityPub\Processor::updatePerson($object_data);
441 if ($object_data['object_type'] == 'as:Tombstone') {
442 ActivityPub\Processor::deleteItem($object_data);
443 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
444 ActivityPub\Processor::deletePerson($object_data);
449 if (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
450 ActivityPub\Processor::followUser($object_data);
451 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
452 $object_data['reply-to-id'] = $object_data['object_id'];
453 ActivityPub\Processor::createActivity($object_data, Activity::FOLLOW);
458 if ($object_data['object_type'] == 'as:Follow') {
459 ActivityPub\Processor::acceptFollowUser($object_data);
460 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
461 ActivityPub\Processor::createActivity($object_data, Activity::ATTEND);
466 if ($object_data['object_type'] == 'as:Follow') {
467 ActivityPub\Processor::rejectFollowUser($object_data);
468 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
469 ActivityPub\Processor::createActivity($object_data, Activity::ATTENDNO);
474 if (($object_data['object_type'] == 'as:Follow') &&
475 in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
476 ActivityPub\Processor::undoFollowUser($object_data);
477 } elseif (($object_data['object_type'] == 'as:Accept') &&
478 in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
479 ActivityPub\Processor::rejectFollowUser($object_data);
480 } elseif (in_array($object_data['object_type'], self::ACTIVITY_TYPES) &&
481 in_array($object_data['object_object_type'], self::CONTENT_TYPES)) {
482 ActivityPub\Processor::undoActivity($object_data);
487 Logger::log('Unknown activity: ' . $type . ' ' . $object_data['object_type'], Logger::DEBUG);
493 * Fetch the receiver list from an activity array
495 * @param array $activity
496 * @param string $actor
498 * @param boolean $fetch_unlisted
500 * @return array with receivers (user id)
503 private static function getReceivers($activity, $actor, $tags = [], $fetch_unlisted = false)
507 // When it is an answer, we inherite the receivers from the parent
508 $replyto = JsonLD::fetchElement($activity, 'as:inReplyTo', '@id');
509 if (!empty($replyto)) {
510 // Fix possibly wrong item URI (could be an answer to a plink uri)
511 $fixedReplyTo = Item::getURIByLink($replyto);
512 $replyto = $fixedReplyTo ?: $replyto;
514 $parents = Item::select(['uid'], ['uri' => $replyto]);
515 while ($parent = Item::fetch($parents)) {
516 $receivers['uid:' . $parent['uid']] = $parent['uid'];
520 if (!empty($actor)) {
521 $profile = APContact::getByURL($actor);
522 $followers = $profile['followers'] ?? '';
524 Logger::log('Actor: ' . $actor . ' - Followers: ' . $followers, Logger::DEBUG);
526 Logger::log('Empty actor', Logger::DEBUG);
530 foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
531 $receiver_list = JsonLD::fetchElementArray($activity, $element, '@id');
532 if (empty($receiver_list)) {
536 foreach ($receiver_list as $receiver) {
537 if ($receiver == self::PUBLIC_COLLECTION) {
538 $receivers['uid:0'] = 0;
541 // Add receiver "-1" for unlisted posts
542 if ($fetch_unlisted && ($receiver == self::PUBLIC_COLLECTION) && ($element == 'as:cc')) {
543 $receivers['uid:-1'] = -1;
546 if (($receiver == self::PUBLIC_COLLECTION) && !empty($actor)) {
547 // This will most likely catch all OStatus connections to Mastodon
548 $condition = ['alias' => [$actor, Strings::normaliseLink($actor)], 'rel' => [Contact::SHARING, Contact::FRIEND]
549 , 'archive' => false, 'pending' => false];
550 $contacts = DBA::select('contact', ['uid'], $condition);
551 while ($contact = DBA::fetch($contacts)) {
552 if ($contact['uid'] != 0) {
553 $receivers['uid:' . $contact['uid']] = $contact['uid'];
556 DBA::close($contacts);
559 if (in_array($receiver, [$followers, self::PUBLIC_COLLECTION]) && !empty($actor)) {
560 $receivers = array_merge($receivers, self::getReceiverForActor($actor, $tags));
564 // Fetching all directly addressed receivers
565 $condition = ['self' => true, 'nurl' => Strings::normaliseLink($receiver)];
566 $contact = DBA::selectFirst('contact', ['uid', 'contact-type'], $condition);
567 if (!DBA::isResult($contact)) {
571 // Check if the potential receiver is following the actor
572 // Exception: The receiver is targetted via "to" or this is a comment
573 if ((($element != 'as:to') && empty($replyto)) || ($contact['contact-type'] == Contact::TYPE_COMMUNITY)) {
574 $networks = Protocol::FEDERATED;
575 $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND],
576 'network' => $networks, 'archive' => false, 'pending' => false, 'uid' => $contact['uid']];
578 // Forum posts are only accepted from forum contacts
579 if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
580 $condition['rel'] = [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER];
583 if (!DBA::exists('contact', $condition)) {
588 $receivers['uid:' . $contact['uid']] = $contact['uid'];
592 self::switchContacts($receivers, $actor);
598 * Fetch the receiver list of a given actor
600 * @param string $actor
603 * @return array with receivers (user id)
606 public static function getReceiverForActor($actor, $tags)
609 $networks = Protocol::FEDERATED;
610 $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER],
611 'network' => $networks, 'archive' => false, 'pending' => false];
612 $contacts = DBA::select('contact', ['uid', 'rel'], $condition);
613 while ($contact = DBA::fetch($contacts)) {
614 if (self::isValidReceiverForActor($contact, $actor, $tags)) {
615 $receivers['uid:' . $contact['uid']] = $contact['uid'];
618 DBA::close($contacts);
623 * Tests if the contact is a valid receiver for this actor
625 * @param array $contact
626 * @param string $actor
629 * @return bool with receivers (user id)
632 private static function isValidReceiverForActor($contact, $actor, $tags)
634 // Public contacts are no valid receiver
635 if ($contact['uid'] == 0) {
639 // Are we following the contact? Then this is a valid receiver
640 if (in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND])) {
644 // When the possible receiver isn't a community, then it is no valid receiver
645 $owner = User::getOwnerDataById($contact['uid']);
646 if (empty($owner) || ($owner['contact-type'] != Contact::TYPE_COMMUNITY)) {
650 // Is the community account tagged?
651 foreach ($tags as $tag) {
652 if ($tag['type'] != 'Mention') {
656 if ($tag['href'] == $owner['url']) {
665 * Switches existing contacts to ActivityPub
667 * @param integer $cid Contact ID
668 * @param integer $uid User ID
669 * @param string $url Profile URL
670 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
671 * @throws \ImagickException
673 public static function switchContact($cid, $uid, $url)
675 if (DBA::exists('contact', ['id' => $cid, 'network' => Protocol::ACTIVITYPUB])) {
676 Logger::info('Contact is already ActivityPub', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
680 if (Contact::updateFromProbe($cid, '', true)) {
681 Logger::info('Update was successful', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
684 // Send a new follow request to be sure that the connection still exists
685 if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND], 'network' => Protocol::ACTIVITYPUB])) {
686 Logger::info('Contact had been switched to ActivityPub. Sending a new follow request.', ['uid' => $uid, 'url' => $url]);
687 ActivityPub\Transmitter::sendActivity('Follow', $url, $uid);
696 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
697 * @throws \ImagickException
699 private static function switchContacts($receivers, $actor)
705 foreach ($receivers as $receiver) {
706 $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'nurl' => Strings::normaliseLink($actor)]);
707 if (DBA::isResult($contact)) {
708 self::switchContact($contact['id'], $receiver, $actor);
711 $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'alias' => [Strings::normaliseLink($actor), $actor]]);
712 if (DBA::isResult($contact)) {
713 self::switchContact($contact['id'], $receiver, $actor);
721 * @param $object_data
722 * @param array $activity
726 private static function addActivityFields($object_data, $activity)
728 if (!empty($activity['published']) && empty($object_data['published'])) {
729 $object_data['published'] = JsonLD::fetchElement($activity, 'as:published', '@value');
732 if (!empty($activity['diaspora:guid']) && empty($object_data['diaspora:guid'])) {
733 $object_data['diaspora:guid'] = JsonLD::fetchElement($activity, 'diaspora:guid', '@value');
736 $object_data['service'] = JsonLD::fetchElement($activity, 'as:instrument', 'as:name', '@type', 'as:Service');
737 $object_data['service'] = JsonLD::fetchElement($object_data, 'service', '@value');
739 if (!empty($object_data['object_id'])) {
740 // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
741 $objectId = Item::getURIByLink($object_data['object_id']);
742 if (!empty($objectId) && ($object_data['object_id'] != $objectId)) {
743 Logger::notice('Fix wrong object-id', ['received' => $object_data['object_id'], 'correct' => $objectId]);
744 $object_data['object_id'] = $objectId;
752 * Fetches the object data from external ressources if needed
754 * @param string $object_id Object ID of the the provided object
755 * @param array $object The provided object array
756 * @param boolean $trust_source Do we trust the provided object?
757 * @param integer $uid User ID for the signature that we use to fetch data
759 * @return array|false with trusted and valid object data
760 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
761 * @throws \ImagickException
763 private static function fetchObject(string $object_id, array $object = [], bool $trust_source = false, int $uid = 0)
765 // By fetching the type we check if the object is complete.
766 $type = JsonLD::fetchElement($object, '@type');
768 if (!$trust_source || empty($type)) {
769 $data = ActivityPub::fetchContent($object_id, $uid);
771 $object = JsonLD::compact($data);
772 Logger::log('Fetched content for ' . $object_id, Logger::DEBUG);
774 Logger::log('Empty content for ' . $object_id . ', check if content is available locally.', Logger::DEBUG);
776 $item = Item::selectFirst([], ['uri' => $object_id]);
777 if (!DBA::isResult($item)) {
778 Logger::log('Object with url ' . $object_id . ' was not found locally.', Logger::DEBUG);
781 Logger::log('Using already stored item for url ' . $object_id, Logger::DEBUG);
782 $data = ActivityPub\Transmitter::createNote($item);
783 $object = JsonLD::compact($data);
786 Logger::log('Using original object for url ' . $object_id, Logger::DEBUG);
789 $type = JsonLD::fetchElement($object, '@type');
792 Logger::log('Empty type', Logger::DEBUG);
796 if (in_array($type, self::CONTENT_TYPES)) {
797 $object_data = self::processObject($object);
800 $object_data['raw'] = json_encode($data);
805 if ($type == 'as:Announce') {
806 $object_id = JsonLD::fetchElement($object, 'object', '@id');
807 if (empty($object_id) || !is_string($object_id)) {
810 return self::fetchObject($object_id, [], false, $uid);
813 Logger::log('Unhandled object type: ' . $type, Logger::DEBUG);
818 * Convert tags from JSON-LD format into a simplified format
820 * @param array $tags Tags in JSON-LD format
822 * @return array with tags in a simplified format
824 private static function processTags($tags)
832 foreach ($tags as $tag) {
837 $element = ['type' => str_replace('as:', '', JsonLD::fetchElement($tag, '@type')),
838 'href' => JsonLD::fetchElement($tag, 'as:href', '@id'),
839 'name' => JsonLD::fetchElement($tag, 'as:name', '@value')];
841 if (empty($element['type'])) {
845 if (empty($element['href'])) {
846 $element['href'] = $element['name'];
849 $taglist[] = $element;
855 * Convert emojis from JSON-LD format into a simplified format
858 * @return array with emojis in a simplified format
860 private static function processEmojis($emojis)
864 if (empty($emojis)) {
868 foreach ($emojis as $emoji) {
869 if (empty($emoji) || (JsonLD::fetchElement($emoji, '@type') != 'toot:Emoji') || empty($emoji['as:icon'])) {
873 $url = JsonLD::fetchElement($emoji['as:icon'], 'as:url', '@id');
874 $element = ['name' => JsonLD::fetchElement($emoji, 'as:name', '@value'),
877 $emojilist[] = $element;
883 * Convert attachments from JSON-LD format into a simplified format
885 * @param array $attachments Attachments in JSON-LD format
887 * @return array with attachmants in a simplified format
889 private static function processAttachments($attachments)
893 if (empty($attachments)) {
897 foreach ($attachments as $attachment) {
898 if (empty($attachment)) {
902 $attachlist[] = ['type' => str_replace('as:', '', JsonLD::fetchElement($attachment, '@type')),
903 'mediaType' => JsonLD::fetchElement($attachment, 'as:mediaType', '@value'),
904 'name' => JsonLD::fetchElement($attachment, 'as:name', '@value'),
905 'url' => JsonLD::fetchElement($attachment, 'as:url', '@id')];
911 * Fetch the original source or content with the "language" Markdown or HTML
913 * @param array $object
914 * @param array $object_data
919 private static function getSource($object, $object_data)
921 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/bbcode');
922 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
923 if (!empty($object_data['source'])) {
927 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/markdown');
928 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
929 if (!empty($object_data['source'])) {
930 $object_data['source'] = Markdown::toBBCode($object_data['source']);
934 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/html');
935 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
936 if (!empty($object_data['source'])) {
937 $object_data['source'] = HTML::toBBCode($object_data['source']);
945 * Check if the "as:url" element is an array with multiple links
946 * This is the case with audio and video posts.
947 * Then the links are added as attachments
949 * @param array $object The raw object
950 * @param array $object_data The parsed object data for later processing
951 * @return array the object data
953 private static function processAttachmentUrls(array $object, array $object_data) {
954 // Check if this is some url with multiple links
955 if (empty($object['as:url'])) {
959 $urls = $object['as:url'];
960 $keys = array_keys($urls);
961 if (!is_numeric(array_pop($keys))) {
967 foreach ($urls as $url) {
968 if (empty($url['@type']) || ($url['@type'] != 'as:Link')) {
972 $href = JsonLD::fetchElement($url, 'as:href', '@id');
977 $mediatype = JsonLD::fetchElement($url, 'as:mediaType');
978 if (empty($mediatype)) {
982 if ($mediatype == 'text/html') {
983 $object_data['alternate-url'] = $href;
986 $filetype = strtolower(substr($mediatype, 0, strpos($mediatype, '/')));
988 if ($filetype == 'audio') {
989 $attachments[$filetype] = ['type' => $mediatype, 'url' => $href];
990 } elseif ($filetype == 'video') {
991 $height = (int)JsonLD::fetchElement($url, 'as:height', '@value');
993 // We save bandwidth by using a moderate height
994 // Peertube normally uses these heights: 240, 360, 480, 720, 1080
995 if (!empty($attachments[$filetype]['height']) &&
996 (($height > 480) || $height < $attachments[$filetype]['height'])) {
1000 $attachments[$filetype] = ['type' => $mediatype, 'url' => $href, 'height' => $height];
1004 foreach ($attachments as $type => $attachment) {
1005 $object_data['attachments'][] = ['type' => $type,
1006 'mediaType' => $attachment['type'],
1008 'url' => $attachment['url']];
1010 return $object_data;
1014 * Fetches data from the object part of an activity
1016 * @param array $object
1019 * @throws \Exception
1021 private static function processObject($object)
1023 if (!JsonLD::fetchElement($object, '@id')) {
1028 $object_data['object_type'] = JsonLD::fetchElement($object, '@type');
1029 $object_data['id'] = JsonLD::fetchElement($object, '@id');
1030 $object_data['reply-to-id'] = JsonLD::fetchElement($object, 'as:inReplyTo', '@id');
1032 // An empty "id" field is translated to "./" by the compactor, so we have to check for this content
1033 if (empty($object_data['reply-to-id']) || ($object_data['reply-to-id'] == './')) {
1034 $object_data['reply-to-id'] = $object_data['id'];
1036 // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
1037 $replyToId = Item::getURIByLink($object_data['reply-to-id']);
1038 if (!empty($replyToId) && ($object_data['reply-to-id'] != $replyToId)) {
1039 Logger::notice('Fix wrong reply-to', ['received' => $object_data['reply-to-id'], 'correct' => $replyToId]);
1040 $object_data['reply-to-id'] = $replyToId;
1044 $object_data['published'] = JsonLD::fetchElement($object, 'as:published', '@value');
1045 $object_data['updated'] = JsonLD::fetchElement($object, 'as:updated', '@value');
1047 if (empty($object_data['updated'])) {
1048 $object_data['updated'] = $object_data['published'];
1051 if (empty($object_data['published']) && !empty($object_data['updated'])) {
1052 $object_data['published'] = $object_data['updated'];
1055 $actor = JsonLD::fetchElement($object, 'as:attributedTo', '@id');
1056 if (empty($actor)) {
1057 $actor = JsonLD::fetchElement($object, 'as:actor', '@id');
1060 $location = JsonLD::fetchElement($object, 'as:location', 'as:name', '@type', 'as:Place');
1061 $location = JsonLD::fetchElement($location, 'location', '@value');
1063 // Some AP software allow formatted text in post location, so we run all the text converters we have to boil
1064 // down to HTML and then finally format to plaintext.
1065 $location = Markdown::convert($location);
1066 $location = BBCode::convert($location);
1067 $location = HTML::toPlaintext($location);
1070 $object_data['sc:identifier'] = JsonLD::fetchElement($object, 'sc:identifier', '@value');
1071 $object_data['diaspora:guid'] = JsonLD::fetchElement($object, 'diaspora:guid', '@value');
1072 $object_data['diaspora:comment'] = JsonLD::fetchElement($object, 'diaspora:comment', '@value');
1073 $object_data['diaspora:like'] = JsonLD::fetchElement($object, 'diaspora:like', '@value');
1074 $object_data['actor'] = $object_data['author'] = $actor;
1075 $object_data['context'] = JsonLD::fetchElement($object, 'as:context', '@id');
1076 $object_data['conversation'] = JsonLD::fetchElement($object, 'ostatus:conversation', '@id');
1077 $object_data['sensitive'] = JsonLD::fetchElement($object, 'as:sensitive');
1078 $object_data['name'] = JsonLD::fetchElement($object, 'as:name', '@value');
1079 $object_data['summary'] = JsonLD::fetchElement($object, 'as:summary', '@value');
1080 $object_data['content'] = JsonLD::fetchElement($object, 'as:content', '@value');
1081 $object_data = self::getSource($object, $object_data);
1082 $object_data['start-time'] = JsonLD::fetchElement($object, 'as:startTime', '@value');
1083 $object_data['end-time'] = JsonLD::fetchElement($object, 'as:endTime', '@value');
1084 $object_data['location'] = $location;
1085 $object_data['latitude'] = JsonLD::fetchElement($object, 'as:location', 'as:latitude', '@type', 'as:Place');
1086 $object_data['latitude'] = JsonLD::fetchElement($object_data, 'latitude', '@value');
1087 $object_data['longitude'] = JsonLD::fetchElement($object, 'as:location', 'as:longitude', '@type', 'as:Place');
1088 $object_data['longitude'] = JsonLD::fetchElement($object_data, 'longitude', '@value');
1089 $object_data['attachments'] = self::processAttachments(JsonLD::fetchElementArray($object, 'as:attachment'));
1090 $object_data['tags'] = self::processTags(JsonLD::fetchElementArray($object, 'as:tag'));
1091 $object_data['emojis'] = self::processEmojis(JsonLD::fetchElementArray($object, 'as:tag', 'toot:Emoji'));
1092 $object_data['generator'] = JsonLD::fetchElement($object, 'as:generator', 'as:name', '@type', 'as:Application');
1093 $object_data['generator'] = JsonLD::fetchElement($object_data, 'generator', '@value');
1094 $object_data['alternate-url'] = JsonLD::fetchElement($object, 'as:url', '@id');
1096 // Special treatment for Hubzilla links
1097 if (is_array($object_data['alternate-url'])) {
1098 $object_data['alternate-url'] = JsonLD::fetchElement($object_data['alternate-url'], 'as:href', '@id');
1100 if (!is_string($object_data['alternate-url'])) {
1101 $object_data['alternate-url'] = JsonLD::fetchElement($object['as:url'], 'as:href', '@id');
1105 if (in_array($object_data['object_type'], ['as:Audio', 'as:Video'])) {
1106 $object_data = self::processAttachmentUrls($object, $object_data);
1109 $object_data['receiver'] = self::getReceivers($object, $object_data['actor'], $object_data['tags'], true);
1110 $object_data['unlisted'] = in_array(-1, $object_data['receiver']);
1111 unset($object_data['receiver']['uid:-1']);
1113 // Common object data:
1116 // @context, type, actor, signature, mediaType, duration, replies, icon
1118 // Also missing: (Defined in the standard, but currently unused)
1119 // audience, preview, endTime, startTime, image
1124 // contentMap, announcement_count, announcements, context_id, likes, like_count
1125 // inReplyToStatusId, shares, quoteUrl, statusnetConversationId
1130 // category, licence, language, commentsEnabled
1133 // views, waitTranscoding, state, support, subtitleLanguage
1134 // likes, dislikes, shares, comments
1136 return $object_data;