]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/ReallySimpleDiscovery.php
Merge branch '2023.03-rc' into stable
[friendica.git] / src / Module / ReallySimpleDiscovery.php
index 4c14d3c8373aadf28dcd7654b19574b709185124..6d608063e73072284e4a5eaf52a4c9e840b2d014 100644 (file)
@@ -1,9 +1,30 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @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;
 
 use Friendica\BaseModule;
-use Friendica\Core\Renderer;
+use Friendica\Core\System;
+use Friendica\DI;
+use Friendica\Util\XML;
 
 /**
  * Prints the rsd.xml
@@ -11,11 +32,41 @@ use Friendica\Core\Renderer;
  */
 class ReallySimpleDiscovery extends BaseModule
 {
-       public static function rawContent()
+       protected function rawContent(array $request = [])
        {
-               header ('Content-Type: text/xml');
-               $tpl = Renderer::getMarkupTemplate('rsd.tpl');
-               echo Renderer::replaceMacros($tpl);
-               exit();
+               $content = XML::fromArray([
+                       'rsd' => [
+                               '@attributes' => [
+                                       'version' => '1.0',
+                                       'xmlns'   => 'http://archipelago.phrasewise.com/rsd',
+                               ],
+                               'service'     => [
+                                       'engineName' => 'Friendica',
+                                       'engineLink' => 'http://friendica.com',
+                                       'apis'       => [
+                                               'api' => [
+                                                       '@attributes' => [
+                                                               'name'      => 'Twitter',
+                                                               'preferred' => 'true',
+                                                               'apiLink'   => DI::baseUrl(),
+                                                               'blogID'    => '',
+                                                       ],
+                                                       'settings'    => [
+                                                               'docs'    => [
+                                                                       'http://status.net/wiki/TwitterCompatibleAPI',
+                                                               ],
+                                                               'setting' => [
+                                                                       '@attributes' => [
+                                                                               'name' => 'OAuth',
+                                                                       ],
+                                                                       'false',
+                                                               ],
+                                                       ],
+                                               ]
+                                       ],
+                               ],
+                       ],
+               ]);
+               System::httpExit($content, Response::TYPE_XML);
        }
 }