2010-12-01 05:53:11 -05:00
|
|
|
<?php
|
2012-04-11 12:49:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2012 Tinyboard Development Group
|
|
|
|
*/
|
|
|
|
|
|
|
|
require 'inc/functions.php';
|
2012-04-12 12:11:41 -04:00
|
|
|
require 'inc/mod/auth.php';
|
|
|
|
require 'inc/mod/pages.php';
|
2012-04-11 12:49:22 -04:00
|
|
|
|
2012-04-12 12:11:41 -04:00
|
|
|
// Fix for magic quotes
|
2012-04-11 12:49:22 -04:00
|
|
|
if (get_magic_quotes_gpc()) {
|
|
|
|
function strip_array($var) {
|
2012-04-12 07:56:01 -04:00
|
|
|
return is_array($var) ? array_map('strip_array', $var) : stripslashes($var);
|
2012-04-11 12:49:22 -04:00
|
|
|
}
|
2010-12-01 05:53:11 -05:00
|
|
|
|
2012-04-11 12:49:22 -04:00
|
|
|
$_GET = strip_array($_GET);
|
|
|
|
$_POST = strip_array($_POST);
|
|
|
|
}
|
|
|
|
|
|
|
|
$query = isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '';
|
|
|
|
|
2012-04-12 12:11:41 -04:00
|
|
|
$pages = array(
|
2012-04-12 20:41:30 -04:00
|
|
|
'!^$!' => ':?/', // redirect to dashboard
|
|
|
|
'!^/$!' => 'dashboard', // dashboard
|
2012-04-13 07:43:01 -04:00
|
|
|
'!^/confirm/(.+)$!' => 'confirm', // confirm action (if javascript didn't work)
|
2012-04-12 20:41:30 -04:00
|
|
|
'!^/log$!' => 'log', // modlog
|
2012-04-13 06:57:59 -04:00
|
|
|
'!^/log/(\d+)$!' => 'log', // modlog
|
2012-04-16 02:40:24 -04:00
|
|
|
|
2012-04-13 07:43:01 -04:00
|
|
|
'!^/users$!' => 'users', // manage users
|
2012-04-16 09:18:07 -04:00
|
|
|
'!^/users/(\d+)$!' => 'user', // edit user
|
2012-04-14 08:28:21 -04:00
|
|
|
'!^/users/(\d+)/(promote|demote)$!' => 'user_promote', // prmote/demote user
|
2012-04-13 08:00:40 -04:00
|
|
|
'!^/new_PM/([^/]+)$!' => 'new_pm', // create a new pm
|
2012-04-16 02:40:24 -04:00
|
|
|
'!^/PM/(\d+)(/reply)?$!' => 'pm', // read a pm
|
2012-04-12 20:41:30 -04:00
|
|
|
|
2012-04-14 08:28:21 -04:00
|
|
|
'!^/rebuild$!' => 'rebuild', // rebuild static files
|
2012-04-16 03:28:57 -04:00
|
|
|
'!^/reports$!' => 'reports', // report queue
|
|
|
|
'!^/reports/(\d+)/dismiss(all)?$!' => 'report_dismiss', // dismiss a report
|
2012-04-14 08:28:21 -04:00
|
|
|
|
2012-04-12 20:41:30 -04:00
|
|
|
'!^/ban$!' => 'ban', // new ban
|
|
|
|
'!^/IP/([\w.:]+)$!' => 'ip', // view ip address
|
|
|
|
'!^/IP/([\w.:]+)/remove_note/(\d+)$!' => 'ip_remove_note', // remove note from ip address
|
2012-04-16 02:40:24 -04:00
|
|
|
'!^/bans$!' => 'bans', // ban list
|
2012-04-16 05:13:30 -04:00
|
|
|
'!^/bans/(\d+)$!' => 'bans', // ban list
|
2012-04-12 20:41:30 -04:00
|
|
|
|
|
|
|
'!^/(\w+)/delete/(\d+)$!' => 'delete', // delete post
|
2012-04-16 06:11:10 -04:00
|
|
|
'!^/(\w+)/(un)?lock/(\d+)$!' => 'lock', // lock thread
|
|
|
|
'!^/(\w+)/(un)?sticky/(\d+)$!' => 'sticky', // sticky thread
|
|
|
|
'!^/(\w+)/bump(un)?lock/(\d+)$!' => 'bumplock', // "bumplock" thread
|
|
|
|
|
|
|
|
// these pages aren't listed in the dashboard without $config['debug']
|
|
|
|
'!^/debug/antispam$!' => 'debug_antispam',
|
2012-04-11 12:49:22 -04:00
|
|
|
|
2012-04-12 12:11:41 -04:00
|
|
|
// This should always be at the end:
|
2012-04-16 06:11:10 -04:00
|
|
|
'!^/(\w+)/$!' => 'view_board',
|
|
|
|
'!^/(\w+)/' . preg_quote($config['file_index'], '!') . '$!' => 'view_board',
|
|
|
|
'!^/(\w+)/' . str_replace('%d', '(\d+)', preg_quote($config['file_page'], '!')) . '$!' => 'view_board',
|
2012-04-12 12:31:59 -04:00
|
|
|
'!^/(\w+)/' . preg_quote($config['dir']['res'], '!') .
|
|
|
|
str_replace('%d', '(\d+)', preg_quote($config['file_page'], '!')) . '$!' => 'view_thread',
|
2012-04-12 12:11:41 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
if (!$mod)
|
|
|
|
$pages = array('//' => 'login');
|
|
|
|
|
|
|
|
foreach ($pages as $uri => $handler) {
|
|
|
|
if (preg_match($uri, $query, $matches)) {
|
|
|
|
$matches = array_slice($matches, 1);
|
|
|
|
|
|
|
|
if ($config['debug']) {
|
|
|
|
$debug['mod_page'] = array(
|
|
|
|
'req' => $query,
|
|
|
|
'match' => $uri,
|
|
|
|
'handler' => $handler
|
2012-04-11 12:49:22 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-04-12 12:11:41 -04:00
|
|
|
if ($handler[0] == ':') {
|
|
|
|
header('Location: ' . substr($handler, 1), true, $config['redirect_http']);
|
|
|
|
} elseif (is_callable("mod_page_$handler")) {
|
|
|
|
call_user_func_array("mod_page_$handler", $matches);
|
|
|
|
} elseif (is_callable("mod_$handler")) {
|
|
|
|
call_user_func_array("mod_$handler", $matches);
|
2012-04-11 12:49:22 -04:00
|
|
|
} else {
|
2012-04-12 12:11:41 -04:00
|
|
|
error("Mod page '$handler' not found!");
|
2012-04-11 12:49:22 -04:00
|
|
|
}
|
|
|
|
|
2012-04-12 12:11:41 -04:00
|
|
|
exit;
|
2010-12-01 05:53:11 -05:00
|
|
|
}
|
2012-04-11 12:49:22 -04:00
|
|
|
}
|
2011-11-16 02:53:37 -05:00
|
|
|
|
2012-04-12 12:11:41 -04:00
|
|
|
error($config['error']['404']);
|
|
|
|
|