2019-05-04 08:05:21 +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 08:05:21 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
2022-10-17 10:37:48 +00:00
|
|
|
use Friendica\App;
|
2019-05-04 08:05:21 +00:00
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Addon;
|
2023-07-09 01:16:29 +00:00
|
|
|
use Friendica\Core\Config\Capability\IManageConfigValues;
|
2019-05-04 08:05:21 +00:00
|
|
|
use Friendica\Core\Hook;
|
2023-07-23 01:21:41 +00:00
|
|
|
use Friendica\Core\KeyValueStorage\Capability\IManageKeyValuePairs;
|
2023-07-09 01:16:29 +00:00
|
|
|
use Friendica\Core\L10n;
|
2019-05-04 08:05:21 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2023-07-09 01:18:27 +00:00
|
|
|
use Friendica\Core\Session\Capability\IHandleUserSessions;
|
2020-08-22 14:48:09 +00:00
|
|
|
use Friendica\Core\System;
|
2020-10-04 20:46:42 +00:00
|
|
|
use Friendica\Database\PostUpdate;
|
2019-05-04 08:05:21 +00:00
|
|
|
use Friendica\Model\User;
|
2021-07-20 17:04:25 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
2020-08-22 14:48:09 +00:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2023-07-09 01:16:29 +00:00
|
|
|
use Friendica\Util\Profiler;
|
|
|
|
use Psr\Log\LoggerInterface;
|
2019-05-04 08:05:21 +00:00
|
|
|
|
2019-05-04 08:18:41 +00:00
|
|
|
/**
|
|
|
|
* Prints information about the current node
|
2023-07-09 01:16:29 +00:00
|
|
|
* Either in human-readable form or in JSON
|
2019-05-04 08:18:41 +00:00
|
|
|
*/
|
2019-05-04 08:05:21 +00:00
|
|
|
class Friendica extends BaseModule
|
|
|
|
{
|
2023-07-09 01:16:29 +00:00
|
|
|
/** @var IManageConfigValues */
|
|
|
|
private $config;
|
|
|
|
/** @var IManageKeyValuePairs */
|
|
|
|
private $keyValue;
|
2023-07-09 01:18:27 +00:00
|
|
|
/** @var IHandleUserSessions */
|
|
|
|
private $session;
|
2023-07-09 01:16:29 +00:00
|
|
|
|
2023-07-09 01:18:27 +00:00
|
|
|
public function __construct(IHandleUserSessions $session, IManageKeyValuePairs $keyValue, IManageConfigValues $config, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
|
2019-05-04 08:05:21 +00:00
|
|
|
{
|
2023-07-09 01:16:29 +00:00
|
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
|
|
|
|
$this->config = $config;
|
|
|
|
$this->keyValue = $keyValue;
|
2023-07-09 01:18:27 +00:00
|
|
|
$this->session = $session;
|
2023-07-09 01:16:29 +00:00
|
|
|
}
|
2019-05-04 08:05:21 +00:00
|
|
|
|
2023-07-09 01:16:29 +00:00
|
|
|
protected function content(array $request = []): string
|
|
|
|
{
|
2019-05-04 08:05:21 +00:00
|
|
|
$visibleAddonList = Addon::getVisibleList();
|
|
|
|
if (!empty($visibleAddonList)) {
|
|
|
|
|
|
|
|
$sorted = $visibleAddonList;
|
|
|
|
sort($sorted);
|
|
|
|
|
|
|
|
$sortedAddonList = '';
|
|
|
|
|
|
|
|
foreach ($sorted as $addon) {
|
|
|
|
if (strlen($addon)) {
|
|
|
|
if (strlen($sortedAddonList)) {
|
|
|
|
$sortedAddonList .= ', ';
|
|
|
|
}
|
|
|
|
$sortedAddonList .= $addon;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$addon = [
|
2023-07-09 01:16:29 +00:00
|
|
|
'title' => $this->t('Installed addons/apps:'),
|
2019-05-04 08:05:21 +00:00
|
|
|
'list' => $sortedAddonList,
|
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$addon = [
|
2023-07-09 01:16:29 +00:00
|
|
|
'title' => $this->t('No installed addons/apps'),
|
2019-05-04 08:05:21 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2023-07-09 01:16:29 +00:00
|
|
|
$tos = ($this->config->get('system', 'tosdisplay')) ?
|
|
|
|
$this->t('Read about the <a href="%1$s/tos">Terms of Service</a> of this node.', $this->baseUrl) :
|
2019-05-04 08:05:21 +00:00
|
|
|
'';
|
|
|
|
|
2023-07-09 01:16:29 +00:00
|
|
|
$blockList = $this->config->get('system', 'blocklist') ?? [];
|
2019-05-04 08:05:21 +00:00
|
|
|
|
2023-07-26 07:44:39 +00:00
|
|
|
if (!empty($blockList) && ($this->config->get('blocklist', 'public') || $this->session->isAuthenticated())) {
|
2019-05-04 08:05:21 +00:00
|
|
|
$blocked = [
|
2023-07-09 01:16:29 +00:00
|
|
|
'title' => $this->t('On this server the following remote servers are blocked.'),
|
2022-07-27 15:54:50 +00:00
|
|
|
'header' => [
|
2023-07-09 01:16:29 +00:00
|
|
|
$this->t('Blocked domain'),
|
|
|
|
$this->t('Reason for the block'),
|
2019-05-04 08:05:21 +00:00
|
|
|
],
|
2023-07-09 01:16:29 +00:00
|
|
|
'download' => $this->t('Download this list in CSV format'),
|
2022-07-27 15:54:50 +00:00
|
|
|
'list' => $blockList,
|
2019-05-04 08:05:21 +00:00
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$blocked = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$hooked = '';
|
|
|
|
|
|
|
|
Hook::callAll('about_hook', $hooked);
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('friendica.tpl');
|
|
|
|
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
2023-07-09 01:16:29 +00:00
|
|
|
'about' => $this->t('This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.',
|
2022-10-17 10:37:48 +00:00
|
|
|
'<strong>' . App::VERSION . '</strong>',
|
2023-07-09 01:16:29 +00:00
|
|
|
$this->baseUrl,
|
|
|
|
'<strong>' . $this->config->get('system', 'build') . '/' . DB_UPDATE_VERSION . '</strong>',
|
|
|
|
'<strong>' . $this->keyValue->get('post_update_version') . '/' . PostUpdate::VERSION . '</strong>'),
|
|
|
|
'friendica' => $this->t('Please visit <a href="https://friendi.ca">Friendi.ca</a> to learn more about the Friendica project.'),
|
|
|
|
'bugs' => $this->t('Bug reports and issues: please visit') . ' ' . '<a href="https://github.com/friendica/friendica/issues?state=open">' . $this->t('the bugtracker at github') . '</a>',
|
|
|
|
'info' => $this->t('Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'),
|
2019-05-04 08:05:21 +00:00
|
|
|
|
|
|
|
'visible_addons' => $addon,
|
|
|
|
'tos' => $tos,
|
|
|
|
'block_list' => $blocked,
|
|
|
|
'hooked' => $hooked,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2021-11-20 14:38:03 +00:00
|
|
|
protected function rawContent(array $request = [])
|
2019-05-04 08:05:21 +00:00
|
|
|
{
|
2023-07-09 01:16:29 +00:00
|
|
|
if (empty($this->parameters['format']) || $this->parameters['format'] !== 'json') {
|
2022-03-28 13:12:45 +00:00
|
|
|
if (!ActivityPub::isRequest()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-20 17:04:25 +00:00
|
|
|
try {
|
|
|
|
$data = ActivityPub\Transmitter::getProfile(0);
|
2020-08-22 14:48:09 +00:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
header('Cache-Control: max-age=23200, stale-while-revalidate=23200');
|
2023-09-21 16:16:17 +00:00
|
|
|
$this->jsonExit($data, 'application/activity+json');
|
2021-07-20 17:04:25 +00:00
|
|
|
} catch (HTTPException\NotFoundException $e) {
|
2023-09-21 16:27:15 +00:00
|
|
|
$this->jsonError(404, ['error' => 'Record not found']);
|
2020-08-22 14:48:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-04 08:05:21 +00:00
|
|
|
$register_policies = [
|
|
|
|
Register::CLOSED => 'REGISTER_CLOSED',
|
|
|
|
Register::APPROVE => 'REGISTER_APPROVE',
|
|
|
|
Register::OPEN => 'REGISTER_OPEN'
|
|
|
|
];
|
|
|
|
|
2023-07-09 01:18:27 +00:00
|
|
|
$register_policy_int = $this->config->get('config', 'register_policy');
|
2023-07-09 01:16:29 +00:00
|
|
|
if ($register_policy_int !== Register::CLOSED && $this->config->get('config', 'invitation_only')) {
|
2019-05-04 08:05:21 +00:00
|
|
|
$register_policy = 'REGISTER_INVITATION';
|
|
|
|
} else {
|
|
|
|
$register_policy = $register_policies[$register_policy_int];
|
|
|
|
}
|
|
|
|
|
2020-07-29 05:12:16 +00:00
|
|
|
$admin = [];
|
|
|
|
$administrator = User::getFirstAdmin(['username', 'nickname']);
|
|
|
|
if (!empty($administrator)) {
|
|
|
|
$admin = [
|
|
|
|
'name' => $administrator['username'],
|
2023-07-09 01:16:29 +00:00
|
|
|
'profile' => $this->baseUrl . '/profile/' . $administrator['nickname'],
|
2020-07-29 05:12:16 +00:00
|
|
|
];
|
2019-05-04 08:05:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$visible_addons = Addon::getVisibleList();
|
|
|
|
|
2023-07-09 01:16:29 +00:00
|
|
|
$this->config->reload();
|
2019-05-04 08:05:21 +00:00
|
|
|
$locked_features = [];
|
2023-07-09 01:16:29 +00:00
|
|
|
$featureLocks = $this->config->get('config', 'feature_lock');
|
2019-05-04 08:05:21 +00:00
|
|
|
if (isset($featureLocks)) {
|
|
|
|
foreach ($featureLocks as $feature => $lock) {
|
|
|
|
if ($feature === 'config_loaded') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$locked_features[$feature] = intval($lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = [
|
2022-10-17 10:37:48 +00:00
|
|
|
'version' => App::VERSION,
|
2023-07-09 01:16:29 +00:00
|
|
|
'url' => (string)$this->baseUrl,
|
2019-05-04 08:05:21 +00:00
|
|
|
'addons' => $visible_addons,
|
|
|
|
'locked_features' => $locked_features,
|
2023-07-09 01:16:29 +00:00
|
|
|
'explicit_content' => intval($this->config->get('system', 'explicit_content', 0)),
|
|
|
|
'language' => $this->config->get('system', 'language'),
|
2019-05-04 08:05:21 +00:00
|
|
|
'register_policy' => $register_policy,
|
|
|
|
'admin' => $admin,
|
2023-07-09 01:16:29 +00:00
|
|
|
'site_name' => $this->config->get('config', 'sitename'),
|
2022-10-17 10:37:48 +00:00
|
|
|
'platform' => strtolower(App::PLATFORM),
|
2023-07-09 01:16:29 +00:00
|
|
|
'info' => $this->config->get('config', 'info'),
|
|
|
|
'no_scrape_url' => $this->baseUrl . '/noscrape',
|
2019-05-04 08:05:21 +00:00
|
|
|
];
|
|
|
|
|
2023-09-21 16:16:17 +00:00
|
|
|
$this->jsonExit($data);
|
2019-05-04 08:05:21 +00:00
|
|
|
}
|
|
|
|
}
|