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);
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, &$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;
228 $object_data = self::fetchObject($object_id, $activity['as:object'], $trust_source, $uid);
229 if (empty($object_data)) {
230 Logger::log("Object data couldn't be processed", Logger::DEBUG);
233 $object_data['object_id'] = $object_id;
235 // Test if it is an answer to a mail
236 if (DBA::exists('mail', ['uri' => $object_data['reply-to-id']])) {
237 $object_data['directmessage'] = true;
239 $object_data['directmessage'] = JsonLD::fetchElement($activity, 'litepub:directMessage');
242 // We had been able to retrieve the object data - so we can trust the source
243 $trust_source = true;
244 } elseif (in_array($type, array_merge(self::ACTIVITY_TYPES, ['as:Follow'])) && in_array($object_type, self::CONTENT_TYPES)) {
245 // Create a mostly empty array out of the activity data (instead of the object).
246 // This way we later don't have to check for the existence of ech individual array element.
247 $object_data = self::processObject($activity);
248 $object_data['name'] = $type;
249 $object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
250 $object_data['object_id'] = $object_id;
251 $object_data['object_type'] = ''; // Since we don't fetch the object, we don't know the type
252 } elseif (in_array($type, ['as:Add'])) {
254 $object_data['id'] = JsonLD::fetchElement($activity, '@id');
255 $object_data['target_id'] = JsonLD::fetchElement($activity, 'as:target', '@id');
256 $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
257 $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
258 $object_data['object_content'] = JsonLD::fetchElement($activity['as:object'], 'as:content', '@type');
261 $object_data['id'] = JsonLD::fetchElement($activity, '@id');
262 $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
263 $object_data['object_actor'] = JsonLD::fetchElement($activity['as:object'], 'as:actor', '@id');
264 $object_data['object_object'] = JsonLD::fetchElement($activity['as:object'], 'as:object');
265 $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
267 // An Undo is done on the object of an object, so we need that type as well
268 if ($type == 'as:Undo') {
269 $object_data['object_object_type'] = self::fetchObjectType([], $object_data['object_object'], $uid);
273 $object_data = self::addActivityFields($object_data, $activity);
275 if (empty($object_data['object_type'])) {
276 $object_data['object_type'] = $object_type;
279 $object_data['type'] = $type;
280 $object_data['actor'] = $actor;
281 $object_data['item_receiver'] = $receivers;
282 $object_data['receiver'] = array_merge($object_data['receiver'] ?? [], $receivers);
284 Logger::log('Processing ' . $object_data['type'] . ' ' . $object_data['object_type'] . ' ' . $object_data['id'], Logger::DEBUG);
290 * Fetches the first user id from the receiver array
292 * @param array $receivers Array with receivers
293 * @return integer user id;
295 public static function getFirstUserFromReceivers($receivers)
297 foreach ($receivers as $receiver) {
298 if (!empty($receiver)) {
306 * Processes the activity object
308 * @param array $activity Array with activity data
309 * @param string $body
310 * @param integer $uid User ID
311 * @param boolean $trust_source Do we trust the source?
314 public static function processActivity($activity, $body = '', $uid = null, $trust_source = false)
316 $type = JsonLD::fetchElement($activity, '@type');
318 Logger::log('Empty type', Logger::DEBUG);
322 if (!JsonLD::fetchElement($activity, 'as:object', '@id')) {
323 Logger::log('Empty object', Logger::DEBUG);
327 if (!JsonLD::fetchElement($activity, 'as:actor', '@id')) {
328 Logger::log('Empty actor', Logger::DEBUG);
333 // Don't trust the source if "actor" differs from "attributedTo". The content could be forged.
334 if ($trust_source && ($type == 'as:Create') && is_array($activity['as:object'])) {
335 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
336 $attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
337 $trust_source = ($actor == $attributed_to);
338 if (!$trust_source) {
339 Logger::log('Not trusting actor: ' . $actor . '. It differs from attributedTo: ' . $attributed_to, Logger::DEBUG);
343 // $trust_source is called by reference and is set to true if the content was retrieved successfully
344 $object_data = self::prepareObjectData($activity, $uid, $trust_source);
345 if (empty($object_data)) {
346 Logger::log('No object data found', Logger::DEBUG);
350 if (!$trust_source) {
351 Logger::log('No trust for activity type "' . $type . '", so we quit now.', Logger::DEBUG);
356 $object_data['raw'] = $body;
359 // Internal flag for thread completion. See Processor.php
360 if (!empty($activity['thread-completion'])) {
361 $object_data['thread-completion'] = $activity['thread-completion'];
366 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
367 ActivityPub\Processor::createItem($object_data);
372 if ($object_data['object_type'] == 'as:tag') {
373 ActivityPub\Processor::addTag($object_data);
378 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
379 $profile = APContact::getByURL($object_data['actor']);
380 // Reshared posts from persons appear as summary at the bottom
381 // If this isn't set, then a single reshare appears on top. This is used for groups.
382 $object_data['thread-completion'] = ($profile['type'] != 'Group');
384 ActivityPub\Processor::createItem($object_data);
386 // Add the bottom reshare information only for persons
387 if ($profile['type'] != 'Group') {
388 $announce_object_data = self::processObject($activity);
389 $announce_object_data['name'] = $type;
390 $announce_object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
391 $announce_object_data['object_id'] = $object_data['object_id'];
392 $announce_object_data['object_type'] = $object_data['object_type'];
394 ActivityPub\Processor::createActivity($announce_object_data, Activity::ANNOUNCE);
400 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
401 ActivityPub\Processor::createActivity($object_data, Activity::LIKE);
406 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
407 ActivityPub\Processor::createActivity($object_data, Activity::DISLIKE);
411 case 'as:TentativeAccept':
412 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
413 ActivityPub\Processor::createActivity($object_data, Activity::ATTENDMAYBE);
418 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
419 ActivityPub\Processor::updateItem($object_data);
420 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
421 ActivityPub\Processor::updatePerson($object_data);
426 if ($object_data['object_type'] == 'as:Tombstone') {
427 ActivityPub\Processor::deleteItem($object_data);
428 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
429 ActivityPub\Processor::deletePerson($object_data);
434 if (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
435 ActivityPub\Processor::followUser($object_data);
436 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
437 $object_data['reply-to-id'] = $object_data['object_id'];
438 ActivityPub\Processor::createActivity($object_data, Activity::FOLLOW);
443 if ($object_data['object_type'] == 'as:Follow') {
444 ActivityPub\Processor::acceptFollowUser($object_data);
445 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
446 ActivityPub\Processor::createActivity($object_data, Activity::ATTEND);
451 if ($object_data['object_type'] == 'as:Follow') {
452 ActivityPub\Processor::rejectFollowUser($object_data);
453 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
454 ActivityPub\Processor::createActivity($object_data, Activity::ATTENDNO);
459 if (($object_data['object_type'] == 'as:Follow') &&
460 in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
461 ActivityPub\Processor::undoFollowUser($object_data);
462 } elseif (($object_data['object_type'] == 'as:Accept') &&
463 in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
464 ActivityPub\Processor::rejectFollowUser($object_data);
465 } elseif (in_array($object_data['object_type'], self::ACTIVITY_TYPES) &&
466 in_array($object_data['object_object_type'], self::CONTENT_TYPES)) {
467 ActivityPub\Processor::undoActivity($object_data);
472 Logger::log('Unknown activity: ' . $type . ' ' . $object_data['object_type'], Logger::DEBUG);
478 * Fetch the receiver list from an activity array
480 * @param array $activity
481 * @param string $actor
484 * @return array with receivers (user id)
487 private static function getReceivers($activity, $actor, $tags = [])
491 // When it is an answer, we inherite the receivers from the parent
492 $replyto = JsonLD::fetchElement($activity, 'as:inReplyTo', '@id');
493 if (!empty($replyto)) {
494 // Fix possibly wrong item URI (could be an answer to a plink uri)
495 $fixedReplyTo = Item::getURIByLink($replyto);
496 $replyto = $fixedReplyTo ?: $replyto;
498 $parents = Item::select(['uid'], ['uri' => $replyto]);
499 while ($parent = Item::fetch($parents)) {
500 $receivers['uid:' . $parent['uid']] = $parent['uid'];
504 if (!empty($actor)) {
505 $profile = APContact::getByURL($actor);
506 $followers = $profile['followers'] ?? '';
508 Logger::log('Actor: ' . $actor . ' - Followers: ' . $followers, Logger::DEBUG);
510 Logger::log('Empty actor', Logger::DEBUG);
514 foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
515 $receiver_list = JsonLD::fetchElementArray($activity, $element, '@id');
516 if (empty($receiver_list)) {
520 foreach ($receiver_list as $receiver) {
521 if ($receiver == self::PUBLIC_COLLECTION) {
522 $receivers['uid:0'] = 0;
525 if (($receiver == self::PUBLIC_COLLECTION) && !empty($actor)) {
526 // This will most likely catch all OStatus connections to Mastodon
527 $condition = ['alias' => [$actor, Strings::normaliseLink($actor)], 'rel' => [Contact::SHARING, Contact::FRIEND]
528 , 'archive' => false, 'pending' => false];
529 $contacts = DBA::select('contact', ['uid'], $condition);
530 while ($contact = DBA::fetch($contacts)) {
531 if ($contact['uid'] != 0) {
532 $receivers['uid:' . $contact['uid']] = $contact['uid'];
535 DBA::close($contacts);
538 if (in_array($receiver, [$followers, self::PUBLIC_COLLECTION]) && !empty($actor)) {
539 $receivers = array_merge($receivers, self::getReceiverForActor($actor, $tags));
543 // Fetching all directly addressed receivers
544 $condition = ['self' => true, 'nurl' => Strings::normaliseLink($receiver)];
545 $contact = DBA::selectFirst('contact', ['uid', 'contact-type'], $condition);
546 if (!DBA::isResult($contact)) {
550 // Check if the potential receiver is following the actor
551 // Exception: The receiver is targetted via "to" or this is a comment
552 if ((($element != 'as:to') && empty($replyto)) || ($contact['contact-type'] == Contact::TYPE_COMMUNITY)) {
553 $networks = Protocol::FEDERATED;
554 $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND],
555 'network' => $networks, 'archive' => false, 'pending' => false, 'uid' => $contact['uid']];
557 // Forum posts are only accepted from forum contacts
558 if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
559 $condition['rel'] = [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER];
562 if (!DBA::exists('contact', $condition)) {
567 $receivers['uid:' . $contact['uid']] = $contact['uid'];
571 self::switchContacts($receivers, $actor);
577 * Fetch the receiver list of a given actor
579 * @param string $actor
582 * @return array with receivers (user id)
585 public static function getReceiverForActor($actor, $tags)
588 $networks = Protocol::FEDERATED;
589 $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER],
590 'network' => $networks, 'archive' => false, 'pending' => false];
591 $contacts = DBA::select('contact', ['uid', 'rel'], $condition);
592 while ($contact = DBA::fetch($contacts)) {
593 if (self::isValidReceiverForActor($contact, $actor, $tags)) {
594 $receivers['uid:' . $contact['uid']] = $contact['uid'];
597 DBA::close($contacts);
602 * Tests if the contact is a valid receiver for this actor
604 * @param array $contact
605 * @param string $actor
608 * @return bool with receivers (user id)
611 private static function isValidReceiverForActor($contact, $actor, $tags)
613 // Public contacts are no valid receiver
614 if ($contact['uid'] == 0) {
618 // Are we following the contact? Then this is a valid receiver
619 if (in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND])) {
623 // When the possible receiver isn't a community, then it is no valid receiver
624 $owner = User::getOwnerDataById($contact['uid']);
625 if (empty($owner) || ($owner['contact-type'] != Contact::TYPE_COMMUNITY)) {
629 // Is the community account tagged?
630 foreach ($tags as $tag) {
631 if ($tag['type'] != 'Mention') {
635 if ($tag['href'] == $owner['url']) {
644 * Switches existing contacts to ActivityPub
646 * @param integer $cid Contact ID
647 * @param integer $uid User ID
648 * @param string $url Profile URL
649 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
650 * @throws \ImagickException
652 public static function switchContact($cid, $uid, $url)
654 if (DBA::exists('contact', ['id' => $cid, 'network' => Protocol::ACTIVITYPUB])) {
655 Logger::info('Contact is already ActivityPub', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
659 if (Contact::updateFromProbe($cid, '', true)) {
660 Logger::info('Update was successful', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
663 // Send a new follow request to be sure that the connection still exists
664 if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND], 'network' => Protocol::ACTIVITYPUB])) {
665 Logger::info('Contact had been switched to ActivityPub. Sending a new follow request.', ['uid' => $uid, 'url' => $url]);
666 ActivityPub\Transmitter::sendActivity('Follow', $url, $uid);
675 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
676 * @throws \ImagickException
678 private static function switchContacts($receivers, $actor)
684 foreach ($receivers as $receiver) {
685 $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'nurl' => Strings::normaliseLink($actor)]);
686 if (DBA::isResult($contact)) {
687 self::switchContact($contact['id'], $receiver, $actor);
690 $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'alias' => [Strings::normaliseLink($actor), $actor]]);
691 if (DBA::isResult($contact)) {
692 self::switchContact($contact['id'], $receiver, $actor);
700 * @param $object_data
701 * @param array $activity
705 private static function addActivityFields($object_data, $activity)
707 if (!empty($activity['published']) && empty($object_data['published'])) {
708 $object_data['published'] = JsonLD::fetchElement($activity, 'as:published', '@value');
711 if (!empty($activity['diaspora:guid']) && empty($object_data['diaspora:guid'])) {
712 $object_data['diaspora:guid'] = JsonLD::fetchElement($activity, 'diaspora:guid', '@value');
715 $object_data['service'] = JsonLD::fetchElement($activity, 'as:instrument', 'as:name', '@type', 'as:Service');
716 $object_data['service'] = JsonLD::fetchElement($object_data, 'service', '@value');
718 if (!empty($object_data['object_id'])) {
719 // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
720 $objectId = Item::getURIByLink($object_data['object_id']);
721 if (!empty($objectId) && ($object_data['object_id'] != $objectId)) {
722 Logger::notice('Fix wrong object-id', ['received' => $object_data['object_id'], 'correct' => $objectId]);
723 $object_data['object_id'] = $objectId;
731 * Fetches the object data from external ressources if needed
733 * @param string $object_id Object ID of the the provided object
734 * @param array $object The provided object array
735 * @param boolean $trust_source Do we trust the provided object?
736 * @param integer $uid User ID for the signature that we use to fetch data
738 * @return array|false with trusted and valid object data
739 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
740 * @throws \ImagickException
742 private static function fetchObject(string $object_id, array $object = [], bool $trust_source = false, int $uid = 0)
744 // By fetching the type we check if the object is complete.
745 $type = JsonLD::fetchElement($object, '@type');
747 if (!$trust_source || empty($type)) {
748 $data = ActivityPub::fetchContent($object_id, $uid);
750 $object = JsonLD::compact($data);
751 Logger::log('Fetched content for ' . $object_id, Logger::DEBUG);
753 Logger::log('Empty content for ' . $object_id . ', check if content is available locally.', Logger::DEBUG);
755 $item = Item::selectFirst([], ['uri' => $object_id]);
756 if (!DBA::isResult($item)) {
757 Logger::log('Object with url ' . $object_id . ' was not found locally.', Logger::DEBUG);
760 Logger::log('Using already stored item for url ' . $object_id, Logger::DEBUG);
761 $data = ActivityPub\Transmitter::createNote($item);
762 $object = JsonLD::compact($data);
765 Logger::log('Using original object for url ' . $object_id, Logger::DEBUG);
768 $type = JsonLD::fetchElement($object, '@type');
771 Logger::log('Empty type', Logger::DEBUG);
775 if (in_array($type, self::CONTENT_TYPES)) {
776 return self::processObject($object);
779 if ($type == 'as:Announce') {
780 $object_id = JsonLD::fetchElement($object, 'object', '@id');
781 if (empty($object_id) || !is_string($object_id)) {
784 return self::fetchObject($object_id, [], false, $uid);
787 Logger::log('Unhandled object type: ' . $type, Logger::DEBUG);
792 * Convert tags from JSON-LD format into a simplified format
794 * @param array $tags Tags in JSON-LD format
796 * @return array with tags in a simplified format
798 private static function processTags($tags)
806 foreach ($tags as $tag) {
811 $element = ['type' => str_replace('as:', '', JsonLD::fetchElement($tag, '@type')),
812 'href' => JsonLD::fetchElement($tag, 'as:href', '@id'),
813 'name' => JsonLD::fetchElement($tag, 'as:name', '@value')];
815 if (empty($element['type'])) {
819 $taglist[] = $element;
825 * Convert emojis from JSON-LD format into a simplified format
828 * @return array with emojis in a simplified format
830 private static function processEmojis($emojis)
834 if (empty($emojis)) {
838 foreach ($emojis as $emoji) {
839 if (empty($emoji) || (JsonLD::fetchElement($emoji, '@type') != 'toot:Emoji') || empty($emoji['as:icon'])) {
843 $url = JsonLD::fetchElement($emoji['as:icon'], 'as:url', '@id');
844 $element = ['name' => JsonLD::fetchElement($emoji, 'as:name', '@value'),
847 $emojilist[] = $element;
853 * Convert attachments from JSON-LD format into a simplified format
855 * @param array $attachments Attachments in JSON-LD format
857 * @return array with attachmants in a simplified format
859 private static function processAttachments($attachments)
863 if (empty($attachments)) {
867 foreach ($attachments as $attachment) {
868 if (empty($attachment)) {
872 $attachlist[] = ['type' => str_replace('as:', '', JsonLD::fetchElement($attachment, '@type')),
873 'mediaType' => JsonLD::fetchElement($attachment, 'as:mediaType', '@value'),
874 'name' => JsonLD::fetchElement($attachment, 'as:name', '@value'),
875 'url' => JsonLD::fetchElement($attachment, 'as:url', '@id')];
881 * Fetch the original source or content with the "language" Markdown or HTML
883 * @param array $object
884 * @param array $object_data
889 private static function getSource($object, $object_data)
891 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/bbcode');
892 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
893 if (!empty($object_data['source'])) {
897 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/markdown');
898 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
899 if (!empty($object_data['source'])) {
900 $object_data['source'] = Markdown::toBBCode($object_data['source']);
904 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/html');
905 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
906 if (!empty($object_data['source'])) {
907 $object_data['source'] = HTML::toBBCode($object_data['source']);
915 * Fetches data from the object part of an activity
917 * @param array $object
922 private static function processObject($object)
924 if (!JsonLD::fetchElement($object, '@id')) {
929 $object_data['object_type'] = JsonLD::fetchElement($object, '@type');
930 $object_data['id'] = JsonLD::fetchElement($object, '@id');
931 $object_data['reply-to-id'] = JsonLD::fetchElement($object, 'as:inReplyTo', '@id');
933 // An empty "id" field is translated to "./" by the compactor, so we have to check for this content
934 if (empty($object_data['reply-to-id']) || ($object_data['reply-to-id'] == './')) {
935 $object_data['reply-to-id'] = $object_data['id'];
937 // Some systems (e.g. GNU Social) don't reply to the "id" field but the "uri" field.
938 $replyToId = Item::getURIByLink($object_data['reply-to-id']);
939 if (!empty($replyToId) && ($object_data['reply-to-id'] != $replyToId)) {
940 Logger::notice('Fix wrong reply-to', ['received' => $object_data['reply-to-id'], 'correct' => $replyToId]);
941 $object_data['reply-to-id'] = $replyToId;
945 $object_data['published'] = JsonLD::fetchElement($object, 'as:published', '@value');
946 $object_data['updated'] = JsonLD::fetchElement($object, 'as:updated', '@value');
948 if (empty($object_data['updated'])) {
949 $object_data['updated'] = $object_data['published'];
952 if (empty($object_data['published']) && !empty($object_data['updated'])) {
953 $object_data['published'] = $object_data['updated'];
956 $actor = JsonLD::fetchElement($object, 'as:attributedTo', '@id');
958 $actor = JsonLD::fetchElement($object, 'as:actor', '@id');
961 $object_data['diaspora:guid'] = JsonLD::fetchElement($object, 'diaspora:guid', '@value');
962 $object_data['diaspora:comment'] = JsonLD::fetchElement($object, 'diaspora:comment', '@value');
963 $object_data['diaspora:like'] = JsonLD::fetchElement($object, 'diaspora:like', '@value');
964 $object_data['actor'] = $object_data['author'] = $actor;
965 $object_data['context'] = JsonLD::fetchElement($object, 'as:context', '@id');
966 $object_data['conversation'] = JsonLD::fetchElement($object, 'ostatus:conversation', '@id');
967 $object_data['sensitive'] = JsonLD::fetchElement($object, 'as:sensitive');
968 $object_data['name'] = JsonLD::fetchElement($object, 'as:name', '@value');
969 $object_data['summary'] = JsonLD::fetchElement($object, 'as:summary', '@value');
970 $object_data['content'] = JsonLD::fetchElement($object, 'as:content', '@value');
971 $object_data = self::getSource($object, $object_data);
972 $object_data['start-time'] = JsonLD::fetchElement($object, 'as:startTime', '@value');
973 $object_data['end-time'] = JsonLD::fetchElement($object, 'as:endTime', '@value');
974 $object_data['location'] = JsonLD::fetchElement($object, 'as:location', 'as:name', '@type', 'as:Place');
975 $object_data['location'] = JsonLD::fetchElement($object_data, 'location', '@value');
976 $object_data['latitude'] = JsonLD::fetchElement($object, 'as:location', 'as:latitude', '@type', 'as:Place');
977 $object_data['latitude'] = JsonLD::fetchElement($object_data, 'latitude', '@value');
978 $object_data['longitude'] = JsonLD::fetchElement($object, 'as:location', 'as:longitude', '@type', 'as:Place');
979 $object_data['longitude'] = JsonLD::fetchElement($object_data, 'longitude', '@value');
980 $object_data['attachments'] = self::processAttachments(JsonLD::fetchElementArray($object, 'as:attachment'));
981 $object_data['tags'] = self::processTags(JsonLD::fetchElementArray($object, 'as:tag'));
982 $object_data['emojis'] = self::processEmojis(JsonLD::fetchElementArray($object, 'as:tag', 'toot:Emoji'));
983 $object_data['generator'] = JsonLD::fetchElement($object, 'as:generator', 'as:name', '@type', 'as:Application');
984 $object_data['generator'] = JsonLD::fetchElement($object_data, 'generator', '@value');
985 $object_data['alternate-url'] = JsonLD::fetchElement($object, 'as:url', '@id');
987 // Special treatment for Hubzilla links
988 if (is_array($object_data['alternate-url'])) {
989 $object_data['alternate-url'] = JsonLD::fetchElement($object_data['alternate-url'], 'as:href', '@id');
991 if (!is_string($object_data['alternate-url'])) {
992 $object_data['alternate-url'] = JsonLD::fetchElement($object['as:url'], 'as:href', '@id');
996 $object_data['receiver'] = self::getReceivers($object, $object_data['actor'], $object_data['tags']);
998 // Common object data:
1001 // @context, type, actor, signature, mediaType, duration, replies, icon
1003 // Also missing: (Defined in the standard, but currently unused)
1004 // audience, preview, endTime, startTime, image
1009 // contentMap, announcement_count, announcements, context_id, likes, like_count
1010 // inReplyToStatusId, shares, quoteUrl, statusnetConversationId
1015 // category, licence, language, commentsEnabled
1018 // views, waitTranscoding, state, support, subtitleLanguage
1019 // likes, dislikes, shares, comments
1021 return $object_data;