View IP adress page, ban form.

This commit is contained in:
Michael Save 2012-04-13 09:29:08 +10:00
parent f9ca74d763
commit 78f3ea7833
7 changed files with 289 additions and 3 deletions

77
inc/mod/ban.php Normal file
View file

@ -0,0 +1,77 @@
<?php
/*
* Copyright (c) 2010-2012 Tinyboard Development Group
*/
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {
// You cannot request this file directly.
exit;
}
function parse_time($str) {
if(empty($str))
return false;
if (($time = @strtotime($str)) !== false)
return $time;
if (!preg_match('/^((\d+)\s*ye?a?r?s?)?\s*+((\d+)\s*mon?t?h?s?)?\s*((\d+)\s*we?e?k?s?)?\s*((\d+)\s*da?y?s?)?((\d+)\s*ho?u?r?s?)?\s*((\d+)\s*mi?n?u?t?e?s?)?\s*+((\d+)\s*se?c?o?n?d?s?)?$/', $str, $matches))
return false;
$expire = time();
if (isset($m[2])) {
// Years
$expire += $m[2]*60*60*24*365;
}
if (isset($m[4])) {
// Months
$expire += $m[4]*60*60*24*30;
}
if (isset($m[6])) {
// Weeks
$expire += $m[6]*60*60*24*7;
}
if (isset($m[8])) {
// Days
$expire += $m[8]*60*60*24;
}
if (isset($m[10])) {
// Hours
$expire += $m[10]*60*60;
}
if (isset($m[12])) {
// Minutes
$expire += $m[12]*60;
}
if (isset($m[14])) {
// Seconds
$expire += $m[14];
}
return $expire;
}
function ban($mask, $reason, $length, $board) {
global $mod;
$query = prepare("INSERT INTO `bans` VALUES (NULL, :ip, :mod, UNIX_TIMESTAMP(), :expires, :reason, :board)");
$query->bindValue(':ip', $mask);
$query->bindValue(':mod', $mod['id']);
if ($reason !== '')
$query->bindValue(':reason', $reason);
else
$query->bindValue(':reason', null, PDO::PARAM_NULL);
if ($length > 0)
$query->bindValue(':expires', time() + $length);
else
$query->bindValue(':expires', null, PDO::PARAM_NULL);
if ($board)
$query->bindValue(':board', $board);
else
$query->bindValue(':board', null, PDO::PARAM_NULL);
$query->execute() or error(db_error($query));
}

View file

@ -94,12 +94,17 @@ function mod_view_thread($boardName, $thread) {
function mod_page_ip($ip) {
global $config, $mod;
if(filter_var($ip, FILTER_VALIDATE_IP) === false)
error("Invalid IP address.");
$args = array();
$args['ip'] = $ip;
$args['posts'] = array();
$boards = listBoards();
foreach ($boards as $board) {
openBoard($board['uri']);
$query = prepare(sprintf('SELECT * FROM `posts_%s` WHERE `ip` = :ip ORDER BY `sticky` DESC, `id` DESC LIMIT :limit', $board['uri']));
$query->bindValue(':ip', $ip);
$query->bindValue(':limit', $config['mod']['ip_recentposts'], PDO::PARAM_INT);
@ -122,11 +127,30 @@ function mod_page_ip($ip) {
}
if (!isset($args['posts'][$board['uri']]))
$args['posts'][$board['uri']] = array();
$args['posts'][$board['uri']][] = $po->build(true);
$args['posts'][$board['uri']] = array('board' => $board, 'posts' => array());
$args['posts'][$board['uri']]['posts'][] = $po->build(true);
}
}
$args['boards'] = $boards;
mod_page("IP: $ip", 'mod/view_ip.html', $args);
}
function mod_page_ban() {
if(!isset($_POST['ip'], $_POST['reason'], $_POST['length'], $_POST['board']))
error($config['error']['missedafield']);
$ip = $_POST['ip'];
require_once 'inc/mod/ban.php';
ban($_POST['ip'], $_POST['reason'], parse_time($_POST['length']), $_POST['board'] == '*' ? false : $_POST['board']);
if(isset($_POST['redirect']))
header('Location: ' . $_POST['redirect'], true, $config['redirect_http']);
else
header('Location: ?/', true, $config['redirect_http']);
}