2019-05-04 19:37:32 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2023-01-01 14:36:24 +00:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-04 19:37:32 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2022-04-10 08:31:55 +00:00
|
|
|
use Friendica\Core\System;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2019-05-05 16:15:39 +00:00
|
|
|
use Friendica\Util\XML;
|
2019-05-04 19:37:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints the rsd.xml
|
|
|
|
* @see http://danielberlinger.github.io/rsd/
|
|
|
|
*/
|
|
|
|
class ReallySimpleDiscovery extends BaseModule
|
|
|
|
{
|
2021-11-20 14:38:03 +00:00
|
|
|
protected function rawContent(array $request = [])
|
2019-05-04 19:37:32 +00:00
|
|
|
{
|
2022-04-10 08:31:55 +00:00
|
|
|
$content = XML::fromArray([
|
2019-05-05 16:15:39 +00:00
|
|
|
'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',
|
2023-02-18 19:57:30 +00:00
|
|
|
'apiLink' => DI::baseUrl(),
|
2019-05-05 16:15:39 +00:00
|
|
|
'blogID' => '',
|
|
|
|
],
|
|
|
|
'settings' => [
|
|
|
|
'docs' => [
|
|
|
|
'http://status.net/wiki/TwitterCompatibleAPI',
|
|
|
|
],
|
|
|
|
'setting' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'name' => 'OAuth',
|
|
|
|
],
|
|
|
|
'false',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2022-12-31 16:59:19 +00:00
|
|
|
]);
|
2022-04-10 08:31:55 +00:00
|
|
|
System::httpExit($content, Response::TYPE_XML);
|
2019-05-04 19:37:32 +00:00
|
|
|
}
|
|
|
|
}
|