mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
Update class w/ namespace, phpcbf formatting
This commit is contained in:
parent
4e62413e11
commit
c3a219e340
1 changed files with 31 additions and 11 deletions
|
@ -1,11 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class System {
|
/**
|
||||||
public function hostname() {
|
* Sytem info class
|
||||||
|
*
|
||||||
|
* @description System info class for RaspAP
|
||||||
|
* @author Bill Zimmerman <billzimmerman@gmail.com>
|
||||||
|
* @license https://github.com/raspap/raspap-webgui/blob/master/LICENSE
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace RaspAP\System;
|
||||||
|
|
||||||
|
class Sysinfo
|
||||||
|
{
|
||||||
|
public function hostname()
|
||||||
|
{
|
||||||
return shell_exec("hostname -f");
|
return shell_exec("hostname -f");
|
||||||
}
|
}
|
||||||
|
|
||||||
public function uptime() {
|
public function uptime()
|
||||||
|
{
|
||||||
$uparray = explode(" ", exec("cat /proc/uptime"));
|
$uparray = explode(" ", exec("cat /proc/uptime"));
|
||||||
$seconds = round($uparray[0], 0);
|
$seconds = round($uparray[0], 0);
|
||||||
$minutes = $seconds / 60;
|
$minutes = $seconds / 60;
|
||||||
|
@ -15,10 +28,10 @@ class System {
|
||||||
$minutes = floor($minutes - ($days * 24 * 60) - ($hours * 60));
|
$minutes = floor($minutes - ($days * 24 * 60) - ($hours * 60));
|
||||||
$uptime= '';
|
$uptime= '';
|
||||||
if ($days != 0) {
|
if ($days != 0) {
|
||||||
$uptime .= $days . ' day' . (($days > 1)? 's ':' ');
|
$uptime .= $days . ' day' . (($days > 1)? 's ':' ');
|
||||||
}
|
}
|
||||||
if ($hours != 0) {
|
if ($hours != 0) {
|
||||||
$uptime .= $hours . ' hour' . (($hours > 1)? 's ':' ');
|
$uptime .= $hours . ' hour' . (($hours > 1)? 's ':' ');
|
||||||
}
|
}
|
||||||
if ($minutes != 0) {
|
if ($minutes != 0) {
|
||||||
$uptime .= $minutes . ' minute' . (($minutes > 1)? 's ':' ');
|
$uptime .= $minutes . ' minute' . (($minutes > 1)? 's ':' ');
|
||||||
|
@ -27,33 +40,40 @@ class System {
|
||||||
return $uptime;
|
return $uptime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function usedMemory() {
|
public function usedMemory()
|
||||||
|
{
|
||||||
$used = shell_exec("free -m | awk '/Mem:/ { total=$2 ; used=$3 } END { print used/total*100}'");
|
$used = shell_exec("free -m | awk '/Mem:/ { total=$2 ; used=$3 } END { print used/total*100}'");
|
||||||
return floor($used);
|
return floor($used);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function processorCount() {
|
public function processorCount()
|
||||||
|
{
|
||||||
$procs = shell_exec("nproc --all");
|
$procs = shell_exec("nproc --all");
|
||||||
return intval($procs);
|
return intval($procs);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function loadAvg1Min() {
|
public function loadAvg1Min()
|
||||||
|
{
|
||||||
$load = exec("awk '{print $1}' /proc/loadavg");
|
$load = exec("awk '{print $1}' /proc/loadavg");
|
||||||
return floatval($load);
|
return floatval($load);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function systemLoadPercentage() {
|
public function systemLoadPercentage()
|
||||||
|
{
|
||||||
return intval(($this->loadAvg1Min() * 100) / $this->processorCount());
|
return intval(($this->loadAvg1Min() * 100) / $this->processorCount());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function systemTemperature() {
|
public function systemTemperature()
|
||||||
|
{
|
||||||
$cpuTemp = file_get_contents("/sys/class/thermal/thermal_zone0/temp");
|
$cpuTemp = file_get_contents("/sys/class/thermal/thermal_zone0/temp");
|
||||||
return number_format((float)$cpuTemp/1000, 1);
|
return number_format((float)$cpuTemp/1000, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function hostapdStatus() {
|
public function hostapdStatus()
|
||||||
|
{
|
||||||
exec('pidof hostapd | wc -l', $status);
|
exec('pidof hostapd | wc -l', $status);
|
||||||
return $status;
|
return $status;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue