Multi-board support.
This commit is contained in:
parent
d80cca13c0
commit
58b25f319c
43
post.php
43
post.php
@ -8,20 +8,6 @@
|
|||||||
require 'inc/template.php';
|
require 'inc/template.php';
|
||||||
require 'inc/user.php';
|
require 'inc/user.php';
|
||||||
|
|
||||||
// For example, we're on /b/
|
|
||||||
$board = Array(
|
|
||||||
'id' => 1,
|
|
||||||
'uri' => 'b',
|
|
||||||
'name' => 'Beta',
|
|
||||||
'title' => 'In development.');
|
|
||||||
$board['dir'] = sprintf(BOARD_PATH, $board['uri']);
|
|
||||||
$board['url'] = sprintf(BOARD_ABBREVIATION, $board['uri']);
|
|
||||||
|
|
||||||
if(!file_exists($board['dir'])) mkdir($board['dir'], 0777);
|
|
||||||
if(!file_exists($board['dir'] . DIR_IMG)) mkdir($board['dir'] . DIR_IMG, 0777);
|
|
||||||
if(!file_exists($board['dir'] . DIR_THUMB)) mkdir($board['dir'] . DIR_THUMB, 0777);
|
|
||||||
if(!file_exists($board['dir'] . DIR_RES)) mkdir($board['dir'] . DIR_RES, 0777);
|
|
||||||
|
|
||||||
$body = '';
|
$body = '';
|
||||||
|
|
||||||
// Fix for magic quotes
|
// Fix for magic quotes
|
||||||
@ -40,6 +26,7 @@
|
|||||||
!isset($_POST['email']) ||
|
!isset($_POST['email']) ||
|
||||||
!isset($_POST['subject']) ||
|
!isset($_POST['subject']) ||
|
||||||
!isset($_POST['body']) ||
|
!isset($_POST['body']) ||
|
||||||
|
!isset($_POST['board']) ||
|
||||||
!isset($_POST['password'])
|
!isset($_POST['password'])
|
||||||
) error(ERROR_BOT);
|
) error(ERROR_BOT);
|
||||||
|
|
||||||
@ -59,8 +46,6 @@
|
|||||||
if(!isset($_SERVER['HTTP_REFERER']) || !preg_match(URL_MATCH, $_SERVER['HTTP_REFERER'])) error(ERROR_BOT);
|
if(!isset($_SERVER['HTTP_REFERER']) || !preg_match(URL_MATCH, $_SERVER['HTTP_REFERER'])) error(ERROR_BOT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// TODO: Since we're now using static HTML files, we can't give them cookies on their first page view
|
// TODO: Since we're now using static HTML files, we can't give them cookies on their first page view
|
||||||
// Find another anti-spam method.
|
// Find another anti-spam method.
|
||||||
|
|
||||||
@ -95,6 +80,8 @@
|
|||||||
'maxsz'=>commaize(MAX_FILESIZE))));
|
'maxsz'=>commaize(MAX_FILESIZE))));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!openBoard($post['board'])) error(ERROR_NOBOARD);
|
||||||
|
|
||||||
$trip = generate_tripcode($post['name']);
|
$trip = generate_tripcode($post['name']);
|
||||||
$post['name'] = $trip[0];
|
$post['name'] = $trip[0];
|
||||||
$post['trip'] = (isset($trip[1])?$trip[1]:'');
|
$post['trip'] = (isset($trip[1])?$trip[1]:'');
|
||||||
@ -320,11 +307,31 @@
|
|||||||
|
|
||||||
exit;
|
exit;
|
||||||
} else {
|
} else {
|
||||||
if(!file_exists(FILE_INDEX)) {
|
if(!file_exists(HAS_INSTALLED)) {
|
||||||
|
sql_open();
|
||||||
|
|
||||||
|
// Build all boards
|
||||||
|
$boards_res = mysql_query('SELECT * FROM `boards`', $sql) or error(mysql_error($sql));
|
||||||
|
while($_board = mysql_fetch_array($boards_res)) {
|
||||||
|
setupBoard($_board);
|
||||||
buildIndex();
|
buildIndex();
|
||||||
}
|
}
|
||||||
|
|
||||||
header('Location: ' . ROOT . FILE_INDEX, true, 302);
|
sql_close();
|
||||||
|
touch(HAS_INSTALLED, 0777);
|
||||||
|
|
||||||
|
die(Element('page.html', Array(
|
||||||
|
'index'=>ROOT,
|
||||||
|
'title'=>'Success',
|
||||||
|
'body'=>"<center>" .
|
||||||
|
"<h2>Tinyboard is now installed!</h2>" .
|
||||||
|
"</center>"
|
||||||
|
)));
|
||||||
|
} else {
|
||||||
|
// They opened post.php in their browser manually.
|
||||||
|
// Possible TODO: Redirect back to homepage.
|
||||||
|
error(ERROR_NOPOST);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user