]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/BaseApi.php
Merge pull request #9509 from MrPetovan/task/5616-clear-notifications-display
[friendica.git] / src / Module / BaseApi.php
index 81814bb0d497cb5e6870728d433a43a7aca83dd4..75791e0eaede651156833081163ad606495aa6db 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module;
 
@@ -23,13 +42,13 @@ class BaseApi extends BaseModule
        {
                $arguments = DI::args();
 
-               if (substr($arguments->getQueryString(), -4) === '.xml') {
+               if (substr($arguments->getCommand(), -4) === '.xml') {
                        self::$format = 'xml';
                }
-               if (substr($arguments->getQueryString(), -4) === '.rss') {
+               if (substr($arguments->getCommand(), -4) === '.rss') {
                        self::$format = 'rss';
                }
-               if (substr($arguments->getQueryString(), -4) === '.atom') {
+               if (substr($arguments->getCommand(), -4) === '.atom') {
                        self::$format = 'atom';
                }
        }
@@ -87,20 +106,53 @@ class BaseApi extends BaseModule
                return api_get_user(DI::app(), $contact_id);
        }
 
-       protected static function format($root_element, $data)
+       /**
+        * Formats the data according to the data type
+        *
+        * @param string $root_element
+        * @param array $data An array with a single element containing the returned result
+        * @return false|string
+        */
+       protected static function format(string $root_element, array $data)
        {
+               $return = api_format_data($root_element, self::$format, $data);
+
                switch (self::$format) {
-                       case "atom":
-                       case "rss":
                        case "xml":
-                               $ret = api_create_xml($data, $root_element);
+                               header("Content-Type: text/xml");
                                break;
                        case "json":
-                       default:
-                               $ret = $data;
+                               header("Content-Type: application/json");
+                               if (!empty($return)) {
+                                       $json = json_encode(end($return));
+                                       if (!empty($_GET['callback'])) {
+                                               $json = $_GET['callback'] . "(" . $json . ")";
+                                       }
+                                       $return = $json;
+                               }
+                               break;
+                       case "rss":
+                               header("Content-Type: application/rss+xml");
+                               $return  = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . $return;
+                               break;
+                       case "atom":
+                               header("Content-Type: application/atom+xml");
+                               $return = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . $return;
                                break;
                }
+               
+               return $return;
+       }
 
-               return $ret;
+       /**
+        * Creates the XML from a JSON style array
+        *
+        * @param $data
+        * @param $root_element
+        * @return string
+        */
+       protected static function createXml($data, $root_element)
+       {
+               return api_create_xml($data, $root_element);
        }
 }