2011-06-13 10:52:29 +00:00
|
|
|
<?php
|
2017-11-30 01:28:30 +00:00
|
|
|
/**
|
2016-01-17 02:25:17 +00:00
|
|
|
* @file mod/admin.php
|
2017-01-09 12:12:54 +00:00
|
|
|
*
|
2016-01-17 02:25:17 +00:00
|
|
|
* @brief Friendica admin
|
|
|
|
*/
|
2018-01-14 23:59:08 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-10-17 19:30:41 +00:00
|
|
|
use Friendica\BaseModule;
|
2017-12-04 14:04:36 +00:00
|
|
|
use Friendica\Content\Feature;
|
2018-10-24 06:15:24 +00:00
|
|
|
use Friendica\Content\Pager;
|
2018-01-14 23:59:08 +00:00
|
|
|
use Friendica\Content\Text\Markdown;
|
2017-04-30 04:01:26 +00:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 17:06:27 +00:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-02-03 21:22:04 +00:00
|
|
|
use Friendica\Core\StorageManager;
|
2018-01-14 23:59:08 +00:00
|
|
|
use Friendica\Core\System;
|
2018-01-17 18:52:25 +00:00
|
|
|
use Friendica\Core\Theme;
|
2018-10-14 11:19:37 +00:00
|
|
|
use Friendica\Core\Update;
|
2017-11-05 12:15:53 +00:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-14 21:13:02 +00:00
|
|
|
use Friendica\Database\DBStructure;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-17 23:22:01 +00:00
|
|
|
use Friendica\Model\Item;
|
2018-10-14 15:57:28 +00:00
|
|
|
use Friendica\Model\Register;
|
2018-01-25 02:08:45 +00:00
|
|
|
use Friendica\Model\User;
|
2018-12-28 01:56:15 +00:00
|
|
|
use Friendica\Module;
|
2017-12-17 16:40:59 +00:00
|
|
|
use Friendica\Module\Login;
|
2018-05-19 16:52:23 +00:00
|
|
|
use Friendica\Module\Tos;
|
2019-02-08 13:38:13 +00:00
|
|
|
use Friendica\Protocol\PortableContact;
|
2018-07-31 01:24:26 +00:00
|
|
|
use Friendica\Util\Arrays;
|
2019-02-03 21:22:04 +00:00
|
|
|
use Friendica\Util\BasePath;
|
2019-04-08 19:12:10 +00:00
|
|
|
use Friendica\Util\BaseURL;
|
2018-01-27 02:38:34 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-08-25 22:31:22 +00:00
|
|
|
use Friendica\Util\Network;
|
2018-11-08 15:14:37 +00:00
|
|
|
use Friendica\Util\Strings;
|
2018-10-14 15:57:28 +00:00
|
|
|
use Friendica\Util\Temporal;
|
2019-01-22 06:30:52 +00:00
|
|
|
use Psr\Log\LogLevel;
|
2016-01-17 02:25:17 +00:00
|
|
|
|
2012-04-18 07:24:47 +00:00
|
|
|
/**
|
2016-01-17 02:25:17 +00:00
|
|
|
* @brief Process send data from the admin panels subpages
|
2015-12-26 07:49:38 +00:00
|
|
|
*
|
2018-10-14 15:32:54 +00:00
|
|
|
* This function acts as relay for processing the data send from the subpages
|
2015-12-26 07:49:38 +00:00
|
|
|
* of the admin panel. Depending on the 1st parameter of the url (argv[1])
|
|
|
|
* specialized functions are called to process the data from the subpages.
|
|
|
|
*
|
2018-10-14 15:32:54 +00:00
|
|
|
* The function itself does not return anything, but the subsequently function
|
2015-12-26 07:49:38 +00:00
|
|
|
* return the HTML for the pages of the admin panel.
|
|
|
|
*
|
2012-04-18 07:24:47 +00:00
|
|
|
* @param App $a
|
2019-01-07 06:07:42 +00:00
|
|
|
* @throws ImagickException
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2012-04-18 07:24:47 +00:00
|
|
|
*/
|
2017-11-30 01:28:30 +00:00
|
|
|
function admin_post(App $a)
|
|
|
|
{
|
2017-03-13 17:23:02 +00:00
|
|
|
if (!is_site_admin()) {
|
2011-10-18 07:18:21 +00:00
|
|
|
return;
|
2011-06-13 16:03:06 +00:00
|
|
|
}
|
2012-02-17 07:50:57 +00:00
|
|
|
|
2012-02-24 04:29:09 +00:00
|
|
|
// do not allow a page manager to access the admin panel at all.
|
2012-02-17 07:50:57 +00:00
|
|
|
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_SESSION['submanage'])) {
|
2012-02-17 07:50:57 +00:00
|
|
|
return;
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2012-02-24 04:29:09 +00:00
|
|
|
|
2018-01-05 00:42:48 +00:00
|
|
|
$return_path = 'admin';
|
2011-06-13 16:03:06 +00:00
|
|
|
|
2018-10-19 18:11:27 +00:00
|
|
|
$a->internalRedirect($return_path);
|
2013-12-01 23:11:31 +00:00
|
|
|
return; // NOTREACHED
|
2011-06-13 16:03:06 +00:00
|
|
|
}
|
2011-06-13 10:52:29 +00:00
|
|
|
|
2012-04-18 07:24:47 +00:00
|
|
|
/**
|
2016-01-17 02:25:17 +00:00
|
|
|
* @brief Generates content of the admin panel pages
|
2016-01-16 13:12:55 +00:00
|
|
|
*
|
2016-01-19 08:15:32 +00:00
|
|
|
* This function generates the content for the admin panel. It consists of the
|
|
|
|
* aside menu (same for the entire admin panel) and the code for the soecified
|
|
|
|
* subpage of the panel.
|
|
|
|
*
|
|
|
|
* The structure of the adress is: /admin/subpage/details though "details" is
|
|
|
|
* only necessary for some subpages, like themes or addons where it is the name
|
|
|
|
* of one theme resp. addon from which the details should be shown. Content for
|
|
|
|
* the subpages is generated in separate functions for each of the subpages.
|
|
|
|
*
|
|
|
|
* The returned string hold the generated HTML code of the page.
|
2016-01-16 13:12:55 +00:00
|
|
|
*
|
2012-04-18 07:24:47 +00:00
|
|
|
* @param App $a
|
|
|
|
* @return string
|
2019-01-07 06:07:42 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2012-04-18 07:24:47 +00:00
|
|
|
*/
|
2017-11-30 01:28:30 +00:00
|
|
|
function admin_content(App $a)
|
|
|
|
{
|
2017-03-13 17:23:02 +00:00
|
|
|
if (!is_site_admin()) {
|
2017-12-17 16:40:59 +00:00
|
|
|
return Login::form();
|
2011-06-13 10:52:29 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_SESSION['submanage'])) {
|
2012-04-18 07:24:47 +00:00
|
|
|
return "";
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2012-02-17 07:50:57 +00:00
|
|
|
|
2014-05-03 10:02:25 +00:00
|
|
|
// APC deactivated, since there are problems with PHP 5.5
|
|
|
|
//if (function_exists("apc_delete")) {
|
2018-11-30 14:06:22 +00:00
|
|
|
// $toDelete = new APCIterator('user', APC_ITER_VALUE);
|
|
|
|
// apc_delete($toDelete);
|
2014-05-03 10:02:25 +00:00
|
|
|
//}
|
2016-01-17 02:25:17 +00:00
|
|
|
// Header stuff
|
2018-10-31 14:44:06 +00:00
|
|
|
$a->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('admin/settings_head.tpl'), []);
|
2016-01-17 02:25:17 +00:00
|
|
|
|
|
|
|
/*
|
2011-06-13 10:52:29 +00:00
|
|
|
* Side bar links
|
|
|
|
*/
|
2018-01-15 13:05:12 +00:00
|
|
|
$aside_tools = [];
|
2016-02-17 22:47:32 +00:00
|
|
|
// array(url, name, extra css classes)
|
2015-11-17 10:34:47 +00:00
|
|
|
// not part of $aside to make the template more adjustable
|
2018-01-15 13:05:12 +00:00
|
|
|
$aside_sub = [
|
2018-10-23 20:38:28 +00:00
|
|
|
'information' => [L10n::t('Information'), [
|
|
|
|
'overview' => ['admin/', L10n::t('Overview'), 'overview'],
|
|
|
|
'federation' => ['admin/federation/' , L10n::t('Federation Statistics'), 'federation']]],
|
|
|
|
'configuration' => [L10n::t('Configuration'), [
|
|
|
|
'site' => ['admin/site/' , L10n::t('Site') , 'site'],
|
|
|
|
'users' => ['admin/users/' , L10n::t('Users') , 'users'],
|
|
|
|
'addons' => ['admin/addons/' , L10n::t('Addons') , 'addons'],
|
|
|
|
'themes' => ['admin/themes/' , L10n::t('Themes') , 'themes'],
|
|
|
|
'features' => ['admin/features/' , L10n::t('Additional features') , 'features'],
|
|
|
|
'tos' => ['admin/tos/' , L10n::t('Terms of Service') , 'tos']]],
|
|
|
|
'database' => [L10n::t('Database'), [
|
|
|
|
'dbsync' => ['admin/dbsync/' , L10n::t('DB updates') , 'dbsync'],
|
|
|
|
'deferred' => ['admin/deferred/' , L10n::t('Inspect Deferred Workers'), 'deferred'],
|
|
|
|
'workerqueue' => ['admin/workerqueue/' , L10n::t('Inspect worker Queue') , 'workerqueue']]],
|
|
|
|
'tools' => [L10n::t('Tools'), [
|
|
|
|
'contactblock' => ['admin/contactblock/', L10n::t('Contact Blocklist') , 'contactblock'],
|
|
|
|
'blocklist' => ['admin/blocklist/' , L10n::t('Server Blocklist') , 'blocklist'],
|
|
|
|
'deleteitem' => ['admin/deleteitem/' , L10n::t('Delete Item') , 'deleteitem'],]],
|
|
|
|
'logs' => [L10n::t('Logs'), [
|
|
|
|
'logsconfig' => ['admin/logs/', L10n::t('Logs'), 'logs'],
|
|
|
|
'logsview' => ['admin/viewlogs/', L10n::t('View Logs'), 'viewlogs']
|
2018-01-30 12:37:00 +00:00
|
|
|
]],
|
2018-10-23 20:38:28 +00:00
|
|
|
'diagnostics' => [L10n::t('Diagnostics'), [
|
|
|
|
'phpinfo' => ['phpinfo/', L10n::t('PHP Info'), 'phpinfo'],
|
|
|
|
'probe' => ['probe/', L10n::t('probe address'), 'probe'],
|
|
|
|
'webfinger' =>['webfinger/', L10n::t('check webfinger'), 'webfinger']
|
2018-01-30 12:37:00 +00:00
|
|
|
]]
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2013-01-27 12:57:44 +00:00
|
|
|
|
2018-01-17 19:22:38 +00:00
|
|
|
$aside_tools['addons_admin'] = [];
|
2013-01-27 12:57:44 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$t = Renderer::getMarkupTemplate('admin/aside.tpl');
|
2018-10-31 14:35:50 +00:00
|
|
|
$a->page['aside'] .= Renderer::replaceMacros($t, [
|
2016-01-17 02:25:17 +00:00
|
|
|
'$admin' => $aside_tools,
|
|
|
|
'$subpages' => $aside_sub,
|
2018-01-21 18:33:59 +00:00
|
|
|
'$admtxt' => L10n::t('Admin'),
|
|
|
|
'$plugadmtxt' => L10n::t('Addon Features'),
|
|
|
|
'$h_pending' => L10n::t('User registrations waiting for confirmation'),
|
2017-11-30 01:28:30 +00:00
|
|
|
'$admurl' => "admin/"
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2011-06-13 10:52:29 +00:00
|
|
|
|
2017-12-01 05:40:55 +00:00
|
|
|
// Page content
|
2011-06-13 10:52:29 +00:00
|
|
|
$o = '';
|
|
|
|
// urls
|
2017-03-13 17:23:02 +00:00
|
|
|
if ($a->argc > 1) {
|
|
|
|
switch ($a->argv[1]) {
|
2011-06-13 10:52:29 +00:00
|
|
|
default:
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t("Item not found."));
|
2011-06-13 10:52:29 +00:00
|
|
|
}
|
|
|
|
}
|
2013-01-27 12:57:44 +00:00
|
|
|
|
2018-10-13 16:57:31 +00:00
|
|
|
if ($a->isAjax()) {
|
2014-07-09 19:36:20 +00:00
|
|
|
echo $o;
|
2018-12-26 05:40:12 +00:00
|
|
|
exit();
|
2012-04-13 09:20:05 +00:00
|
|
|
} else {
|
|
|
|
return $o;
|
|
|
|
}
|
2014-07-09 19:36:20 +00:00
|
|
|
}
|
2011-06-13 10:52:29 +00:00
|
|
|
|
2018-08-25 22:31:22 +00:00
|
|
|
function admin_page_server_vital()
|
|
|
|
{
|
|
|
|
// Fetch the host-meta to check if this really is a vital server
|
2018-10-10 19:08:43 +00:00
|
|
|
return Network::curl(System::baseUrl() . '/.well-known/host-meta')->isSuccess();
|
2018-08-25 22:31:22 +00:00
|
|
|
}
|