3 * @copyright Copyright (C) 2010-2022, 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::baseUrl() . '/static/security-v1.jsonld';
49 case 'https://w3id.org/identity/v1':
50 $url = DI::baseUrl() . '/static/identity-v1.jsonld';
52 case 'https://www.w3.org/ns/activitystreams':
53 $url = DI::baseUrl() . '/static/activitystreams.jsonld';
55 case 'https://funkwhale.audio/ns':
56 $url = DI::baseUrl() . '/static/funkwhale.audio.jsonld';
59 switch (parse_url($url, PHP_URL_PATH)) {
60 case '/schemas/litepub-0.1.jsonld';
61 $url = DI::baseUrl() . '/static/litepub-0.1.jsonld';
63 case '/apschema/v1.2':
64 case '/apschema/v1.9':
65 case '/apschema/v1.10':
66 $url = DI::baseUrl() . '/static/apschema.jsonld';
69 Logger::info('Got url', ['url' =>$url]);
76 $x = debug_backtrace();
79 if ($n['function'] === __FUNCTION__) {
86 Logger::error('jsonld bomb detected at: ' . $url);
90 $result = DI::cache()->get('documentLoader:' . $url);
91 if (!is_null($result)) {
95 $data = jsonld_default_document_loader($url);
96 DI::cache()->set('documentLoader:' . $url, $data, Duration::DAY);
101 * Normalises a given JSON array
105 * @return mixed|bool normalized JSON string
108 public static function normalize($json)
110 jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
112 $jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
115 $normalized = jsonld_normalize($jsonobj, array('algorithm' => 'URDNA2015', 'format' => 'application/nquads'));
117 catch (Exception $e) {
120 $currentException = $e;
122 $messages[] = $currentException->getMessage();
123 } while($currentException = $currentException->getPrevious());
125 Logger::warning('JsonLD normalize error');
126 Logger::notice('JsonLD normalize error', ['messages' => $messages]);
127 Logger::info('JsonLD normalize error', ['trace' => $e->getTraceAsString()]);
128 Logger::debug('JsonLD normalize error', ['jsonobj' => $jsonobj]);
135 * Compacts a given JSON array
138 * @param bool $logfailed
140 * @return array Compacted JSON array
143 public static function compact($json, bool $logfailed = true)
145 jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
147 $context = (object)['as' => 'https://www.w3.org/ns/activitystreams#',
148 'w3id' => 'https://w3id.org/security#',
149 'ldp' => (object)['@id' => 'http://www.w3.org/ns/ldp#', '@type' => '@id'],
150 'vcard' => (object)['@id' => 'http://www.w3.org/2006/vcard/ns#', '@type' => '@id'],
151 'dfrn' => (object)['@id' => 'http://purl.org/macgirvin/dfrn/1.0/', '@type' => '@id'],
152 'diaspora' => (object)['@id' => 'https://diasporafoundation.org/ns/', '@type' => '@id'],
153 'ostatus' => (object)['@id' => 'http://ostatus.org#', '@type' => '@id'],
154 'dc' => (object)['@id' => 'http://purl.org/dc/terms/', '@type' => '@id'],
155 'toot' => (object)['@id' => 'http://joinmastodon.org/ns#', '@type' => '@id'],
156 'litepub' => (object)['@id' => 'http://litepub.social/ns#', '@type' => '@id'],
157 'sc' => (object)['@id' => 'http://schema.org#', '@type' => '@id'],
158 'pt' => (object)['@id' => 'https://joinpeertube.org/ns#', '@type' => '@id'],
159 'mobilizon' => (object)['@id' => 'https://joinmobilizon.org/ns#', '@type' => '@id'],
164 // Preparation for adding possibly missing content to the context
165 if (!empty($json['@context']) && is_string($json['@context'])) {
166 $json['@context'] = [$json['@context']];
169 if (!empty($json['@context']) && is_array($json['@context'])) {
170 // Remove empty entries from the context (a problem with WriteFreely)
171 $json['@context'] = array_filter($json['@context']);
173 // Workaround for servers with missing context
174 // See issue https://github.com/nextcloud/social/issues/330
175 if (!in_array('https://w3id.org/security/v1', $json['@context'])) {
176 $json['@context'][] = 'https://w3id.org/security/v1';
180 // Bookwyrm transmits "id" fields with "null", which isn't allowed.
181 array_walk_recursive($json, function (&$value, $key) {
182 if ($key == 'id' && is_null($value)) {
187 $jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
190 $compacted = jsonld_compact($jsonobj, $context);
192 catch (Exception $e) {
194 Logger::notice('compacting error', ['msg' => $e->getMessage(), 'previous' => $e->getPrevious(), 'line' => $e->getLine()]);
195 if ($logfailed && DI::config()->get('debug', 'ap_log_failure')) {
196 $tempfile = tempnam(System::getTempPath(), 'failed-jsonld');
197 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));
198 Logger::notice('Failed message stored', ['file' => $tempfile]);
202 $json = json_decode(json_encode($compacted, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), true);
208 * Fetches an element array from a JSON array
214 * @return array fetched element
216 public static function fetchElementArray($array, $element, $key = null, $type = null, $type_value = null)
218 if (!isset($array[$element])) {
222 // If it isn't an array yet, make it to one
223 if (!is_array($array[$element]) || !is_int(key($array[$element]))) {
224 $array[$element] = [$array[$element]];
229 foreach ($array[$element] as $entry) {
230 if (!is_array($entry) || is_null($key)) {
232 } elseif (isset($entry[$key])) {
233 $item = $entry[$key];
236 if (isset($item) && (is_null($type) || is_null($type_value) || isset($item[$type]) && $item[$type] == $type_value)) {
245 * Fetches an element from a JSON array
253 * @return string fetched element
255 public static function fetchElement($array, $element, $key = '@id', $type = null, $type_value = null)
261 if (!isset($array[$element])) {
265 if (!is_array($array[$element])) {
266 return $array[$element];
269 if (is_null($type) || is_null($type_value)) {
270 $element_array = self::fetchElementArray($array, $element, $key);
271 if (is_null($element_array)) {
275 return array_shift($element_array);
278 $element_array = self::fetchElementArray($array, $element);
279 if (is_null($element_array)) {
283 foreach ($element_array as $entry) {
284 if (isset($entry[$key]) && isset($entry[$type]) && ($entry[$type] == $type_value)) {