3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Module;
25 use Friendica\BaseModule;
26 use Friendica\Capabilities\ICanCreateResponses;
27 use Friendica\Core\Addon;
28 use Friendica\Core\Config\Capability\IManageConfigValues;
29 use Friendica\Core\L10n;
30 use Friendica\Model\Nodeinfo;
31 use Friendica\Util\Profiler;
32 use Psr\Log\LoggerInterface;
35 * Version 1.0 of Nodeinfo 2, a sStandardized way of exposing metadata about a server running one of the distributed social networks.
36 * @see https://github.com/jhass/nodeinfo/blob/master/PROTOCOL.md
38 class NodeInfo210 extends BaseModule
40 /** @var IManageConfigValues */
43 public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IManageConfigValues $config, array $server, array $parameters = [])
45 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
47 $this->config = $config;
50 protected function rawContent(array $request = [])
55 'baseUrl' => $this->baseUrl->get(),
56 'name' => $this->config->get('config', 'sitename'),
57 'software' => 'friendica',
58 'version' => App::VERSION . '-' . DB_UPDATE_VERSION,
60 'organization' => Nodeinfo::getOrganization($this->config),
61 'protocols' => ['dfrn', 'activitypub'],
62 'services' => Nodeinfo::getServices(),
63 'openRegistrations' => intval($this->config->get('config', 'register_policy')) !== Register::CLOSED,
64 'usage' => Nodeinfo::getUsage(true),
67 if (!empty($this->config->get('system', 'diaspora_enabled'))) {
68 $nodeinfo['protocols'][] = 'diaspora';
71 if (empty($this->config->get('system', 'ostatus_disabled'))) {
72 $nodeinfo['protocols'][] = 'ostatus';
75 if (Addon::isEnabled('twitter')) {
76 $nodeinfo['services']['inbound'][] = 'twitter';
79 $nodeinfo['services']['inbound'][] = 'atom1.0';
80 $nodeinfo['services']['inbound'][] = 'rss2.0';
81 $nodeinfo['services']['outbound'][] = 'atom1.0';
83 if (function_exists('imap_open') && !$this->config->get('system', 'imap_disabled')) {
84 $nodeinfo['services']['inbound'][] = 'imap';
87 $this->response->setType(ICanCreateResponses::TYPE_JSON, 'application/json; charset=utf-8');
88 $this->response->addContent(json_encode($nodeinfo, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));