friendica/src/Module/NodeInfo210.php

85 lines
3.0 KiB
PHP
Raw Permalink Normal View History

2020-07-13 11:45:45 +02:00
<?php
/**
* @copyright Copyright (C) 2010-2024, the Friendica project
2020-07-13 11:45:45 +02: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/>.
*
*/
namespace Friendica\Module;
2021-11-21 21:52:36 +01:00
use Friendica\App;
2020-07-13 11:45:45 +02:00
use Friendica\BaseModule;
use Friendica\Capabilities\ICanCreateResponses;
2021-11-21 21:52:36 +01:00
use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\L10n;
2020-07-13 11:45:45 +02:00
use Friendica\Model\Nodeinfo;
2021-11-21 21:52:36 +01:00
use Friendica\Util\Profiler;
use Psr\Log\LoggerInterface;
2020-07-13 11:45:45 +02:00
/**
* Version 1.0 of Nodeinfo 2, a sStandardized way of exposing metadata about a server running one of the distributed social networks.
* @see https://github.com/jhass/nodeinfo/blob/master/PROTOCOL.md
*/
class NodeInfo210 extends BaseModule
{
2021-11-21 21:52:36 +01:00
/** @var IManageConfigValues */
protected $config;
public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IManageConfigValues $config, array $server, array $parameters = [])
2020-07-13 11:45:45 +02:00
{
2021-11-21 21:52:36 +01:00
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
$this->config = $config;
}
2020-07-13 11:45:45 +02:00
2021-11-21 21:52:36 +01:00
protected function rawContent(array $request = [])
{
2020-07-13 11:45:45 +02:00
$nodeinfo = [
2021-11-21 21:52:36 +01:00
'version' => '1.0',
'server' => [
'name' => $this->config->get('config', 'sitename'),
2020-07-13 11:45:45 +02:00
'software' => 'friendica',
'version' => App::VERSION . '-' . DB_UPDATE_VERSION,
2020-07-13 11:45:45 +02:00
],
2021-11-21 21:52:36 +01:00
'organization' => Nodeinfo::getOrganization($this->config),
2020-07-13 11:45:45 +02:00
'protocols' => ['dfrn', 'activitypub'],
'services' => Nodeinfo::getServices(),
'openRegistrations' => Register::getPolicy() !== Register::CLOSED,
'usage' => Nodeinfo::getUsage(true),
2020-07-13 11:45:45 +02:00
];
2021-11-21 21:52:36 +01:00
if (!empty($this->config->get('system', 'diaspora_enabled'))) {
2020-07-13 11:45:45 +02:00
$nodeinfo['protocols'][] = 'diaspora';
}
2021-11-21 21:52:36 +01:00
if (empty($this->config->get('system', 'ostatus_disabled'))) {
2020-07-13 11:45:45 +02:00
$nodeinfo['protocols'][] = 'ostatus';
}
$nodeinfo['services']['inbound'][] = 'atom1.0';
$nodeinfo['services']['inbound'][] = 'rss2.0';
$nodeinfo['services']['outbound'][] = 'atom1.0';
2021-11-21 21:52:36 +01:00
if (function_exists('imap_open') && !$this->config->get('system', 'imap_disabled')) {
2020-07-13 11:45:45 +02:00
$nodeinfo['services']['inbound'][] = 'imap';
}
$this->response->setType(ICanCreateResponses::TYPE_JSON, 'application/json; charset=utf-8');
2021-11-21 22:07:23 +01:00
$this->response->addContent(json_encode($nodeinfo, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
2020-07-13 11:45:45 +02:00
}
}