2011-04-14 14:53:29 -04:00
|
|
|
<?php
|
|
|
|
require 'info.php';
|
|
|
|
|
2013-07-18 12:06:26 -04:00
|
|
|
function recentposts_build($action, $settings, $board) {
|
2011-04-14 14:53:29 -04:00
|
|
|
// Possible values for $action:
|
|
|
|
// - all (rebuild everything, initialization)
|
|
|
|
// - news (news has been updated)
|
|
|
|
// - boards (board list changed)
|
|
|
|
// - post (a post has been made)
|
2013-07-18 12:06:26 -04:00
|
|
|
// - post-thread (a thread has been made)
|
2011-04-14 14:53:29 -04:00
|
|
|
|
2011-05-27 11:43:04 -04:00
|
|
|
$b = new RecentPosts();
|
2011-04-16 11:28:25 -04:00
|
|
|
$b->build($action, $settings);
|
2011-04-14 14:53:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap functions in a class so they don't interfere with normal Tinyboard operations
|
2011-05-27 11:43:04 -04:00
|
|
|
class RecentPosts {
|
2011-04-16 11:28:25 -04:00
|
|
|
public function build($action, $settings) {
|
2011-04-14 14:53:29 -04:00
|
|
|
global $config, $_theme;
|
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
if ($action == 'all') {
|
2013-01-06 07:40:33 -05:00
|
|
|
copy('templates/themes/recent/' . $settings['basecss'], $config['dir']['home'] . $settings['css']);
|
2011-04-14 14:53:29 -04:00
|
|
|
}
|
|
|
|
|
2011-04-16 11:28:25 -04:00
|
|
|
$this->excluded = explode(' ', $settings['exclude']);
|
|
|
|
|
2015-04-02 14:54:28 -04:00
|
|
|
if ($action == 'all' || $action == 'post' || $action == 'post-thread' || $action == 'post-delete') {
|
|
|
|
if ($config['smart_build']) {
|
|
|
|
file_unlink($config['dir']['home'] . $settings['html']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
file_write($config['dir']['home'] . $settings['html'], $this->homepage($settings));
|
|
|
|
}
|
|
|
|
}
|
2011-04-14 14:53:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Build news page
|
2011-04-16 11:28:25 -04:00
|
|
|
public function homepage($settings) {
|
2011-04-14 14:53:29 -04:00
|
|
|
global $config, $board;
|
|
|
|
|
2012-02-14 04:46:06 -05:00
|
|
|
$recent_images = Array();
|
|
|
|
$recent_posts = Array();
|
|
|
|
$stats = Array();
|
2011-04-14 14:53:29 -04:00
|
|
|
|
|
|
|
$boards = listBoards();
|
|
|
|
|
2012-02-14 04:46:06 -05:00
|
|
|
$query = '';
|
2012-05-05 11:33:10 -04:00
|
|
|
foreach ($boards as &$_board) {
|
|
|
|
if (in_array($_board['uri'], $this->excluded))
|
2012-02-14 04:46:06 -05:00
|
|
|
continue;
|
2014-04-27 09:48:47 -04:00
|
|
|
$query .= sprintf("SELECT *, '%s' AS `board` FROM ``posts_%s`` WHERE `files` IS NOT NULL UNION ALL ", $_board['uri'], $_board['uri']);
|
2012-02-14 04:46:06 -05:00
|
|
|
}
|
|
|
|
$query = preg_replace('/UNION ALL $/', 'ORDER BY `time` DESC LIMIT ' . (int)$settings['limit_images'], $query);
|
2014-04-20 17:33:52 -04:00
|
|
|
|
|
|
|
if ($query == '') {
|
|
|
|
error(_("Can't build the RecentPosts theme, because there are no boards to be fetched."));
|
|
|
|
}
|
|
|
|
|
2012-02-14 04:46:06 -05:00
|
|
|
$query = query($query) or error(db_error());
|
2011-04-14 14:53:29 -04:00
|
|
|
|
2013-07-31 20:51:43 -04:00
|
|
|
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
|
2012-02-14 04:46:06 -05:00
|
|
|
openBoard($post['board']);
|
2014-09-17 18:55:16 -04:00
|
|
|
|
2014-04-27 09:48:47 -04:00
|
|
|
if (isset($post['files']))
|
|
|
|
$files = json_decode($post['files']);
|
|
|
|
|
|
|
|
if ($files[0]->file == 'deleted') continue;
|
2011-04-14 14:53:29 -04:00
|
|
|
|
2012-02-14 04:46:06 -05:00
|
|
|
// board settings won't be available in the template file, so generate links now
|
2014-09-17 18:55:16 -04:00
|
|
|
$post['link'] = $config['root'] . $board['dir'] . $config['dir']['res']
|
2015-03-10 07:48:59 -04:00
|
|
|
. link_for($post) . '#' . $post['id'];
|
2014-09-17 18:55:16 -04:00
|
|
|
|
|
|
|
if ($files) {
|
|
|
|
if ($files[0]->thumb == 'spoiler') {
|
|
|
|
$tn_size = @getimagesize($config['spoiler_image']);
|
|
|
|
$post['src'] = $config['spoiler_image'];
|
|
|
|
$post['thumbwidth'] = $tn_size[0];
|
|
|
|
$post['thumbheight'] = $tn_size[1];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$post['src'] = $config['uri_thumb'] . $files[0]->thumb;
|
|
|
|
}
|
|
|
|
}
|
2011-04-14 14:53:29 -04:00
|
|
|
|
2012-02-14 04:46:06 -05:00
|
|
|
$recent_images[] = $post;
|
|
|
|
}
|
2011-04-14 14:53:29 -04:00
|
|
|
|
|
|
|
|
2012-02-14 04:46:06 -05:00
|
|
|
$query = '';
|
2012-05-05 11:33:10 -04:00
|
|
|
foreach ($boards as &$_board) {
|
|
|
|
if (in_array($_board['uri'], $this->excluded))
|
2012-02-14 04:46:06 -05:00
|
|
|
continue;
|
2013-07-31 22:14:26 -04:00
|
|
|
$query .= sprintf("SELECT *, '%s' AS `board` FROM ``posts_%s`` UNION ALL ", $_board['uri'], $_board['uri']);
|
2012-02-14 04:46:06 -05:00
|
|
|
}
|
|
|
|
$query = preg_replace('/UNION ALL $/', 'ORDER BY `time` DESC LIMIT ' . (int)$settings['limit_posts'], $query);
|
|
|
|
$query = query($query) or error(db_error());
|
2011-04-14 14:53:29 -04:00
|
|
|
|
2013-07-31 20:51:43 -04:00
|
|
|
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
|
2012-02-14 04:46:06 -05:00
|
|
|
openBoard($post['board']);
|
2011-04-14 14:53:29 -04:00
|
|
|
|
2015-03-10 07:48:59 -04:00
|
|
|
$post['link'] = $config['root'] . $board['dir'] . $config['dir']['res'] . link_for($post) . '#' . $post['id'];
|
2014-09-19 05:50:02 -04:00
|
|
|
if ($post['body'] != "")
|
|
|
|
$post['snippet'] = pm_snippet($post['body'], 30);
|
|
|
|
else
|
|
|
|
$post['snippet'] = "<em>" . _("(no comment)") . "</em>";
|
2012-02-14 04:46:06 -05:00
|
|
|
$post['board_name'] = $board['name'];
|
2011-04-14 14:53:29 -04:00
|
|
|
|
2012-02-14 04:46:06 -05:00
|
|
|
$recent_posts[] = $post;
|
|
|
|
}
|
2011-04-14 14:53:29 -04:00
|
|
|
|
2012-02-14 04:46:06 -05:00
|
|
|
// Total posts
|
2013-07-31 20:51:43 -04:00
|
|
|
$query = 'SELECT SUM(`top`) FROM (';
|
2012-05-05 11:33:10 -04:00
|
|
|
foreach ($boards as &$_board) {
|
|
|
|
if (in_array($_board['uri'], $this->excluded))
|
2012-02-14 04:46:06 -05:00
|
|
|
continue;
|
2013-07-31 22:14:26 -04:00
|
|
|
$query .= sprintf("SELECT MAX(`id`) AS `top` FROM ``posts_%s`` UNION ALL ", $_board['uri']);
|
2012-02-14 04:46:06 -05:00
|
|
|
}
|
|
|
|
$query = preg_replace('/UNION ALL $/', ') AS `posts_all`', $query);
|
|
|
|
$query = query($query) or error(db_error());
|
2013-07-31 20:51:43 -04:00
|
|
|
$stats['total_posts'] = number_format($query->fetchColumn());
|
2012-02-14 04:46:06 -05:00
|
|
|
|
|
|
|
// Unique IPs
|
2013-07-31 20:51:43 -04:00
|
|
|
$query = 'SELECT COUNT(DISTINCT(`ip`)) FROM (';
|
2012-05-05 11:33:10 -04:00
|
|
|
foreach ($boards as &$_board) {
|
|
|
|
if (in_array($_board['uri'], $this->excluded))
|
2012-02-14 04:46:06 -05:00
|
|
|
continue;
|
2013-07-31 22:14:26 -04:00
|
|
|
$query .= sprintf("SELECT `ip` FROM ``posts_%s`` UNION ALL ", $_board['uri']);
|
2012-02-14 04:46:06 -05:00
|
|
|
}
|
|
|
|
$query = preg_replace('/UNION ALL $/', ') AS `posts_all`', $query);
|
|
|
|
$query = query($query) or error(db_error());
|
2013-07-31 20:51:43 -04:00
|
|
|
$stats['unique_posters'] = number_format($query->fetchColumn());
|
2012-02-14 04:46:06 -05:00
|
|
|
|
|
|
|
// Active content
|
2015-03-20 09:47:40 -04:00
|
|
|
$query = 'SELECT DISTINCT(`files`) FROM (';
|
2012-05-05 11:33:10 -04:00
|
|
|
foreach ($boards as &$_board) {
|
|
|
|
if (in_array($_board['uri'], $this->excluded))
|
2012-02-14 04:46:06 -05:00
|
|
|
continue;
|
2015-03-19 21:49:57 -04:00
|
|
|
$query .= sprintf("SELECT `files` FROM ``posts_%s`` UNION ALL ", $_board['uri']);
|
2012-02-14 04:46:06 -05:00
|
|
|
}
|
2015-03-19 21:49:57 -04:00
|
|
|
$query = preg_replace('/UNION ALL $/', ' WHERE `num_files` > 0) AS `posts_all`', $query);
|
2012-02-14 04:46:06 -05:00
|
|
|
$query = query($query) or error(db_error());
|
2015-03-19 21:49:57 -04:00
|
|
|
$files = $query->fetchAll();
|
|
|
|
$stats['active_content'] = 0;
|
2015-03-20 09:47:40 -04:00
|
|
|
foreach ($files as &$file) {
|
|
|
|
preg_match_all('/"size":([0-9]*)/', $file[0], $matches);
|
|
|
|
$stats['active_content'] += array_sum($matches[1]);
|
|
|
|
}
|
2012-02-14 04:46:06 -05:00
|
|
|
|
|
|
|
return Element('themes/recent/recent.html', Array(
|
|
|
|
'settings' => $settings,
|
|
|
|
'config' => $config,
|
|
|
|
'boardlist' => createBoardlist(),
|
|
|
|
'recent_images' => $recent_images,
|
|
|
|
'recent_posts' => $recent_posts,
|
|
|
|
'stats' => $stats
|
|
|
|
));
|
2011-04-14 14:53:29 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-06-11 03:09:51 -04:00
|
|
|
?>
|