3 * @file src/Util/JsonLD.php
5 namespace Friendica\Util;
7 use Friendica\Core\Cache;
8 use Friendica\Core\Logger;
12 * @brief This class contain methods to work with JsonLD data
17 * @brief Loader for LD-JSON validation
21 * @return the loaded data
23 public static function documentLoader($url)
27 $x = debug_backtrace();
30 if ($n['function'] === __FUNCTION__) {
37 Logger::log('jsonld bomb detected at: ' . $url);
41 $result = Cache::get('documentLoader:' . $url);
42 if (!is_null($result)) {
46 $data = jsonld_default_document_loader($url);
47 Cache::set('documentLoader:' . $url, $data, Cache::DAY);
52 * @brief Normalises a given JSON array
56 * @return normalized JSON string
58 public static function normalize($json)
60 jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
62 $jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
65 $normalized = jsonld_normalize($jsonobj, array('algorithm' => 'URDNA2015', 'format' => 'application/nquads'));
67 catch (Exception $e) {
69 Logger::log('normalise error:' . print_r($e, true), Logger::DEBUG);
76 * @brief Compacts a given JSON array
80 * @return comacted JSON array
82 public static function compact($json)
84 jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
86 $context = (object)['as' => 'https://www.w3.org/ns/activitystreams#',
87 'w3id' => 'https://w3id.org/security#',
88 'ldp' => (object)['@id' => 'http://www.w3.org/ns/ldp#', '@type' => '@id'],
89 'vcard' => (object)['@id' => 'http://www.w3.org/2006/vcard/ns#', '@type' => '@id'],
90 'dfrn' => (object)['@id' => 'http://purl.org/macgirvin/dfrn/1.0/', '@type' => '@id'],
91 'diaspora' => (object)['@id' => 'https://diasporafoundation.org/ns/', '@type' => '@id'],
92 'ostatus' => (object)['@id' => 'http://ostatus.org#', '@type' => '@id'],
93 'dc' => (object)['@id' => 'http://purl.org/dc/terms/', '@type' => '@id'],
94 'toot' => (object)['@id' => 'http://joinmastodon.org/ns#', '@type' => '@id']];
96 $jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
100 $compacted = jsonld_compact($jsonobj, $context);
102 catch (Exception $e) {
104 Logger::log('compacting error:' . print_r($e, true), Logger::DEBUG);
107 return json_decode(json_encode($compacted, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), true);
111 * @brief Fetches an element array from a JSON array
117 * @return fetched element array
119 public static function fetchElementArray($array, $element, $key = '@id')
125 if (!isset($array[$element])) {
129 // If it isn't an array yet, make it to one
130 if (!is_int(key($array[$element]))) {
131 $array[$element] = [$array[$element]];
136 foreach ($array[$element] as $entry) {
137 if (!is_array($entry)) {
138 $elements[] = $entry;
139 } elseif (!empty($entry[$key])) {
140 $elements[] = $entry[$key];
141 } elseif (!empty($entry) || !is_array($entry)) {
142 $elements[] = $entry;
150 * @brief Fetches an element from a JSON array
158 * @return fetched element
160 public static function fetchElement($array, $element, $key = '@id', $type = null, $type_value = null)
166 if (!isset($array[$element])) {
170 if (!is_array($array[$element])) {
171 return $array[$element];
174 if (is_null($type) || is_null($type_value)) {
175 $element_array = self::fetchElementArray($array, $element, $key);
176 if (is_null($element_array)) {
180 return array_shift($element_array);
183 $element_array = self::fetchElementArray($array, $element);
184 if (is_null($element_array)) {
188 foreach ($element_array as $entry) {
189 if (isset($entry[$key]) && isset($entry[$type]) && ($entry[$type] == $type_value)) {