Add PPH and unique posters stats to home page

This commit is contained in:
Dedushka 2021-01-18 23:26:53 -05:00
parent a4607fa6e6
commit bd87661a69
No known key found for this signature in database
GPG Key ID: DC969A6BA7657A70
2 changed files with 60 additions and 16 deletions

View File

@ -25,6 +25,16 @@
{% endif %} {% endif %}
</div> </div>
<div class="ban">
<h2 id="post-statistics">
{% trans "Post Statistics" %}
</h2>
<p>
{% stats.pph %} {% trans "posts in the last hour." %}
{% stats.unique_ip_count %} {% trans "unique posters in the last hour." %}
</p>
</div>
<footer> <footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">- Tinyboard + <p class="unimportant" style="margin-top:20px;text-align:center;">- Tinyboard +
<a href="https://engine.vichan.net/">vichan</a> {{ config.version }} - <a href="https://engine.vichan.net/">vichan</a> {{ config.version }} -

View File

@ -30,6 +30,7 @@
global $config; global $config;
$query = query("SELECT * FROM ``news`` ORDER BY `time` DESC") or error(db_error()); $query = query("SELECT * FROM ``news`` ORDER BY `time` DESC") or error(db_error());
$news = $query->fetchAll(PDO::FETCH_ASSOC); $news = $query->fetchAll(PDO::FETCH_ASSOC);
$stats = Categories::getPostStatistics($settings);
return Element( return Element(
'themes/categories/frames.html', 'themes/categories/frames.html',
Array( Array(
@ -37,6 +38,7 @@
'settings' => $settings, 'settings' => $settings,
'categories' => Categories::getCategories($config), 'categories' => Categories::getCategories($config),
'news' => $news, 'news' => $news,
'stats' => $stats,
'boardlist' => createBoardlist(false) 'boardlist' => createBoardlist(false)
) )
@ -83,6 +85,38 @@
return $categories; return $categories;
} }
private static function getPostStatistics($settings) {
$boards = query("SELECT uri FROM ``boards``");
$unique = Array();
$pph = 0;
foreach ($boards->fetchAll() as $_board) {
$pph_query = query(
sprintf("SELECT COUNT(*) AS count FROM ``posts_%s`` WHERE time > %d",
$_board['uri'],
time()-3600)
) or error(db_error());
$pph += $pph_query->fetch()['count'];
$unique_query = query(
sprintf("SELECT ip FROM ``posts_%s`` WHERE time > %d",
$_board['uri'],
time()-3600)
) or error(db_error());
foreach ($unique_query->fetchAll() as $_k => $row) {
$unique[$row['ip']] = true;
}
}
$unique_ip_count = count($unique);
return Array('pph' => $pph, 'unique_ip_count' => $unique_ip_count);
}
}; };
?> ?>