]> git.mxchange.org Git - friendica.git/blob - src/Util/JsonLD.php
Making Friendica compatible to Nextcloud Social
[friendica.git] / src / Util / JsonLD.php
1 <?php
2 /**
3  * @file src/Util/JsonLD.php
4  */
5 namespace Friendica\Util;
6
7 use Friendica\Core\Cache;
8 use Friendica\Core\Logger;
9 use Exception;
10
11 /**
12  * @brief This class contain methods to work with JsonLD data
13  */
14 class JsonLD
15 {
16         /**
17          * @brief Loader for LD-JSON validation
18          *
19          * @param $url
20          *
21          * @return the loaded data
22          */
23         public static function documentLoader($url)
24         {
25                 $recursion = 0;
26
27                 $x = debug_backtrace();
28                 if ($x) {
29                         foreach ($x as $n) {
30                                 if ($n['function'] === __FUNCTION__)  {
31                                         $recursion ++;
32                                 }
33                         }
34                 }
35
36                 if ($recursion > 5) {
37                         Logger::log('jsonld bomb detected at: ' . $url);
38                         exit();
39                 }
40
41                 $result = Cache::get('documentLoader:' . $url);
42                 if (!is_null($result)) {
43                         return $result;
44                 }
45
46                 $data = jsonld_default_document_loader($url);
47                 Cache::set('documentLoader:' . $url, $data, Cache::DAY);
48                 return $data;
49         }
50
51         /**
52          * @brief Normalises a given JSON array
53          *
54          * @param array $json
55          *
56          * @return normalized JSON string
57          */
58         public static function normalize($json)
59         {
60                 jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
61
62                 $jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
63
64                 try {
65                         $normalized = jsonld_normalize($jsonobj, array('algorithm' => 'URDNA2015', 'format' => 'application/nquads'));
66                 }
67                 catch (Exception $e) {
68                         $normalized = false;
69                         Logger::log('normalise error:' . print_r($e, true), Logger::DEBUG);
70                 }
71
72                 return $normalized;
73         }
74
75         /**
76          * @brief Compacts a given JSON array
77          *
78          * @param array $json
79          *
80          * @return comacted JSON array
81          */
82         public static function compact($json)
83         {
84                 jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
85
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']];
95
96                 // Workaround for Nextcloud Social
97                 // See issue https://github.com/nextcloud/social/issues/330
98                 $json['@context'][] = 'https://w3id.org/security/v1';
99
100                 // Trying to avoid memory problems with large content fields
101                 if (!empty($json['object']['source']['content'])) {
102                         $content = $json['object']['source']['content'];
103                         $json['object']['source']['content'] = '';
104                 }
105
106                 $jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
107
108                 try {
109                         $compacted = jsonld_compact($jsonobj, $context);
110                 }
111                 catch (Exception $e) {
112                         $compacted = false;
113                         Logger::log('compacting error:' . print_r($e, true), Logger::DEBUG);
114                 }
115
116                 $json = json_decode(json_encode($compacted, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), true);
117
118                 if (isset($json['as:object']['as:source']['as:content']) && !empty($content)) {
119                         $json['as:object']['as:source']['as:content'] = $content;
120                 }
121
122                 return $json;
123         }
124
125         /**
126          * @brief Fetches an element array from a JSON array
127          *
128          * @param $array
129          * @param $element
130          * @param $key
131          *
132          * @return fetched element array
133          */
134         public static function fetchElementArray($array, $element, $key = '@id')
135         {
136                 if (empty($array)) {
137                         return null;
138                 }
139
140                 if (!isset($array[$element])) {
141                         return null;
142                 }
143
144                 // If it isn't an array yet, make it to one
145                 if (!is_int(key($array[$element]))) {
146                         $array[$element] = [$array[$element]];
147                 }
148
149                 $elements = [];
150
151                 foreach ($array[$element] as $entry) {
152                         if (!is_array($entry)) {
153                                 $elements[] = $entry;
154                         } elseif (!empty($entry[$key])) {
155                                 $elements[] = $entry[$key];
156                         } elseif (!empty($entry) || !is_array($entry)) {
157                                 $elements[] = $entry;
158                         }
159                 }
160
161                 return $elements;
162         }
163
164         /**
165          * @brief Fetches an element from a JSON array
166          *
167          * @param $array
168          * @param $element
169          * @param $key
170          * @param $type
171          * @param $type_value
172          *
173          * @return fetched element
174          */
175         public static function fetchElement($array, $element, $key = '@id', $type = null, $type_value = null)
176         {
177                 if (empty($array)) {
178                         return null;
179                 }
180
181                 if (!isset($array[$element])) {
182                         return null;
183                 }
184
185                 if (!is_array($array[$element])) {
186                         return $array[$element];
187                 }
188
189                 if (is_null($type) || is_null($type_value)) {
190                         $element_array = self::fetchElementArray($array, $element, $key);
191                         if (is_null($element_array)) {
192                                 return null;
193                         }
194
195                         return array_shift($element_array);
196                 }
197
198                 $element_array = self::fetchElementArray($array, $element);
199                 if (is_null($element_array)) {
200                         return null;
201                 }
202
203                 foreach ($element_array as $entry) {
204                         if (isset($entry[$key]) && isset($entry[$type]) && ($entry[$type] == $type_value)) {
205                                 return $entry[$key];
206                         }
207                 }
208
209                 return null;
210         }
211 }