diff --git a/templates/themes/rrdtool/cron.php b/templates/themes/rrdtool/cron.php new file mode 100644 index 00000000..4608e959 --- /dev/null +++ b/templates/themes/rrdtool/cron.php @@ -0,0 +1,12 @@ + '', 'HTTP_HOST' => '', 'SCRIPT_FILENAME' => ''); + chdir('/var/www'); + + require 'inc/functions.php'; + require 'inc/display.php'; + require 'inc/template.php'; + require 'inc/database.php'; + + require 'theme.php'; + rebuildTheme('rrdtool', 'cron'); +?> \ No newline at end of file diff --git a/templates/themes/rrdtool/info.php b/templates/themes/rrdtool/info.php new file mode 100644 index 00000000..fa1844e9 --- /dev/null +++ b/templates/themes/rrdtool/info.php @@ -0,0 +1,37 @@ + 'Path', + 'name' => 'path', + 'type' => 'text', + 'default' => str_replace('\\', '/', dirname(__FILE__)) . '/data', + 'size' => '50' + ); + + $__boards = listBoards(); + $__default_boards = Array(); + foreach($__boards as $__board) + $__default_boards[] = $__board['uri']; + + $theme['config'][] = Array( + 'title' => 'Boards', + 'name' => 'boards', + 'type' => 'text', + 'comment' => '(boards to graph; space seperated)', + 'size' => 24, + 'default' => implode(' ', $__default_boards) + ); + + // Unique function name for building everything + $theme['build_function'] = 'rrdtool_build'; +?> \ No newline at end of file diff --git a/templates/themes/rrdtool/theme.php b/templates/themes/rrdtool/theme.php new file mode 100644 index 00000000..0482c688 --- /dev/null +++ b/templates/themes/rrdtool/theme.php @@ -0,0 +1,59 @@ +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) { + global $config, $_theme; + + $this->boards = explode(' ', $settings['boards']); + $this->interval = 60; + + if($action == 'cron') { + if(!file_exists($settings['path'])) + mkdir($settings['path']); + + foreach($this->boards as &$board) { + $file = $settings['path'] . '/' . $board . '.rrd'; + + if(!file_exists($file)) { + // Create graph + if(!rrd_create($file, Array( + '-s ' . $this->interval, + 'DS:posts:ABSOLUTE:120:0:100000000', + 'RRA:AVERAGE:0.5:1:2880', + 'RRA:AVERAGE:0.5:30:672', + 'RRA:AVERAGE:0.5:120:732', + 'RRA:AVERAGE:0.5:720:1460'))) + error('RRDtool failed: ' . htmlentities(rrd_error())); + } + + if($action == 'cron') { + $query = prepare(sprintf("SELECT COUNT(*) AS `count` FROM `posts_%s` WHERE `time` >= :time", $board)); + $query->bindValue(':time', time() - $this->interval, PDO::PARAM_INT): + $query->exeucte() or error(db_error($query)); + $query->fetch(); + + if(!rrd_update($file, Array( + '-t', + 'posts', + 'N:'))) + error('RRDtool failed: ' . htmlentities(rrd_error())); + } + } + } + } + }; + +?> \ No newline at end of file diff --git a/templates/themes/rrdtool/thumb.png b/templates/themes/rrdtool/thumb.png new file mode 100644 index 00000000..d4e48a0d Binary files /dev/null and b/templates/themes/rrdtool/thumb.png differ