leftypol/templates/themes/rrdtool/info.php

123 lines
3.5 KiB
PHP
Raw Normal View History

<?php
$theme = Array();
// Theme name
$theme['name'] = 'RRDtool';
// Description (you can use Tinyboard markup here)
$theme['description'] = 'Graph basic statistics using the PHP RRDtool extension.';
2011-12-22 04:19:23 +00:00
$theme['version'] = 'v0.2';
// Theme configuration
$theme['config'] = Array();
$theme['config'][] = Array(
'title' => 'Path',
'name' => 'path',
'type' => 'text',
'default' => str_replace('\\', '/', dirname(__FILE__)) . '/data',
'size' => '50'
);
2011-06-07 07:18:08 +00:00
$theme['config'][] = Array(
'title' => 'Images path',
'name' => 'images',
'type' => 'text',
'default' => str_replace('\\', '/', dirname(__FILE__)) . '/images',
'size' => '50'
);
$__boards = listBoards();
$__default_boards = Array();
2012-05-05 15:33:10 +00:00
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)
);
2011-12-22 04:19:23 +00:00
$theme['config'][] = Array(
'title' => 'Excluded Boards',
'name' => 'boards_exclude',
'type' => 'text',
'comment' => '(above boards to exclude from the "combined" graph)',
'size' => 24
);
$theme['config'][] = Array(
'title' => 'Interval',
'name' => 'interval',
'type' => 'text',
'comment' => '(minutes between updates; max: 86400)',
'size' => 3,
'default' => '2'
);
$theme['config'][] = Array(
'title' => 'Graph Width',
2011-12-22 04:19:23 +00:00
'name' => 'width',
'type' => 'text',
'size' => 3,
'default' => '700'
);
$theme['config'][] = Array(
'title' => 'Graph Height',
2011-12-22 04:19:23 +00:00
'name' => 'height',
'type' => 'text',
'size' => 3,
'default' => '150'
);
$theme['config'][] = Array(
'title' => 'Graph Rate',
'name' => 'rate',
'type' => 'text',
'comment' => 'Graph posts per X? ("minute", "day", "year", etc.)',
'size' => 3,
'default' => 'hour'
);
2011-06-07 08:52:54 +00:00
$theme['install_callback'] = 'rrdtool_install';
2012-05-05 15:33:10 +00:00
if (!function_exists('rrdtool_install')) {
2011-06-07 08:52:54 +00:00
function rrdtool_install($settings) {
global $config;
2012-05-05 15:33:10 +00:00
if (!is_numeric($settings['interval']) || $settings['interval'] < 1 || $settings['interval'] > 86400)
2011-12-22 04:19:23 +00:00
return Array(false, 'Invalid interval: <strong>' . $settings['interval'] . '</strong>. Must be an integer greater than 1 and less than 86400.');
2012-05-05 15:33:10 +00:00
if (!is_numeric($settings['width']) || $settings['width'] < 1)
2011-12-22 04:19:23 +00:00
return Array(false, 'Invalid width: <strong>' . $settings['width'] . '</strong>!');
2012-05-05 15:33:10 +00:00
if (!is_numeric($settings['height']) || $settings['height'] < 1)
2011-12-22 04:19:23 +00:00
return Array(false, 'Invalid height: <strong>' . $settings['height'] . '</strong>!');
2012-05-05 15:33:10 +00:00
if (!in_array($settings['rate'], Array('second', 'minute', 'day', 'hour', 'week', 'month', 'year')))
return Array(false, 'Invalid rate: <strong>' . $settings['rate'] . '</strong>!');
2011-12-22 04:19:23 +00:00
$job = '*/' . $settings['interval'] . ' * * * * php -q ' . str_replace('\\', '/', dirname(__FILE__)) . '/cron.php' . PHP_EOL;
2011-06-07 08:52:54 +00:00
2012-05-05 15:33:10 +00:00
if (function_exists('system')) {
2011-06-07 08:52:54 +00:00
$crontab = tempnam($config['tmp'], 'tinyboard-rrdtool');
file_write($crontab, $job);
2011-06-07 10:43:15 +00:00
@system('crontab ' . escapeshellarg($crontab), $ret);
2011-06-07 08:52:54 +00:00
unlink($crontab);
2012-05-05 15:33:10 +00:00
if ($ret === 0)
2011-06-07 10:43:15 +00:00
return ''; // it seems to install okay?
2011-06-07 08:52:54 +00:00
}
2011-12-22 04:19:23 +00:00
return Array(true, '<h2>I couldn\'t install the crontab!</h2>' .
'In order to use this plugin, you must add the following crontab entry (`crontab -e`):' .
'<pre>' . $job . '</pre>');
2011-06-07 08:52:54 +00:00
}
}
// Unique function name for building everything
$theme['build_function'] = 'rrdtool_build';
2011-12-22 04:19:23 +00:00
?>