2018-10-03 06:15:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2018-10-03 15:41:51 +00:00
|
|
|
* @file src/Protocol/ActivityPub/Receiver.php
|
2018-10-03 06:15:07 +00:00
|
|
|
*/
|
|
|
|
namespace Friendica\Protocol\ActivityPub;
|
|
|
|
|
|
|
|
use Friendica\Database\DBA;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-10-03 06:15:07 +00:00
|
|
|
use Friendica\Core\Protocol;
|
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Model\APContact;
|
2018-11-08 16:28:29 +00:00
|
|
|
use Friendica\Model\Conversation;
|
2018-10-03 06:15:07 +00:00
|
|
|
use Friendica\Model\Item;
|
|
|
|
use Friendica\Model\User;
|
|
|
|
use Friendica\Protocol\ActivityPub;
|
2018-10-11 20:08:04 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-11-08 16:28:29 +00:00
|
|
|
use Friendica\Util\HTTPSignature;
|
|
|
|
use Friendica\Util\JsonLD;
|
|
|
|
use Friendica\Util\LDSignature;
|
|
|
|
use Friendica\Util\Strings;
|
2018-10-03 06:15:07 +00:00
|
|
|
|
|
|
|
/**
|
2018-10-03 09:53:12 +00:00
|
|
|
* @brief ActivityPub Receiver Protocol class
|
|
|
|
*
|
|
|
|
* To-Do:
|
|
|
|
* - Undo Announce
|
|
|
|
*
|
|
|
|
* Check what this is meant to do:
|
|
|
|
* - Add
|
|
|
|
* - Block
|
|
|
|
* - Flag
|
|
|
|
* - Remove
|
|
|
|
* - Undo Block
|
2018-10-03 06:15:07 +00:00
|
|
|
*/
|
|
|
|
class Receiver
|
|
|
|
{
|
2018-10-07 13:37:05 +00:00
|
|
|
const PUBLIC_COLLECTION = 'as:Public';
|
|
|
|
const ACCOUNT_TYPES = ['as:Person', 'as:Organization', 'as:Service', 'as:Group', 'as:Application'];
|
2018-10-24 19:19:51 +00:00
|
|
|
const CONTENT_TYPES = ['as:Note', 'as:Article', 'as:Video', 'as:Image', 'as:Event'];
|
2018-10-07 13:37:05 +00:00
|
|
|
const ACTIVITY_TYPES = ['as:Like', 'as:Dislike', 'as:Accept', 'as:Reject', 'as:TentativeAccept'];
|
|
|
|
|
2018-10-03 06:15:07 +00:00
|
|
|
/**
|
2018-10-06 04:18:40 +00:00
|
|
|
* Checks if the web request is done for the AP protocol
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
|
|
|
* @return is it AP?
|
|
|
|
*/
|
|
|
|
public static function isRequest()
|
|
|
|
{
|
|
|
|
return stristr(defaults($_SERVER, 'HTTP_ACCEPT', ''), 'application/activity+json') ||
|
|
|
|
stristr(defaults($_SERVER, 'HTTP_ACCEPT', ''), 'application/ld+json');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-07 13:37:05 +00:00
|
|
|
* Checks incoming message from the inbox
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
|
|
|
* @param $body
|
|
|
|
* @param $header
|
|
|
|
* @param integer $uid User ID
|
|
|
|
*/
|
|
|
|
public static function processInbox($body, $header, $uid)
|
|
|
|
{
|
|
|
|
$http_signer = HTTPSignature::getSigner($body, $header);
|
|
|
|
if (empty($http_signer)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Invalid HTTP signature, message will be discarded.', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return;
|
|
|
|
} else {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('HTTP signature is signed by ' . $http_signer, Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$activity = json_decode($body, true);
|
|
|
|
|
|
|
|
if (empty($activity)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Invalid body.', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
$ldactivity = JsonLD::compact($activity);
|
|
|
|
|
|
|
|
$actor = JsonLD::fetchElement($ldactivity, 'as:actor');
|
|
|
|
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Message for user ' . $uid . ' is from actor ' . $actor, Logger::DEBUG);
|
2018-10-07 13:37:05 +00:00
|
|
|
|
2018-10-03 06:15:07 +00:00
|
|
|
if (LDSignature::isSigned($activity)) {
|
|
|
|
$ld_signer = LDSignature::getSigner($activity);
|
|
|
|
if (empty($ld_signer)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Invalid JSON-LD signature from ' . $actor, Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
if (!empty($ld_signer && ($actor == $http_signer))) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('The HTTP and the JSON-LD signature belong to ' . $ld_signer, Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
$trust_source = true;
|
|
|
|
} elseif (!empty($ld_signer)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('JSON-LD signature is signed by ' . $ld_signer, Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
$trust_source = true;
|
|
|
|
} elseif ($actor == $http_signer) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Bad JSON-LD signature, but HTTP signer fits the actor.', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
$trust_source = true;
|
|
|
|
} else {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Invalid JSON-LD signature and the HTTP signer is different.', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
$trust_source = false;
|
|
|
|
}
|
|
|
|
} elseif ($actor == $http_signer) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Trusting post without JSON-LD signature, The actor fits the HTTP signer.', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
$trust_source = true;
|
|
|
|
} else {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('No JSON-LD signature, different actor.', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
$trust_source = false;
|
|
|
|
}
|
|
|
|
|
2018-10-07 17:17:06 +00:00
|
|
|
self::processActivity($ldactivity, $body, $uid, $trust_source);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 20:36:15 +00:00
|
|
|
/**
|
|
|
|
* Fetches the object type for a given object id
|
|
|
|
*
|
2018-11-03 21:37:08 +00:00
|
|
|
* @param array $activity
|
|
|
|
* @param string $object_id Object ID of the the provided object
|
|
|
|
* @param integer $uid User ID
|
2018-10-07 20:36:15 +00:00
|
|
|
*
|
|
|
|
* @return string with object type
|
|
|
|
*/
|
2018-11-03 21:37:08 +00:00
|
|
|
private static function fetchObjectType($activity, $object_id, $uid = 0)
|
2018-10-07 20:36:15 +00:00
|
|
|
{
|
2018-10-27 06:17:17 +00:00
|
|
|
if (!empty($activity['as:object'])) {
|
|
|
|
$object_type = JsonLD::fetchElement($activity['as:object'], '@type');
|
|
|
|
if (!empty($object_type)) {
|
|
|
|
return $object_type;
|
|
|
|
}
|
2018-10-07 20:36:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Item::exists(['uri' => $object_id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]])) {
|
|
|
|
// We just assume "note" since it doesn't make a difference for the further processing
|
|
|
|
return 'as:Note';
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile = APContact::getByURL($object_id);
|
|
|
|
if (!empty($profile['type'])) {
|
|
|
|
return 'as:' . $profile['type'];
|
|
|
|
}
|
|
|
|
|
2018-11-03 21:37:08 +00:00
|
|
|
$data = ActivityPub::fetchContent($object_id, $uid);
|
2018-10-07 20:36:15 +00:00
|
|
|
if (!empty($data)) {
|
|
|
|
$object = JsonLD::compact($data);
|
|
|
|
$type = JsonLD::fetchElement($object, '@type');
|
|
|
|
if (!empty($type)) {
|
|
|
|
return $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-10-03 06:15:07 +00:00
|
|
|
/**
|
2018-10-07 18:41:45 +00:00
|
|
|
* Prepare the object array
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
|
|
|
* @param array $activity
|
|
|
|
* @param integer $uid User ID
|
|
|
|
* @param $trust_source
|
|
|
|
*
|
2018-10-07 18:41:45 +00:00
|
|
|
* @return array with object data
|
2018-10-03 06:15:07 +00:00
|
|
|
*/
|
2018-10-07 18:41:45 +00:00
|
|
|
private static function prepareObjectData($activity, $uid, &$trust_source)
|
2018-10-03 06:15:07 +00:00
|
|
|
{
|
2018-10-07 18:41:45 +00:00
|
|
|
$actor = JsonLD::fetchElement($activity, 'as:actor');
|
2018-10-03 06:15:07 +00:00
|
|
|
if (empty($actor)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Empty actor', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2018-10-07 18:41:45 +00:00
|
|
|
$type = JsonLD::fetchElement($activity, '@type');
|
2018-10-07 13:37:05 +00:00
|
|
|
|
2018-10-03 06:15:07 +00:00
|
|
|
// Fetch all receivers from to, cc, bto and bcc
|
2018-10-07 18:41:45 +00:00
|
|
|
$receivers = self::getReceivers($activity, $actor);
|
2018-10-03 06:15:07 +00:00
|
|
|
|
|
|
|
// When it is a delivery to a personal inbox we add that user to the receivers
|
|
|
|
if (!empty($uid)) {
|
|
|
|
$additional = ['uid:' . $uid => $uid];
|
|
|
|
$receivers = array_merge($receivers, $additional);
|
2018-11-03 21:37:08 +00:00
|
|
|
} else {
|
|
|
|
// We possibly need some user to fetch private content,
|
|
|
|
// so we fetch the first out ot the list.
|
|
|
|
$uid = self::getFirstUserFromReceivers($receivers);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-11-03 21:37:08 +00:00
|
|
|
Logger::log('Receivers: ' . $uid . ' - ' . json_encode($receivers), Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
|
2018-10-07 18:41:45 +00:00
|
|
|
$object_id = JsonLD::fetchElement($activity, 'as:object');
|
2018-10-03 06:15:07 +00:00
|
|
|
if (empty($object_id)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('No object found', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2018-11-03 21:37:08 +00:00
|
|
|
$object_type = self::fetchObjectType($activity, $object_id, $uid);
|
2018-10-07 20:36:15 +00:00
|
|
|
|
2018-10-03 06:15:07 +00:00
|
|
|
// Fetch the content only on activities where this matters
|
2018-10-27 06:17:17 +00:00
|
|
|
if (in_array($type, ['as:Create', 'as:Update', 'as:Announce'])) {
|
2018-10-07 17:17:06 +00:00
|
|
|
if ($type == 'as:Announce') {
|
|
|
|
$trust_source = false;
|
|
|
|
}
|
2018-11-03 21:37:08 +00:00
|
|
|
$object_data = self::fetchObject($object_id, $activity['as:object'], $trust_source, $uid);
|
2018-10-03 06:15:07 +00:00
|
|
|
if (empty($object_data)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log("Object data couldn't be processed", Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
// We had been able to retrieve the object data - so we can trust the source
|
|
|
|
$trust_source = true;
|
2018-10-07 13:37:05 +00:00
|
|
|
} elseif (in_array($type, ['as:Like', 'as:Dislike'])) {
|
2018-10-03 06:15:07 +00:00
|
|
|
// Create a mostly empty array out of the activity data (instead of the object).
|
|
|
|
// This way we later don't have to check for the existence of ech individual array element.
|
2018-10-07 18:41:45 +00:00
|
|
|
$object_data = self::processObject($activity);
|
2018-10-07 13:37:05 +00:00
|
|
|
$object_data['name'] = $type;
|
2018-10-07 18:41:45 +00:00
|
|
|
$object_data['author'] = JsonLD::fetchElement($activity, 'as:actor');
|
2018-10-07 19:42:04 +00:00
|
|
|
$object_data['object_id'] = $object_id;
|
2018-10-03 06:15:07 +00:00
|
|
|
$object_data['object_type'] = ''; // Since we don't fetch the object, we don't know the type
|
|
|
|
} else {
|
|
|
|
$object_data = [];
|
2018-10-07 18:41:45 +00:00
|
|
|
$object_data['id'] = JsonLD::fetchElement($activity, '@id');
|
|
|
|
$object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object');
|
|
|
|
$object_data['object_actor'] = JsonLD::fetchElement($activity['as:object'], 'as:actor');
|
|
|
|
$object_data['object_object'] = JsonLD::fetchElement($activity['as:object'], 'as:object');
|
|
|
|
$object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
|
2018-10-27 06:17:17 +00:00
|
|
|
|
|
|
|
// An Undo is done on the object of an object, so we need that type as well
|
|
|
|
if ($type == 'as:Undo') {
|
2018-11-03 21:37:08 +00:00
|
|
|
$object_data['object_object_type'] = self::fetchObjectType([], $object_data['object_object'], $uid);
|
2018-10-27 06:17:17 +00:00
|
|
|
}
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 18:41:45 +00:00
|
|
|
$object_data = self::addActivityFields($object_data, $activity);
|
2018-10-03 06:15:07 +00:00
|
|
|
|
2018-10-07 20:36:15 +00:00
|
|
|
if (empty($object_data['object_type'])) {
|
|
|
|
$object_data['object_type'] = $object_type;
|
|
|
|
}
|
|
|
|
|
2018-10-07 15:34:51 +00:00
|
|
|
$object_data['type'] = $type;
|
2018-10-07 17:35:43 +00:00
|
|
|
$object_data['actor'] = $actor;
|
2019-01-10 22:51:03 +00:00
|
|
|
$object_data['item_receiver'] = $receivers;
|
2018-10-03 06:15:07 +00:00
|
|
|
$object_data['receiver'] = array_merge(defaults($object_data, 'receiver', []), $receivers);
|
|
|
|
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Processing ' . $object_data['type'] . ' ' . $object_data['object_type'] . ' ' . $object_data['id'], Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
|
|
|
|
return $object_data;
|
|
|
|
}
|
|
|
|
|
2018-11-03 21:37:08 +00:00
|
|
|
/**
|
2018-11-04 10:51:01 +00:00
|
|
|
* Fetches the first user id from the receiver array
|
2018-11-03 21:37:08 +00:00
|
|
|
*
|
|
|
|
* @param array $receivers Array with receivers
|
|
|
|
* @return integer user id;
|
|
|
|
*/
|
|
|
|
public static function getFirstUserFromReceivers($receivers)
|
|
|
|
{
|
|
|
|
foreach ($receivers as $receiver) {
|
|
|
|
if (!empty($receiver)) {
|
|
|
|
return $receiver;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-11 20:08:04 +00:00
|
|
|
/**
|
|
|
|
* Store the unprocessed data into the conversation table
|
|
|
|
* This has to be done outside the regular function,
|
|
|
|
* since we store everything - not only item posts.
|
|
|
|
*
|
|
|
|
* @param array $activity Array with activity data
|
|
|
|
* @param string $body The raw message
|
|
|
|
*/
|
|
|
|
private static function storeConversation($activity, $body)
|
|
|
|
{
|
|
|
|
if (empty($body) || empty($activity['id'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$conversation = [
|
|
|
|
'protocol' => Conversation::PARCEL_ACTIVITYPUB,
|
|
|
|
'item-uri' => $activity['id'],
|
|
|
|
'reply-to-uri' => defaults($activity, 'reply-to-id', ''),
|
|
|
|
'conversation-href' => defaults($activity, 'context', ''),
|
|
|
|
'conversation-uri' => defaults($activity, 'conversation', ''),
|
|
|
|
'source' => $body,
|
|
|
|
'received' => DateTimeFormat::utcNow()];
|
|
|
|
|
|
|
|
DBA::insert('conversation', $conversation, true);
|
|
|
|
}
|
|
|
|
|
2018-10-03 06:15:07 +00:00
|
|
|
/**
|
2018-10-07 17:17:06 +00:00
|
|
|
* Processes the activity object
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
2018-10-07 17:17:06 +00:00
|
|
|
* @param array $activity Array with activity data
|
|
|
|
* @param string $body
|
|
|
|
* @param integer $uid User ID
|
|
|
|
* @param boolean $trust_source Do we trust the source?
|
2018-10-03 06:15:07 +00:00
|
|
|
*/
|
2018-10-07 18:41:45 +00:00
|
|
|
public static function processActivity($activity, $body = '', $uid = null, $trust_source = false)
|
2018-10-03 06:15:07 +00:00
|
|
|
{
|
2018-10-07 18:41:45 +00:00
|
|
|
$type = JsonLD::fetchElement($activity, '@type');
|
2018-10-07 13:37:05 +00:00
|
|
|
if (!$type) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Empty type', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-07 18:41:45 +00:00
|
|
|
if (!JsonLD::fetchElement($activity, 'as:object')) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Empty object', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-07 18:41:45 +00:00
|
|
|
if (!JsonLD::fetchElement($activity, 'as:actor')) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Empty actor', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-11-20 20:40:47 +00:00
|
|
|
// Don't trust the source if "actor" differs from "attributedTo". The content could be forged.
|
|
|
|
if ($trust_source && ($type == 'as:Create') && is_array($activity['as:object'])) {
|
|
|
|
$actor = JsonLD::fetchElement($activity, 'as:actor');
|
|
|
|
$attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo');
|
|
|
|
$trust_source = ($actor == $attributed_to);
|
|
|
|
if (!$trust_source) {
|
2018-11-20 20:49:06 +00:00
|
|
|
Logger::log('Not trusting actor: ' . $actor . '. It differs from attributedTo: ' . $attributed_to, Logger::DEBUG);
|
2018-11-20 20:40:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 06:15:07 +00:00
|
|
|
// $trust_source is called by reference and is set to true if the content was retrieved successfully
|
2018-10-07 18:41:45 +00:00
|
|
|
$object_data = self::prepareObjectData($activity, $uid, $trust_source);
|
2018-10-03 06:15:07 +00:00
|
|
|
if (empty($object_data)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('No object data found', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$trust_source) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('No trust for activity type "' . $type . '", so we quit now.', Logger::DEBUG);
|
2018-10-06 13:16:52 +00:00
|
|
|
return;
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 20:08:04 +00:00
|
|
|
self::storeConversation($object_data, $body);
|
|
|
|
|
2018-10-09 05:04:24 +00:00
|
|
|
// Internal flag for thread completion. See Processor.php
|
|
|
|
if (!empty($activity['thread-completion'])) {
|
|
|
|
$object_data['thread-completion'] = $activity['thread-completion'];
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
switch ($type) {
|
|
|
|
case 'as:Create':
|
|
|
|
case 'as:Announce':
|
2018-10-27 06:17:17 +00:00
|
|
|
if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
|
|
|
|
ActivityPub\Processor::createItem($object_data);
|
|
|
|
}
|
2018-10-03 06:15:07 +00:00
|
|
|
break;
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
case 'as:Like':
|
2018-10-27 06:17:17 +00:00
|
|
|
if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
|
|
|
|
ActivityPub\Processor::createActivity($object_data, ACTIVITY_LIKE);
|
|
|
|
}
|
2018-10-03 06:15:07 +00:00
|
|
|
break;
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
case 'as:Dislike':
|
2018-10-27 06:17:17 +00:00
|
|
|
if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
|
|
|
|
ActivityPub\Processor::createActivity($object_data, ACTIVITY_DISLIKE);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'as:TentativeAccept':
|
|
|
|
if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
|
|
|
|
ActivityPub\Processor::createActivity($object_data, ACTIVITY_ATTENDMAYBE);
|
|
|
|
}
|
2018-10-03 06:15:07 +00:00
|
|
|
break;
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
case 'as:Update':
|
|
|
|
if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
|
2018-10-27 06:17:17 +00:00
|
|
|
ActivityPub\Processor::updateItem($object_data);
|
2018-10-07 13:37:05 +00:00
|
|
|
} elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
|
2018-10-03 09:15:38 +00:00
|
|
|
ActivityPub\Processor::updatePerson($object_data, $body);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
case 'as:Delete':
|
|
|
|
if ($object_data['object_type'] == 'as:Tombstone') {
|
2018-10-03 09:15:38 +00:00
|
|
|
ActivityPub\Processor::deleteItem($object_data, $body);
|
2018-10-07 13:37:05 +00:00
|
|
|
} elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
|
2018-10-03 09:15:38 +00:00
|
|
|
ActivityPub\Processor::deletePerson($object_data, $body);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
case 'as:Follow':
|
2018-10-27 06:17:17 +00:00
|
|
|
if (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
|
|
|
|
ActivityPub\Processor::followUser($object_data);
|
|
|
|
}
|
2018-10-03 06:15:07 +00:00
|
|
|
break;
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
case 'as:Accept':
|
|
|
|
if ($object_data['object_type'] == 'as:Follow') {
|
2018-10-03 09:15:38 +00:00
|
|
|
ActivityPub\Processor::acceptFollowUser($object_data);
|
2018-10-27 06:17:17 +00:00
|
|
|
} elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
|
|
|
|
ActivityPub\Processor::createActivity($object_data, ACTIVITY_ATTEND);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
case 'as:Reject':
|
|
|
|
if ($object_data['object_type'] == 'as:Follow') {
|
2018-10-03 09:15:38 +00:00
|
|
|
ActivityPub\Processor::rejectFollowUser($object_data);
|
2018-10-27 06:17:17 +00:00
|
|
|
} elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
|
|
|
|
ActivityPub\Processor::createActivity($object_data, ACTIVITY_ATTENDNO);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
case 'as:Undo':
|
2018-10-27 06:17:17 +00:00
|
|
|
if (($object_data['object_type'] == 'as:Follow') &&
|
|
|
|
in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
|
2018-10-03 09:15:38 +00:00
|
|
|
ActivityPub\Processor::undoFollowUser($object_data);
|
2018-10-27 06:17:17 +00:00
|
|
|
} elseif (($object_data['object_type'] == 'as:Accept') &&
|
|
|
|
in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
|
|
|
|
ActivityPub\Processor::rejectFollowUser($object_data);
|
|
|
|
} elseif (in_array($object_data['object_type'], self::ACTIVITY_TYPES) &&
|
|
|
|
in_array($object_data['object_object_type'], self::CONTENT_TYPES)) {
|
2018-10-03 09:15:38 +00:00
|
|
|
ActivityPub\Processor::undoActivity($object_data);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Unknown activity: ' . $type . ' ' . $object_data['object_type'], Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-07 13:37:05 +00:00
|
|
|
* Fetch the receiver list from an activity array
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
|
|
|
* @param array $activity
|
2018-10-07 13:37:05 +00:00
|
|
|
* @param string $actor
|
2018-11-03 21:37:08 +00:00
|
|
|
* @param array $tags
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
2018-10-07 13:37:05 +00:00
|
|
|
* @return array with receivers (user id)
|
2018-10-03 06:15:07 +00:00
|
|
|
*/
|
2018-11-03 21:37:08 +00:00
|
|
|
private static function getReceivers($activity, $actor, $tags = [])
|
2018-10-03 06:15:07 +00:00
|
|
|
{
|
|
|
|
$receivers = [];
|
|
|
|
|
|
|
|
// When it is an answer, we inherite the receivers from the parent
|
2018-10-07 13:37:05 +00:00
|
|
|
$replyto = JsonLD::fetchElement($activity, 'as:inReplyTo');
|
2018-10-03 06:15:07 +00:00
|
|
|
if (!empty($replyto)) {
|
|
|
|
$parents = Item::select(['uid'], ['uri' => $replyto]);
|
|
|
|
while ($parent = Item::fetch($parents)) {
|
|
|
|
$receivers['uid:' . $parent['uid']] = $parent['uid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($actor)) {
|
|
|
|
$profile = APContact::getByURL($actor);
|
|
|
|
$followers = defaults($profile, 'followers', '');
|
|
|
|
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Actor: ' . $actor . ' - Followers: ' . $followers, Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
} else {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Empty actor', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
$followers = '';
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
|
|
|
|
$receiver_list = JsonLD::fetchElementArray($activity, $element);
|
|
|
|
if (empty($receiver_list)) {
|
2018-10-03 06:15:07 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
foreach ($receiver_list as $receiver) {
|
|
|
|
if ($receiver == self::PUBLIC_COLLECTION) {
|
2018-10-03 06:15:07 +00:00
|
|
|
$receivers['uid:0'] = 0;
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
if (($receiver == self::PUBLIC_COLLECTION) && !empty($actor)) {
|
2018-10-03 06:15:07 +00:00
|
|
|
// This will most likely catch all OStatus connections to Mastodon
|
2018-11-08 16:28:29 +00:00
|
|
|
$condition = ['alias' => [$actor, Strings::normaliseLink($actor)], 'rel' => [Contact::SHARING, Contact::FRIEND]
|
2018-10-03 06:15:07 +00:00
|
|
|
, 'archive' => false, 'pending' => false];
|
|
|
|
$contacts = DBA::select('contact', ['uid'], $condition);
|
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
|
|
|
if ($contact['uid'] != 0) {
|
|
|
|
$receivers['uid:' . $contact['uid']] = $contact['uid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DBA::close($contacts);
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
if (in_array($receiver, [$followers, self::PUBLIC_COLLECTION]) && !empty($actor)) {
|
2018-11-03 21:37:08 +00:00
|
|
|
$receivers = array_merge($receivers, self::getReceiverForActor($actor, $tags));
|
2018-10-03 06:15:07 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-11-03 21:37:08 +00:00
|
|
|
// Fetching all directly addressed receivers
|
2018-11-08 16:28:29 +00:00
|
|
|
$condition = ['self' => true, 'nurl' => Strings::normaliseLink($receiver)];
|
2018-11-03 21:37:08 +00:00
|
|
|
$contact = DBA::selectFirst('contact', ['uid', 'contact-type'], $condition);
|
2018-10-03 06:15:07 +00:00
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-11-03 21:37:08 +00:00
|
|
|
|
|
|
|
// Check if the potential receiver is following the actor
|
|
|
|
// Exception: The receiver is targetted via "to" or this is a comment
|
|
|
|
if ((($element != 'as:to') && empty($replyto)) || ($contact['contact-type'] == Contact::ACCOUNT_TYPE_COMMUNITY)) {
|
|
|
|
$networks = [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS];
|
2018-11-08 16:28:29 +00:00
|
|
|
$condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND],
|
2018-11-03 21:37:08 +00:00
|
|
|
'network' => $networks, 'archive' => false, 'pending' => false, 'uid' => $contact['uid']];
|
|
|
|
|
|
|
|
// Forum posts are only accepted from forum contacts
|
|
|
|
if ($contact['contact-type'] == Contact::ACCOUNT_TYPE_COMMUNITY) {
|
|
|
|
$condition['rel'] = [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DBA::exists('contact', $condition)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 06:15:07 +00:00
|
|
|
$receivers['uid:' . $contact['uid']] = $contact['uid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 09:15:38 +00:00
|
|
|
self::switchContacts($receivers, $actor);
|
2018-10-03 06:15:07 +00:00
|
|
|
|
|
|
|
return $receivers;
|
|
|
|
}
|
|
|
|
|
2018-11-03 21:37:08 +00:00
|
|
|
/**
|
|
|
|
* Fetch the receiver list of a given actor
|
|
|
|
*
|
|
|
|
* @param string $actor
|
|
|
|
* @param array $tags
|
|
|
|
*
|
|
|
|
* @return array with receivers (user id)
|
|
|
|
*/
|
|
|
|
public static function getReceiverForActor($actor, $tags)
|
|
|
|
{
|
|
|
|
$receivers = [];
|
|
|
|
$networks = [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS];
|
2018-11-08 16:28:29 +00:00
|
|
|
$condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER],
|
2018-11-03 21:37:08 +00:00
|
|
|
'network' => $networks, 'archive' => false, 'pending' => false];
|
|
|
|
$contacts = DBA::select('contact', ['uid', 'rel'], $condition);
|
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
|
|
|
if (self::isValidReceiverForActor($contact, $actor, $tags)) {
|
|
|
|
$receivers['uid:' . $contact['uid']] = $contact['uid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DBA::close($contacts);
|
|
|
|
return $receivers;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests if the contact is a valid receiver for this actor
|
|
|
|
*
|
|
|
|
* @param array $contact
|
|
|
|
* @param string $actor
|
|
|
|
* @param array $tags
|
|
|
|
*
|
|
|
|
* @return array with receivers (user id)
|
|
|
|
*/
|
|
|
|
private static function isValidReceiverForActor($contact, $actor, $tags)
|
|
|
|
{
|
|
|
|
// Public contacts are no valid receiver
|
|
|
|
if ($contact['uid'] == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Are we following the contact? Then this is a valid receiver
|
|
|
|
if (in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// When the possible receiver isn't a community, then it is no valid receiver
|
|
|
|
$owner = User::getOwnerDataById($contact['uid']);
|
|
|
|
if (empty($owner) || ($owner['contact-type'] != Contact::ACCOUNT_TYPE_COMMUNITY)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Is the community account tagged?
|
|
|
|
foreach ($tags as $tag) {
|
|
|
|
if ($tag['type'] != 'Mention') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($tag['href'] == $owner['url']) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-10-03 06:15:07 +00:00
|
|
|
/**
|
2018-10-06 04:18:40 +00:00
|
|
|
* Switches existing contacts to ActivityPub
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
2018-10-05 19:48:48 +00:00
|
|
|
* @param integer $cid Contact ID
|
2018-10-03 06:15:07 +00:00
|
|
|
* @param integer $uid User ID
|
2018-10-05 19:48:48 +00:00
|
|
|
* @param string $url Profile URL
|
2018-10-03 06:15:07 +00:00
|
|
|
*/
|
2018-10-13 18:13:01 +00:00
|
|
|
public static function switchContact($cid, $uid, $url)
|
2018-10-03 06:15:07 +00:00
|
|
|
{
|
|
|
|
$profile = ActivityPub::probeProfile($url);
|
|
|
|
if (empty($profile)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Switch contact ' . $cid . ' (' . $profile['url'] . ') for user ' . $uid . ' to ActivityPub');
|
2018-10-03 06:15:07 +00:00
|
|
|
|
2018-10-16 22:29:28 +00:00
|
|
|
$photo = defaults($profile, 'photo', null);
|
2018-10-03 06:15:07 +00:00
|
|
|
unset($profile['photo']);
|
|
|
|
unset($profile['baseurl']);
|
2018-12-02 15:01:08 +00:00
|
|
|
unset($profile['guid']);
|
2018-10-03 06:15:07 +00:00
|
|
|
|
2018-11-08 16:28:29 +00:00
|
|
|
$profile['nurl'] = Strings::normaliseLink($profile['url']);
|
2018-10-03 06:15:07 +00:00
|
|
|
DBA::update('contact', $profile, ['id' => $cid]);
|
|
|
|
|
|
|
|
Contact::updateAvatar($photo, $uid, $cid);
|
2018-10-04 12:57:42 +00:00
|
|
|
|
2018-10-05 19:48:48 +00:00
|
|
|
// Send a new follow request to be sure that the connection still exists
|
2018-10-05 20:10:10 +00:00
|
|
|
if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND]])) {
|
2018-10-05 19:48:48 +00:00
|
|
|
ActivityPub\Transmitter::sendActivity('Follow', $profile['url'], $uid);
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Send a new follow request to ' . $profile['url'] . ' for user ' . $uid, Logger::DEBUG);
|
2018-10-05 19:48:48 +00:00
|
|
|
}
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-16 22:29:28 +00:00
|
|
|
*
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
|
|
|
* @param $receivers
|
|
|
|
* @param $actor
|
|
|
|
*/
|
|
|
|
private static function switchContacts($receivers, $actor)
|
|
|
|
{
|
|
|
|
if (empty($actor)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($receivers as $receiver) {
|
2018-11-08 16:28:29 +00:00
|
|
|
$contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'nurl' => Strings::normaliseLink($actor)]);
|
2018-10-03 06:15:07 +00:00
|
|
|
if (DBA::isResult($contact)) {
|
2018-10-03 09:15:38 +00:00
|
|
|
self::switchContact($contact['id'], $receiver, $actor);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-11-08 16:28:29 +00:00
|
|
|
$contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'alias' => [Strings::normaliseLink($actor), $actor]]);
|
2018-10-03 06:15:07 +00:00
|
|
|
if (DBA::isResult($contact)) {
|
2018-10-03 09:15:38 +00:00
|
|
|
self::switchContact($contact['id'], $receiver, $actor);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-16 22:29:28 +00:00
|
|
|
*
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
|
|
|
* @param $object_data
|
|
|
|
* @param array $activity
|
|
|
|
*
|
2018-10-16 22:29:28 +00:00
|
|
|
* @return
|
2018-10-03 06:15:07 +00:00
|
|
|
*/
|
|
|
|
private static function addActivityFields($object_data, $activity)
|
|
|
|
{
|
|
|
|
if (!empty($activity['published']) && empty($object_data['published'])) {
|
2018-10-13 21:37:39 +00:00
|
|
|
$object_data['published'] = JsonLD::fetchElement($activity, 'as:published', '@value');
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-06 14:02:23 +00:00
|
|
|
if (!empty($activity['diaspora:guid']) && empty($object_data['diaspora:guid'])) {
|
2018-10-07 17:17:06 +00:00
|
|
|
$object_data['diaspora:guid'] = JsonLD::fetchElement($activity, 'diaspora:guid');
|
2018-10-06 14:02:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-13 21:37:39 +00:00
|
|
|
$object_data['service'] = JsonLD::fetchElement($activity, 'as:instrument', 'as:name', '@type', 'as:Service');
|
2018-10-03 06:15:07 +00:00
|
|
|
|
|
|
|
return $object_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-07 17:17:06 +00:00
|
|
|
* Fetches the object data from external ressources if needed
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
2018-10-07 17:17:06 +00:00
|
|
|
* @param string $object_id Object ID of the the provided object
|
|
|
|
* @param array $object The provided object array
|
|
|
|
* @param boolean $trust_source Do we trust the provided object?
|
2018-11-03 21:37:08 +00:00
|
|
|
* @param integer $uid User ID for the signature that we use to fetch data
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
2018-10-07 17:17:06 +00:00
|
|
|
* @return array with trusted and valid object data
|
2018-10-03 06:15:07 +00:00
|
|
|
*/
|
2018-11-03 21:37:08 +00:00
|
|
|
private static function fetchObject($object_id, $object = [], $trust_source = false, $uid = 0)
|
2018-10-03 06:15:07 +00:00
|
|
|
{
|
2018-10-07 17:17:06 +00:00
|
|
|
// By fetching the type we check if the object is complete.
|
|
|
|
$type = JsonLD::fetchElement($object, '@type');
|
|
|
|
|
|
|
|
if (!$trust_source || empty($type)) {
|
2018-11-03 21:37:08 +00:00
|
|
|
$data = ActivityPub::fetchContent($object_id, $uid);
|
2018-10-07 15:34:51 +00:00
|
|
|
if (!empty($data)) {
|
|
|
|
$object = JsonLD::compact($data);
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Fetched content for ' . $object_id, Logger::DEBUG);
|
2018-10-07 15:34:51 +00:00
|
|
|
} else {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Empty content for ' . $object_id . ', check if content is available locally.', Logger::DEBUG);
|
2018-10-07 15:34:51 +00:00
|
|
|
|
|
|
|
$item = Item::selectFirst([], ['uri' => $object_id]);
|
|
|
|
if (!DBA::isResult($item)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Object with url ' . $object_id . ' was not found locally.', Logger::DEBUG);
|
2018-10-07 15:34:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Using already stored item for url ' . $object_id, Logger::DEBUG);
|
2018-10-07 15:34:51 +00:00
|
|
|
$data = ActivityPub\Transmitter::createNote($item);
|
|
|
|
$object = JsonLD::compact($data);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
} else {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Using original object for url ' . $object_id, Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 15:34:51 +00:00
|
|
|
$type = JsonLD::fetchElement($object, '@type');
|
2018-10-03 06:15:07 +00:00
|
|
|
|
2018-10-07 15:34:51 +00:00
|
|
|
if (empty($type)) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Empty type', Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-10-07 15:34:51 +00:00
|
|
|
if (in_array($type, self::CONTENT_TYPES)) {
|
|
|
|
return self::processObject($object);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 15:34:51 +00:00
|
|
|
if ($type == 'as:Announce') {
|
|
|
|
$object_id = JsonLD::fetchElement($object, 'object');
|
|
|
|
if (empty($object_id)) {
|
2018-10-03 06:15:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-11-03 21:37:08 +00:00
|
|
|
return self::fetchObject($object_id, [], false, $uid);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Unhandled object type: ' . $type, Logger::DEBUG);
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-07 13:37:05 +00:00
|
|
|
* Convert tags from JSON-LD format into a simplified format
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
2018-10-07 13:37:05 +00:00
|
|
|
* @param array $tags Tags in JSON-LD format
|
2018-10-03 06:15:07 +00:00
|
|
|
*
|
2018-10-07 13:37:05 +00:00
|
|
|
* @return array with tags in a simplified format
|
|
|
|
*/
|
|
|
|
private static function processTags($tags)
|
|
|
|
{
|
|
|
|
$taglist = [];
|
2018-10-07 15:34:51 +00:00
|
|
|
|
2018-10-07 17:17:06 +00:00
|
|
|
if (empty($tags)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
foreach ($tags as $tag) {
|
2018-10-07 15:34:51 +00:00
|
|
|
if (empty($tag)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-11-07 20:34:03 +00:00
|
|
|
$element = ['type' => str_replace('as:', '', JsonLD::fetchElement($tag, '@type')),
|
2018-10-07 13:37:05 +00:00
|
|
|
'href' => JsonLD::fetchElement($tag, 'as:href'),
|
|
|
|
'name' => JsonLD::fetchElement($tag, 'as:name')];
|
2018-11-07 20:34:03 +00:00
|
|
|
|
|
|
|
if (empty($element['type'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$taglist[] = $element;
|
2018-10-07 13:37:05 +00:00
|
|
|
}
|
|
|
|
return $taglist;
|
|
|
|
}
|
|
|
|
|
2018-11-07 20:34:03 +00:00
|
|
|
/**
|
|
|
|
* Convert emojis from JSON-LD format into a simplified format
|
|
|
|
*
|
|
|
|
* @param array $tags Tags in JSON-LD format
|
|
|
|
*
|
|
|
|
* @return array with emojis in a simplified format
|
|
|
|
*/
|
|
|
|
private static function processEmojis($emojis)
|
|
|
|
{
|
|
|
|
$emojilist = [];
|
|
|
|
|
|
|
|
if (empty($emojis)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($emojis as $emoji) {
|
|
|
|
if (empty($emoji) || (JsonLD::fetchElement($emoji, '@type') != 'toot:Emoji') || empty($emoji['as:icon'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = JsonLD::fetchElement($emoji['as:icon'], 'as:url');
|
|
|
|
$element = ['name' => JsonLD::fetchElement($emoji, 'as:name'),
|
|
|
|
'href' => $url];
|
|
|
|
|
|
|
|
$emojilist[] = $element;
|
|
|
|
}
|
|
|
|
return $emojilist;
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
/**
|
|
|
|
* Convert attachments from JSON-LD format into a simplified format
|
|
|
|
*
|
|
|
|
* @param array $attachments Attachments in JSON-LD format
|
|
|
|
*
|
|
|
|
* @return array with attachmants in a simplified format
|
|
|
|
*/
|
|
|
|
private static function processAttachments($attachments)
|
|
|
|
{
|
|
|
|
$attachlist = [];
|
2018-10-07 15:34:51 +00:00
|
|
|
|
2018-10-07 17:17:06 +00:00
|
|
|
if (empty($attachments)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
foreach ($attachments as $attachment) {
|
2018-10-07 15:34:51 +00:00
|
|
|
if (empty($attachment)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
$attachlist[] = ['type' => str_replace('as:', '', JsonLD::fetchElement($attachment, '@type')),
|
|
|
|
'mediaType' => JsonLD::fetchElement($attachment, 'as:mediaType'),
|
|
|
|
'name' => JsonLD::fetchElement($attachment, 'as:name'),
|
|
|
|
'url' => JsonLD::fetchElement($attachment, 'as:url')];
|
|
|
|
}
|
|
|
|
return $attachlist;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches data from the object part of an activity
|
|
|
|
*
|
|
|
|
* @param array $object
|
|
|
|
*
|
|
|
|
* @return array
|
2018-10-03 06:15:07 +00:00
|
|
|
*/
|
|
|
|
private static function processObject($object)
|
|
|
|
{
|
2018-10-07 13:37:05 +00:00
|
|
|
if (!JsonLD::fetchElement($object, '@id')) {
|
2018-10-03 06:15:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$object_data = [];
|
2018-10-07 13:37:05 +00:00
|
|
|
$object_data['object_type'] = JsonLD::fetchElement($object, '@type');
|
|
|
|
$object_data['id'] = JsonLD::fetchElement($object, '@id');
|
|
|
|
$object_data['reply-to-id'] = JsonLD::fetchElement($object, 'as:inReplyTo');
|
|
|
|
|
2019-01-13 09:38:01 +00:00
|
|
|
// An empty "id" field is translated to "./" by the compactor, so we have to check for this content
|
|
|
|
if (empty($object_data['reply-to-id']) || ($object_data['reply-to-id'] == './')) {
|
2018-10-03 06:15:07 +00:00
|
|
|
$object_data['reply-to-id'] = $object_data['id'];
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
$object_data['published'] = JsonLD::fetchElement($object, 'as:published', '@value');
|
|
|
|
$object_data['updated'] = JsonLD::fetchElement($object, 'as:updated', '@value');
|
|
|
|
|
|
|
|
if (empty($object_data['updated'])) {
|
|
|
|
$object_data['updated'] = $object_data['published'];
|
|
|
|
}
|
2018-10-03 06:15:07 +00:00
|
|
|
|
|
|
|
if (empty($object_data['published']) && !empty($object_data['updated'])) {
|
|
|
|
$object_data['published'] = $object_data['updated'];
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
$actor = JsonLD::fetchElement($object, 'as:attributedTo');
|
2018-10-03 06:15:07 +00:00
|
|
|
if (empty($actor)) {
|
2018-10-07 13:37:05 +00:00
|
|
|
$actor = JsonLD::fetchElement($object, 'as:actor');
|
2018-10-03 06:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
$object_data['diaspora:guid'] = JsonLD::fetchElement($object, 'diaspora:guid');
|
|
|
|
$object_data['diaspora:comment'] = JsonLD::fetchElement($object, 'diaspora:comment');
|
2018-10-27 14:35:22 +00:00
|
|
|
$object_data['diaspora:like'] = JsonLD::fetchElement($object, 'diaspora:like');
|
2018-10-07 17:35:43 +00:00
|
|
|
$object_data['actor'] = $object_data['author'] = $actor;
|
2018-10-07 13:37:05 +00:00
|
|
|
$object_data['context'] = JsonLD::fetchElement($object, 'as:context');
|
|
|
|
$object_data['conversation'] = JsonLD::fetchElement($object, 'ostatus:conversation');
|
|
|
|
$object_data['sensitive'] = JsonLD::fetchElement($object, 'as:sensitive');
|
|
|
|
$object_data['name'] = JsonLD::fetchElement($object, 'as:name');
|
|
|
|
$object_data['summary'] = JsonLD::fetchElement($object, 'as:summary');
|
|
|
|
$object_data['content'] = JsonLD::fetchElement($object, 'as:content');
|
|
|
|
$object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/bbcode');
|
2018-10-26 04:13:26 +00:00
|
|
|
$object_data['start-time'] = JsonLD::fetchElement($object, 'as:startTime', '@value');
|
|
|
|
$object_data['end-time'] = JsonLD::fetchElement($object, 'as:endTime', '@value');
|
2018-10-07 13:37:05 +00:00
|
|
|
$object_data['location'] = JsonLD::fetchElement($object, 'as:location', 'as:name', '@type', 'as:Place');
|
2018-10-13 21:37:39 +00:00
|
|
|
$object_data['latitude'] = JsonLD::fetchElement($object, 'as:location', 'as:latitude', '@type', 'as:Place');
|
|
|
|
$object_data['latitude'] = JsonLD::fetchElement($object_data, 'latitude', '@value');
|
|
|
|
$object_data['longitude'] = JsonLD::fetchElement($object, 'as:location', 'as:longitude', '@type', 'as:Place');
|
|
|
|
$object_data['longitude'] = JsonLD::fetchElement($object_data, 'longitude', '@value');
|
2018-10-07 13:37:05 +00:00
|
|
|
$object_data['attachments'] = self::processAttachments(JsonLD::fetchElementArray($object, 'as:attachment'));
|
|
|
|
$object_data['tags'] = self::processTags(JsonLD::fetchElementArray($object, 'as:tag'));
|
2018-11-07 20:34:03 +00:00
|
|
|
$object_data['emojis'] = self::processEmojis(JsonLD::fetchElementArray($object, 'as:tag', 'toot:Emoji'));
|
2018-10-13 21:37:39 +00:00
|
|
|
$object_data['generator'] = JsonLD::fetchElement($object, 'as:generator', 'as:name', '@type', 'as:Application');
|
2018-10-07 13:37:05 +00:00
|
|
|
$object_data['alternate-url'] = JsonLD::fetchElement($object, 'as:url');
|
|
|
|
|
|
|
|
// Special treatment for Hubzilla links
|
|
|
|
if (is_array($object_data['alternate-url'])) {
|
2018-10-14 17:57:44 +00:00
|
|
|
$object_data['alternate-url'] = JsonLD::fetchElement($object_data['alternate-url'], 'as:href');
|
|
|
|
|
|
|
|
if (!is_string($object_data['alternate-url'])) {
|
2018-10-07 13:37:05 +00:00
|
|
|
$object_data['alternate-url'] = JsonLD::fetchElement($object['as:url'], 'as:href');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-03 21:37:08 +00:00
|
|
|
$object_data['receiver'] = self::getReceivers($object, $object_data['actor'], $object_data['tags']);
|
2018-10-03 06:15:07 +00:00
|
|
|
|
|
|
|
// Common object data:
|
|
|
|
|
|
|
|
// Unhandled
|
|
|
|
// @context, type, actor, signature, mediaType, duration, replies, icon
|
|
|
|
|
|
|
|
// Also missing: (Defined in the standard, but currently unused)
|
2018-10-13 21:37:39 +00:00
|
|
|
// audience, preview, endTime, startTime, image
|
2018-10-03 06:15:07 +00:00
|
|
|
|
|
|
|
// Data in Notes:
|
|
|
|
|
|
|
|
// Unhandled
|
|
|
|
// contentMap, announcement_count, announcements, context_id, likes, like_count
|
|
|
|
// inReplyToStatusId, shares, quoteUrl, statusnetConversationId
|
|
|
|
|
|
|
|
// Data in video:
|
|
|
|
|
|
|
|
// To-Do?
|
|
|
|
// category, licence, language, commentsEnabled
|
|
|
|
|
|
|
|
// Unhandled
|
|
|
|
// views, waitTranscoding, state, support, subtitleLanguage
|
|
|
|
// likes, dislikes, shares, comments
|
|
|
|
|
|
|
|
return $object_data;
|
|
|
|
}
|
|
|
|
}
|