3 * @copyright Copyright (C) 2010-2023, the Friendica project
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\Util;
24 use Friendica\Core\Cache\Enum\Duration;
25 use Friendica\Core\Logger;
27 use Friendica\Core\System;
31 * This class contain methods to work with JsonLD data
36 * Loader for LD-JSON validation
40 * @return mixed the loaded data
41 * @throws \JsonLdException
43 public static function documentLoader($url)
46 case 'https://w3id.org/security/v1':
47 $url = DI::basePath() . '/static/security-v1.jsonld';
49 case 'https://w3id.org/identity/v1':
50 $url = DI::basePath() . '/static/identity-v1.jsonld';
52 case 'https://w3id.org/security/data-integrity/v1':
53 $url = DI::basePath() . '/static/security-data-integrity-v1.jsonld';
55 case 'https://www.w3.org/ns/activitystreams':
56 $url = DI::basePath() . '/static/activitystreams.jsonld';
58 case 'https://funkwhale.audio/ns':
59 $url = DI::basePath() . '/static/funkwhale.audio.jsonld';
61 case 'http://schema.org':
62 $url = DI::basePath() . '/static/schema.jsonld';
64 case 'http://joinmastodon.org/ns':
65 $url = DI::basePath() . '/static/joinmastodon.jsonld';
68 switch (parse_url($url, PHP_URL_PATH)) {
69 case '/schemas/litepub-0.1.jsonld';
70 $url = DI::basePath() . '/static/litepub-0.1.jsonld';
72 case '/apschema/v1.2':
73 case '/apschema/v1.9':
74 case '/apschema/v1.10':
75 $url = DI::basePath() . '/static/apschema.jsonld';
78 Logger::info('Got url', ['url' =>$url]);
85 $x = debug_backtrace();
88 if ($n['function'] === __FUNCTION__) {
95 Logger::error('jsonld bomb detected at: ' . $url);
99 $result = DI::cache()->get('documentLoader:' . $url);
100 if (!is_null($result)) {
104 $data = jsonld_default_document_loader($url);
105 DI::cache()->set('documentLoader:' . $url, $data, Duration::DAY);
110 * Normalises a given JSON array
114 * @return mixed|bool normalized JSON string
117 public static function normalize($json)
119 jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
121 $jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
124 $normalized = jsonld_normalize($jsonobj, array('algorithm' => 'URDNA2015', 'format' => 'application/nquads'));
126 catch (Exception $e) {
129 $currentException = $e;
131 $messages[] = $currentException->getMessage();
132 } while($currentException = $currentException->getPrevious());
134 Logger::warning('JsonLD normalize error');
135 Logger::notice('JsonLD normalize error', ['messages' => $messages]);
136 Logger::info('JsonLD normalize error', ['trace' => $e->getTraceAsString()]);
137 Logger::debug('JsonLD normalize error', ['jsonobj' => $jsonobj]);
144 * Compacts a given JSON array
147 * @param bool $logfailed
149 * @return array Compacted JSON array
152 public static function compact($json, bool $logfailed = true): array
154 jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
156 $context = (object)['as' => 'https://www.w3.org/ns/activitystreams#',
157 'w3id' => 'https://w3id.org/security#',
158 'ldp' => (object)['@id' => 'http://www.w3.org/ns/ldp#', '@type' => '@id'],
159 'vcard' => (object)['@id' => 'http://www.w3.org/2006/vcard/ns#', '@type' => '@id'],
160 'dfrn' => (object)['@id' => 'http://purl.org/macgirvin/dfrn/1.0/', '@type' => '@id'],
161 'diaspora' => (object)['@id' => 'https://diasporafoundation.org/ns/', '@type' => '@id'],
162 'ostatus' => (object)['@id' => 'http://ostatus.org#', '@type' => '@id'],
163 'dc' => (object)['@id' => 'http://purl.org/dc/terms/', '@type' => '@id'],
164 'toot' => (object)['@id' => 'http://joinmastodon.org/ns#', '@type' => '@id'],
165 'litepub' => (object)['@id' => 'http://litepub.social/ns#', '@type' => '@id'],
166 'sc' => (object)['@id' => 'http://schema.org#', '@type' => '@id'],
167 'pt' => (object)['@id' => 'https://joinpeertube.org/ns#', '@type' => '@id'],
168 'mobilizon' => (object)['@id' => 'https://joinmobilizon.org/ns#', '@type' => '@id'],
169 'fedibird' => (object)['@id' => 'http://fedibird.com/ns#', '@type' => '@id'],
170 'misskey' => (object)['@id' => 'https://misskey-hub.net/ns#', '@type' => '@id'],
175 // Preparation for adding possibly missing content to the context
176 if (!empty($json['@context']) && is_string($json['@context'])) {
177 $json['@context'] = [$json['@context']];
180 if (!empty($json['@context']) && is_array($json['@context'])) {
181 // Remove empty entries from the context (a problem with WriteFreely)
182 $json['@context'] = array_filter($json['@context']);
184 // Workaround for servers with missing context
185 // See issue https://github.com/nextcloud/social/issues/330
186 if (!in_array('https://w3id.org/security/v1', $json['@context'])) {
187 $json['@context'][] = 'https://w3id.org/security/v1';
191 // Bookwyrm transmits "id" fields with "null", which isn't allowed.
192 array_walk_recursive($json, function (&$value, $key) {
193 if ($key == 'id' && is_null($value)) {
198 $jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
201 $compacted = jsonld_compact($jsonobj, $context);
203 catch (Exception $e) {
205 Logger::notice('compacting error', ['msg' => $e->getMessage(), 'previous' => $e->getPrevious(), 'line' => $e->getLine()]);
206 if ($logfailed && DI::config()->get('debug', 'ap_log_failure')) {
207 $tempfile = tempnam(System::getTempPath(), 'failed-jsonld');
208 file_put_contents($tempfile, json_encode(['json' => $orig_json, 'callstack' => System::callstack(20), 'msg' => $e->getMessage(), 'previous' => $e->getPrevious()], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT));
209 Logger::notice('Failed message stored', ['file' => $tempfile]);
213 $json = json_decode(json_encode($compacted, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), true);
215 if ($json === false) {
216 Logger::notice('JSON encode->decode failed', ['orig_json' => $orig_json, 'compacted' => $compacted]);
224 * Fetches an element array from a JSON array
230 * @return array fetched element
232 public static function fetchElementArray($array, $element, $key = null, $type = null, $type_value = null)
234 if (!isset($array[$element])) {
238 // If it isn't an array yet, make it to one
239 if (!is_array($array[$element]) || !is_int(key($array[$element]))) {
240 $array[$element] = [$array[$element]];
245 foreach ($array[$element] as $entry) {
246 if (!is_array($entry) || is_null($key)) {
248 } elseif (isset($entry[$key])) {
249 $item = $entry[$key];
252 if (isset($item) && (is_null($type) || is_null($type_value) || isset($item[$type]) && $item[$type] == $type_value)) {
261 * Fetches an element from a JSON array
269 * @return string fetched element
271 public static function fetchElement($array, $element, $key = '@id', $type = null, $type_value = null)
277 if (!isset($array[$element])) {
281 if (!is_array($array[$element])) {
282 return $array[$element];
285 if (is_null($type) || is_null($type_value)) {
286 $element_array = self::fetchElementArray($array, $element, $key);
287 if (is_null($element_array)) {
291 return array_shift($element_array);
294 $element_array = self::fetchElementArray($array, $element);
295 if (is_null($element_array)) {
299 foreach ($element_array as $entry) {
300 if (isset($entry[$key]) && isset($entry[$type]) && ($entry[$type] == $type_value)) {