forked from leftypol/leftypol
a lot more improvements
This commit is contained in:
parent
ac2837c620
commit
a610458720
40 changed files with 986 additions and 271 deletions
|
@ -44,9 +44,9 @@
|
|||
$theme['build_function'] = 'basic_build';
|
||||
$theme['install_callback'] = 'build_install';
|
||||
|
||||
if(!function_exists('build_install')) {
|
||||
if (!function_exists('build_install')) {
|
||||
function build_install($settings) {
|
||||
if(!is_numeric($settings['no_recent']) || $settings['no_recent'] < 0)
|
||||
if (!is_numeric($settings['no_recent']) || $settings['no_recent'] < 0)
|
||||
return Array(false, '<strong>' . utf8tohtml($settings['no_recent']) . '</strong> is not a non-negative integer.');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
public static function build($action, $settings) {
|
||||
global $config;
|
||||
|
||||
if($action == 'all' || $action == 'news')
|
||||
if ($action == 'all' || $action == 'news')
|
||||
file_write($config['dir']['home'] . $settings['file'], Basic::homepage($settings));
|
||||
}
|
||||
|
||||
|
|
|
@ -54,11 +54,11 @@ Requires $config[\'categories\'].';
|
|||
$theme['build_function'] = 'categories_build';
|
||||
$theme['install_callback'] = 'categories_install';
|
||||
|
||||
if(!function_exists('categories_install')) {
|
||||
if (!function_exists('categories_install')) {
|
||||
function categories_install($settings) {
|
||||
global $config;
|
||||
|
||||
if(!isset($config['categories'])) {
|
||||
if (!isset($config['categories'])) {
|
||||
return Array(false, '<h2>Prerequisites not met!</h2>' .
|
||||
'This theme requires $config[\'boards\'] and $config[\'categories\'] to be set.');
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
</legend>
|
||||
{% for board in boards %}
|
||||
<li>
|
||||
<a href="{{ board.uri }}">{{ board.title }}</a>
|
||||
<a href="{{ board.uri }}">{{ board.title|e }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</fieldset>
|
||||
|
|
|
@ -15,13 +15,13 @@
|
|||
public static function build($action, $settings) {
|
||||
global $config;
|
||||
|
||||
if($action == 'all')
|
||||
if ($action == 'all')
|
||||
file_write($config['dir']['home'] . $settings['file_main'], Categories::homepage($settings));
|
||||
|
||||
if($action == 'all' || $action == 'boards')
|
||||
if ($action == 'all' || $action == 'boards')
|
||||
file_write($config['dir']['home'] . $settings['file_sidebar'], Categories::sidebar($settings));
|
||||
|
||||
if($action == 'all' || $action == 'news')
|
||||
if ($action == 'all' || $action == 'news')
|
||||
file_write($config['dir']['home'] . $settings['file_news'], Categories::news($settings));
|
||||
}
|
||||
|
||||
|
@ -52,10 +52,10 @@
|
|||
|
||||
$categories = $config['categories'];
|
||||
|
||||
foreach($categories as &$boards) {
|
||||
foreach($boards as &$board) {
|
||||
foreach ($categories as &$boards) {
|
||||
foreach ($boards as &$board) {
|
||||
$title = boardTitle($board);
|
||||
if(!$title)
|
||||
if (!$title)
|
||||
$title = $board; // board doesn't exist, but for some reason you want to display it anyway
|
||||
$board = Array('title' => $title, 'uri' => sprintf($config['board_path'], $board));
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
{% for board in boards %}
|
||||
<li>
|
||||
<a href="{{ config.board_path|sprintf(board.uri) }}">
|
||||
{{ board.title }}
|
||||
{{ board.title|e }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
|
|
@ -15,13 +15,13 @@
|
|||
public static function build($action, $settings) {
|
||||
global $config;
|
||||
|
||||
if($action == 'all')
|
||||
if ($action == 'all')
|
||||
file_write($config['dir']['home'] . $settings['file_main'], Frameset::homepage($settings));
|
||||
|
||||
if($action == 'all' || $action == 'boards')
|
||||
if ($action == 'all' || $action == 'boards')
|
||||
file_write($config['dir']['home'] . $settings['file_sidebar'], Frameset::sidebar($settings));
|
||||
|
||||
if($action == 'all' || $action == 'news')
|
||||
if ($action == 'all' || $action == 'news')
|
||||
file_write($config['dir']['home'] . $settings['file_news'], Frameset::news($settings));
|
||||
}
|
||||
|
||||
|
|
|
@ -60,11 +60,11 @@
|
|||
$theme['build_function'] = 'recentposts_build';
|
||||
$theme['install_callback'] = 'recentposts_install';
|
||||
|
||||
if(!function_exists('recentposts_install')) {
|
||||
if (!function_exists('recentposts_install')) {
|
||||
function recentposts_install($settings) {
|
||||
if(!is_numeric($settings['limit_images']) || $settings['limit_images'] < 0)
|
||||
if (!is_numeric($settings['limit_images']) || $settings['limit_images'] < 0)
|
||||
return Array(false, '<strong>' . utf8tohtml($settings['limit_images']) . '</strong> is not a non-negative integer.');
|
||||
if(!is_numeric($settings['limit_posts']) || $settings['limit_posts'] < 0)
|
||||
if (!is_numeric($settings['limit_posts']) || $settings['limit_posts'] < 0)
|
||||
return Array(false, '<strong>' . utf8tohtml($settings['limit_posts']) . '</strong> is not a non-negative integer.');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,13 +17,13 @@
|
|||
public function build($action, $settings) {
|
||||
global $config, $_theme;
|
||||
|
||||
if($action == 'all') {
|
||||
if ($action == 'all') {
|
||||
copy('templates/themes/recent/recent.css', $config['dir']['home'] . $settings['css']);
|
||||
}
|
||||
|
||||
$this->excluded = explode(' ', $settings['exclude']);
|
||||
|
||||
if($action == 'all' || $action == 'post')
|
||||
if ($action == 'all' || $action == 'post')
|
||||
file_write($config['dir']['home'] . $settings['html'], $this->homepage($settings));
|
||||
}
|
||||
|
||||
|
@ -38,15 +38,15 @@
|
|||
$boards = listBoards();
|
||||
|
||||
$query = '';
|
||||
foreach($boards as &$_board) {
|
||||
if(in_array($_board['uri'], $this->excluded))
|
||||
foreach ($boards as &$_board) {
|
||||
if (in_array($_board['uri'], $this->excluded))
|
||||
continue;
|
||||
$query .= sprintf("SELECT *, '%s' AS `board` FROM `posts_%s` WHERE `file` IS NOT NULL AND `file` != 'deleted' AND `thumb` != 'spoiler' UNION ALL ", $_board['uri'], $_board['uri']);
|
||||
}
|
||||
$query = preg_replace('/UNION ALL $/', 'ORDER BY `time` DESC LIMIT ' . (int)$settings['limit_images'], $query);
|
||||
$query = query($query) or error(db_error());
|
||||
|
||||
while($post = $query->fetch()) {
|
||||
while ($post = $query->fetch()) {
|
||||
openBoard($post['board']);
|
||||
|
||||
// board settings won't be available in the template file, so generate links now
|
||||
|
@ -58,15 +58,15 @@
|
|||
|
||||
|
||||
$query = '';
|
||||
foreach($boards as &$_board) {
|
||||
if(in_array($_board['uri'], $this->excluded))
|
||||
foreach ($boards as &$_board) {
|
||||
if (in_array($_board['uri'], $this->excluded))
|
||||
continue;
|
||||
$query .= sprintf("SELECT *, '%s' AS `board` FROM `posts_%s` UNION ALL ", $_board['uri'], $_board['uri']);
|
||||
}
|
||||
$query = preg_replace('/UNION ALL $/', 'ORDER BY `time` DESC LIMIT ' . (int)$settings['limit_posts'], $query);
|
||||
$query = query($query) or error(db_error());
|
||||
|
||||
while($post = $query->fetch()) {
|
||||
while ($post = $query->fetch()) {
|
||||
openBoard($post['board']);
|
||||
|
||||
$post['link'] = $config['root'] . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], ($post['thread'] ? $post['thread'] : $post['id'])) . '#' . $post['id'];
|
||||
|
@ -78,8 +78,8 @@
|
|||
|
||||
// Total posts
|
||||
$query = 'SELECT SUM(`top`) AS `count` FROM (';
|
||||
foreach($boards as &$_board) {
|
||||
if(in_array($_board['uri'], $this->excluded))
|
||||
foreach ($boards as &$_board) {
|
||||
if (in_array($_board['uri'], $this->excluded))
|
||||
continue;
|
||||
$query .= sprintf("SELECT MAX(`id`) AS `top` FROM `posts_%s` UNION ALL ", $_board['uri']);
|
||||
}
|
||||
|
@ -90,8 +90,8 @@
|
|||
|
||||
// Unique IPs
|
||||
$query = 'SELECT COUNT(DISTINCT(`ip`)) AS `count` FROM (';
|
||||
foreach($boards as &$_board) {
|
||||
if(in_array($_board['uri'], $this->excluded))
|
||||
foreach ($boards as &$_board) {
|
||||
if (in_array($_board['uri'], $this->excluded))
|
||||
continue;
|
||||
$query .= sprintf("SELECT `ip` FROM `posts_%s` UNION ALL ", $_board['uri']);
|
||||
}
|
||||
|
@ -102,8 +102,8 @@
|
|||
|
||||
// Active content
|
||||
$query = 'SELECT SUM(`filesize`) AS `count` FROM (';
|
||||
foreach($boards as &$_board) {
|
||||
if(in_array($_board['uri'], $this->excluded))
|
||||
foreach ($boards as &$_board) {
|
||||
if (in_array($_board['uri'], $this->excluded))
|
||||
continue;
|
||||
$query .= sprintf("SELECT `filesize` FROM `posts_%s` UNION ALL ", $_board['uri']);
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
$__boards = listBoards();
|
||||
$__default_boards = Array();
|
||||
foreach($__boards as $__board)
|
||||
foreach ($__boards as $__board)
|
||||
$__default_boards[] = $__board['uri'];
|
||||
|
||||
$theme['config'][] = Array(
|
||||
|
@ -83,31 +83,31 @@
|
|||
);
|
||||
|
||||
$theme['install_callback'] = 'rrdtool_install';
|
||||
if(!function_exists('rrdtool_install')) {
|
||||
if (!function_exists('rrdtool_install')) {
|
||||
function rrdtool_install($settings) {
|
||||
global $config;
|
||||
|
||||
if(!is_numeric($settings['interval']) || $settings['interval'] < 1 || $settings['interval'] > 86400)
|
||||
if (!is_numeric($settings['interval']) || $settings['interval'] < 1 || $settings['interval'] > 86400)
|
||||
return Array(false, 'Invalid interval: <strong>' . $settings['interval'] . '</strong>. Must be an integer greater than 1 and less than 86400.');
|
||||
|
||||
if(!is_numeric($settings['width']) || $settings['width'] < 1)
|
||||
if (!is_numeric($settings['width']) || $settings['width'] < 1)
|
||||
return Array(false, 'Invalid width: <strong>' . $settings['width'] . '</strong>!');
|
||||
|
||||
if(!is_numeric($settings['height']) || $settings['height'] < 1)
|
||||
if (!is_numeric($settings['height']) || $settings['height'] < 1)
|
||||
return Array(false, 'Invalid height: <strong>' . $settings['height'] . '</strong>!');
|
||||
|
||||
if(!in_array($settings['rate'], Array('second', 'minute', 'day', 'hour', 'week', 'month', 'year')))
|
||||
if (!in_array($settings['rate'], Array('second', 'minute', 'day', 'hour', 'week', 'month', 'year')))
|
||||
return Array(false, 'Invalid rate: <strong>' . $settings['rate'] . '</strong>!');
|
||||
|
||||
$job = '*/' . $settings['interval'] . ' * * * * php -q ' . str_replace('\\', '/', dirname(__FILE__)) . '/cron.php' . PHP_EOL;
|
||||
|
||||
if(function_exists('system')) {
|
||||
if (function_exists('system')) {
|
||||
$crontab = tempnam($config['tmp'], 'tinyboard-rrdtool');
|
||||
file_write($crontab, $job);
|
||||
@system('crontab ' . escapeshellarg($crontab), $ret);
|
||||
unlink($crontab);
|
||||
|
||||
if($ret === 0)
|
||||
if ($ret === 0)
|
||||
return ''; // it seems to install okay?
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
public function build($action, $settings) {
|
||||
global $config, $_theme, $argv;
|
||||
|
||||
if(!$settings) {
|
||||
if (!$settings) {
|
||||
error('This theme is not currently installed.');
|
||||
}
|
||||
|
||||
|
@ -26,18 +26,18 @@
|
|||
// exclude boards from the "combined" graph
|
||||
$this->combined_exclude = Array();
|
||||
|
||||
if($action == 'cron') {
|
||||
if(!file_exists($settings['path']))
|
||||
if ($action == 'cron') {
|
||||
if (!file_exists($settings['path']))
|
||||
mkdir($settings['path']);
|
||||
if(!file_exists($settings['images']))
|
||||
if (!file_exists($settings['images']))
|
||||
mkdir($settings['images']);
|
||||
|
||||
foreach($this->boards as &$board) {
|
||||
foreach ($this->boards as &$board) {
|
||||
$file = $settings['path'] . '/' . $board . '.rrd';
|
||||
|
||||
if(!file_exists($file)) {
|
||||
if (!file_exists($file)) {
|
||||
// Create graph
|
||||
if(!rrd_create($file, Array(
|
||||
if (!rrd_create($file, Array(
|
||||
'-s 60',
|
||||
'DS:posts:COUNTER:86400:0:10000',
|
||||
|
||||
|
@ -59,22 +59,22 @@
|
|||
}
|
||||
|
||||
// debug just the graphing (not updating) with the --debug switch
|
||||
if(!isset($argv[1]) || $argv[1] != '--debug') {
|
||||
if (!isset($argv[1]) || $argv[1] != '--debug') {
|
||||
// Update graph
|
||||
$query = query(sprintf("SELECT MAX(`id`) AS `count` FROM `posts_%s`", $board));
|
||||
$count = $query->fetch();
|
||||
$count = $count['count'];
|
||||
|
||||
if(!rrd_update($file, Array(
|
||||
if (!rrd_update($file, Array(
|
||||
'-t',
|
||||
'posts',
|
||||
'N:' . $count)))
|
||||
error('RRDtool failed: ' . htmlentities(rrd_error()));
|
||||
}
|
||||
|
||||
foreach($this->spans as &$span) {
|
||||
foreach ($this->spans as &$span) {
|
||||
// Graph graph
|
||||
if(!rrd_graph($settings['images'] . '/' . $board . '-' . $span . '.png', Array(
|
||||
if (!rrd_graph($settings['images'] . '/' . $board . '-' . $span . '.png', Array(
|
||||
'-s -1' . $span,
|
||||
'-t Posts on ' . sprintf($config['board_abbreviation'], $board) .' this ' . $span,
|
||||
'--lazy',
|
||||
|
@ -105,7 +105,7 @@
|
|||
}
|
||||
|
||||
// combined graph
|
||||
foreach($this->spans as &$span) {
|
||||
foreach ($this->spans as &$span) {
|
||||
$options = Array(
|
||||
'-s -1' . $span,
|
||||
'-t Posts this ' . $span,
|
||||
|
@ -129,8 +129,8 @@
|
|||
$c = 1;
|
||||
$cc = 0;
|
||||
$red = 2;
|
||||
foreach($this->boards as &$board) {
|
||||
if(in_array($board, $this->combined_exclude))
|
||||
foreach ($this->boards as &$board) {
|
||||
if (in_array($board, $this->combined_exclude))
|
||||
continue;
|
||||
$color = str_pad(dechex($red*85), 2, '0', STR_PAD_LEFT) .
|
||||
str_pad(dechex($green*85), 2, '0', STR_PAD_LEFT) .
|
||||
|
@ -147,31 +147,35 @@
|
|||
sprintf($config['board_abbreviation'], $board);
|
||||
|
||||
// Randomize colors using this horrible undocumented algorithm I threw together while debugging
|
||||
if($c == 0)
|
||||
if ($c == 0)
|
||||
$red++;
|
||||
elseif($c == 1)
|
||||
elseif ($c == 1)
|
||||
$green++;
|
||||
elseif($c == 2)
|
||||
elseif ($c == 2)
|
||||
$blue++;
|
||||
elseif($c == 3)
|
||||
elseif ($c == 3)
|
||||
$green--;
|
||||
elseif($c == 4)
|
||||
elseif ($c == 4)
|
||||
$red--;
|
||||
|
||||
$cc++;
|
||||
if($cc > 2) {
|
||||
if ($cc > 2) {
|
||||
$c++;
|
||||
$cc = 0;
|
||||
}
|
||||
if($c>4) $c = 0;
|
||||
if ($c > 4)
|
||||
$c = 0;
|
||||
|
||||
if($red>3) $red = 0;
|
||||
if($green>3) $green = 0;
|
||||
if($blue>3) $blue = 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))
|
||||
if (!rrd_graph($settings['images'] . '/combined-' . $span . '.png', $options))
|
||||
error('RRDtool failed: ' . htmlentities(rrd_error()));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue