2011-06-07 01:22:41 -04:00
|
|
|
<?php
|
|
|
|
require 'info.php';
|
|
|
|
|
|
|
|
function rrdtool_build($action, $settings) {
|
|
|
|
// Possible values for $action:
|
|
|
|
// - all (rebuild everything, initialization)
|
|
|
|
// - news (news has been updated)
|
|
|
|
// - boards (board list changed)
|
|
|
|
// - post (a post has been made)
|
|
|
|
|
|
|
|
$b = new TB_RRDTool();
|
|
|
|
$b->build($action, $settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap functions in a class so they don't interfere with normal Tinyboard operations
|
|
|
|
class TB_RRDTool {
|
|
|
|
public function build($action, $settings) {
|
2011-06-07 09:59:46 -04:00
|
|
|
global $config, $_theme, $argv;
|
2011-06-07 01:22:41 -04:00
|
|
|
|
|
|
|
$this->boards = explode(' ', $settings['boards']);
|
2011-06-07 09:59:46 -04:00
|
|
|
$this->spans = Array('minute', 'hour', 'day', 'week', 'month', 'year');
|
2011-06-07 07:03:22 -04:00
|
|
|
$this->interval = 120;
|
2011-06-07 01:42:27 -04:00
|
|
|
$this->height = 150;
|
|
|
|
$this->width = 700;
|
2011-06-07 10:11:14 -04:00
|
|
|
// exclude boards from the "combiend" graph
|
|
|
|
$this->combined_exclude = Array('dome9001', 'mod', 'test');
|
2011-06-07 01:22:41 -04:00
|
|
|
|
|
|
|
if($action == 'cron') {
|
|
|
|
if(!file_exists($settings['path']))
|
|
|
|
mkdir($settings['path']);
|
2011-06-07 03:18:08 -04:00
|
|
|
if(!file_exists($settings['images']))
|
|
|
|
mkdir($settings['images']);
|
2011-06-07 01:22:41 -04:00
|
|
|
|
|
|
|
foreach($this->boards as &$board) {
|
|
|
|
$file = $settings['path'] . '/' . $board . '.rrd';
|
|
|
|
|
|
|
|
if(!file_exists($file)) {
|
|
|
|
// Create graph
|
|
|
|
if(!rrd_create($file, Array(
|
|
|
|
'-s ' . $this->interval,
|
2011-06-07 08:08:40 -04:00
|
|
|
'DS:posts:GAUGE:' . ($this->interval*2) . ':0:10000',
|
|
|
|
|
|
|
|
'RRA:MIN:0:1:' . (3600/$this->interval), // hour
|
2011-06-07 09:59:46 -04:00
|
|
|
'RRA:MIN:0:1:' . (86400/$this->interval), // day
|
2011-06-07 10:06:48 -04:00
|
|
|
'RRA:MIN:0:1:' . (604800/$this->interval), // week
|
2011-06-07 08:08:40 -04:00
|
|
|
'RRA:MIN:0:60:' . (2592000/$this->interval), // month
|
|
|
|
'RRA:MIN:0:1440:' . (31536000/$this->interval), // year
|
|
|
|
|
|
|
|
'RRA:AVERAGE:0:1:' . (3600/$this->interval), // hour
|
2011-06-07 09:59:46 -04:00
|
|
|
'RRA:AVERAGE:0:1:' . (86400/$this->interval), // day
|
2011-06-07 10:06:48 -04:00
|
|
|
'RRA:AVERAGE:0:1:' . (604800/$this->interval), // week
|
2011-06-07 08:08:40 -04:00
|
|
|
'RRA:AVERAGE:0:60:' . (2592000/$this->interval), // month
|
|
|
|
'RRA:AVERAGE:0:1440:' . (31536000/$this->interval), // year
|
|
|
|
|
|
|
|
'RRA:MAX:0:1:' . (3600/$this->interval), // hour
|
2011-06-07 09:59:46 -04:00
|
|
|
'RRA:MAX:0:1:' . (86400/$this->interval), // day
|
2011-06-07 10:06:48 -04:00
|
|
|
'RRA:MAX:0:1:' . (604800/$this->interval), // week
|
2011-06-07 08:08:40 -04:00
|
|
|
'RRA:MAX:0:60:' . (2592000/$this->interval), // month
|
|
|
|
'RRA:MAX:0:1440:' . (31536000/$this->interval), // year
|
|
|
|
)))
|
2011-06-07 01:22:41 -04:00
|
|
|
error('RRDtool failed: ' . htmlentities(rrd_error()));
|
|
|
|
}
|
|
|
|
|
2011-06-07 09:59:46 -04:00
|
|
|
// debug just the graphing (not updating) with the --debug switch
|
|
|
|
if(!isset($argv[1]) || $argv[1] != '--debug') {
|
|
|
|
// Update graph
|
|
|
|
$query = prepare(sprintf("SELECT COUNT(*) AS `count` FROM `posts_%s` WHERE `time` >= :time", $board));
|
|
|
|
$query->bindValue(':time', time() - $this->interval, PDO::PARAM_INT);
|
|
|
|
$query->execute() or error(db_error($query));
|
|
|
|
$count = $query->fetch();
|
|
|
|
$count = $count['count'];
|
2011-06-07 01:42:27 -04:00
|
|
|
|
2011-06-07 09:59:46 -04:00
|
|
|
if(!rrd_update($file, Array(
|
|
|
|
'-t',
|
|
|
|
'posts',
|
|
|
|
'N:' . $count)))
|
|
|
|
error('RRDtool failed: ' . htmlentities(rrd_error()));
|
|
|
|
}
|
2011-06-07 01:42:27 -04:00
|
|
|
|
2011-06-07 03:18:08 -04:00
|
|
|
foreach($this->spans as &$span) {
|
|
|
|
// Graph graph
|
2011-06-07 03:23:10 -04:00
|
|
|
if(!rrd_graph($settings['images'] . '/' . $board . '-' . $span . '.png', Array(
|
2011-06-07 03:18:08 -04:00
|
|
|
'-s -1' . $span,
|
2011-06-07 10:21:32 -04:00
|
|
|
'-t Posts on ' . sprintf($config['board_abbreviation'], $board) .' this ' . $span,
|
2011-06-07 08:08:40 -04:00
|
|
|
'--lazy',
|
2011-06-07 03:18:08 -04:00
|
|
|
'-l 0',
|
|
|
|
'-h', $this->height, '-w', $this->width,
|
|
|
|
'-a', 'PNG',
|
2011-06-07 07:00:10 -04:00
|
|
|
'-R', 'mono',
|
2011-06-07 03:18:08 -04:00
|
|
|
'-W', 'Powered by Tinyboard',
|
2011-06-07 07:00:10 -04:00
|
|
|
'-E',
|
|
|
|
'-X', '0',
|
|
|
|
'-Y',
|
2011-06-07 03:18:08 -04:00
|
|
|
'-v posts/minute',
|
|
|
|
'DEF:posts=' . $file . ':posts:AVERAGE',
|
2011-06-07 07:00:10 -04:00
|
|
|
'LINE2:posts#663300:Posts',
|
|
|
|
'GPRINT:posts:MAX:Max\\: %5.2lf',
|
|
|
|
'GPRINT:posts:AVERAGE:Average\\: %5.2lf',
|
|
|
|
'GPRINT:posts:LAST:Current\\: %5.2lf posts/min',
|
2011-06-07 03:18:08 -04:00
|
|
|
'HRULE:0#000000')))
|
|
|
|
error('RRDtool failed: ' . htmlentities(rrd_error()));
|
|
|
|
}
|
2011-06-07 01:22:41 -04:00
|
|
|
}
|
2011-06-07 09:59:46 -04:00
|
|
|
|
|
|
|
// combined graph
|
|
|
|
foreach($this->spans as &$span) {
|
|
|
|
$options = Array(
|
|
|
|
'-s -1' . $span,
|
2011-06-07 10:21:32 -04:00
|
|
|
'-t Posts this ' . $span,
|
2011-06-07 09:59:46 -04:00
|
|
|
'--lazy',
|
|
|
|
'-l 0',
|
|
|
|
'-h', $this->height, '-w', $this->width,
|
|
|
|
'-a', 'PNG',
|
|
|
|
'-R', 'mono',
|
|
|
|
'-W', 'Powered by Tinyboard',
|
|
|
|
'-E',
|
|
|
|
'-X', '0',
|
|
|
|
'-Y',
|
|
|
|
'-v posts/minute');
|
|
|
|
|
|
|
|
$red = 0;
|
|
|
|
$green = 0;
|
|
|
|
$blue = 0;
|
|
|
|
$c = 0;
|
|
|
|
$cc = 0;
|
|
|
|
|
2011-06-07 10:21:32 -04:00
|
|
|
$c = 1;
|
|
|
|
$cc = 0;
|
|
|
|
$red = 2;
|
2011-06-07 09:59:46 -04:00
|
|
|
foreach($this->boards as &$board) {
|
2011-06-07 10:11:14 -04:00
|
|
|
if(in_array($board, $this->combined_exclude))
|
|
|
|
continue;
|
2011-06-07 09:59:46 -04:00
|
|
|
$color = str_pad(dechex($red*85), 2, '0', STR_PAD_LEFT) .
|
|
|
|
str_pad(dechex($green*85), 2, '0', STR_PAD_LEFT) .
|
|
|
|
str_pad(dechex($blue*85), 2, '0', STR_PAD_LEFT);
|
|
|
|
|
|
|
|
$options[] = 'DEF:posts' . $board . '=' . $settings['path'] . '/' . $board . '.rrd' . ':posts:AVERAGE';
|
|
|
|
$options[] = 'LINE2:posts' . $board . '#' . $color . ':' .
|
|
|
|
sprintf($config['board_abbreviation'], $board);
|
|
|
|
|
|
|
|
// Randomize colors using this horrible undocumented algorithm I threw together while debugging
|
|
|
|
if($c == 0)
|
|
|
|
$red++;
|
|
|
|
elseif($c == 1)
|
|
|
|
$green++;
|
|
|
|
elseif($c == 2)
|
|
|
|
$blue++;
|
|
|
|
elseif($c == 3)
|
|
|
|
$green--;
|
|
|
|
elseif($c == 4)
|
|
|
|
$red--;
|
|
|
|
|
|
|
|
$cc++;
|
2011-06-07 10:05:29 -04:00
|
|
|
if($cc > 2) {
|
2011-06-07 09:59:46 -04:00
|
|
|
$c++;
|
|
|
|
$cc = 0;
|
|
|
|
}
|
|
|
|
if($c>4) $c = 0;
|
|
|
|
|
|
|
|
if($red>3) $red = 0;
|
|
|
|
if($green>3) $green = 0;
|
|
|
|
if($blue>3) $blue = 0;
|
|
|
|
}
|
|
|
|
$options[] = 'HRULE:0#000000';
|
|
|
|
|
|
|
|
if(!rrd_graph($settings['images'] . '/combined-' . $span . '.png', $options))
|
|
|
|
error('RRDtool failed: ' . htmlentities(rrd_error()));
|
|
|
|
}
|
2011-06-07 01:22:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
?>
|