make some additional scaling options available (logarithmic, claculated ranges);...
[php-utility-classes.git] / include / classes / rrdstat.php-class
CommitLineData
b7878f4d 1<?php
0ee9d2d0 2/* ***** BEGIN LICENSE BLOCK *****
3 *
4 * The contents of this file are subject to Austrian copyright reegulations
5 * ("Urheberrecht"); you may not use this file except in compliance with
6 * those laws.
7 * This contents and any derived work, if it gets distributed in any way,
8 * is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND,
9 * either express or implied.
10 *
11 * The Original Code is KaiRo's RRD statistics class.
12 *
13 * The Initial Developer of the Original Code is
14 * KaiRo - Robert Kaiser.
15 * Portions created by the Initial Developer are Copyright (C) 2005
16 * the Initial Developer. All Rights Reserved.
17 *
18 * Contributor(s): Robert Kaiser <kairo@kairo.at>
19 *
20 * ***** END LICENSE BLOCK ***** */
21
b7878f4d 22class rrdstat {
0ee9d2d0 23 // rrdstat PHP class
24 // rrdtool statistics functions
25 //
26 // function rrdstat($rrdconfig, [$conf_id])
27 // CONSTRUCTOR
28 // if $conf_id is set, $rrdconfig is a total configuration set
29 // else it's the configuration for this one RRD
30 // currently only a config array is supported, XML config is planned
31 //
32 // var $rrd_file
33 // RRD file name
34 //
35 // var $basename
36 // base name for this RRD (usually file name without .rrd)
37 //
2e28e4bd 38 // var $basedir
39 // base directory for this RRD (with a trailing slash)
40 // note that $rrd_file usually includes that path as well, but graph directory gets based on this value
41 //
0ee9d2d0 42 // var $config_all
43 // complete, raw configuration array set
44 //
45 // var $config_raw
46 // configuration array set for current RRD
47 //
48 // var $config_graph
49 // configuration array set for default graph in this RRD
50 //
51 // var $config_page
52 // configuration array set for default page in this RRD
53 //
54 // var $rrd_fields
55 // definition of this RRD's fields
56 //
57 // var $rra_base
58 // definition of this RRD's base RRAs
59 //
60 // var $rrd_step
61 // basic stepping of this RRD in seconds (default: 300)
62 //
63 // var $rra_add_max
64 // should RRAs for MAX be added for every base RRA? (bool, default: true)
65 //
66 // var $status
67 // status of the RRD (unused/ok/readonly/graphonly)
68 // note that most functions require certain status values
69 // (e.g. update only works if status is ok, graph for ok/readonly/graphonly)
70 //
724f6e78 71 // var $mod_textdomain
72 // GNU gettext domain for this module
73 //
0ee9d2d0 74 // function set_def($rrdconfig, [$conf_id])
75 // set definitions based on given configuration
76 // [intended for internal use, called by the constructor]
77 //
78 // function create()
79 // create RRD file according to set config
80 //
81 // function update([$upArray])
82 // feed new data into RRD (either use given array of values or use auto-update info from config)
83 //
84 // function fetch([$cf] = 'AVERAGE', $resolution = null, $start = null, $end = null)
85 // fetch data from the defined RRD
86 // using given consolidation function [default is AVERAGE],
87 // resolution (seconds, default is the RRD's stepping),
88 // start and end times (unix epoch, defaults are the RRD's last update time)
89 //
90 // function last_update()
91 // fetch time of last update in this RRD file
92 //
93 // function graph([$timeframe], [$sub], [$extra])
94 // create a RRD graph (and return all meta info in a flat string)
95 // for given timeframe (day [default]/week/month/year),
96 // sub-graph ID (if given) and extra config options (if given)
97 //
98 // function graph_plus([$timeframe], [$sub], [$extra])
99 // create a RRD graph (see above) and return meta info as a ready-to-use array
100 //
101 // function page([$sub], [$page_extras], [$graph_extras])
102 // create a (HTML) page and return it in a string
103 // for given sub-page ID (if given, default is a simple HTML page)
104 // and extra page and graph config options (if given)
105 //
106 // function simple_html([$sub], [$page_extras], [$graph_extras])
107 // create a simple (MRTG-like) HTML page and return it in a string
108 // XXX: this is here temporarily for compat only, it's preferred to use page()!
109 //
110 // function page_index($pconf)
111 // create a bare, very simple index list HTML page and return it in a string
112 // using given page config options
113 // [intended for internal use, called by page()]
114 //
115 // function page_overview($pconf, [$graph_extras])
116 // create an overview HTML page (including graphs) and return it in a string
117 // using given page config options and extra graph options (if given)
118 // [intended for internal use, called by page()]
119 //
120 // function page_simple($pconf, [$graph_extras])
121 // create a simple (MRTG-like) HTML page and return it in a string
122 // using given page config options and extra graph options (if given)
123 // [intended for internal use, called by page()]
124 //
125 // function h_page_statsArray($pconf)
126 // return array of stats to list on a page, using given page config options
127 // [intended for internal use, called by page_*()]
128 //
129 // function h_page_footer()
130 // return generic page footer
131 // [intended for internal use, called by page_*()]
132 //
133 // function text_quote($text)
134 // return a quoted/escaped text for use in rrdtool commandline text fields
b7878f4d 135
2a386f5a 136 var $rrd_file = null;
31df2e13 137 var $basename = null;
2e28e4bd 138 var $basedir = null;
b7878f4d 139
099bd59f 140 var $config_all = null;
a039a75c 141 var $config_raw = null;
142 var $config_graph = null;
143 var $config_page = null;
144
b7878f4d 145 var $rrd_fields = array();
146 var $rra_base = array();
147 var $rrd_step = 300;
148 var $rra_add_max = true;
149
150 var $status = 'unused';
151
724f6e78 152 var $mod_textdomain;
153
ebe03325 154 function rrdstat($rrdconfig, $conf_id = null) {
b7878f4d 155 // ***** init RRD stat module *****
724f6e78 156 $this->mod_textdomain = 'class_rrdstat';
157 $mod_charset = 'iso-8859-15';
158
159 bindtextdomain($this->mod_textdomain, class_exists('baseutils')?baseutils::getDir('locale'):'locale/');
160 bind_textdomain_codeset($this->mod_textdomain, $mod_charset);
161
ebe03325 162 $this->set_def($rrdconfig, $conf_id);
b7878f4d 163
b1776944 164 if (($this->status == 'unused') && !is_null($this->rrd_file)) {
2a386f5a 165 if (!is_writeable($this->rrd_file)) {
166 if (!file_exists($this->rrd_file)) {
86ff8b91 167 if (@touch($this->rrd_file)) { $this->create(); }
2a386f5a 168 else { trigger_error('RRD file can not be created', E_USER_WARNING); }
169 }
170 else {
171 if (is_readable($this->rrd_file)) { $this->status = 'readonly'; }
172 else { trigger_error('RRD file is not readable', E_USER_WARNING); }
173 }
b7878f4d 174 }
175 else {
2a386f5a 176 $this->status = 'ok';
b7878f4d 177 }
178 }
b7878f4d 179 }
180
ebe03325 181 function set_def($rrdconfig, $conf_id = null) {
182 if (is_array($rrdconfig)) {
b7878f4d 183 // we have an array in the format we like to have
ebe03325 184 $complete_conf =& $rrdconfig;
b7878f4d 185 }
186 else {
187 // we have something else (XML data?), try to generate the iinfo aray from it
ebe03325 188 $complete_conf =& $rrdconfig;
189 }
190
191 if (!is_null($conf_id)) {
192 $iinfo = isset($complete_conf[$conf_id])?$complete_conf[$conf_id]:array();
e1727e7f 193 if (isset($complete_conf['*'])) {
194 $iinfo = (array)$iinfo + (array)$complete_conf['*'];
195 if (isset($complete_conf['*']['graph'])) { $iinfo['graph'] = (array)$iinfo['graph'] + (array)$complete_conf['*']['graph']; }
196 if (isset($complete_conf['*']['page'])) { $iinfo['page'] = (array)$iinfo['page'] + (array)$complete_conf['*']['page']; }
197 }
ebe03325 198 }
199 else {
200 $iinfo = $complete_conf;
b7878f4d 201 }
202
2e28e4bd 203 if (isset($iinfo['path']) && strlen($iinfo['path'])) {
204 $this->basedir = $iinfo['path'];
205 if (substr($this->basedir, -1) != '/') { $this->basedir .= '/'; }
206 }
207
b1776944 208 if (isset($iinfo['graph-only']) && $iinfo['graph-only'] && !is_null($conf_id)) {
209 $this->basename = $conf_id;
210 $this->status = 'graphonly';
211 }
099bd59f 212 elseif (isset($iinfo['file'])) {
2e28e4bd 213 $this->rrd_file = (($iinfo['file']{0} != '/')?$this->basedir:'').$iinfo['file'];
82d064f4 214 $this->basename = basename((substr($this->rrd_file, -4) == '.rrd')?substr($this->rrd_file, 0, -4):$this->rrd_file);
b1776944 215 }
abe8eac1 216 elseif (!is_null($conf_id) && file_exists($conf_id.'.rrd')) {
2e28e4bd 217 $this->rrd_file = (($iinfo['file']{0} != '/')?$this->basedir:'').$conf_id.'.rrd';
abe8eac1 218 $this->basename = $conf_id;
219 }
b7878f4d 220 else {
099bd59f 221 $this->basename = !is_null($conf_id)?$conf_id:'xxx.unknown';
222 }
223
abe8eac1 224 if (!is_null($this->rrd_file)) {
099bd59f 225 // fields (data sources, DS)
226 // name - DS name
227 // type - one of COUNTER, GAUGE, DERIVE, ABSOLUTE
228 // heartbeat - if no sample recieved for that time, store UNKNOWN
229 // min - U (unconstrained) or minimum value
230 // max - U (unconstrained) or maximum value
231 // update - this string will be fed into eval() for updating this field
232 if (isset($iinfo['fields']) && is_array($iinfo['fields'])) {
233 $this->rrd_fields = $iinfo['fields'];
234 }
235 else {
236 $this->rrd_fields[] = array('name' => 'ds0', 'type' => 'COUNTER', 'heartbeat' => 600, 'min' => 'U', 'max' => 'U');
237 $this->rrd_fields[] = array('name' => 'ds1', 'type' => 'COUNTER', 'heartbeat' => 600, 'min' => 'U', 'max' => 'U');
238 }
b7878f4d 239
240
099bd59f 241 // MRTG-style RRD "database", see http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/tut/rrdtutorial.en.html
242 //
243 // archives (RRAs):
244 // 600 samples of 5 minutes (2 days and 2 hours)
245 // 700 samples of 30 minutes (2 days and 2 hours, plus 12.5 days)
246 // 775 samples of 2 hours (above + 50 days)
247 // 797 samples of 1 day (above + 732 days, rounded up to 797)
b7878f4d 248
099bd59f 249 $this->rrd_step = isset($iinfo['rrd_step'])?$iinfo['rrd_step']:300;
b7878f4d 250
099bd59f 251 if (isset($iinfo['rra_base']) && is_array($iinfo['rra_base'])) {
252 $this->rra_base = $iinfo['rra_base'];
253 }
254 else {
255 $this->rra_base[] = array('step' => 1, 'rows' => 600);
256 $this->rra_base[] = array('step' => 6, 'rows' => 700);
257 $this->rra_base[] = array('step' => 24, 'rows' => 775);
258 $this->rra_base[] = array('step' => 288, 'rows' => 797);
259 }
b7878f4d 260
099bd59f 261 $this->rra_add_max = isset($iinfo['rra_add_max'])?$iinfo['rra_add_max']:true;
262 }
a039a75c 263
264 if (isset($iinfo['graph'])) { $this->config_graph = $iinfo['graph']; }
265 if (isset($iinfo['page'])) { $this->config_page = $iinfo['page']; }
266 $this->config_raw = $iinfo;
099bd59f 267 $this->config_all = $complete_conf;
b7878f4d 268 }
269
270 function create() {
271 // create RRD file
272
273 // compose create command
274 $create_cmd = 'rrdtool create '.$this->rrd_file.' --step '.$this->rrd_step;
275 foreach ($this->rrd_fields as $ds) {
276 if (!isset($ds['type'])) { $ds['type'] = 'COUNTER'; }
277 if (!isset($ds['heartbeat'])) { $ds['heartbeat'] = 2*$this->rrd_step; }
278 if (!isset($ds['min'])) { $ds['min'] = 'U'; }
279 if (!isset($ds['max'])) { $ds['max'] = 'U'; }
280 $create_cmd .= ' DS:'.$ds['name'].':'.$ds['type'].':'.$ds['heartbeat'].':'.$ds['min'].':'.$ds['max'];
281 }
282 foreach ($this->rra_base as $rra) {
283 if (!isset($rra['cf'])) { $rra['cf'] = 'AVERAGE'; }
284 if (!isset($rra['xff'])) { $rra['xff'] = 0.5; }
285 if (!isset($rra['step'])) { $rra['step'] = 1; }
286 if (!isset($rra['rows'])) { $rra['rows'] = 600; }
287 $create_cmd .= ' RRA:'.$rra['cf'].':'.$rra['xff'].':'.$rra['step'].':'.$rra['rows'];
288 }
289 if ($this->rra_add_max) {
290 foreach ($this->rra_base as $rra) {
291 if (!isset($rra['cf'])) {
292 // only rows that have no CF set will be looked at here
293 $rra['cf'] = 'MAX';
294 if (!isset($rra['xff'])) { $rra['xff'] = 0.5; }
295 if (!isset($rra['step'])) { $rra['step'] = 1; }
296 if (!isset($rra['rows'])) { $rra['rows'] = 600; }
297 $create_cmd .= ' RRA:'.$rra['cf'].':'.$rra['xff'].':'.$rra['step'].':'.$rra['rows'];
298 }
299 }
300 }
b61757c1 301 $return = `$create_cmd 2>&1`;
302 if (strpos($return, 'ERROR') !== false) {
303 trigger_error($this->rrd_file.' - rrd create error: '.$return, E_USER_WARNING);
304 }
b7878f4d 305 else { $this->status = 'ok'; }
306 }
307
308 function update($upArray = null) {
309 // feed new data into RRD
633b21af 310 if ($this->status != 'ok') { trigger_error('Cannot update non-writeable file', E_USER_WARNING); return false; }
b7878f4d 311 $upvals = array();
de093632 312 if (isset($this->config_raw['update'])) {
b5e79d08 313 if (preg_match('/^\s*function\s+{(.*)}\s*$/is', $this->config_raw['update'], $regs)) {
314 $upfunc = create_function('', $regs[1]);
315 $upvals = $upfunc();
316 }
317 else {
318 $evalcode = $this->config_raw['update'];
319 if (!is_null($evalcode)) {
320 ob_start();
321 eval($evalcode);
322 $ret = ob_get_contents();
323 if (strlen($ret)) { $upvals = explode("\n", $ret); }
324 ob_end_clean();
325 }
de093632 326 }
327 }
328 else {
329 foreach ($this->rrd_fields as $ds) {
330 if (is_array($upArray) && isset($upArray[$ds['name']])) { $val = $upArray[$ds['name']]; }
331 elseif (isset($ds['update'])) {
332 $val = null; $evalcode = null;
333 if (substr($ds['update'], 0, 4) == 'val:') {
b5e79d08 334 $evalcode = 'function { return trim('.substr($ds['update'], 4).')); }';
c5db3bd5 335 }
de093632 336 elseif (substr($ds['update'], 0, 8) == 'snmp-if:') {
337 $snmphost = 'localhost'; $snmpcomm = 'public';
338 list($nix, $ifname, $valtype) = explode(':', $ds['update'], 3);
339 $iflist = explode("\n", `snmpwalk -v2c -c $snmpcomm $snmphost interfaces.ifTable.ifEntry.ifDescr`);
340 $ifnr = null;
341 foreach ($iflist as $ifdesc) {
342 if (preg_match('/ifDescr\.(\d+) = STRING: '.$ifname.'/', $ifdesc, $regs)) { $ifnr = $regs[1]; }
343 }
344 $oid = null;
345 if ($valtype == 'in') { $oid = '1.3.6.1.2.1.2.2.1.10.'.$ifnr; }
346 elseif ($valtype == 'out') { $oid = '1.3.6.1.2.1.2.2.1.16.'.$ifnr; }
347 if (!is_null($ifnr) && !is_null($oid)) {
b5e79d08 348 $evalcode = 'function { return trim(substr(strrchr(`snmpget -v2c -c '.$snmpcomm.' '.$snmphost.' '.$oid.'`,":"),1)); }';
de093632 349 }
350 }
351 else { $evalcode = $ds['update']; }
b5e79d08 352 if (preg_match('/^\s*function\s+{(.*)}\s*$/is', $evalcode, $regs)) {
353 $upfunc = create_function('', $regs[1]);
354 $val = $upfunc();
355 }
356 elseif (!is_null($evalcode)) {
de093632 357 ob_start();
358 eval($evalcode);
359 $val = ob_get_contents();
360 ob_end_clean();
c5db3bd5 361 }
362 }
de093632 363 else { $val = null; }
b5e79d08 364 $upvals[$ds['name']] = $val;
c5db3bd5 365 }
b7878f4d 366 }
b5e79d08 367 $key_names = (!is_numeric(array_shift(array_keys($upvals))));
82d064f4 368 if (in_array('L', $upvals, true)) {
f21e94d9 369 // for at least one value, we need to set the same as the last recorded value
31cb3fc4 370 $fvals = $this->fetch();
371 $rowids = array_shift($fvals);
372 $lastvals = array_shift($fvals);
f21e94d9 373 foreach (array_keys($upvals, 'L') as $akey) {
b5e79d08 374 $upvals[$akey] = $key_names?$lastvals[$akey]:$lastvals[$rowids[$akey]];
f21e94d9 375 }
376 }
eb12543d 377 $walkfunc = create_function('&$val,$key', '$val = is_numeric(trim($val))?trim($val):"U";');
378 array_walk($upvals, $walkfunc);
25b93a4d 379 $return = null;
380 if (count($upvals)) {
b5e79d08 381 $update_cmd = 'rrdtool update '.$this->rrd_file.($key_names?' --template '.implode(':', array_keys($upvals)):'').' N:'.implode(':', $upvals);
25b93a4d 382 $return = `$update_cmd 2>&1`;
383 }
b61757c1 384
385 if (strpos($return, 'ERROR') !== false) {
386 trigger_error($this->rrd_file.' - rrd update error: '.$return, E_USER_WARNING);
387 $success = false;
388 }
389 else { $success = true; }
633b21af 390 return $success;
b7878f4d 391 }
392
a039a75c 393 function fetch($cf = 'AVERAGE', $resolution = null, $start = null, $end = null) {
394 // fetch data from a RRD
395 if (!in_array($this->status, array('ok','readonly'))) { trigger_error('Error: rrd status is '.$this->status, E_USER_WARNING); return false; }
396
397 if (!in_array($cf, array('AVERAGE','MIN','MAX','LAST'))) { $cf = 'AVERAGE'; }
398 if (!is_numeric($resolution)) { $resolution = $this->rrd_step; }
399 if (!is_numeric($end)) { $end = $this->last_update(); }
400 elseif ($end < 0) { $end += $this->last_update(); }
401 $end = intval($end/$resolution)*$resolution;
402 if (!is_numeric($start)) { $start = $end; }
403 elseif ($start < 0) { $start += $end; }
404 $start = intval($start/$resolution)*$resolution;
405
406 $fetch_cmd = 'rrdtool fetch '.$this->rrd_file.' '.$cf.' --resolution '.$resolution.' --start '.$start.' --end '.$end;
407 $return = `$fetch_cmd 2>&1`;
408
409 if (strpos($return, 'ERROR') !== false) {
b61757c1 410 trigger_error($this->rrd_file.' - rrd fetch error: '.$return, E_USER_WARNING);
a039a75c 411 $fresult = false;
412 }
413 else {
414 $fresult = array();
415 $rows = explode("\n", $return);
416 $fields = preg_split('/\s+/', array_shift($rows));
417 if (array_shift($fields) == 'timestamp') {
418 $fresult[0] = $fields;
419 foreach ($rows as $row) {
420 if (strlen(trim($row))) {
421 $rvals = preg_split('/\s+/', $row);
31cb3fc4 422 $rtime = str_replace(':', '', array_shift($rvals));
a039a75c 423 $rv_array = array();
424 foreach ($rvals as $key=>$rval) {
425 $rv_array[$fields[$key]] = ($rval=='nan')?null:floatval($rval);
426 }
427 $fresult[$rtime] = $rv_array;
428 }
429 }
430 }
431 }
432 return $fresult;
433 }
b7878f4d 434
f5e899df 435 function last_update() {
436 // fetch time of last update in this RRD file
437 static $last_update;
438 if (!isset($last_update) && in_array($this->status, array('ok','readonly'))) {
439 $last_cmd = 'rrdtool last '.$this->rrd_file;
440 $return = trim(`$last_cmd 2>&1`);
441 $last_update = is_numeric($return)?$return:null;
442 }
443 return isset($last_update)?$last_update:null;
444 }
445
2c30ff69 446 function graph($timeframe = 'day', $sub = null, $extra = null) {
a039a75c 447 // create a RRD graph
448 static $gColors;
b7878f4d 449 if (!isset($gColors)) {
450 $gColors = array('#00CC00','#0000FF','#000000','#FF0000','#00FF00','#FFFF00','#FF00FF','#00FFFF','#808080','#800000','#008000','#000080','#808000','#800080','#008080','#C0C0C0');
451 }
452
b1776944 453 if (!in_array($this->status, array('ok','readonly','graphonly'))) { trigger_error('Error: rrd status is '.$this->status, E_USER_WARNING); return false; }
a039a75c 454
455 // assemble configuration
e1727e7f 456 $gconf = (array)$extra;
2c30ff69 457 if (!is_null($sub) && is_array($this->config_raw['graph.'.$sub])) {
e1727e7f 458 $gconf = $gconf + $this->config_raw['graph.'.$sub];
a039a75c 459 }
e1727e7f 460 $gconf = $gconf + (array)$this->config_graph;
a039a75c 461
462 if (isset($gconf['format']) && ($gconf['format'] == 'SVG')) {
463 $format = $gconf['format']; $fmt_ext = '.svg';
464 }
465 elseif (isset($gconf['format']) && ($gconf['format'] == 'EPS')) {
466 $format = $gconf['format']; $fmt_ext = '.eps';
467 }
468 elseif (isset($gconf['format']) && ($gconf['format'] == 'PDF')) {
469 $format = $gconf['format']; $fmt_ext = '.pdf';
470 }
471 else {
472 $format = 'PNG'; $fmt_ext = '.png';
473 }
474
475 if (isset($gconf['filename'])) { $fname = $gconf['filename']; }
31df2e13 476 else { $fname = $this->basename.(is_null($sub)?'':'-%s').'-%t%f'; }
2c30ff69 477 $fname = str_replace('%s', strval($sub), $fname);
a039a75c 478 $fname = str_replace('%t', $timeframe, $fname);
479 $fname = str_replace('%f', $fmt_ext, $fname);
480 if (substr($fname, -strlen($fmt_ext)) != $fmt_ext) { $fname .= $fmt_ext; }
2e28e4bd 481 if (isset($gconf['path']) && ($fname{0} != '/')) { $fname = $gconf['path'].'/'.$fname; }
482 if ($fname{0} != '/') { $fname = $this->basedir.$fname; }
ebe03325 483 $fname = str_replace('//', '/', $fname);
b7878f4d 484
abe8eac1 485 $graphrows = array(); $specialrows = array(); $gC = 0;
4ba56977 486 $gDefs = ''; $gGraphs = ''; $addSpecial = '';
487
488 if ($timeframe == 'day') {
a039a75c 489 $duration = isset($gconf['duration'])?$gconf['duration']:30*3600; // 30 hours
490 $slice = isset($gconf['slice'])?$gconf['slice']:300; // 5 minutes
4ba56977 491 // vertical lines at day borders
492 $addSpecial .= ' VRULE:'.strtotime(date('Y-m-d')).'#FF0000';
493 $addSpecial .= ' VRULE:'.strtotime(date('Y-m-d').' -1 day').'#FF0000';
a039a75c 494 if (!isset($gconf['grid_x'])) { $gconf['grid_x'] = 'HOUR:1:HOUR:6:HOUR:2:0:%-H'; }
4ba56977 495 }
496 elseif ($timeframe == 'week') {
a039a75c 497 $duration = isset($gconf['duration'])?$gconf['duration']:8*86400; // 8 days
498 $slice = isset($gconf['slice'])?$gconf['slice']:1800; // 30 minutes
4ba56977 499 // vertical lines at week borders
500 $addSpecial .= ' VRULE:'.strtotime(date('Y-m-d').' '.(-date('w')+1).' day').'#FF0000';
501 $addSpecial .= ' VRULE:'.strtotime(date('Y-m-d').' '.(-date('w')-6).' day').'#FF0000';
502 }
503 elseif ($timeframe == 'month') {
a039a75c 504 $duration = isset($gconf['duration'])?$gconf['duration']:36*86400; // 36 days
505 $slice = isset($gconf['slice'])?$gconf['slice']:7200; // 2 hours
4ba56977 506 // vertical lines at month borders
507 $addSpecial .= ' VRULE:'.strtotime(date('Y-m-01')).'#FF0000';
508 $addSpecial .= ' VRULE:'.strtotime(date('Y-m-01').' -1 month').'#FF0000';
509 }
510 elseif ($timeframe == 'year') {
a039a75c 511 $duration = isset($gconf['duration'])?$gconf['duration']:396*86400; // 365+31 days
512 $slice = isset($gconf['slice'])?$gconf['slice']:86400; // 1 day
4ba56977 513 // vertical lines at month borders
dfe923be 514 $addSpecial .= ' VRULE:'.strtotime(date('Y-01-01 12:00:00')).'#FF0000';
515 $addSpecial .= ' VRULE:'.strtotime(date('Y-01-01 12:00:00').' -1 year').'#FF0000';
4ba56977 516 }
517 else {
a039a75c 518 $duration = isset($gconf['duration'])?$gconf['duration']:$this->rrd_step*500; // 500 steps
519 $slice = isset($gconf['slice'])?$gconf['slice']:$this->rrd_step; // whatever our step is
4ba56977 520 }
521
a039a75c 522 if (isset($gconf['rows']) && count($gconf['rows'])) {
523 foreach ($gconf['rows'] as $erow) {
b7878f4d 524 if (isset($erow['name']) && strlen($erow['name'])) {
a039a75c 525 if (!isset($erow['scale']) && isset($gconf['scale'])) { $erow['scale'] = $gconf['scale']; }
b7878f4d 526 $grow = array();
527 $grow['dType'] = isset($erow['dType'])?$erow['dType']:'DEF';
5f42eda6 528 $grow['name'] = $erow['name'].(isset($erow['scale'])?'_tmp':'');
16cc643c 529 if ($grow['dType'] == 'DEF') {
530 $grow['dsname'] = isset($erow['dsname'])?$erow['dsname']:$erow['name'];
b1776944 531 if (isset($erow['dsfile'])) { $grow['dsfile'] = $erow['dsfile']; }
16cc643c 532 $grow['cf'] = isset($erow['cf'])?$erow['cf']:'AVERAGE';
533 }
534 else {
535 $grow['rpn_expr'] = isset($erow['rpn_expr'])?$erow['rpn_expr']:'0';
536 }
5f42eda6 537 if (isset($erow['scale'])) {
538 $graphrows[] = $grow;
539 $grow = array();
540 $grow['dType'] = 'CDEF';
541 $grow['name'] = $erow['name'];
542 $grow['rpn_expr'] = $erow['name'].'_tmp,'.$erow['scale'].',*';
543 }
b7878f4d 544 $grow['gType'] = isset($erow['gType'])?$erow['gType']:'LINE1';
545 $grow['color'] = isset($erow['color'])?$erow['color']:$gColors[$gC++];
506711ee 546 $grow['color_bg'] = isset($erow['color_bg'])?$erow['color_bg']:'';
b7878f4d 547 if ($gC >= count($gColors)) { $gC = 0; }
4ba56977 548 if (isset($erow['legend'])) {
549 $grow['legend'] = $erow['legend'];
a039a75c 550 if (!isset($gconf['show_legend'])) { $gconf['show_legend'] = true; }
4ba56977 551 }
b7878f4d 552 if (isset($erow['stack'])) { $grow['stack'] = ($erow['stack'] == true); }
fe34d2fe 553 if (isset($erow['desc'])) { $grow['desc'] = $erow['desc']; }
506711ee 554 if (isset($erow['legend_long'])) { $grow['legend_long'] = $erow['legend_long']; }
b7878f4d 555 $graphrows[] = $grow;
556 }
557 }
558 }
559 else {
e920ca68 560 foreach ($this->rrd_fields as $key=>$ds) {
b7878f4d 561 $grow = array();
562 $grow['dType'] = 'DEF';
a039a75c 563 $grow['name'] = $ds['name'].(isset($gconf['scale'])?'_tmp':'');
b7878f4d 564 $grow['dsname'] = $ds['name'];
565 $grow['cf'] = 'AVERAGE';
a039a75c 566 if (isset($gconf['scale'])) {
5f42eda6 567 $graphrows[] = $grow;
568 $grow = array();
569 $grow['dType'] = 'CDEF';
570 $grow['name'] = $ds['name'];
a039a75c 571 $grow['rpn_expr'] = $ds['name'].'_tmp,'.$gconf['scale'].',*';
5f42eda6 572 }
e920ca68 573 $grow['gType'] = ((count($this->rrd_fields)==2) && ($key==0))?'AREA':'LINE1';
b7878f4d 574 $grow['color'] = $gColors[$gC++]; if ($gC >= count($gColors)) { $gC = 0; }
75124b94 575 if (isset($ds['legend'])) {
576 $grow['legend'] = $ds['legend'];
577 if (!isset($gconf['show_legend'])) { $gconf['show_legend'] = true; }
578 }
82d064f4 579 if (isset($ds['desc'])) { $grow['desc'] = $ds['desc']; }
506711ee 580 if (isset($ds['legend_long'])) { $grow['legend_long'] = $ds['legend_long']; }
b7878f4d 581 $graphrows[] = $grow;
582 }
583 }
584
16cc643c 585 if (isset($gconf['special']) && count($gconf['special'])) {
586 foreach ($gconf['special'] as $crow) {
587 $srow = array();
588 $srow['sType'] = isset($crow['sType'])?$crow['sType']:'COMMENT';
589 if ($grow['sType'] != 'COMMENT') {
590 // XXX: use line below and remove cf var once we have rrdtol 1.2
591 // $srow['name'] = $crow['name'].(isset($crow['cf'])?'_'.$crow['cf']:'');
592 $srow['name'] = $crow['name'];
593 $srow['cf'] = isset($crow['cf'])?$crow['cf']:'AVERAGE';
594 if (isset($crow['cf'])) {
595 // XXX: use line below once we have rrdtol 1.2
596 // $graphrows[] = array('dType'=>'VDEF', 'name'=>$srow['name'].'_'.$crow['cf'], 'rpn_expr'=>$srow['name'].','.$crow['cf']);
597 }
598 elseif (isset($crow['rpn_expr'])) {
599 // XXX: does only work with rrdtool 1.2
600 $graphrows[] = array('dType'=>'VDEF', 'name'=>$srow['name'], 'rpn_expr'=>$crow['rpn_expr']);
601 }
602 }
603 $srow['text'] = isset($crow['text'])?$crow['text']:'';
604 $specialrows[] = $srow;
605 }
606 }
607 else {
ecc732d5 608 $td = $this->mod_textdomain;
16cc643c 609 foreach ($graphrows as $grow) {
610 if (isset($grow['gType']) && strlen($grow['gType'])) {
fe34d2fe 611 $textprefix = isset($grow['desc'])?$grow['desc']:(isset($grow['legend'])?$grow['legend']:$grow['name']);
16cc643c 612 // XXX: use lines below once we have rrdtol 1.2
613 // $graphrows[] = array('dType'=>'VDEF', 'name'=>$grow['name'].'_last', 'rpn_expr'=>$grow['name'].',LAST');
614 // $specialrows[] = array('sType'=>'PRINT', 'name'=>$grow['name'].'_last', 'text'=>'%3.2lf%s');
ecc732d5 615 $specialrows[] = array('sType'=>'PRINT', 'name'=>$grow['name'], 'cf'=>'MAX', 'text'=>$textprefix.'|'.dgettext($td, 'Maximum').'|%.2lf%s');
616 $specialrows[] = array('sType'=>'PRINT', 'name'=>$grow['name'], 'cf'=>'AVERAGE', 'text'=>$textprefix.'|'.dgettext($td, 'Average').'|%.2lf%s');
617 $specialrows[] = array('sType'=>'PRINT', 'name'=>$grow['name'], 'cf'=>'LAST', 'text'=>$textprefix.'|'.dgettext($td, 'Current').'|%.2lf%s');
16cc643c 618 }
619 }
620 }
621
a039a75c 622 $endtime = isset($gconf['time_end'])?$gconf['time_end']:(is_numeric($this->last_update())?$this->last_update():time());
623 $gOpts = ' --start '.($endtime-$duration).' --end '.$endtime.' --step '.$slice;
624 if (isset($gconf['label_top'])) { $gOpts .= ' --title '.$this->text_quote($gconf['label_top']); }
625 if (isset($gconf['label_y'])) { $gOpts .= ' --vertical-label '.$this->text_quote($gconf['label_y']); }
626 if (isset($gconf['width'])) { $gOpts .= ' --width '.$gconf['width']; }
627 if (isset($gconf['height'])) { $gOpts .= ' --height '.$gconf['height'];
628 if (($gconf['height'] <= 32) && isset($gconf['thumb']) && ($gconf['thumb'])) { $gOpts .= ' --only-graph'; }
4ba56977 629 }
a039a75c 630 if (!isset($gconf['show_legend']) || (!$gconf['show_legend'])) { $gOpts .= ' --no-legend'; }
d6ad10a5 631 if (isset($gconf['logarithmic']) && $gconf['logarithmic']) { $gOpts .= ' --logarithmic'; }
a039a75c 632 if (isset($gconf['min_y'])) { $gOpts .= ' --lower-limit '.$gconf['min_y']; }
633 if (isset($gconf['max_y'])) { $gOpts .= ' --upper-limit '.$gconf['max_y']; }
634 if (isset($gconf['fix_scale_y']) && $gconf['fix_scale_y']) { $gOpts .= ' --rigid'; }
635 if (isset($gconf['grid_x'])) { $gOpts .= ' --x-grid '.$gconf['grid_x']; }
636 if (isset($gconf['grid_y'])) { $gOpts .= ' --y-grid '.$gconf['grid_y']; }
d6ad10a5 637 if (isset($gconf['gridfit']) && (!$gconf['gridfit'])) { $gOpts .= ' --no-gridfit'; }
638 if (isset($gconf['calc_scale_y']) && $gconf['calc_scale_y']) { $gOpts .= ' --alt-autoscale'; }
639 if (isset($gconf['calc_max_y']) && $gconf['calc_max_y']) { $gOpts .= ' --alt-autoscale-max'; }
a039a75c 640 if (isset($gconf['units_exponent'])) { $gOpts .= ' --units-exponent '.$gconf['units_exponent']; }
641 if (isset($gconf['units_length'])) { $gOpts .= ' --units-length '.$gconf['units_length']; }
642 if (!isset($gconf['force_recreate']) || (!$gconf['force_recreate'])) { $gOpts .= ' --lazy'; }
643 if (isset($gconf['force_color']) && is_array($gconf['force_color'])) {
644 foreach ($gconf['force_color'] as $ctag=>$cval) { $gOpts .= ' --color '.$ctag.$cval; }
4ba56977 645 }
a039a75c 646 if (isset($gconf['force_font']) && is_array($gconf['force_font'])) {
647 foreach ($gconf['force_font'] as $ctag=>$cval) { $gOpts .= ' --font '.$ctag.$cval; }
4ba56977 648 }
a039a75c 649 if (isset($gconf['units_binary']) && $gconf['units_binary']) { $gOpts .= ' --base 1024'; }
4ba56977 650
b7878f4d 651 foreach ($graphrows as $grow) {
4ba56977 652 if (isset($grow['dType']) && strlen($grow['dType'])) {
653 $gDefs .= ' '.$grow['dType'].':'.$grow['name'].'=';
b1776944 654 if ($grow['dType'] == 'DEF') {
655 $gDefs .= isset($grow['dsfile'])?$grow['dsfile']:$this->rrd_file;
656 $gDefs .= ':'.$grow['dsname'].':'.$grow['cf'];
657 }
658 else { $gDefs .= $grow['rpn_expr']; }
4ba56977 659 }
660 if (isset($grow['gType']) && strlen($grow['gType'])) {
16cc643c 661 // XXX: change from STACK type to STACK flag once we have rrdtool 1.2
4ba56977 662 if (isset($grow['stack']) && $grow['stack']) { $grow['gType'] = 'STACK'; }
663 $gGraphs .= ' '.$grow['gType'].':'.$grow['name'].$grow['color'];
664 if (isset($grow['legend'])) { $gGraphs .= ':'.$this->text_quote($grow['legend']); }
16cc643c 665 // XXX: remove above STACK if-command and uncomment the one below once we have rrdtool 1.2
4ba56977 666 //if (isset($grow['stack']) && $grow['stack']) { $gGraphs .= ':STACK'; }
667 }
b7878f4d 668 }
669
16cc643c 670 foreach ($specialrows as $srow) {
671 $addSpecial .= ' '.$srow['sType'];
672 // XXX: eliminate cf once we have rrdtool 1.2
673 // $addSpecial .= ($grow['sType']!='COMMENT')?':'.$grow['name']:'');
674 $addSpecial .= (($srow['sType']!='COMMENT')?':'.$srow['name'].':'.$srow['cf']:'');
675 $addSpecial .= ':'.$this->text_quote($srow['text']);
676 }
677
5f42eda6 678 $graph_cmd = 'rrdtool graph '.str_replace('*', '\*', $fname.$gOpts.$gDefs.$gGraphs.$addSpecial);
b7878f4d 679 $return = `$graph_cmd 2>&1`;
680
b7878f4d 681 if (strpos($return, 'ERROR') !== false) {
b61757c1 682 trigger_error($this->rrd_file.' - rrd graph error: '.$return, E_USER_WARNING);
16cc643c 683 $return = $graph_cmd."\n\n".$return;
b7878f4d 684 }
506711ee 685 $legendlines = '';
686 foreach ($graphrows as $grow) {
687 $legendline = isset($grow['desc'])?$grow['desc']:(isset($grow['legend'])?$grow['legend']:$grow['name']);
688 $legendline .= '|'.$grow['color'];
689 $legendline .= '|'.(isset($grow['color_bg'])?$grow['color_bg']:'');
690 $legendline .= '|'.(isset($grow['legend_long'])?$grow['legend_long']:'');
691 $legendlines .= 'legend:'.$legendline."\n";
692 }
693 $return = 'file:'.$fname."\n".$legendlines.$return;
a039a75c 694 return $return;
b7878f4d 695 }
696
f5e899df 697 function graph_plus($timeframe = 'day', $sub = null, $extra = null) {
698 // create a RRD graph and return meta info as a ready-to-use array
506711ee 699 $gmeta = array('filename'=>null,'legends_long'=>false,'default_colorize'=>false);
f5e899df 700 $ret = $this->graph($timeframe, $sub, $extra);
701 if (strpos($ret, "\n\n") !== false) { $gmeta['graph_cmd'] = substr($ret, 0, strpos($ret, "\n\n")); $ret = substr($ret, strpos($ret, "\n\n")+2); }
702 else { $gmeta['graph_cmd'] = null; }
703 $grout = explode("\n", $ret);
704 foreach ($grout as $gline) {
705 if (preg_match('/^file:(.+)$/', $gline, $regs)) {
706 $gmeta['filename'] = $regs[1];
707 }
506711ee 708 elseif (preg_match('/^legend:([^\|]+)\|([^|]+)\|([^\|]*)\|(.*)$/', $gline, $regs)) {
709 $gmeta['legend'][$regs[1]] = array('color'=>$regs[2], 'color_bg'=>$regs[3], 'desc_long'=>$regs[4]);
710 if (strlen($regs[4])) { $gmeta['legends_long'] = true; }
711 if (strlen($regs[3]) || strlen($regs[4])) { $gmeta['default_colorize'] = true; }
712 }
f5e899df 713 elseif (preg_match('/^(\d+)x(\d+)$/', $gline, $regs)) {
714 $gmeta['width'] = $regs[1]; $gmeta['height'] = $regs[2];
715 }
716 elseif (preg_match('/^([^\|]+)\|([^|]+)\|([^\|]*)$/', $gline, $regs)) {
717 $gmeta['data'][$regs[1]][$regs[2]] = $regs[3];
718 }
719 elseif (preg_match('/^([^\|]+)\|([^\|]*)$/', $gline, $regs)) {
720 $gmeta['var'][$regs[1]] = $regs[2];
721 }
722 elseif (strlen(trim($gline))) {
723 $gmeta['info'][] = $gline;
724 }
725 }
726 if (is_null($gmeta['filename'])) {
727 $gmeta['filename'] = $this->basename.(!is_null($sub)?'-'.$sub:'').'-'.$timeframe.'.png';
728 }
729 return $gmeta;
730 }
731
099bd59f 732 function page($sub = null, $page_extras = null, $graph_extras = null) {
733 // create a (HTML) page and return it in a string
734
735 // assemble configuration
736 $pconf = (array)$page_extras;
737 if (!is_null($sub) && is_array($this->config_raw['page.'.$sub])) {
738 $pconf = $pconf + $this->config_raw['page.'.$sub];
739 }
740 $pconf = $pconf + (array)$this->config_page;
741
742 $return = null;
82d064f4 743 switch (@$pconf['type']) {
099bd59f 744 case 'index':
745 $return = $this->page_index($pconf);
746 break;
747 case 'overview':
748 $return = $this->page_overview($pconf, $graph_extras);
749 break;
750 case 'simple':
751 default:
752 $return = $this->page_simple($pconf, $graph_extras);
753 break;
754 }
755 return $return;
756 }
757
2c30ff69 758 function simple_html($sub = null, $page_extras = null, $graph_extras = null) {
b7878f4d 759 // create a simple (MRTG-like) HTML page and return it in a string
099bd59f 760 // XXX: this is here temporarily for compat only, it's preferred to use page()!
a039a75c 761
762 // assemble configuration
e1727e7f 763 $pconf = (array)$page_extras;
2c30ff69 764 if (!is_null($sub) && is_array($this->config_raw['page.'.$sub])) {
e1727e7f 765 $pconf = $pconf + $this->config_raw['page.'.$sub];
a039a75c 766 }
e1727e7f 767 $pconf = $pconf + (array)$this->config_page;
a039a75c 768
099bd59f 769 return $this->page_simple($pconf, $graph_extras);
770 }
771
772 function page_index($pconf) {
773 // create a bare, very simple index list HTML page and return it in a string
724f6e78 774 $td = $this->mod_textdomain;
775 $ptitle = isset($pconf['title_page'])?$pconf['title_page']:dgettext($td, 'RRD statistics index');
099bd59f 776
777 $out = '<html><head>';
778 $out .= '<title>'.$ptitle.'</title>';
779 $out .= '<style>';
780 if (isset($pconf['style_base'])) { $out .= $pconf['style_base']; }
781 else {
782 $out .= 'h1 { font-weight: bold; font-size: 1.5em; }';
783 $out .= '.footer { font-size: 0.75em; margin: 0.5em 0; }';
784 $out .= 'li.scanfile { font-style: italic; }';
785 }
786 if (isset($pconf['style'])) { $out .= $pconf['style']; }
787 $out .= '</style>';
788 $out .= '</head>';
789 $out .= '<body>';
790
791 $out .= '<h1>'.$ptitle.'</h1>';
f5e899df 792 if (isset($pconf['text_intro']) && strlen($pconf['text_intro'])) {
793 $out .= '<p class="intro">'.$pconf['text_intro'].'</p>';
099bd59f 794 }
f5e899df 795 elseif (!isset($pconf['text_intro'])) {
724f6e78 796 $out .= '<p class="intro">'.dgettext($td, 'The following RRD stats are available:').'</p>';
099bd59f 797 }
f5e899df 798
799 $stats = $this->h_page_statsArray($pconf);
800
82d064f4 801 if (isset($pconf['stats_url'])) { $sURL_base = $pconf['stats_url']; }
802 else { $sURL_base = '?stat=%i%a'; }
803
804 if (isset($pconf['stats_url_add'])) { $sURL_add = $pconf['stats_url_add']; }
805 else { $sURL_add = '&sub=%s'; }
806
f5e899df 807 $out .= '<ul class="indexlist">';
099bd59f 808 foreach ($stats as $stat) {
809 $out .= '<li'.(isset($stat['class'])?' class="'.$stat['class'].'"':'').'>';
82d064f4 810 $sURL = str_replace('%i', $stat['name'], $sURL_base);
811 $sURL = str_replace('%a', '', $sURL);
812 $sURL = str_replace('%s', '', $sURL);
813 $out .= '<a href="'.$sURL.'">'.$stat['name'].'</a>';
099bd59f 814 if (isset($stat['sub']) && count($stat['sub'])) {
815 $sprt = array();
82d064f4 816 foreach ($stat['sub'] as $ssub) {
817 $sURL = str_replace('%i', $stat['name'], $sURL_base);
818 $sURL = str_replace('%a', $sURL_add, $sURL);
819 $sURL = str_replace('%s', $ssub, $sURL);
820 $sprt[] = '<a href="'.$sURL.'">'.$ssub.'</a>';
821 }
099bd59f 822 $out .= ' <span="subs">('.implode(', ', $sprt).')</span>';
823 }
824 $out .= '</li>';
825 }
826 $out .= '</ul>';
827
f5e899df 828 $out .= $this->h_page_footer();
099bd59f 829 $out .= '</body></html>';
099bd59f 830 return $out;
831 }
832
833 function page_overview($pconf, $graph_extras = null) {
834 // create an overview HTML page (including graphs) and return it in a string
724f6e78 835 $td = $this->mod_textdomain;
836 $ptitle = isset($pconf['title_page'])?$pconf['title_page']:dgettext($td, 'RRD statistics overview');
f5e899df 837
838 $out = '<html><head>';
839 $out .= '<title>'.$ptitle.'</title>';
840 $out .= '<style>';
841 if (isset($pconf['style_base'])) { $out .= $pconf['style_base']; }
842 else {
843 $out .= 'h1 { font-weight: bold; font-size: 1.5em; }';
844 $out .= 'h2 { font-weight: bold; font-size: 1em; margin: 0.5em 0; }';
845 $out .= '.footer { font-size: 0.75em; margin: 0.5em 0; }';
846 $out .= 'img.rrdgraph { border: none; }';
847 }
848 if (isset($pconf['style'])) { $out .= $pconf['style']; }
849 $out .= '</style>';
850 $out .= '</head>';
851 $out .= '<body>';
852
853 $out .= '<h1>'.$ptitle.'</h1>';
d6ad10a5 854 if (isset($pconf['text_intro']) && strlen($pconf['text_intro'])) { $out .= '<p class="intro">'.$pconf['text_intro'].'</p>'; }
f5e899df 855
856 $stats = $this->h_page_statsArray($pconf);
857
ecc732d5 858 if (isset($pconf['stats_url'])) { $sURL_base = $pconf['stats_url']; }
859 else { $sURL_base = '?stat=%i%a'; }
860
861 if (isset($pconf['stats_url_add'])) { $sURL_add = $pconf['stats_url_add']; }
862 else { $sURL_add = '&sub=%s'; }
863
f5e899df 864 $num_rows = is_numeric($pconf['num_rows'])?$pconf['num_rows']:2;
865 $num_cols = ceil(count($stats)/$num_rows);
866
867 $out .= '<table class="overview">';
868 for ($col = 0; $col < $num_cols; $col++) {
869 $out .= '<tr>';
870 for ($row = 0; $row < $num_rows; $row++) {
871 $idx = $col * $num_rows + $row;
872 $out .= '<td>';
873 if ($idx < count($stats)) {
874 list($sname, $s_psub) = explode('|', $stats[$idx]['name'], 2);
875 $s_psname = 'page'.(isset($s_psub)?'.'.$s_psub:'');
876 $g_sub = $this->config_all[$sname][$s_psname]['graph_sub'];
877
878 if (isset($this->config_all[$sname][$s_psname]['title_page'])) {
879 $s_ptitle = $this->config_all[$sname][$s_psname]['title_page'];
880 }
881 elseif (isset($this->config_all[$sname]['page']['title_page'])) {
882 $s_ptitle = $this->config_all[$sname]['page']['title_page'];
883 }
884 else {
e2da2e9f 885 $s_ptitle = isset($s_psub)?sprintf(dgettext($td, '%s (%s) statistics'), $sname, $s_psub):sprintf(dgettext($td, '%s statistics'), $sname);
f5e899df 886 }
887 if (!isset($pconf['hide_titles']) || !$pconf['hide_titles']) {
888 $out .= '<h2>'.$s_ptitle.'</h2>';
889 }
890
891 $s_rrd = new rrdstat($this->config_all, $sname);
892 if (in_array($s_rrd->status, array('ok','readonly','graphonly'))) {
893 $tframe = isset($pconf['graph_timeframe'])?$pconf['graph_timeframe']:'day';
894 $gmeta = $s_rrd->graph_plus($tframe, $g_sub);
895 if (isset($pconf['graph_url'])) {
896 $gURL = $pconf['graph_url'];
ecc732d5 897 $gURL = str_replace('%f', basename($gmeta['filename']), $gURL);
898 $gURL = str_replace('%p', $gmeta['filename'], $gURL);
f5e899df 899 if (substr($gURL, -1) == '/') { $gURL .= $gmeta['filename']; }
900 }
901 else {
902 $gURL = $gmeta['filename'];
903 }
ecc732d5 904 $sURL = str_replace('%i', $sname, $sURL_base);
905 $sURL = str_replace('%a', isset($s_psub)?$sURL_add:'', $sURL);
506711ee 906 $sURL = str_replace('%s', isset($s_psub)?$s_psub:'', $sURL);
ecc732d5 907 $out .= '<a href="'.$sURL.'">';
f5e899df 908 $out .= '<img src="'.$gURL.'"';
909 $out .= ' alt="'.$s_rrd->basename.(!is_null($g_sub)?' - '.$g_sub:'').' - '.$tframe.'" class="rrdgraph"';
ecc732d5 910 if (isset($gmeta['width']) && isset($gmeta['height'])) { $out .= ' style="width:'.$gmeta['width'].'px;height:'.$gmeta['height'].'px;"'; }
911 $out .= '></a>';
f5e899df 912 }
913 else {
724f6e78 914 $out .= sprintf(dgettext($td, 'RRD error: status is "%s"'), $s_rrd->status);
f5e899df 915 }
916 }
917 else {
918 $out .= '&nbsp;';
919 }
920 $out .= '</td>';
921 }
922 $out .= '</tr>';
923 }
924 $out .= '</table>';
925
926 $out .= $this->h_page_footer();
927 $out .= '</body></html>';
928 return $out;
099bd59f 929 }
930
931 function page_simple($pconf, $graph_extras = null) {
932 // create a simple (MRTG-like) HTML page and return it in a string
724f6e78 933 $td = $this->mod_textdomain;
099bd59f 934
724f6e78 935 $ptitle = isset($pconf['title_page'])?$pconf['title_page']:sprintf(dgettext($td, '%s - RRD statistics'),$this->basename);
16cc643c 936 $gtitle = array();
724f6e78 937 $gtitle['day'] = isset($pconf['title_day'])?$pconf['title_day']:dgettext($td, 'Day overview (scaling 5 minutes)');
938 $gtitle['week'] = isset($pconf['title_week'])?$pconf['title_week']:dgettext($td, 'Week overview (scaling 30 minutes)');
939 $gtitle['month'] = isset($pconf['title_month'])?$pconf['title_month']:dgettext($td, 'Month overview (scaling 2 hours)');
940 $gtitle['year'] = isset($pconf['title_year'])?$pconf['title_year']:dgettext($td, 'Year overview (scaling 1 day)');
506711ee 941 $ltitle = isset($pconf['title_legend'])?$pconf['title_legend']:dgettext($td, 'Legend:');
b7878f4d 942
16cc643c 943 $out = '<html><head>';
944 $out .= '<title>'.$ptitle.'</title>';
945 $out .= '<style>';
946 if (isset($pconf['style_base'])) { $out .= $pconf['style_base']; }
947 else {
948 $out .= 'h1 { font-weight: bold; font-size: 1.5em; }';
949 $out .= 'h2 { font-weight: bold; font-size: 1em; }';
950 $out .= '.gdata, .gvar, .ginfo { font-size: 0.75em; margin: 0.5em 0; }';
506711ee 951 $out .= 'table.gdata, table.legend { border: 1px solid gray; border-collapse: collapse; }';
952 $out .= 'table.gdata td, table.gdata th, ';
953 $out .= 'table.legend td, table.legend th { border: 1px solid gray; padding: 0.1em 0.2em; }';
954 $out .= 'div.legend { font-size: 0.75em; margin: 0.5em 0; }';
955 $out .= 'div.legend p { margin: 0; }';
c5db3bd5 956 $out .= '.footer { font-size: 0.75em; margin: 0.5em 0; }';
16cc643c 957 }
958 if (isset($pconf['style'])) { $out .= $pconf['style']; }
959 $out .= '</style>';
960 $out .= '</head>';
961 $out .= '<body>';
962
963 $out .= '<h1>'.$ptitle.'</h1>';
d6ad10a5 964 if (isset($pconf['text_intro']) && strlen($pconf['text_intro'])) { $out .= '<p class="intro">'.$pconf['text_intro'].'</p>'; }
2c30ff69 965 if (!isset($pconf['show_update']) || $pconf['show_update']) {
724f6e78 966 $out .= '<p class="last_up">';
967 if (is_null($this->last_update())) { $up_time = dgettext($td, 'unknown'); }
968 elseif (class_exists('baseutils')) { $up_time = baseutils::dateFormat($this->last_update(), 'short'); }
969 else { $up_time = date('Y-m-d H:i:s', $this->last_update()); }
970 $out .= sprintf(dgettext($td, 'Last Update: %s'), $up_time);
971 $out .= '</p>';
2c30ff69 972 }
4ba56977 973
f5e899df 974 $g_sub = isset($pconf['graph_sub'])?$pconf['graph_sub']:null;
b1776944 975 if (in_array($this->status, array('ok','readonly','graphonly'))) {
b7878f4d 976 foreach (array('day','week','month','year') as $tframe) {
f5e899df 977 $gmeta = $this->graph_plus($tframe, $g_sub, $graph_extras);
253ead9f 978 if (isset($pconf['graph_url'])) {
979 $gURL = $pconf['graph_url'];
82d064f4 980 $gURL = str_replace('%f', basename($gmeta['filename']), $gURL);
981 $gURL = str_replace('%p', $gmeta['filename'], $gURL);
f5e899df 982 if (substr($gURL, -1) == '/') { $gURL .= $gmeta['filename']; }
253ead9f 983 }
984 else {
f5e899df 985 $gURL = $gmeta['filename'];
253ead9f 986 }
16cc643c 987 $out .= '<div class="'.$tframe.'">';
b25db622 988// $out .= '<p>'.nl2br($ret).'</p>';
16cc643c 989 $out .= '<h2>'.$gtitle[$tframe].'</h2>';
253ead9f 990 $out .= '<img src="'.$gURL.'"';
31df2e13 991 $out .= ' alt="'.$this->basename.(!is_null($g_sub)?' - '.$g_sub:'').' - '.$tframe.'" class="rrdgraph"';
82d064f4 992 if (isset($gmeta['width']) && isset($gmeta['height'])) { $out .= ' style="width:'.$gmeta['width'].'px;height:'.$gmeta['height'].'px;"'; }
993 $out .= '>';
506711ee 994 $colorize_data = (isset($pconf['data_colorize']) && $pconf['data_colorize']) || (!isset($pconf['data_colorize']) && $gmeta['default_colorize']);
16cc643c 995 if (isset($gmeta['data']) && count($gmeta['data'])) {
996 $out .= '<table class="gdata">';
997 foreach ($gmeta['data'] as $field=>$gdata) {
506711ee 998 $out .= '<tr><th';
999 if ($colorize_data && isset($gmeta['legend'][$field])) {
1000 $out .= ' style="color:'.$gmeta['legend'][$field]['color'].';';
1001 if (strlen($gmeta['legend'][$field]['color_bg'])) {
1002 $out .= 'background-color:'.$gmeta['legend'][$field]['color_bg'].';';
1003 }
1004 $out .= '"';
1005 }
1006 $out .= '>'.$field.'</th>';
16cc643c 1007 foreach ($gdata as $gkey=>$gval) {
1008 $out .= '<td><span class="gkey">'.$gkey.': </span>'.$gval.'</td>';
1009 }
1010 $out .= '</tr>';
1011 }
1012 $out .= '</table>';
1013 }
1014 if (isset($gmeta['var']) && count($gmeta['var'])) {
1015 foreach ($gmeta['var'] as $gkey=>$gval) {
1016 $out .= '<p class="gvar"><span class="gkey">'.$gkey.': </span>'.$gval.'</p>';
1017 }
1018 }
1019 if (isset($gmeta['info']) && count($gmeta['info'])) {
1020 foreach ($gmeta['info'] as $gval) {
1021 $out .= '<p class="ginfo">'.$gval.'</p>';
1022 }
1023 }
f5e899df 1024 $out .= '</div>';
b7878f4d 1025 }
506711ee 1026 if ($gmeta['legends_long'] && (!isset($pconf['show_legend']) || $pconf['show_legend'])) {
1027 $out .= '<div class="legend">';
1028 $out .= '<p>'.$ltitle.'</p>';
1029 $out .= '<table class="legend">';
1030 foreach ($gmeta['legend'] as $field=>$legend) {
d6ad10a5 1031 if (strlen($legend['desc_long'])) {
1032 $out .= '<tr><th';
1033 if ($colorize_data && isset($gmeta['legend'][$field])) {
1034 $out .= ' style="color:'.$gmeta['legend'][$field]['color'].';';
1035 if (strlen($gmeta['legend'][$field]['color_bg'])) {
1036 $out .= 'background-color:'.$gmeta['legend'][$field]['color_bg'].';';
1037 }
1038 $out .= '"';
506711ee 1039 }
d6ad10a5 1040 $out .= '>'.$field.'</th>';
1041 $out .= '<td>'.$legend['desc_long'].'</td>';
1042 $out .= '</tr>';
506711ee 1043 }
506711ee 1044 }
1045 $out .= '</table>';
1046 $out .= '</div>';
1047 }
b7878f4d 1048 }
1049 else {
724f6e78 1050 $out .= sprintf(dgettext($td, 'RRD error: status is "%s"'), $this->status);
b7878f4d 1051 }
c5db3bd5 1052
f5e899df 1053 $out .= $this->h_page_footer();
16cc643c 1054 $out .= '</body></html>';
b7878f4d 1055 return $out;
1056 }
1057
f5e899df 1058 function h_page_statsArray($pconf) {
1059 // return array of stats to list on a page
1060 $stats = array();
1061 $snames = array(); $s_exclude = array(); $sfiles = array();
1062 if (isset($pconf['index_ids'])) {
1063 foreach (explode(',', $pconf['index_ids']) as $iid) {
1064 if ($iid{0} == '-') { $s_exclude[] = substr($iid, 1); }
1065 else { $snames[] = $iid; }
1066 }
4ba56977 1067 }
f5e899df 1068 if (!isset($pconf['scan_config']) || $pconf['scan_config']) {
1069 foreach ($this->config_all as $iname=>$rinfo) {
1070 if (($iname != '*') && !(isset($rinfo['hidden']) && $rinfo['hidden']) &&
1071 !(in_array($iname, $snames)) && !(in_array($iname, $s_exclude))) {
1072 $snames[] = $iname;
1073 }
1074 }
1075 }
1076 foreach ($snames as $iname) {
1077 $newstat = array('name'=>$iname);
1078 $sfiles[] = isset($this->config_all[$iname]['file'])?$this->config_all[$iname]['file']:$iname.'.rrd';
1079 if (is_array($this->config_all[$iname])) {
1080 foreach ($this->config_all[$iname] as $key=>$val) {
1081 if (substr($key, 0, 5) == 'page.') { $newstat['sub'][] = substr($key, 5); }
1082 }
1083 }
1084 $stats[] = $newstat;
1085 }
1086 if (isset($pconf['scan_files']) && $pconf['scan_files']) {
1087 $rrdfiles = glob('*.rrd');
1088 foreach ($rrdfiles as $rrdfile) {
1089 $iname = (substr($rrdfile, -4) == '.rrd')?substr($rrdfile, 0, -4):$rrdfile;
1090 if (!in_array($rrdfile, $sfiles) && !(in_array($iname, $s_exclude))) {
1091 $stats[] = array('name'=>$iname, 'class'=>'scanfile');
1092 }
1093 }
1094 }
1095 return $stats;
1096 }
1097
1098 function h_page_footer() {
1099 // return generic page footer
1100 $out = '<p class="footer">';
724f6e78 1101 $out .= sprintf(dgettext($this->mod_textdomain, 'Statistics created with %s using a library created by %s.'),
1102 '<a href="http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/">RRDtool</a>',
1103 '<a href="http://www.kairo.at/">KaiRo.at</a>');
f5e899df 1104 $out .= '</p>';
1105 return $out;
4ba56977 1106 }
1107
b7878f4d 1108 function text_quote($text) { return '"'.str_replace('"', '\"', str_replace(':', '\:', $text)).'"'; }
1109}
1110?>