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
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
if (!$settings) {
|
2011-12-21 23:19:23 -05:00
|
|
|
error('This theme is not currently installed.');
|
|
|
|
}
|
|
|
|
|
2011-06-07 01:22:41 -04:00
|
|
|
$this->boards = explode(' ', $settings['boards']);
|
2011-12-21 23:19:23 -05:00
|
|
|
$this->spans = Array('hour', 'day', 'week', 'month', 'year');
|
|
|
|
// exclude boards from the "combined" graph
|
|
|
|
$this->combined_exclude = Array();
|
2011-06-07 01:22:41 -04:00
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
if ($action == 'cron') {
|
|
|
|
if (!file_exists($settings['path']))
|
2011-06-07 01:22:41 -04:00
|
|
|
mkdir($settings['path']);
|
2012-05-05 11:33:10 -04:00
|
|
|
if (!file_exists($settings['images']))
|
2011-06-07 03:18:08 -04:00
|
|
|
mkdir($settings['images']);
|
2011-06-07 01:22:41 -04:00
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
foreach ($this->boards as &$board) {
|
2011-06-07 01:22:41 -04:00
|
|
|
$file = $settings['path'] . '/' . $board . '.rrd';
|
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
if (!file_exists($file)) {
|
2011-06-07 01:22:41 -04:00
|
|
|
// Create graph
|
2012-05-05 11:33:10 -04:00
|
|
|
if (!rrd_create($file, Array(
|
2011-12-21 23:19:23 -05:00
|
|
|
'-s 60',
|
|
|
|
'DS:posts:COUNTER:86400:0:10000',
|
2011-06-07 08:08:40 -04:00
|
|
|
|
2011-12-21 23:19:23 -05:00
|
|
|
'RRA:AVERAGE:0:1:60',
|
|
|
|
'RRA:AVERAGE:0:1:1440',
|
|
|
|
'RRA:AVERAGE:0:30:10080',
|
|
|
|
'RRA:AVERAGE:0:120:43829',
|
|
|
|
'RRA:AVERAGE:0:1440:525948',
|
|
|
|
'RRA:AVERAGE:0:2880:1051897',
|
2011-06-07 08:08:40 -04:00
|
|
|
|
2011-12-21 23:19:23 -05:00
|
|
|
'RRA:MAX:0:1:60',
|
|
|
|
'RRA:MAX:0:1:1440',
|
|
|
|
'RRA:MAX:0:30:10080',
|
|
|
|
'RRA:MAX:0:120:43829',
|
|
|
|
'RRA:MAX:0:1440:525948',
|
|
|
|
'RRA:MAX:0:2880:1051897'
|
2011-06-07 08:08:40 -04:00
|
|
|
)))
|
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
|
2012-05-05 11:33:10 -04:00
|
|
|
if (!isset($argv[1]) || $argv[1] != '--debug') {
|
2011-06-07 09:59:46 -04:00
|
|
|
// Update graph
|
2011-12-21 23:19:23 -05:00
|
|
|
$query = query(sprintf("SELECT MAX(`id`) AS `count` FROM `posts_%s`", $board));
|
2011-06-07 09:59:46 -04:00
|
|
|
$count = $query->fetch();
|
2011-12-21 23:19:23 -05:00
|
|
|
$count = $count['count'];
|
2011-06-07 01:42:27 -04:00
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
if (!rrd_update($file, Array(
|
2011-06-07 09:59:46 -04:00
|
|
|
'-t',
|
|
|
|
'posts',
|
|
|
|
'N:' . $count)))
|
|
|
|
error('RRDtool failed: ' . htmlentities(rrd_error()));
|
|
|
|
}
|
2011-06-07 01:42:27 -04:00
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
foreach ($this->spans as &$span) {
|
2011-06-07 03:18:08 -04:00
|
|
|
// Graph graph
|
2012-05-05 11:33: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',
|
2011-12-21 23:19:23 -05:00
|
|
|
'-h', $settings['height'], '-w', $settings['width'],
|
2011-06-07 03:18:08 -04:00
|
|
|
'-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-12-22 21:07:52 -05:00
|
|
|
'-v posts/' . $settings['rate'],
|
|
|
|
'DEF:posts-second=' . $file . ':posts:AVERAGE',
|
|
|
|
'CDEF:posts-minute=posts-second,60,*',
|
|
|
|
'CDEF:posts-hour=posts-minute,60,*',
|
|
|
|
'CDEF:posts-day=posts-hour,24,*',
|
|
|
|
'CDEF:posts-week=posts-day,7,*',
|
|
|
|
'CDEF:posts-month=posts-day,28,*',
|
|
|
|
'CDEF:posts-year=posts-day,365,*',
|
2011-06-07 03:18:08 -04:00
|
|
|
'DEF:posts=' . $file . ':posts:AVERAGE',
|
2011-12-22 21:12:49 -05:00
|
|
|
'LINE2:posts-' . $settings['rate'] . '#663300:Posts',
|
2011-12-22 21:07:52 -05:00
|
|
|
'GPRINT:posts-' . $settings['rate'] . ':MAX:Max\\: %5.2lf',
|
|
|
|
'GPRINT:posts-' . $settings['rate'] . ':AVERAGE:Average\\: %5.2lf',
|
|
|
|
'GPRINT:posts-' . $settings['rate'] . ':LAST:Current\\: %5.2lf posts/' . $settings['rate'],
|
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
|
2012-05-05 11:33:10 -04:00
|
|
|
foreach ($this->spans as &$span) {
|
2011-06-07 09:59:46 -04:00
|
|
|
$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',
|
2011-12-21 23:19:23 -05:00
|
|
|
'-h', $settings['height'], '-w', $settings['width'],
|
2011-06-07 09:59:46 -04:00
|
|
|
'-a', 'PNG',
|
|
|
|
'-R', 'mono',
|
|
|
|
'-W', 'Powered by Tinyboard',
|
|
|
|
'-E',
|
|
|
|
'-X', '0',
|
|
|
|
'-Y',
|
2011-12-22 21:07:52 -05:00
|
|
|
'-v posts/' . $settings['rate']);
|
2011-06-07 09:59:46 -04:00
|
|
|
|
|
|
|
$red = 0;
|
|
|
|
$green = 0;
|
|
|
|
$blue = 0;
|
|
|
|
$c = 0;
|
|
|
|
$cc = 0;
|
|
|
|
|
2011-06-07 10:21:32 -04:00
|
|
|
$c = 1;
|
|
|
|
$cc = 0;
|
|
|
|
$red = 2;
|
2012-05-05 11:33:10 -04:00
|
|
|
foreach ($this->boards as &$board) {
|
|
|
|
if (in_array($board, $this->combined_exclude))
|
2011-06-07 10:11:14 -04:00
|
|
|
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);
|
|
|
|
|
2011-12-22 21:07:52 -05:00
|
|
|
$options[] = 'DEF:posts' . $board . '-second=' . $settings['path'] . '/' . $board . '.rrd' . ':posts:AVERAGE';
|
|
|
|
$options[] = 'CDEF:posts' . $board . '-minute=posts' . $board . '-second,60,*';
|
|
|
|
$options[] = 'CDEF:posts' . $board . '-hour=posts' . $board . '-minute,60,*';
|
|
|
|
$options[] = 'CDEF:posts' . $board . '-day=posts' . $board . '-hour,24,*';
|
|
|
|
$options[] = 'CDEF:posts' . $board . '-week=posts' . $board . '-day,7,*';
|
|
|
|
$options[] = 'CDEF:posts' . $board . '-month=posts' . $board . '-day,28,*';
|
|
|
|
$options[] = 'CDEF:posts' . $board . '-year=posts' . $board . '-day,365,*';
|
|
|
|
$options[] = 'LINE2:posts' . $board . '-' . $settings['rate'] . '#' . $color . ':' .
|
2011-06-07 09:59:46 -04:00
|
|
|
sprintf($config['board_abbreviation'], $board);
|
|
|
|
|
|
|
|
// Randomize colors using this horrible undocumented algorithm I threw together while debugging
|
2012-05-05 11:33:10 -04:00
|
|
|
if ($c == 0)
|
2011-06-07 09:59:46 -04:00
|
|
|
$red++;
|
2012-05-05 11:33:10 -04:00
|
|
|
elseif ($c == 1)
|
2011-06-07 09:59:46 -04:00
|
|
|
$green++;
|
2012-05-05 11:33:10 -04:00
|
|
|
elseif ($c == 2)
|
2011-06-07 09:59:46 -04:00
|
|
|
$blue++;
|
2012-05-05 11:33:10 -04:00
|
|
|
elseif ($c == 3)
|
2011-06-07 09:59:46 -04:00
|
|
|
$green--;
|
2012-05-05 11:33:10 -04:00
|
|
|
elseif ($c == 4)
|
2011-06-07 09:59:46 -04:00
|
|
|
$red--;
|
|
|
|
|
|
|
|
$cc++;
|
2012-05-05 11:33:10 -04:00
|
|
|
if ($cc > 2) {
|
2011-06-07 09:59:46 -04:00
|
|
|
$c++;
|
|
|
|
$cc = 0;
|
|
|
|
}
|
2012-05-05 11:33:10 -04:00
|
|
|
if ($c > 4)
|
|
|
|
$c = 0;
|
2011-06-07 09:59:46 -04:00
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
if ($red > 3)
|
|
|
|
$red = 0;
|
|
|
|
if ($green > 3)
|
|
|
|
$green = 0;
|
|
|
|
if ($blue > 3)
|
|
|
|
$blue = 0;
|
2011-06-07 09:59:46 -04:00
|
|
|
}
|
|
|
|
$options[] = 'HRULE:0#000000';
|
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
if (!rrd_graph($settings['images'] . '/combined-' . $span . '.png', $options))
|
2011-06-07 09:59:46 -04:00
|
|
|
error('RRDtool failed: ' . htmlentities(rrd_error()));
|
|
|
|
}
|
2011-06-07 01:22:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-10-15 19:41:24 -04:00
|
|
|
?>
|