2018-09-20 05:30:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Util/JsonLD.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Util;
|
|
|
|
|
|
|
|
use Friendica\Core\Cache;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-09-26 22:45:13 +00:00
|
|
|
use Exception;
|
2018-09-20 05:30:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This class contain methods to work with JsonLD data
|
|
|
|
*/
|
|
|
|
class JsonLD
|
|
|
|
{
|
2018-09-26 22:02:14 +00:00
|
|
|
/**
|
|
|
|
* @brief Loader for LD-JSON validation
|
|
|
|
*
|
|
|
|
* @param $url
|
|
|
|
*
|
|
|
|
* @return the loaded data
|
|
|
|
*/
|
2018-09-20 05:30:07 +00:00
|
|
|
public static function documentLoader($url)
|
|
|
|
{
|
|
|
|
$recursion = 0;
|
|
|
|
|
|
|
|
$x = debug_backtrace();
|
|
|
|
if ($x) {
|
|
|
|
foreach ($x as $n) {
|
|
|
|
if ($n['function'] === __FUNCTION__) {
|
|
|
|
$recursion ++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($recursion > 5) {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('jsonld bomb detected at: ' . $url);
|
2018-09-20 05:30:07 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = Cache::get('documentLoader:' . $url);
|
|
|
|
if (!is_null($result)) {
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = jsonld_default_document_loader($url);
|
2018-10-20 16:19:55 +00:00
|
|
|
Cache::set('documentLoader:' . $url, $data, Cache::DAY);
|
2018-09-20 05:30:07 +00:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2018-09-26 22:02:14 +00:00
|
|
|
/**
|
|
|
|
* @brief Normalises a given JSON array
|
|
|
|
*
|
|
|
|
* @param array $json
|
|
|
|
*
|
|
|
|
* @return normalized JSON string
|
|
|
|
*/
|
2018-09-20 05:30:07 +00:00
|
|
|
public static function normalize($json)
|
|
|
|
{
|
|
|
|
jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
|
|
|
|
|
2018-09-21 22:31:33 +00:00
|
|
|
$jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
|
2018-09-20 05:30:07 +00:00
|
|
|
|
2018-09-26 22:45:13 +00:00
|
|
|
try {
|
|
|
|
$normalized = jsonld_normalize($jsonobj, array('algorithm' => 'URDNA2015', 'format' => 'application/nquads'));
|
|
|
|
}
|
|
|
|
catch (Exception $e) {
|
2018-10-02 08:31:58 +00:00
|
|
|
$normalized = false;
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('normalise error:' . print_r($e, true), Logger::DEBUG);
|
2018-09-26 22:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $normalized;
|
2018-09-20 05:30:07 +00:00
|
|
|
}
|
|
|
|
|
2018-09-26 22:02:14 +00:00
|
|
|
/**
|
|
|
|
* @brief Compacts a given JSON array
|
|
|
|
*
|
|
|
|
* @param array $json
|
|
|
|
*
|
|
|
|
* @return comacted JSON array
|
|
|
|
*/
|
2018-09-20 05:30:07 +00:00
|
|
|
public static function compact($json)
|
|
|
|
{
|
|
|
|
jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
$context = (object)['as' => 'https://www.w3.org/ns/activitystreams#',
|
|
|
|
'w3id' => 'https://w3id.org/security#',
|
2018-11-02 21:57:06 +00:00
|
|
|
'ldp' => (object)['@id' => 'http://www.w3.org/ns/ldp#', '@type' => '@id'],
|
2018-09-20 05:30:07 +00:00
|
|
|
'vcard' => (object)['@id' => 'http://www.w3.org/2006/vcard/ns#', '@type' => '@id'],
|
2018-11-02 21:57:06 +00:00
|
|
|
'dfrn' => (object)['@id' => 'http://purl.org/macgirvin/dfrn/1.0/', '@type' => '@id'],
|
2018-10-07 13:37:05 +00:00
|
|
|
'diaspora' => (object)['@id' => 'https://diasporafoundation.org/ns/', '@type' => '@id'],
|
2018-11-02 21:57:06 +00:00
|
|
|
'ostatus' => (object)['@id' => 'http://ostatus.org#', '@type' => '@id'],
|
2018-11-07 20:34:03 +00:00
|
|
|
'dc' => (object)['@id' => 'http://purl.org/dc/terms/', '@type' => '@id'],
|
|
|
|
'toot' => (object)['@id' => 'http://joinmastodon.org/ns#', '@type' => '@id']];
|
2018-09-20 05:30:07 +00:00
|
|
|
|
2019-01-13 09:38:01 +00:00
|
|
|
// Workaround for Nextcloud Social
|
|
|
|
// See issue https://github.com/nextcloud/social/issues/330
|
2019-01-13 16:00:27 +00:00
|
|
|
if (is_array($json['@context'])) {
|
|
|
|
$json['@context'][] = 'https://w3id.org/security/v1';
|
|
|
|
}
|
2019-01-13 09:38:01 +00:00
|
|
|
|
2018-12-11 18:48:33 +00:00
|
|
|
// Trying to avoid memory problems with large content fields
|
|
|
|
if (!empty($json['object']['source']['content'])) {
|
|
|
|
$content = $json['object']['source']['content'];
|
|
|
|
$json['object']['source']['content'] = '';
|
|
|
|
}
|
2018-09-20 05:30:07 +00:00
|
|
|
|
2018-12-11 18:48:33 +00:00
|
|
|
$jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
|
2018-10-13 13:17:10 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
$compacted = jsonld_compact($jsonobj, $context);
|
|
|
|
}
|
|
|
|
catch (Exception $e) {
|
|
|
|
$compacted = false;
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('compacting error:' . print_r($e, true), Logger::DEBUG);
|
2018-10-13 13:17:10 +00:00
|
|
|
}
|
2018-09-20 05:30:07 +00:00
|
|
|
|
2018-12-11 18:48:33 +00:00
|
|
|
$json = json_decode(json_encode($compacted, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), true);
|
|
|
|
|
|
|
|
if (isset($json['as:object']['as:source']['as:content']) && !empty($content)) {
|
|
|
|
$json['as:object']['as:source']['as:content'] = $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $json;
|
2018-09-20 05:30:07 +00:00
|
|
|
}
|
2018-09-20 05:37:01 +00:00
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Fetches an element array from a JSON array
|
|
|
|
*
|
|
|
|
* @param $array
|
|
|
|
* @param $element
|
|
|
|
* @param $key
|
|
|
|
*
|
|
|
|
* @return fetched element array
|
|
|
|
*/
|
|
|
|
public static function fetchElementArray($array, $element, $key = '@id')
|
|
|
|
{
|
|
|
|
if (empty($array)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($array[$element])) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If it isn't an array yet, make it to one
|
|
|
|
if (!is_int(key($array[$element]))) {
|
|
|
|
$array[$element] = [$array[$element]];
|
|
|
|
}
|
|
|
|
|
|
|
|
$elements = [];
|
|
|
|
|
|
|
|
foreach ($array[$element] as $entry) {
|
|
|
|
if (!is_array($entry)) {
|
|
|
|
$elements[] = $entry;
|
|
|
|
} elseif (!empty($entry[$key])) {
|
|
|
|
$elements[] = $entry[$key];
|
2018-10-10 19:15:16 +00:00
|
|
|
} elseif (!empty($entry) || !is_array($entry)) {
|
2018-10-07 13:37:05 +00:00
|
|
|
$elements[] = $entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $elements;
|
|
|
|
}
|
|
|
|
|
2018-09-26 22:02:14 +00:00
|
|
|
/**
|
|
|
|
* @brief Fetches an element from a JSON array
|
|
|
|
*
|
|
|
|
* @param $array
|
|
|
|
* @param $element
|
|
|
|
* @param $key
|
|
|
|
* @param $type
|
|
|
|
* @param $type_value
|
|
|
|
*
|
|
|
|
* @return fetched element
|
|
|
|
*/
|
2018-10-07 13:37:05 +00:00
|
|
|
public static function fetchElement($array, $element, $key = '@id', $type = null, $type_value = null)
|
2018-09-20 05:37:01 +00:00
|
|
|
{
|
|
|
|
if (empty($array)) {
|
2018-10-07 13:37:05 +00:00
|
|
|
return null;
|
2018-09-20 05:37:01 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
if (!isset($array[$element])) {
|
|
|
|
return null;
|
2018-09-20 05:37:01 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
if (!is_array($array[$element])) {
|
2018-09-20 05:37:01 +00:00
|
|
|
return $array[$element];
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
if (is_null($type) || is_null($type_value)) {
|
|
|
|
$element_array = self::fetchElementArray($array, $element, $key);
|
|
|
|
if (is_null($element_array)) {
|
|
|
|
return null;
|
2018-09-20 05:37:01 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
return array_shift($element_array);
|
2018-09-20 05:37:01 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
$element_array = self::fetchElementArray($array, $element);
|
|
|
|
if (is_null($element_array)) {
|
|
|
|
return null;
|
2018-09-20 05:37:01 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
foreach ($element_array as $entry) {
|
|
|
|
if (isset($entry[$key]) && isset($entry[$type]) && ($entry[$type] == $type_value)) {
|
|
|
|
return $entry[$key];
|
|
|
|
}
|
|
|
|
}
|
2018-09-20 05:37:01 +00:00
|
|
|
|
2018-10-07 13:37:05 +00:00
|
|
|
return null;
|
2018-09-20 05:37:01 +00:00
|
|
|
}
|
2018-09-20 05:30:07 +00:00
|
|
|
}
|