raspap-webgui/includes/system.php

202 lines
6.1 KiB
PHP
Raw Normal View History

2016-08-08 12:31:19 +00:00
<?php
2018-05-29 19:16:40 +00:00
2023-03-22 20:39:00 +01:00
require_once 'includes/functions.php';
require_once 'config.php';
2016-08-08 12:38:15 +00:00
2016-08-08 12:31:19 +00:00
/**
2018-05-29 19:16:40 +00:00
*
*/
2023-03-22 20:39:00 +01:00
function DisplaySystem(&$extraFooterScripts)
{
$status = new \RaspAP\Messages\StatusMessage;
$pluginInstaller = \RaspAP\Plugins\PluginInstaller::getInstance();
2019-08-18 23:29:46 +01:00
if (isset($_POST['SaveLanguage'])) {
if (isset($_POST['locale'])) {
$_SESSION['locale'] = $_POST['locale'];
$status->addMessage('Language setting saved', 'success');
}
2018-05-29 19:16:40 +00:00
}
if (!RASPI_MONITOR_ENABLED) {
2020-07-29 15:52:31 +01:00
if (isset($_POST['SaveServerSettings'])) {
2020-08-05 18:57:42 +01:00
$good_input = true;
// Validate server port
if (isset($_POST['serverPort'])) {
if (strlen($_POST['serverPort']) > 4 || !is_numeric($_POST['serverPort'])) {
$status->addMessage('Invalid value for port number', 'danger');
2020-08-05 18:57:42 +01:00
$good_input = false;
} else {
$serverPort = escapeshellarg($_POST['serverPort']);
2020-08-05 18:57:42 +01:00
}
}
2020-08-05 18:57:42 +01:00
// Validate server bind address
$serverBind = escapeshellarg('');
if ($_POST['serverBind'] && $_POST['serverBind'] !== null ) {
2020-07-29 15:52:31 +01:00
if (!filter_var($_POST['serverBind'], FILTER_VALIDATE_IP)) {
$status->addMessage('Invalid value for bind address', 'danger');
2020-08-05 18:57:42 +01:00
$good_input = false;
2020-07-29 15:52:31 +01:00
} else {
$serverBind = escapeshellarg($_POST['serverBind']);
}
}
// Validate log limit
if (isset($_POST['logLimit'])) {
if ( strlen($_POST['logLimit']) > 4 || !is_numeric($_POST['logLimit']) ) {
$status->addMessage('Invalid value for log size limit', 'danger');
$good_input = false;
} else {
$_SESSION['log_limit'] = intval($_POST['logLimit']);
$status->addMessage(sprintf(_('Changing log limit size to %s KB'), $_SESSION['log_limit']), 'info');
}
}
2020-08-05 18:57:42 +01:00
// Save settings
if ($good_input) {
exec("sudo /etc/raspap/lighttpd/configport.sh $serverPort $serverBind " .RASPI_LIGHTTPD_CONFIG. " ".$_SERVER['SERVER_NAME'], $return);
foreach ($return as $line) {
$status->addMessage($line, 'info');
}
}
}
}
2019-11-11 13:35:48 +00:00
if (isset($_POST['RestartLighttpd'])) {
2020-02-15 17:57:46 +00:00
$status->addMessage('Restarting lighttpd in 3 seconds...', 'info');
2019-11-11 13:35:48 +00:00
exec('sudo /etc/raspap/lighttpd/configport.sh --restart');
}
exec('cat '. RASPI_LIGHTTPD_CONFIG, $return);
$conf = ParseConfig($return);
2020-07-29 15:52:31 +01:00
$serverPort = $conf['server.port'];
2023-09-06 12:25:39 +02:00
if (isset($conf['server.bind'])) {
$serverBind = str_replace('"', '',$conf['server.bind']);
} else {
$serverBind = '';
}
// define locales
2023-03-22 20:39:00 +01:00
$arrLocales = getLocales();
// fetch system status variables
2021-08-03 15:18:36 +01:00
$system = new \RaspAP\System\Sysinfo;
$hostname = $system->hostname();
$uptime = $system->uptime();
$cores = $system->processorCount();
$os = $system->operatingSystem();
$kernel = $system->kernelVersion();
2023-06-04 15:27:54 +00:00
$systime = $system->systime();
$revision = $system->rpiRevision();
// memory use
$memused = $system->usedMemory();
$memStatus = getMemStatus($memused);
$memused_status = $memStatus['status'];
$memused_led = $memStatus['led'];
// cpu load
$cpuload = $system->systemLoadPercentage();
$cpuload_status = getCPULoadStatus($cpuload);
// cpu temp
$cputemp = $system->systemTemperature();
$cpuStatus = getCPUTempStatus($cputemp);
$cputemp_status = $cpuStatus['status'];
$cputemp_led = $cpuStatus['led'];
2023-03-22 20:39:00 +01:00
// theme options
$themes = [
"default" => "RaspAP (default)",
2023-08-07 12:14:53 +02:00
"hackernews" => "HackerNews",
2023-03-22 20:39:00 +01:00
];
$themeFiles = [
"default" => "custom.php",
2023-08-07 12:14:53 +02:00
"hackernews" => "hackernews.css",
2023-03-22 20:39:00 +01:00
];
$selectedTheme = array_search($_COOKIE['theme'], $themeFiles);
$extraFooterScripts[] = array('src'=>'dist/huebee/huebee.pkgd.min.js', 'defer'=>false);
$extraFooterScripts[] = array('src'=>'app/js/huebee.js', 'defer'=>false);
$logLimit = isset($_SESSION['log_limit']) ? $_SESSION['log_limit'] : RASPI_LOG_SIZE_LIMIT;
2023-03-22 20:39:00 +01:00
$plugins = $pluginInstaller->getUserPlugins();
$pluginsTable = $pluginInstaller->getHTMLPluginsTable($plugins);
echo renderTemplate("system", compact(
"arrLocales",
"status",
"serverPort",
"serverBind",
"hostname",
"uptime",
2023-06-04 15:27:54 +00:00
"systime",
"revision",
"cores",
"os",
"kernel",
"memused",
"memused_status",
"memused_led",
"cpuload",
"cpuload_status",
"cputemp",
"cputemp_status",
"cputemp_led",
2023-03-22 20:39:00 +01:00
"themes",
"selectedTheme",
"logLimit",
"pluginsTable"
));
2016-08-08 12:31:19 +00:00
}
function getMemStatus($memused): array
{
$memused_status = "primary";
$memused_led = "";
if ($memused > 90) {
$memused_status = "danger";
$memused_led = "service-status-down";
} elseif ($memused > 75) {
$memused_status = "warning";
$memused_led = "service-status-warn";
} elseif ($memused > 0) {
$memused_status = "success";
$memused_led = "service-status-up";
}
return [
'status' => $memused_status,
'led' => $memused_led
];
}
function getCPULoadStatus($cpuload): string
{
if ($cpuload > 90) {
$status = "danger";
} elseif ($cpuload > 75) {
$status = "warning";
} elseif ($cpuload >= 0) {
$status = "success";
}
return $status;
}
function getCPUTempStatus($cputemp): array
{
if ($cputemp > 70) {
$cputemp_status = "danger";
$cputemp_led = "service-status-down";
} elseif ($cputemp > 50) {
$cputemp_status = "warning";
$cputemp_led = "service-status-warn";
} else {
$cputemp_status = "success";
$cputemp_led = "service-status-up";
}
return [
'status' => $cputemp_status,
'led' => $cputemp_led
];
}