3 * @copyright Copyright (C) 2010-2021, 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;
24 use Friendica\BaseModule;
25 use Friendica\Core\Addon;
26 use Friendica\Core\System;
28 use Friendica\Model\Nodeinfo;
31 * Version 1.0 of Nodeinfo, a standardized way of exposing metadata about a server running one of the distributed social networks.
32 * @see https://github.com/jhass/nodeinfo/blob/master/PROTOCOL.md
34 class NodeInfo110 extends BaseModule
36 public static function rawContent(array $parameters = [])
38 $config = DI::config();
43 'name' => 'friendica',
44 'version' => FRIENDICA_VERSION . '-' . DB_UPDATE_VERSION,
56 'openRegistrations' => intval($config->get('config', 'register_policy')) !== Register::CLOSED,
58 'nodeName' => $config->get('config', 'sitename'),
62 if (!empty($config->get('system', 'diaspora_enabled'))) {
63 $nodeinfo['protocols']['inbound'][] = 'diaspora';
64 $nodeinfo['protocols']['outbound'][] = 'diaspora';
67 if (empty($config->get('system', 'ostatus_disabled'))) {
68 $nodeinfo['protocols']['inbound'][] = 'gnusocial';
69 $nodeinfo['protocols']['outbound'][] = 'gnusocial';
72 $nodeinfo['usage'] = Nodeinfo::getUsage();
74 $nodeinfo['services'] = Nodeinfo::getServices();
76 $nodeinfo['metadata']['protocols'] = $nodeinfo['protocols'];
77 $nodeinfo['metadata']['protocols']['outbound'][] = 'atom1.0';
78 $nodeinfo['metadata']['protocols']['inbound'][] = 'atom1.0';
79 $nodeinfo['metadata']['protocols']['inbound'][] = 'rss2.0';
81 $nodeinfo['metadata']['services'] = $nodeinfo['services'];
83 if (Addon::isEnabled('twitter')) {
84 $nodeinfo['metadata']['services']['inbound'][] = 'twitter';
87 $nodeinfo['metadata']['explicitContent'] = $config->get('system', 'explicit_content', false) == true;
89 System::jsonExit($nodeinfo, 'application/json; charset=utf-8', JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);