From 55eddd7accf2c5f9b0f52b22a010c4c4b7c130d1 Mon Sep 17 00:00:00 2001 From: Bill Marquette Date: Fri, 6 Feb 2009 19:18:00 -0600 Subject: mv packages to config dir to match web layout --- config/nut/status_nut.php | 242 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 242 insertions(+) create mode 100644 config/nut/status_nut.php (limited to 'config/nut/status_nut.php') diff --git a/config/nut/status_nut.php b/config/nut/status_nut.php new file mode 100644 index 00000000..a181734f --- /dev/null +++ b/config/nut/status_nut.php @@ -0,0 +1,242 @@ +. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ + +require("guiconfig.inc"); + +$nut_config = $config['installedpackages']['nut']['config'][0]; + +/* functions */ + +function tblopen () { + print(''."\n"); +} + +function tblclose () { + print("
\n"); +} + +function tblrow ($name, $value, $symbol = null) { + if(!$value) return; + + if($symbol == '°') + $value = sprintf("%.1f", $value); + + if($symbol == 'Hz') + $value = sprintf("%d", $value); + + print(<< + {$name} + {$value}{$symbol} + +EOD + ."\n"); +} + +function tblrowbar ($name, $value, $symbol, $red, $yellow, $green) { + if(!$value) return; + + $value = sprintf("%.1f", $value); + + $red = explode('-', $red); + $yellow = explode('-', $yellow); + $green = explode('-', $green); + + sort($red); + sort($yellow); + sort($green); + + if($value >= $red[0] && $value <= ($red[0]+9)) { + $color = 'black'; + $bgcolor = 'red'; + } + if($value >= ($red[0]+10) && $value <= $red[1]) { + $color = 'white'; + $bgcolor = 'red'; + } + if($value >= $yellow[0] && $value <= $yellow[1]) { + $color = 'black'; + $bgcolor = 'yellow'; + } + if($value >= $green[0] && $value <= ($green[0]+9)) { + $color = 'black'; + $bgcolor = 'green'; + } + if($value >= ($green[0]+10) && $value <= $green[1]) { + $color = 'white'; + $bgcolor = 'green'; + } + + print(<< + {$name} + +
+
+
{$value}{$symbol}
+
+
+ + +EOD + ."\n"); +} + +/* defaults to this page but if no settings are present, redirect to setup page */ +if(!$nut_config['monitor']) + Header("Location: /pkg_edit.php?xml=nut.xml&id=0"); + +$pgtitle = "Status: NUT Status"; +include("head.inc"); +/* put your custom HTML head content here */ +/* using some of the $pfSenseHead function calls */ +//$pfSenseHead->addMeta(""); +//echo $pfSenseHead->getHTML(); + +?> + + +

+ + +
+ + +
+ + + + +
+ 0) ? true : false; + + if($nut_config['monitor'] == 'local') { + tblrow('Monitoring:','Local UPS'); + $cmd = "upsc {$nut_config['name']}@localhost"; + } else { + tblrow('Monitoring:','Remote UPS'); + $cmd = "upsc {$nut_config['remotename']}@{$nut_config['remoteaddr']}"; + } + + if($running) + $handle = popen($cmd, 'r'); + else + tblrow('ERROR:','NUT is enabled, however the service is not running!'); + + if($handle) { + $read = fread($handle, 4096); + pclose($handle); + + $lines = explode("\n", $read); + $ups = array(); + foreach($lines as $line) { + $line = explode(':', $line); + $ups[$line[0]] = trim($line[1]); + } + + if(count($lines) == 1) + tblrow('ERROR:', 'Data stale!'); + + tblrow('Model:', $ups['ups.model']); + + $status = explode(' ', $ups['ups.status']); + foreach($status as $condition) { + if($disp_status) $disp_status .= ', '; + switch ($condition) { + case 'WAIT': + $disp_status .= 'Waiting'; + break; + case 'OFF': + $disp_status .= 'Off Line'; + break; + case 'OL': + $disp_status .= 'On Line'; + break; + case 'OB': + $disp_status .= 'On Battery'; + break; + case 'TRIM': + $disp_status .= 'SmartTrim'; + break; + case 'BOOST': + $disp_status .= 'SmartBoost'; + break; + case 'OVER': + $disp_status .= 'Overload'; + break; + case 'LB': + $disp_status .= 'Battery Low'; + break; + case 'RB': + $disp_status .= 'Replace Battery'; + break; + case 'CAL': + $disp_status .= 'Calibration'; + break; + default: + $disp_status .= $condition; + break; + } + } + tblrow('Status:', $disp_status); + + tblrowbar('Load:', $ups['ups.load'], '%', '100-80', '79-60', '59-0'); + tblrowbar('Battery Charge:', $ups['battery.charge'], '%', '0-29' ,'30-79', '80-100'); + + tblclose(); + tblopen(); + + tblrow('Runtime Remaining:', $ups['battery.runtime'], ' seconds'); + tblrow('Battery Voltage:', $ups['battery.voltage'], 'V'); + tblrow('Input Voltage:', $ups['input.voltage'], 'V'); + tblrow('Input Frequency:', $ups['input.frequency'], 'Hz'); + tblrow('Output Voltage:', $ups['output.voltage'], 'V'); + tblrow('Temperature:', $ups['ups.temperature'], '°'); + } + + tblclose(); +?> +
+'); print_r($ups); print('');*/ +?> +
+ + + -- cgit v1.2.3