mirror of
https://github.com/unraid/webgui.git
synced 2026-01-12 12:40:08 -06:00
251 lines
9.3 KiB
PHP
251 lines
9.3 KiB
PHP
<?PHP
|
|
/* Copyright 2005-2020, Lime Technology
|
|
* Copyright 2012-2020, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<?
|
|
$docroot = $docroot ?? $_SERVER['DOCUMENT_ROOT'] ?: '/usr/local/emhttp';
|
|
require_once "$docroot/webGui/include/Wrappers.php";
|
|
|
|
// Helper functions
|
|
function my_scale($value, &$unit, $decimals=NULL, $scale=NULL, $kilo=1000) {
|
|
global $display;
|
|
$scale = $scale ?? $display['scale'];
|
|
$number = $display['number'] ?? '.,';
|
|
$units = ['B','KB','MB','GB','TB','PB','EB','ZB','YB'];
|
|
$size = count($units);
|
|
if ($scale==0 && ($decimals===NULL || $decimals<0)) {
|
|
$decimals = 0;
|
|
$unit = '';
|
|
} else {
|
|
$base = $value ? floor(log($value, $kilo)) : 0;
|
|
if ($scale>0 && $base>$scale) $base = $scale;
|
|
if ($base>$size) $base = $size-1;
|
|
$value /= pow($kilo, $base);
|
|
if ($decimals===NULL) $decimals = $value>=100 ? 0 : ($value>=10 ? 1 : (round($value*100)%100===0 ? 0 : 2));
|
|
elseif ($decimals<0) $decimals = $value>=100||round($value*10)%10===0 ? 0 : abs($decimals);
|
|
if ($scale<0 && round($value,-1)==1000) {$value = 1; $base++;}
|
|
$unit = $kilo!=1024 ? $units[$base] : preg_replace('/^(.)B$/','$1iB',$units[$base]);
|
|
}
|
|
return number_format($value, $decimals, $number[0], $value>9999 ? $number[1] : '');
|
|
}
|
|
function my_number($value) {
|
|
global $display;
|
|
$number = $display['number'];
|
|
return number_format($value, 0, $number[0], ($value>=10000 ? $number[1] : ''));
|
|
}
|
|
function my_time($time, $fmt=NULL) {
|
|
global $display;
|
|
if (!$fmt) $fmt = $display['date'].($display['date']!='%c' ? ", {$display['time']}" : "");
|
|
return $time ? strftime($fmt, $time) : "unknown";
|
|
}
|
|
function my_temp($value) {
|
|
global $display;
|
|
$unit = $display['unit'];
|
|
$number = $display['number'];
|
|
return is_numeric($value) ? (($unit=='F' ? round(9/5*$value+32) : str_replace('.', $number[0], $value))." $unit") : $value;
|
|
}
|
|
function my_disk($name,$raw=false) {
|
|
global $display;
|
|
return $display['raw']||$raw ? $name : ucfirst(preg_replace('/(\d+)$/',' $1',$name));
|
|
}
|
|
function my_disks($disk) {
|
|
return strpos($disk['status'],'_NP')===false;
|
|
}
|
|
function prefix($key) {
|
|
return preg_replace('/\d+$/','',$key);
|
|
}
|
|
function parity_only($disk) {
|
|
return $disk['type']=='Parity';
|
|
}
|
|
function data_only($disk) {
|
|
return $disk['type']=='Data';
|
|
}
|
|
function cache_only($disk) {
|
|
return $disk['type']=='Cache';
|
|
}
|
|
function parity_filter($disks) {
|
|
return array_filter($disks,'parity_only');
|
|
}
|
|
function data_filter($disks) {
|
|
return array_filter($disks,'data_only');
|
|
}
|
|
function cache_filter($disks) {
|
|
return array_filter($disks,'cache_only');
|
|
}
|
|
function pools_filter($disks) {
|
|
return array_unique(array_map('prefix',array_keys(cache_filter($disks))));
|
|
}
|
|
function my_id($id) {
|
|
global $display;
|
|
$len = strlen($id);
|
|
$wwn = substr($id,-18);
|
|
return ($display['wwn'] || substr($wwn,0,2)!='_3' || preg_match('/.[_-]/',$wwn)) ? $id : substr($id,0,$len-18);
|
|
}
|
|
function my_word($num) {
|
|
$words = ['zero','one','two','three','four','five','six','seven','eight','nine','ten','eleven','twelve','thirteen','fourteen','fifteen','sixteen','seventeen','eighteen','nineteen','twenty','twenty-one','twenty-two','twenty-three','twenty-four','twenty-five','twenty-six','twenty-seven','twenty-eight','twenty-nine','thirty'];
|
|
return $num<count($words) ? $words[$num] : $num;
|
|
}
|
|
function my_usage() {
|
|
global $disks,$var,$display;
|
|
$arraysize=0;
|
|
$arrayfree=0;
|
|
foreach ($disks as $disk) {
|
|
if (strpos($disk['name'],'disk')!==false) {
|
|
$arraysize += $disk['sizeSb'];
|
|
$arrayfree += $disk['fsFree'];
|
|
}
|
|
}
|
|
if ($var['fsNumMounted']>0) {
|
|
$used = $arraysize ? 100-round(100*$arrayfree/$arraysize) : 0;
|
|
echo "<div class='usage-bar'><span style='width:{$used}%' class='".usage_color($display,$used,false)."'>{$used}%</span></div>";
|
|
} else {
|
|
echo "<div class='usage-bar'><span style='text-align:center'>".($var['fsState']=='Started'?'Maintenance':'off-line')."</span></div>";
|
|
}
|
|
}
|
|
function usage_color(&$disk, $limit, $free) {
|
|
global $display;
|
|
if ($display['text']==1 || intval($display['text']/10)==1) return '';
|
|
$critical = !empty($disk['critical']) ? $disk['critical'] : $display['critical'];
|
|
$warning = !empty($disk['warning']) ? $disk['warning'] : $display['warning'];
|
|
if (!$free) {
|
|
if ($limit>=$critical && $critical>0) return 'redbar';
|
|
if ($limit>=$warning && $warning>0) return 'orangebar';
|
|
return 'greenbar';
|
|
} else {
|
|
if ($limit<=100-$critical && $critical>0) return 'redbar';
|
|
if ($limit<=100-$warning && $warning>0) return 'orangebar';
|
|
return 'greenbar';
|
|
}
|
|
}
|
|
function my_check($time, $speed) {
|
|
if (!$time) return 'unavailable (no parity-check entries logged)';
|
|
$days = floor($time/86400);
|
|
$hmss = $time-$days*86400;
|
|
$hour = floor($hmss/3600);
|
|
$mins = $hmss/60%60;
|
|
$secs = $hmss%60;
|
|
return plus($days,'day',($hour|$mins|$secs)==0).plus($hour,'hour',($mins|$secs)==0).plus($mins,'minute',$secs==0).plus($secs,'second',true).". Average speed: $speed";
|
|
}
|
|
function my_error($code) {
|
|
switch ($code) {
|
|
case -4:
|
|
return "<em>aborted</em>";
|
|
default:
|
|
return "<strong>$code</strong>";
|
|
}
|
|
}
|
|
function mk_option($select, $value, $text, $extra="") {
|
|
return "<option value='$value'".($value==$select ? " selected" : "").(strlen($extra) ? " $extra" : "").">$text</option>";
|
|
}
|
|
function mk_option_check($name, $value, $text="") {
|
|
if ($text) {
|
|
$checked = in_array($value,explode(',',$name)) ? " selected" : "";
|
|
return "<option value='$value'$checked>$text</option>";
|
|
}
|
|
if (strpos($name, 'disk')!==false) {
|
|
$checked = in_array($name,explode(',',$value)) ? " selected" : "";
|
|
return "<option value='$name'$checked>".my_disk($name)."</option>";
|
|
}
|
|
}
|
|
function mk_option_luks($name, $value, $luks) {
|
|
if (strpos($name, 'disk')!==false) {
|
|
$checked = in_array($name,explode(',',$value)) ? " selected" : "";
|
|
return "<option luks='$luks' value='$name'$checked>".my_disk($name)."</option>";
|
|
}
|
|
}
|
|
function day_count($time) {
|
|
global $var;
|
|
if (!$time) return;
|
|
$datetz = new DateTimeZone($var['timeZone']);
|
|
$date = new DateTime("now", $datetz);
|
|
$offset = $datetz->getOffset($date);
|
|
$now = new DateTime("@".intval((time()+$offset)/86400)*86400);
|
|
$last = new DateTime("@".intval(($time+$offset)/86400)*86400);
|
|
$days = date_diff($last,$now)->format('%a');
|
|
switch (true) {
|
|
case ($days<0):
|
|
return;
|
|
case ($days==0):
|
|
return " <span class='green-text'>(today)</span>";
|
|
case ($days==1):
|
|
return " <span class='green-text'>(yesterday)</span>";
|
|
case ($days<=31):
|
|
return " <span class='green-text'>(".my_word($days)." days ago)</span>";
|
|
case ($days<=61):
|
|
return " <span class='orange-text'>($days days ago)</span>";
|
|
case ($days>61):
|
|
return " <span class='red-text'>($days days ago)</span>";
|
|
}
|
|
}
|
|
function plus($val, $word, $last) {
|
|
return $val>0 ? (($val || $last) ? ($val.' '.$word.($val!=1?'s':'').($last ?'':', ')) : '') : '';
|
|
}
|
|
function compress($name,$size=18,$end=6) {
|
|
return strlen($name)<=$size ? $name : substr($name,0,$size-($end?$end-3:0)).'...'.($end?substr($name,-$end):'');
|
|
}
|
|
|
|
function read_parity_log($epoch, $busy=false) {
|
|
$log = '/boot/config/parity-checks.log';
|
|
if (file_exists($log)) {
|
|
$timestamp = str_replace(['.0','.'],[' ',' '],date('M.d H:i:s',$epoch));
|
|
$handle = fopen($log, 'r');
|
|
while (($line = fgets($handle)) !== false) {
|
|
if (strpos($line,$timestamp)!==false) break;
|
|
if ($busy) $last = $line;
|
|
}
|
|
fclose($handle);
|
|
}
|
|
return $line ?: $last ?: '0|0|0|0|0';
|
|
}
|
|
function last_parity_log() {
|
|
$log = '/boot/config/parity-checks.log';
|
|
if (!file_exists($log)) return [0,0,0,0,0];
|
|
list($date,$duration,$speed,$status,$error) = explode('|',exec("tail -1 $log"));
|
|
list($y,$m,$d,$t) = preg_split('/ +/',$date);
|
|
return [strtotime("$d-$m-$y $t"), $duration, $speed, $status, $error];
|
|
}
|
|
function urlencode_path($path) {
|
|
return str_replace("%2F", "/", urlencode($path));
|
|
}
|
|
function pgrep($process_name, $escape_arg=true) {
|
|
$pid = exec("pgrep ".($escape_arg?escapeshellarg($process_name):$process_name), $output, $retval);
|
|
return $retval == 0 ? $pid : false;
|
|
}
|
|
function is_block($path) {
|
|
return (@filetype(realpath($path))=='block');
|
|
}
|
|
function autov($file) {
|
|
global $docroot;
|
|
$path = $docroot.$file;
|
|
clearstatcache(true, $path);
|
|
echo "$file?v=".filemtime($path);
|
|
}
|
|
function transpose_user_path($path) {
|
|
if (strpos($path, '/mnt/user/') === 0 && file_exists($path)) {
|
|
$realdisk = trim(shell_exec("getfattr --absolute-names --only-values -n system.LOCATION ".escapeshellarg($path)." 2>/dev/null"));
|
|
if (!empty($realdisk))
|
|
$path = str_replace('/mnt/user/', "/mnt/$realdisk/", $path);
|
|
}
|
|
return $path;
|
|
}
|
|
// custom parse_ini_file/string functions to deal with '#' comment lines
|
|
function my_parse_ini_string($text, $sections=false, $scanner=INI_SCANNER_NORMAL) {
|
|
return parse_ini_string(preg_replace('/^#/m',';',$text),$sections,$scanner);
|
|
}
|
|
function my_parse_ini_file($file, $sections=false, $scanner=INI_SCANNER_NORMAL) {
|
|
return my_parse_ini_string(file_get_contents($file),$sections,$scanner);
|
|
}
|
|
function cpu_list() {
|
|
exec('cat /sys/devices/system/cpu/*/topology/thread_siblings_list|sort -nu', $cpus);
|
|
return $cpus;
|
|
}
|
|
?>
|