forked from glaszig/snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvnstat.php
74 lines (60 loc) · 1.87 KB
/
vnstat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/**
*
* vnstat web script
* Copyright (c) [email protected]
*
*
* USAGE
*
* call this script as follows:
* vnstat.php?i=<interface-name>&c=<command>
* where <interface-name> is to be substituted with one of the monitored interfaces
* and <command> with one of the allowed commands, respectively
*
*/
/**
*
* CONFIGURATION
*
* COMMANDS => space-seperated list of available commands
* USE_CACHE => instructs vnstati to use built-in caching functionallity
* CACHE_TIME => time to cache an image in minutes
* CACHE_DIR => directory to store the cached files (defaults to /tmp)
*
*/
define('COMMANDS', 's d m hs vs t h');
define('USE_CACHE', true);
define('CACHE_TIME', 5);
#define('CACHE_DIR', '/tmp');
### LEAVE THE FOLLOWING UNTOUCHED
// sanity checks
if(!in_array($_GET['c'], explode(' ', COMMANDS)))
die('invalid command.');
// default output file
$outfile = '-'; // stdout
// check for cache dir
if(constant('USE_CACHE')):
defined('CACHE_DIR') or define('CACHE_DIR', '/tmp');
defined('CACHE_TIME') or define('CACHE_TIME', 5);
if(!is_dir(CACHE_DIR)) die('cache directory doesn\'t exist.');
if(!is_writable(CACHE_DIR)) die('can\'t write to cache directory.');
// create a file name
$outfile = CACHE_DIR.'/vnstati-'.md5($_GET['i'].$_GET['c']).'.png';
endif;
// do the math
#$output = shell_exec('/usr/local/bin/vnstati -nh -ne -c '.intval(CACHE_TIME).' -'.$_GET['c'].' -o '.$outfile.' -i '.$_GET['i']);
exec('/usr/local/bin/vnstati -nh -ne -c '.intval(CACHE_TIME).' -'.$_GET['c'].' -o '.$outfile.' -i '.$_GET['i'], $output, $status);
if($status == 0) {
// put image through
header('Content-Type: image/png');
header('Content-Disposition: inline; filename=vnstat-'.$_GET['i'].'.png');
if(USE_CACHE)
readfile($outfile);
else
echo $output;
} else {
$output = join("\n", $output);
$output = trim($output);
echo "$output";
}