2016-08-08 14:31:19 +02:00
|
|
|
<?php
|
2018-05-29 21:16:40 +02:00
|
|
|
|
2020-02-15 18:57:46 +01:00
|
|
|
require_once 'includes/status_messages.php';
|
2023-03-22 20:39:00 +01:00
|
|
|
require_once 'includes/functions.php';
|
2020-02-14 03:38:46 +01:00
|
|
|
require_once 'config.php';
|
2021-02-02 13:26:14 +01:00
|
|
|
require_once 'app/lib/system.php';
|
2018-05-29 21:16:40 +02:00
|
|
|
|
2016-08-08 14:38:15 +02:00
|
|
|
/**
|
2018-05-29 21:16:40 +02:00
|
|
|
* Find the version of the Raspberry Pi
|
|
|
|
* Currently only used for the system information page but may useful elsewhere
|
|
|
|
*/
|
2016-08-08 14:38:15 +02:00
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
function RPiVersion()
|
|
|
|
{
|
|
|
|
// Lookup table from http://www.raspberrypi-spy.co.uk/2012/09/checking-your-raspberry-pi-board-version/
|
|
|
|
$revisions = array(
|
2016-08-08 14:38:15 +02:00
|
|
|
'0002' => 'Model B Revision 1.0',
|
|
|
|
'0003' => 'Model B Revision 1.0 + ECN0001',
|
|
|
|
'0004' => 'Model B Revision 2.0 (256 MB)',
|
|
|
|
'0005' => 'Model B Revision 2.0 (256 MB)',
|
|
|
|
'0006' => 'Model B Revision 2.0 (256 MB)',
|
|
|
|
'0007' => 'Model A',
|
|
|
|
'0008' => 'Model A',
|
|
|
|
'0009' => 'Model A',
|
|
|
|
'000d' => 'Model B Revision 2.0 (512 MB)',
|
|
|
|
'000e' => 'Model B Revision 2.0 (512 MB)',
|
|
|
|
'000f' => 'Model B Revision 2.0 (512 MB)',
|
|
|
|
'0010' => 'Model B+',
|
|
|
|
'0013' => 'Model B+',
|
|
|
|
'0011' => 'Compute Module',
|
|
|
|
'0012' => 'Model A+',
|
|
|
|
'a01041' => 'a01041',
|
|
|
|
'a21041' => 'a21041',
|
2017-03-08 22:24:42 +01:00
|
|
|
'900092' => 'PiZero 1.2',
|
|
|
|
'900093' => 'PiZero 1.3',
|
2017-05-19 15:44:51 +02:00
|
|
|
'9000c1' => 'PiZero W',
|
2016-08-08 14:38:15 +02:00
|
|
|
'a02082' => 'Pi 3 Model B',
|
2019-02-04 18:08:10 +01:00
|
|
|
'a22082' => 'Pi 3 Model B',
|
|
|
|
'a32082' => 'Pi 3 Model B',
|
|
|
|
'a52082' => 'Pi 3 Model B',
|
|
|
|
'a020d3' => 'Pi 3 Model B+',
|
|
|
|
'a220a0' => 'Compute Module 3',
|
|
|
|
'a020a0' => 'Compute Module 3',
|
|
|
|
'a02100' => 'Compute Module 3+',
|
2019-12-27 01:50:53 +01:00
|
|
|
'a03111' => 'Model 4B Revision 1.1 (1 GB)',
|
|
|
|
'b03111' => 'Model 4B Revision 1.1 (2 GB)',
|
|
|
|
'c03111' => 'Model 4B Revision 1.1 (4 GB)'
|
2019-04-10 10:37:35 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$cpuinfo_array = '';
|
|
|
|
exec('cat /proc/cpuinfo', $cpuinfo_array);
|
|
|
|
$rev = trim(array_pop(explode(':', array_pop(preg_grep("/^Revision/", $cpuinfo_array)))));
|
|
|
|
if (array_key_exists($rev, $revisions)) {
|
|
|
|
return $revisions[$rev];
|
|
|
|
} else {
|
2020-05-27 09:31:54 +02:00
|
|
|
exec('cat /proc/device-tree/model', $model);
|
|
|
|
if (isset($model[0])) {
|
|
|
|
return $model[0];
|
|
|
|
} else {
|
|
|
|
return 'Unknown Device';
|
|
|
|
}
|
2019-04-10 10:37:35 +02:00
|
|
|
}
|
2016-08-08 14:38:15 +02:00
|
|
|
}
|
|
|
|
|
2016-08-08 14:31:19 +02:00
|
|
|
/**
|
2018-05-29 21:16:40 +02:00
|
|
|
*
|
|
|
|
*/
|
2023-03-22 20:39:00 +01:00
|
|
|
function DisplaySystem(&$extraFooterScripts)
|
2019-04-10 10:37:35 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
$status = new StatusMessages();
|
2019-08-19 00:29:46 +02:00
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
if (isset($_POST['SaveLanguage'])) {
|
2019-07-30 17:05:41 +02:00
|
|
|
if (isset($_POST['locale'])) {
|
|
|
|
$_SESSION['locale'] = $_POST['locale'];
|
|
|
|
$status->addMessage('Language setting saved', 'success');
|
2019-04-10 10:37:35 +02:00
|
|
|
}
|
2018-05-29 21:16:40 +02:00
|
|
|
}
|
|
|
|
|
2020-02-14 03:38:46 +01:00
|
|
|
if (!RASPI_MONITOR_ENABLED) {
|
2020-07-29 16:52:31 +02:00
|
|
|
if (isset($_POST['SaveServerSettings'])) {
|
2020-08-05 19:57:42 +02:00
|
|
|
$good_input = true;
|
|
|
|
// Validate server port
|
2020-02-14 03:38:46 +01:00
|
|
|
if (isset($_POST['serverPort'])) {
|
|
|
|
if (strlen($_POST['serverPort']) > 4 || !is_numeric($_POST['serverPort'])) {
|
|
|
|
$status->addMessage('Invalid value for port number', 'danger');
|
2020-08-05 19:57:42 +02:00
|
|
|
$good_input = false;
|
2020-02-14 03:38:46 +01:00
|
|
|
} else {
|
|
|
|
$serverPort = escapeshellarg($_POST['serverPort']);
|
2020-08-05 19:57:42 +02:00
|
|
|
}
|
2019-11-10 23:10:49 +01:00
|
|
|
}
|
2020-08-05 19:57:42 +02:00
|
|
|
// Validate server bind address
|
|
|
|
$serverBind = escapeshellarg('');
|
|
|
|
if ($_POST['serverBind'] && $_POST['serverBind'] !== null ) {
|
2020-07-29 16:52:31 +02:00
|
|
|
if (!filter_var($_POST['serverBind'], FILTER_VALIDATE_IP)) {
|
|
|
|
$status->addMessage('Invalid value for bind address', 'danger');
|
2020-08-05 19:57:42 +02:00
|
|
|
$good_input = false;
|
2020-07-29 16:52:31 +02:00
|
|
|
} else {
|
|
|
|
$serverBind = escapeshellarg($_POST['serverBind']);
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 19:57:42 +02: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-10 23:10:49 +01:00
|
|
|
}
|
2020-08-05 19:57:42 +02:00
|
|
|
|
2020-02-14 03:38:46 +01:00
|
|
|
if (isset($_POST['system_reboot'])) {
|
|
|
|
$status->addMessage("System Rebooting Now!", "warning", false);
|
|
|
|
$result = shell_exec("sudo /sbin/reboot");
|
|
|
|
}
|
|
|
|
if (isset($_POST['system_shutdown'])) {
|
|
|
|
$status->addMessage("System Shutting Down Now!", "warning", false);
|
|
|
|
$result = shell_exec("sudo /sbin/shutdown -h now");
|
|
|
|
}
|
2019-11-10 23:10:49 +01:00
|
|
|
}
|
|
|
|
|
2019-11-11 14:35:48 +01:00
|
|
|
if (isset($_POST['RestartLighttpd'])) {
|
2020-02-15 18:57:46 +01:00
|
|
|
$status->addMessage('Restarting lighttpd in 3 seconds...', 'info');
|
2019-11-11 14:35:48 +01:00
|
|
|
exec('sudo /etc/raspap/lighttpd/configport.sh --restart');
|
|
|
|
}
|
2019-11-10 23:10:49 +01:00
|
|
|
exec('cat '. RASPI_LIGHTTPD_CONFIG, $return);
|
|
|
|
$conf = ParseConfig($return);
|
2020-07-29 16:52:31 +02:00
|
|
|
$serverPort = $conf['server.port'];
|
|
|
|
$serverBind = str_replace('"', '',$conf['server.bind']);
|
2019-11-10 23:10:49 +01:00
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
// define locales
|
2023-03-22 20:39:00 +01:00
|
|
|
$arrLocales = getLocales();
|
2019-04-10 10:37:35 +02:00
|
|
|
|
2021-02-02 13:26:14 +01:00
|
|
|
#fetch system status variables.
|
2021-08-03 16:18:36 +02:00
|
|
|
$system = new \RaspAP\System\Sysinfo;
|
2021-02-02 13:26:14 +01:00
|
|
|
|
|
|
|
$hostname = $system->hostname();
|
|
|
|
$uptime = $system->uptime();
|
|
|
|
$cores = $system->processorCount();
|
2022-06-08 19:22:52 +02:00
|
|
|
$os = $system->operatingSystem();
|
|
|
|
$kernel = $system->kernelVersion();
|
2021-02-02 13:26:14 +01:00
|
|
|
|
|
|
|
// mem used
|
|
|
|
$memused = $system->usedMemory();
|
|
|
|
$memused_status = "primary";
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
|
|
|
// cpu load
|
|
|
|
$cpuload = $system->systemLoadPercentage();
|
|
|
|
if ($cpuload > 90) {
|
|
|
|
$cpuload_status = "danger";
|
|
|
|
} elseif ($cpuload > 75) {
|
|
|
|
$cpuload_status = "warning";
|
|
|
|
} elseif ($cpuload >= 0) {
|
|
|
|
$cpuload_status = "success";
|
|
|
|
}
|
|
|
|
|
|
|
|
// cpu temp
|
|
|
|
$cputemp = $system->systemTemperature();
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
|
|
|
// hostapd status
|
|
|
|
$hostapd = $system->hostapdStatus();
|
|
|
|
if ($hostapd[0] == 1) {
|
|
|
|
$hostapd_status = "active";
|
|
|
|
$hostapd_led = "service-status-up";
|
|
|
|
} else {
|
|
|
|
$hostapd_status = "inactive";
|
|
|
|
$hostapd_led = "service-status-down";
|
|
|
|
}
|
|
|
|
|
2023-03-22 20:39:00 +01:00
|
|
|
// theme options
|
|
|
|
$themes = [
|
|
|
|
"default" => "RaspAP (default)",
|
|
|
|
"hackernews" => "HackerNews"
|
|
|
|
];
|
|
|
|
$themeFiles = [
|
|
|
|
"default" => "custom.php",
|
|
|
|
"hackernews" => "hackernews.css"
|
|
|
|
];
|
|
|
|
$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);
|
|
|
|
|
2021-02-02 13:26:14 +01:00
|
|
|
echo renderTemplate("system", compact(
|
|
|
|
"arrLocales",
|
|
|
|
"status",
|
|
|
|
"serverPort",
|
|
|
|
"serverBind",
|
|
|
|
"hostname",
|
|
|
|
"uptime",
|
|
|
|
"cores",
|
2022-06-08 19:22:52 +02:00
|
|
|
"os",
|
|
|
|
"kernel",
|
2021-02-02 13:26:14 +01:00
|
|
|
"memused",
|
|
|
|
"memused_status",
|
|
|
|
"memused_led",
|
|
|
|
"cpuload",
|
|
|
|
"cpuload_status",
|
|
|
|
"cputemp",
|
|
|
|
"cputemp_status",
|
|
|
|
"cputemp_led",
|
|
|
|
"hostapd",
|
|
|
|
"hostapd_status",
|
2023-03-22 20:39:00 +01:00
|
|
|
"hostapd_led",
|
|
|
|
"themes",
|
|
|
|
"selectedTheme"
|
2021-02-02 13:26:14 +01:00
|
|
|
));
|
2016-08-08 14:31:19 +02:00
|
|
|
}
|