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\Database\DBA;
25 use Friendica\Content\Text\HTML;
26 use Friendica\Content\Text\Markdown;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Model\Contact;
30 use Friendica\Model\APContact;
31 use Friendica\Model\Item;
32 use Friendica\Model\User;
33 use Friendica\Protocol\Activity;
34 use Friendica\Protocol\ActivityPub;
35 use Friendica\Util\DateTimeFormat;
36 use Friendica\Util\HTTPSignature;
37 use Friendica\Util\JsonLD;
38 use Friendica\Util\LDSignature;
39 use Friendica\Util\Strings;
42 * ActivityPub Receiver Protocol class
47 * Check what this is meant to do:
56 const PUBLIC_COLLECTION = 'as:Public';
57 const ACCOUNT_TYPES = ['as:Person', 'as:Organization', 'as:Service', 'as:Group', 'as:Application'];
58 const CONTENT_TYPES = ['as:Note', 'as:Article', 'as:Video', 'as:Image', 'as:Event'];
59 const ACTIVITY_TYPES = ['as:Like', 'as:Dislike', 'as:Accept', 'as:Reject', 'as:TentativeAccept'];
62 * Checks if the web request is done for the AP protocol
64 * @return bool is it AP?
66 public static function isRequest()
68 return stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/activity+json') ||
69 stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/ld+json');
73 * Checks incoming message from the inbox
77 * @param integer $uid User ID
80 public static function processInbox($body, $header, $uid)
82 $http_signer = HTTPSignature::getSigner($body, $header);
83 if (empty($http_signer)) {
84 Logger::warning('Invalid HTTP signature, message will be discarded.');
87 Logger::info('Valid HTTP signature', ['signer' => $http_signer]);
90 $activity = json_decode($body, true);
92 if (empty($activity)) {
93 Logger::warning('Invalid body.');
97 $ldactivity = JsonLD::compact($activity);
99 $actor = JsonLD::fetchElement($ldactivity, 'as:actor', '@id');
101 Logger::info('Message for user ' . $uid . ' is from actor ' . $actor);
103 if (LDSignature::isSigned($activity)) {
104 $ld_signer = LDSignature::getSigner($activity);
105 if (empty($ld_signer)) {
106 Logger::log('Invalid JSON-LD signature from ' . $actor, Logger::DEBUG);
108 if (!empty($ld_signer && ($actor == $http_signer))) {
109 Logger::log('The HTTP and the JSON-LD signature belong to ' . $ld_signer, Logger::DEBUG);
110 $trust_source = true;
111 } elseif (!empty($ld_signer)) {
112 Logger::log('JSON-LD signature is signed by ' . $ld_signer, Logger::DEBUG);
113 $trust_source = true;
114 } elseif ($actor == $http_signer) {
115 Logger::log('Bad JSON-LD signature, but HTTP signer fits the actor.', Logger::DEBUG);
116 $trust_source = true;
118 Logger::log('Invalid JSON-LD signature and the HTTP signer is different.', Logger::DEBUG);
119 $trust_source = false;
121 } elseif ($actor == $http_signer) {
122 Logger::log('Trusting post without JSON-LD signature, The actor fits the HTTP signer.', Logger::DEBUG);
123 $trust_source = true;
125 Logger::log('No JSON-LD signature, different actor.', Logger::DEBUG);
126 $trust_source = false;
129 self::processActivity($ldactivity, $body, $uid, $trust_source, true);
133 * Fetches the object type for a given object id
135 * @param array $activity
136 * @param string $object_id Object ID of the the provided object
137 * @param integer $uid User ID
139 * @return string with object type
140 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
141 * @throws \ImagickException
143 private static function fetchObjectType($activity, $object_id, $uid = 0)
145 if (!empty($activity['as:object'])) {
146 $object_type = JsonLD::fetchElement($activity['as:object'], '@type');
147 if (!empty($object_type)) {
152 if (Item::exists(['uri' => $object_id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]])) {
153 // We just assume "note" since it doesn't make a difference for the further processing
157 $profile = APContact::getByURL($object_id);
158 if (!empty($profile['type'])) {
159 return 'as:' . $profile['type'];
162 $data = ActivityPub::fetchContent($object_id, $uid);
164 $object = JsonLD::compact($data);
165 $type = JsonLD::fetchElement($object, '@type');
175 * Prepare the object array
177 * @param array $activity
178 * @param integer $uid User ID
179 * @param $trust_source
181 * @return array with object data
182 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
183 * @throws \ImagickException
185 private static function prepareObjectData($activity, $uid, $push, &$trust_source)
187 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
189 Logger::log('Empty actor', Logger::DEBUG);
193 $type = JsonLD::fetchElement($activity, '@type');
195 // Fetch all receivers from to, cc, bto and bcc
196 $receivers = self::getReceivers($activity, $actor);
198 // When it is a delivery to a personal inbox we add that user to the receivers
200 $additional = ['uid:' . $uid => $uid];
201 $receivers = array_merge($receivers, $additional);
203 // We possibly need some user to fetch private content,
204 // so we fetch the first out ot the list.
205 $uid = self::getFirstUserFromReceivers($receivers);
208 Logger::log('Receivers: ' . $uid . ' - ' . json_encode($receivers), Logger::DEBUG);
210 $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
211 if (empty($object_id)) {
212 Logger::log('No object found', Logger::DEBUG);
216 if (!is_string($object_id)) {
217 Logger::info('Invalid object id', ['object' => $object_id]);
221 $object_type = self::fetchObjectType($activity, $object_id, $uid);
223 // Fetch the content only on activities where this matters
224 if (in_array($type, ['as:Create', 'as:Update', 'as:Announce'])) {
225 if ($type == 'as:Announce') {
226 $trust_source = false;
229 $object_data = self::fetchObject($object_id, $activity['as:object'], $trust_source, $uid);
230 if (empty($object_data)) {
231 Logger::log("Object data couldn't be processed", Logger::DEBUG);
235 $object_data['object_id'] = $object_id;
236 $object_data['push'] = $push;
238 // Test if it is an answer to a mail
239 if (DBA::exists('mail', ['uri' => $object_data['reply-to-id']])) {
240 $object_data['directmessage'] = true;
242 $object_data['directmessage'] = JsonLD::fetchElement($activity, 'litepub:directMessage');
245 // We had been able to retrieve the object data - so we can trust the source
246 $trust_source = true;
247 } elseif (in_array($type, array_merge(self::ACTIVITY_TYPES, ['as:Follow'])) && in_array($object_type, self::CONTENT_TYPES)) {
248 // Create a mostly empty array out of the activity data (instead of the object).
249 // This way we later don't have to check for the existence of ech individual array element.
250 $object_data = self::processObject($activity);
251 $object_data['name'] = $type;
252 $object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
253 $object_data['object_id'] = $object_id;
254 $object_data['object_type'] = ''; // Since we don't fetch the object, we don't know the type
255 } elseif (in_array($type, ['as:Add'])) {
257 $object_data['id'] = JsonLD::fetchElement($activity, '@id');
258 $object_data['target_id'] = JsonLD::fetchElement($activity, 'as:target', '@id');
259 $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
260 $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
261 $object_data['object_content'] = JsonLD::fetchElement($activity['as:object'], 'as:content', '@type');
264 $object_data['id'] = JsonLD::fetchElement($activity, '@id');
265 $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
266 $object_data['object_actor'] = JsonLD::fetchElement($activity['as:object'], 'as:actor', '@id');
267 $object_data['object_object'] = JsonLD::fetchElement($activity['as:object'], 'as:object');
268 $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
270 // An Undo is done on the object of an object, so we need that type as well
271 if ($type == 'as:Undo') {
272 $object_data['object_object_type'] = self::fetchObjectType([], $object_data['object_object'], $uid);
276 $object_data = self::addActivityFields($object_data, $activity);
278 if (empty($object_data['object_type'])) {
279 $object_data['object_type'] = $object_type;
282 $object_data['type'] = $type;
283 $object_data['actor'] = $actor;
284 $object_data['item_receiver'] = $receivers;
285 $object_data['receiver'] = array_merge($object_data['receiver'] ?? [], $receivers);
287 Logger::log('Processing ' . $object_data['type'] . ' ' . $object_data['object_type'] . ' ' . $object_data['id'], Logger::DEBUG);
293 * Fetches the first user id from the receiver array
295 * @param array $receivers Array with receivers
296 * @return integer user id;
298 public static function getFirstUserFromReceivers($receivers)
300 foreach ($receivers as $receiver) {
301 if (!empty($receiver)) {
309 * Processes the activity object
311 * @param array $activity Array with activity data
312 * @param string $body
313 * @param integer $uid User ID
314 * @param boolean $trust_source Do we trust the source?
317 public static function processActivity($activity, $body = '', $uid = null, $trust_source = false, $push = false)
319 $type = JsonLD::fetchElement($activity, '@type');
321 Logger::log('Empty type', Logger::DEBUG);
325 if (!JsonLD::fetchElement($activity, 'as:object', '@id')) {
326 Logger::log('Empty object', Logger::DEBUG);
330 if (!JsonLD::fetchElement($activity, 'as:actor', '@id')) {
331 Logger::log('Empty actor', Logger::DEBUG);
336 // Don't trust the source if "actor" differs from "attributedTo". The content could be forged.
337 if ($trust_source && ($type == 'as:Create') && is_array($activity['as:object'])) {
338 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
339 $attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
340 $trust_source = ($actor == $attributed_to);
341 if (!$trust_source) {
342 Logger::log('Not trusting actor: ' . $actor . '. It differs from attributedTo: ' . $attributed_to, Logger::DEBUG);
346 // $trust_source is called by reference and is set to true if the content was retrieved successfully
347 $object_data = self::prepareObjectData($activity, $uid, $push, $trust_source);
348 if (empty($object_data)) {
349 Logger::log('No object data found', Logger::DEBUG);
353 if (!$trust_source) {
354 Logger::log('No trust for activity type "' . $type . '", so we quit now.', Logger::DEBUG);
359 $object_data['raw'] = $body;
362 // Internal flag for thread completion. See Processor.php
363 if (!empty($activity['thread-completion'])) {
364 $object_data['thread-completion'] = $activity['thread-completion'];
369 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
370 ActivityPub\Processor::createItem($object_data);
375 if ($object_data['object_type'] == 'as:tag') {
376 ActivityPub\Processor::addTag($object_data);
381 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
382 $profile = APContact::getByURL($object_data['actor']);
383 // Reshared posts from persons appear as summary at the bottom
384 // If this isn't set, then a single reshare appears on top. This is used for groups.
385 $object_data['thread-completion'] = ($profile['type'] != 'Group');
387 ActivityPub\Processor::createItem($object_data);
389 // Add the bottom reshare information only for persons
390 if ($profile['type'] != 'Group') {
391 $announce_object_data = self::processObject($activity);
392 $announce_object_data['name'] = $type;
393 $announce_object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
394 $announce_object_data['object_id'] = $object_data['object_id'];
395 $announce_object_data['object_type'] = $object_data['object_type'];
397 ActivityPub\Processor::createActivity($announce_object_data, Activity::ANNOUNCE);
403 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
404 ActivityPub\Processor::createActivity($object_data, Activity::LIKE);
409 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
410 ActivityPub\Processor::createActivity($object_data, Activity::DISLIKE);
414 case 'as:TentativeAccept':
415 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
416 ActivityPub\Processor::createActivity($object_data, Activity::ATTENDMAYBE);
421 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
422 ActivityPub\Processor::updateItem($object_data);
423 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
424 ActivityPub\Processor::updatePerson($object_data);
429 if ($object_data['object_type'] == 'as:Tombstone') {
430 ActivityPub\Processor::deleteItem($object_data);
431 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
432 ActivityPub\Processor::deletePerson($object_data);
437 if (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
438 ActivityPub\Processor::followUser($object_data);
439 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
440 $object_data['reply-to-id'] = $object_data['object_id'];
441 ActivityPub\Processor::createActivity($object_data, Activity::FOLLOW);
446 if ($object_data['object_type'] == 'as:Follow') {
447 ActivityPub\Processor::acceptFollowUser($object_data);
448 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
449 ActivityPub\Processor::createActivity($object_data, Activity::ATTEND);
454 if ($object_data['object_type'] == 'as:Follow') {
455 ActivityPub\Processor::rejectFollowUser($object_data);
456 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
457 ActivityPub\Processor::createActivity($object_data, Activity::ATTENDNO);
462 if (($object_data['object_type'] == 'as:Follow') &&
463 in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
464 ActivityPub\Processor::undoFollowUser($object_data);
465 } elseif (($object_data['object_type'] == 'as:Accept') &&
466 in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
467 ActivityPub\Processor::rejectFollowUser($object_data);
468 } elseif (in_array($object_data['object_type'], self::ACTIVITY_TYPES) &&
469 in_array($object_data['object_object_type'], self::CONTENT_TYPES)) {
470 ActivityPub\Processor::undoActivity($object_data);
475 Logger::log('Unknown activity: ' . $type . ' ' . $object_data['object_type'], Logger::DEBUG);
481 * Fetch the receiver list from an activity array
483 * @param array $activity
484 * @param string $actor
486 * @param boolean $fetch_unlisted
488 * @return array with receivers (user id)
491 private static function getReceivers($activity, $actor, $tags = [], $fetch_unlisted = false)
495 // When it is an answer, we inherite the receivers from the parent
496 $replyto = JsonLD::fetchElement($activity, 'as:inReplyTo', '@id');
497 if (!empty($replyto)) {
498 // Fix possibly wrong item URI (could be an answer to a plink uri)
499 $fixedReplyTo = Item::getURIByLink($replyto);
500 $replyto = $fixedReplyTo ?: $replyto;
502 $parents = Item::select(['uid'], ['uri' => $replyto]);
503 while ($parent = Item::fetch($parents)) {
504 $receivers['uid:' . $parent['uid']] = $parent['uid'];
508 if (!empty($actor)) {
509 $profile = APContact::getByURL($actor);
510 $followers = $profile['followers'] ?? '';
512 Logger::log('Actor: ' . $actor . ' - Followers: ' . $followers, Logger::DEBUG);
514 Logger::log('Empty actor', Logger::DEBUG);
518 foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
519 $receiver_list = JsonLD::fetchElementArray($activity, $element, '@id');
520 if (empty($receiver_list)) {
524 foreach ($receiver_list as $receiver) {
525 if ($receiver == self::PUBLIC_COLLECTION) {
526 $receivers['uid:0'] = 0;
529 // Add receiver "-1" for unlisted posts
530 if ($fetch_unlisted && ($receiver == self::PUBLIC_COLLECTION) && ($element == 'as:cc')) {
531 $receivers['uid:-1'] = -1;
534 if (($receiver == self::PUBLIC_COLLECTION) && !empty($actor)) {
535 // This will most likely catch all OStatus connections to Mastodon
536 $condition = ['alias' => [$actor, Strings::normaliseLink($actor)], 'rel' => [Contact::SHARING, Contact::FRIEND]
537 , 'archive' => false, 'pending' => false];
538 $contacts = DBA::select('contact', ['uid'], $condition);
539 while ($contact = DBA::fetch($contacts)) {
540 if ($contact['uid'] != 0) {
541 $receivers['uid:' . $contact['uid']] = $contact['uid'];
544 DBA::close($contacts);
547 if (in_array($receiver, [$followers, self::PUBLIC_COLLECTION]) && !empty($actor)) {
548 $receivers = array_merge($receivers, self::getReceiverForActor($actor, $tags));
552 // Fetching all directly addressed receivers
553 $condition = ['self' => true, 'nurl' => Strings::normaliseLink($receiver)];
554 $contact = DBA::selectFirst('contact', ['uid', 'contact-type'], $condition);
555 if (!DBA::isResult($contact)) {
559 // Check if the potential receiver is following the actor
560 // Exception: The receiver is targetted via "to" or this is a comment
561 if ((($element != 'as:to') && empty($replyto)) || ($contact['contact-type'] == Contact::TYPE_COMMUNITY)) {
562 $networks = Protocol::FEDERATED;
563 $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND],
564 'network' => $networks, 'archive' => false, 'pending' => false, 'uid' => $contact['uid']];
566 // Forum posts are only accepted from forum contacts
567 if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
568 $condition['rel'] = [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER];
571 if (!DBA::exists('contact', $condition)) {
576 $receivers['uid:' . $contact['uid']] = $contact['uid'];
580 self::switchContacts($receivers, $actor);
586 * Fetch the receiver list of a given actor
588 * @param string $actor
591 * @return array with receivers (user id)
594 public static function getReceiverForActor($actor, $tags)
597 $networks = Protocol::FEDERATED;
598 $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER],
599 'network' => $networks, 'archive' => false, 'pending' => false];
600 $contacts = DBA::select('contact', ['uid', 'rel'], $condition);
601 while ($contact = DBA::fetch($contacts)) {
602 if (self::isValidReceiverForActor($contact, $actor, $tags)) {
603 $receivers['uid:' . $contact['uid']] = $contact['uid'];
606 DBA::close($contacts);
611 * Tests if the contact is a valid receiver for this actor
613 * @param array $contact
614 * @param string $actor
617 * @return bool with receivers (user id)
620 private static function isValidReceiverForActor($contact, $actor, $tags)
622 // Public contacts are no valid receiver
623 if ($contact['uid'] == 0) {
627 // Are we following the contact? Then this is a valid receiver
628 if (in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND])) {
632 // When the possible receiver isn't a community, then it is no valid receiver
633 $owner = User::getOwnerDataById($contact['uid']);
634 if (empty($owner) || ($owner['contact-type'] != Contact::TYPE_COMMUNITY)) {
638 // Is the community account tagged?
639 foreach ($tags as $tag) {
640 if ($tag['type'] != 'Mention') {
644 if ($tag['href'] == $owner['url']) {
653 * Switches existing contacts to ActivityPub
655 * @param integer $cid Contact ID
656 * @param integer $uid User ID
657 * @param string $url Profile URL
658 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
659 * @throws \ImagickException
661 public static function switchContact($cid, $uid, $url)
663 if (DBA::exists('contact', ['id' => $cid, 'network' => Protocol::ACTIVITYPUB])) {
664 Logger::info('Contact is already ActivityPub', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
668 if (Contact::updateFromProbe($cid, '', true)) {
669 Logger::info('Update was successful', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
672 // Send a new follow request to be sure that the connection still exists
673 if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND], 'network' => Protocol::ACTIVITYPUB])) {
674 Logger::info('Contact had been switched to ActivityPub. Sending a new follow request.', ['uid' => $uid, 'url' => $url]);
675 ActivityPub\Transmitter::sendActivity('Follow', $url, $uid);
684 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
685 * @throws \ImagickException
687 private static function switchContacts($receivers, $actor)
693 foreach ($receivers as $receiver) {
694 $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'nurl' => Strings::normaliseLink($actor)]);
695 if (DBA::isResult($contact)) {
696 self::switchContact($contact['id'], $receiver, $actor);
699 $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'alias' => [Strings::normaliseLink($actor), $actor]]);
700 if (DBA::isResult($contact)) {
701 self::switchContact($contact['id'], $receiver, $actor);
709 * @param $object_data
710 * @param array $activity
714 private static function addActivityFields($object_data, $activity)
716 if (!empty($activity['published']) && empty($object_data['published'])) {
717 $object_data['published'] = JsonLD::fetchElement($activity, 'as:published', '@value');
720 if (!empty($activity['diaspora:guid']) && empty($object_data['diaspora:guid'])) {
721 $object_data['diaspora:guid'] = JsonLD::fetchElement($activity, 'diaspora:guid', '@value');
724 $object_data['service'] = JsonLD::fetchElement($activity, 'as:instrument', 'as:name', '@type', 'as:Service');
725 $object_data['service'] = JsonLD::fetchElement($object_data, 'service', '@value');
727 if (!empty($object_data['object_id'])) {
728 // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
729 $objectId = Item::getURIByLink($object_data['object_id']);
730 if (!empty($objectId) && ($object_data['object_id'] != $objectId)) {
731 Logger::notice('Fix wrong object-id', ['received' => $object_data['object_id'], 'correct' => $objectId]);
732 $object_data['object_id'] = $objectId;
740 * Fetches the object data from external ressources if needed
742 * @param string $object_id Object ID of the the provided object
743 * @param array $object The provided object array
744 * @param boolean $trust_source Do we trust the provided object?
745 * @param integer $uid User ID for the signature that we use to fetch data
747 * @return array|false with trusted and valid object data
748 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
749 * @throws \ImagickException
751 private static function fetchObject(string $object_id, array $object = [], bool $trust_source = false, int $uid = 0)
753 // By fetching the type we check if the object is complete.
754 $type = JsonLD::fetchElement($object, '@type');
756 if (!$trust_source || empty($type)) {
757 $data = ActivityPub::fetchContent($object_id, $uid);
759 $object = JsonLD::compact($data);
760 Logger::log('Fetched content for ' . $object_id, Logger::DEBUG);
762 Logger::log('Empty content for ' . $object_id . ', check if content is available locally.', Logger::DEBUG);
764 $item = Item::selectFirst([], ['uri' => $object_id]);
765 if (!DBA::isResult($item)) {
766 Logger::log('Object with url ' . $object_id . ' was not found locally.', Logger::DEBUG);
769 Logger::log('Using already stored item for url ' . $object_id, Logger::DEBUG);
770 $data = ActivityPub\Transmitter::createNote($item);
771 $object = JsonLD::compact($data);
774 Logger::log('Using original object for url ' . $object_id, Logger::DEBUG);
777 $type = JsonLD::fetchElement($object, '@type');
780 Logger::log('Empty type', Logger::DEBUG);
784 if (in_array($type, self::CONTENT_TYPES)) {
785 return self::processObject($object);
788 if ($type == 'as:Announce') {
789 $object_id = JsonLD::fetchElement($object, 'object', '@id');
790 if (empty($object_id) || !is_string($object_id)) {
793 return self::fetchObject($object_id, [], false, $uid);
796 Logger::log('Unhandled object type: ' . $type, Logger::DEBUG);
801 * Convert tags from JSON-LD format into a simplified format
803 * @param array $tags Tags in JSON-LD format
805 * @return array with tags in a simplified format
807 private static function processTags($tags)
815 foreach ($tags as $tag) {
820 $element = ['type' => str_replace('as:', '', JsonLD::fetchElement($tag, '@type')),
821 'href' => JsonLD::fetchElement($tag, 'as:href', '@id'),
822 'name' => JsonLD::fetchElement($tag, 'as:name', '@value')];
824 if (empty($element['type'])) {
828 $taglist[] = $element;
834 * Convert emojis from JSON-LD format into a simplified format
837 * @return array with emojis in a simplified format
839 private static function processEmojis($emojis)
843 if (empty($emojis)) {
847 foreach ($emojis as $emoji) {
848 if (empty($emoji) || (JsonLD::fetchElement($emoji, '@type') != 'toot:Emoji') || empty($emoji['as:icon'])) {
852 $url = JsonLD::fetchElement($emoji['as:icon'], 'as:url', '@id');
853 $element = ['name' => JsonLD::fetchElement($emoji, 'as:name', '@value'),
856 $emojilist[] = $element;
862 * Convert attachments from JSON-LD format into a simplified format
864 * @param array $attachments Attachments in JSON-LD format
866 * @return array with attachmants in a simplified format
868 private static function processAttachments($attachments)
872 if (empty($attachments)) {
876 foreach ($attachments as $attachment) {
877 if (empty($attachment)) {
881 $attachlist[] = ['type' => str_replace('as:', '', JsonLD::fetchElement($attachment, '@type')),
882 'mediaType' => JsonLD::fetchElement($attachment, 'as:mediaType', '@value'),
883 'name' => JsonLD::fetchElement($attachment, 'as:name', '@value'),
884 'url' => JsonLD::fetchElement($attachment, 'as:url', '@id')];
890 * Fetch the original source or content with the "language" Markdown or HTML
892 * @param array $object
893 * @param array $object_data
898 private static function getSource($object, $object_data)
900 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/bbcode');
901 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
902 if (!empty($object_data['source'])) {
906 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/markdown');
907 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
908 if (!empty($object_data['source'])) {
909 $object_data['source'] = Markdown::toBBCode($object_data['source']);
913 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/html');
914 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
915 if (!empty($object_data['source'])) {
916 $object_data['source'] = HTML::toBBCode($object_data['source']);
924 * Fetches data from the object part of an activity
926 * @param array $object
931 private static function processObject($object)
933 if (!JsonLD::fetchElement($object, '@id')) {
938 $object_data['object_type'] = JsonLD::fetchElement($object, '@type');
939 $object_data['id'] = JsonLD::fetchElement($object, '@id');
940 $object_data['reply-to-id'] = JsonLD::fetchElement($object, 'as:inReplyTo', '@id');
942 // An empty "id" field is translated to "./" by the compactor, so we have to check for this content
943 if (empty($object_data['reply-to-id']) || ($object_data['reply-to-id'] == './')) {
944 $object_data['reply-to-id'] = $object_data['id'];
946 // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
947 $replyToId = Item::getURIByLink($object_data['reply-to-id']);
948 if (!empty($replyToId) && ($object_data['reply-to-id'] != $replyToId)) {
949 Logger::notice('Fix wrong reply-to', ['received' => $object_data['reply-to-id'], 'correct' => $replyToId]);
950 $object_data['reply-to-id'] = $replyToId;
954 $object_data['published'] = JsonLD::fetchElement($object, 'as:published', '@value');
955 $object_data['updated'] = JsonLD::fetchElement($object, 'as:updated', '@value');
957 if (empty($object_data['updated'])) {
958 $object_data['updated'] = $object_data['published'];
961 if (empty($object_data['published']) && !empty($object_data['updated'])) {
962 $object_data['published'] = $object_data['updated'];
965 $actor = JsonLD::fetchElement($object, 'as:attributedTo', '@id');
967 $actor = JsonLD::fetchElement($object, 'as:actor', '@id');
970 $object_data['diaspora:guid'] = JsonLD::fetchElement($object, 'diaspora:guid', '@value');
971 $object_data['diaspora:comment'] = JsonLD::fetchElement($object, 'diaspora:comment', '@value');
972 $object_data['diaspora:like'] = JsonLD::fetchElement($object, 'diaspora:like', '@value');
973 $object_data['actor'] = $object_data['author'] = $actor;
974 $object_data['context'] = JsonLD::fetchElement($object, 'as:context', '@id');
975 $object_data['conversation'] = JsonLD::fetchElement($object, 'ostatus:conversation', '@id');
976 $object_data['sensitive'] = JsonLD::fetchElement($object, 'as:sensitive');
977 $object_data['name'] = JsonLD::fetchElement($object, 'as:name', '@value');
978 $object_data['summary'] = JsonLD::fetchElement($object, 'as:summary', '@value');
979 $object_data['content'] = JsonLD::fetchElement($object, 'as:content', '@value');
980 $object_data = self::getSource($object, $object_data);
981 $object_data['start-time'] = JsonLD::fetchElement($object, 'as:startTime', '@value');
982 $object_data['end-time'] = JsonLD::fetchElement($object, 'as:endTime', '@value');
983 $object_data['location'] = JsonLD::fetchElement($object, 'as:location', 'as:name', '@type', 'as:Place');
984 $object_data['location'] = JsonLD::fetchElement($object_data, 'location', '@value');
985 $object_data['latitude'] = JsonLD::fetchElement($object, 'as:location', 'as:latitude', '@type', 'as:Place');
986 $object_data['latitude'] = JsonLD::fetchElement($object_data, 'latitude', '@value');
987 $object_data['longitude'] = JsonLD::fetchElement($object, 'as:location', 'as:longitude', '@type', 'as:Place');
988 $object_data['longitude'] = JsonLD::fetchElement($object_data, 'longitude', '@value');
989 $object_data['attachments'] = self::processAttachments(JsonLD::fetchElementArray($object, 'as:attachment'));
990 $object_data['tags'] = self::processTags(JsonLD::fetchElementArray($object, 'as:tag'));
991 $object_data['emojis'] = self::processEmojis(JsonLD::fetchElementArray($object, 'as:tag', 'toot:Emoji'));
992 $object_data['generator'] = JsonLD::fetchElement($object, 'as:generator', 'as:name', '@type', 'as:Application');
993 $object_data['generator'] = JsonLD::fetchElement($object_data, 'generator', '@value');
994 $object_data['alternate-url'] = JsonLD::fetchElement($object, 'as:url', '@id');
996 // Special treatment for Hubzilla links
997 if (is_array($object_data['alternate-url'])) {
998 $object_data['alternate-url'] = JsonLD::fetchElement($object_data['alternate-url'], 'as:href', '@id');
1000 if (!is_string($object_data['alternate-url'])) {
1001 $object_data['alternate-url'] = JsonLD::fetchElement($object['as:url'], 'as:href', '@id');
1005 $object_data['receiver'] = self::getReceivers($object, $object_data['actor'], $object_data['tags'], true);
1006 $object_data['unlisted'] = in_array(-1, $object_data['receiver']);
1007 unset($object_data['receiver']['uid:-1']);
1009 // Common object data:
1012 // @context, type, actor, signature, mediaType, duration, replies, icon
1014 // Also missing: (Defined in the standard, but currently unused)
1015 // audience, preview, endTime, startTime, image
1020 // contentMap, announcement_count, announcements, context_id, likes, like_count
1021 // inReplyToStatusId, shares, quoteUrl, statusnetConversationId
1026 // category, licence, language, commentsEnabled
1029 // views, waitTranscoding, state, support, subtitleLanguage
1030 // likes, dislikes, shares, comments
1032 return $object_data;