]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/JsonLD.php
goaway with argument
[friendica.git] / src / Util / JsonLD.php
index 600896715a5d2b2e4201d0bf37b6938b265e786a..ddf8d93533ea121508dae2bfdace65f854c4edf5 100644 (file)
@@ -5,13 +5,20 @@
 namespace Friendica\Util;
 
 use Friendica\Core\Cache;
-use digitalbazaar\jsonld as DBJsonLD;
+use Exception;
 
 /**
  * @brief This class contain methods to work with JsonLD data
  */
 class JsonLD
 {
+       /**
+        * @brief Loader for LD-JSON validation
+        *
+        * @param $url
+        *
+        * @return the loaded data
+        */
        public static function documentLoader($url)
        {
                $recursion = 0;
@@ -40,30 +47,37 @@ class JsonLD
                return $data;
        }
 
-       private static function objectify($element)
-       {
-               if (is_array($element)) {
-                       $keys = array_keys($element);
-                       if (is_int(array_pop($keys))) {
-                               return array_map('objectify', $element);
-                       } else {
-                               return (object)array_map('objectify', $element);
-                       }
-               } else {
-                       return $element;
-               }
-       }
-
+       /**
+        * @brief Normalises a given JSON array
+        *
+        * @param array $json
+        *
+        * @return normalized JSON string
+        */
        public static function normalize($json)
        {
                jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
 
-//             $jsonobj = array_map('Friendica\Util\JsonLD::objectify', $json);
                $jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
 
-               return jsonld_normalize($jsonobj, array('algorithm' => 'URDNA2015', 'format' => 'application/nquads'));
+               try {
+                       $normalized = jsonld_normalize($jsonobj, array('algorithm' => 'URDNA2015', 'format' => 'application/nquads'));
+               }
+               catch (Exception $e) {
+                       $normalized = false;
+                       logger('normalise error:' . print_r($e, true), LOGGER_DEBUG);
+               }
+
+               return $normalized;
        }
 
+       /**
+        * @brief Compacts a given JSON array
+        *
+        * @param array $json
+        *
+        * @return comacted JSON array
+        */
        public static function compact($json)
        {
                jsonld_set_document_loader('Friendica\Util\JsonLD::documentLoader');
@@ -81,6 +95,17 @@ class JsonLD
                return json_decode(json_encode($compacted, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), true);
        }
 
+       /**
+        * @brief Fetches an element from a JSON array
+        *
+        * @param $array
+        * @param $element
+        * @param $key
+        * @param $type
+        * @param $type_value
+        *
+        * @return fetched element
+        */
        public static function fetchElement($array, $element, $key, $type = null, $type_value = null)
        {
                if (empty($array)) {