Source code of Leftypol imageboard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1732 lines
51 KiB

13 years ago
<?php
12 years ago
/*
* Copyright (c) 2010-2013 Tinyboard Development Group
12 years ago
*/
12 years ago
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {
12 years ago
// You cannot request this file directly.
exit;
}
require_once 'inc/display.php';
require_once 'inc/template.php';
require_once 'inc/database.php';
require_once 'inc/events.php';
require_once 'inc/lib/gettext/gettext.inc';
// the user is not currently logged in as a moderator
$mod = false;
register_shutdown_function('fatal_error_handler');
mb_internal_encoding('UTF-8');
loadConfig();
function loadConfig() {
global $board, $config, $__ip, $debug, $__version;
$error = function_exists('error') ? 'error' : 'basic_error_function_because_the_other_isnt_loaded_yet';
reset_events();
12 years ago
if (!isset($_SERVER['REMOTE_ADDR']))
12 years ago
$_SERVER['REMOTE_ADDR'] = '0.0.0.0';
$arrays = array(
'db',
'cache',
'cookies',
'error',
'dir',
'mod',
'spam',
'flood_filters',
'wordfilters',
'custom_capcode',
'custom_tripcode',
'dnsbl',
'dnsbl_exceptions',
'remote',
'allowed_ext',
'allowed_ext_files',
'file_icons',
'footer',
'stylesheets',
'additional_javascript',
'markup',
'custom_pages'
);
12 years ago
$config = array();
12 years ago
foreach ($arrays as $key) {
12 years ago
$config[$key] = array();
}
12 years ago
require 'inc/config.php';
12 years ago
if (!file_exists('inc/instance-config.php'))
12 years ago
$error('Tinyboard is not configured! Create inc/instance-config.php.');
12 years ago
require 'inc/instance-config.php';
12 years ago
if (isset($board['dir']) && file_exists($board['dir'] . '/config.php')) {
12 years ago
require $board['dir'] . '/config.php';
}
12 years ago
if (!isset($__version))
12 years ago
$__version = file_exists('.installed') ? trim(file_get_contents('.installed')) : false;
$config['version'] = $__version;
12 years ago
if ($config['debug']) {
if (!isset($debug)) {
$debug = array('sql' => array(), 'purge' => array(), 'cached' => array(), 'write' => array());
12 years ago
$debug['start'] = microtime(true);
13 years ago
}
}
12 years ago
date_default_timezone_set($config['timezone']);
12 years ago
if (!isset($config['blotter']))
12 years ago
$config['blotter'] = false;
12 years ago
if (!isset($config['post_url']))
12 years ago
$config['post_url'] = $config['root'] . $config['file_post'];
12 years ago
if (!isset($config['referer_match']))
if (isset($_SERVER['HTTP_HOST'])) {
12 years ago
$config['referer_match'] = '/^' .
(preg_match($config['url_regex'], $config['root']) ? '' :
'https?:\/\/' . $_SERVER['HTTP_HOST']) .
preg_quote($config['root'], '/') .
'(' .
str_replace('%s', '\w+', preg_quote($config['board_path'], '/')) .
'(' .
preg_quote($config['file_index'], '/') . '|' .
str_replace('%d', '\d+', preg_quote($config['file_page'])) .
')?' .
'|' .
str_replace('%s', '\w+', preg_quote($config['board_path'], '/')) .
preg_quote($config['dir']['res'], '/') .
str_replace('%d', '\d+', preg_quote($config['file_page'], '/')) .
'|' .
preg_quote($config['file_mod'], '/') . '\?\/.+' .
')([#?](.+)?)?$/i';
} else {
12 years ago
// CLI mode
$config['referer_match'] = '//';
}
12 years ago
if (!isset($config['cookies']['path']))
12 years ago
$config['cookies']['path'] = &$config['root'];
12 years ago
if (!isset($config['dir']['static']))
12 years ago
$config['dir']['static'] = $config['root'] . 'static/';
12 years ago
if (!isset($config['image_sticky']))
12 years ago
$config['image_sticky'] = $config['dir']['static'] . 'sticky.gif';
12 years ago
if (!isset($config['image_locked']))
12 years ago
$config['image_locked'] = $config['dir']['static'] . 'locked.gif';
12 years ago
if (!isset($config['image_bumplocked']))
12 years ago
$config['image_bumplocked'] = $config['dir']['static'] . 'sage.gif';
12 years ago
if (!isset($config['image_deleted']))
12 years ago
$config['image_deleted'] = $config['dir']['static'] . 'deleted.png';
12 years ago
if (!isset($config['image_zip']))
12 years ago
$config['image_zip'] = $config['dir']['static'] . 'zip.png';
12 years ago
if (!isset($config['uri_thumb']))
12 years ago
$config['uri_thumb'] = $config['root'] . $board['dir'] . $config['dir']['thumb'];
12 years ago
elseif (isset($board['dir']))
12 years ago
$config['uri_thumb'] = sprintf($config['uri_thumb'], $board['dir']);
12 years ago
if (!isset($config['uri_img']))
12 years ago
$config['uri_img'] = $config['root'] . $board['dir'] . $config['dir']['img'];
12 years ago
elseif (isset($board['dir']))
12 years ago
$config['uri_img'] = sprintf($config['uri_img'], $board['dir']);
12 years ago
if (!isset($config['uri_stylesheets']))
12 years ago
$config['uri_stylesheets'] = $config['root'] . 'stylesheets/';
12 years ago
if (!isset($config['url_stylesheet']))
12 years ago
$config['url_stylesheet'] = $config['uri_stylesheets'] . 'style.css';
12 years ago
if (!isset($config['url_javascript']))
12 years ago
$config['url_javascript'] = $config['root'] . $config['file_script'];
12 years ago
if (!isset($config['additional_javascript_url']))
12 years ago
$config['additional_javascript_url'] = $config['root'];
12 years ago
if ($config['root_file']) {
12 years ago
chdir($config['root_file']);
12 years ago
}
12 years ago
12 years ago
if ($config['verbose_errors']) {
12 years ago
error_reporting(E_ALL);
ini_set('display_errors', 1);
12 years ago
}
12 years ago
// Keep the original address to properly comply with other board configurations
12 years ago
if (!isset($__ip))
12 years ago
$__ip = $_SERVER['REMOTE_ADDR'];
12 years ago
12 years ago
// ::ffff:0.0.0.0
12 years ago
if (preg_match('/^\:\:(ffff\:)?(\d+\.\d+\.\d+\.\d+)$/', $__ip, $m))
12 years ago
$_SERVER['REMOTE_ADDR'] = $m[2];
12 years ago
12 years ago
if (_setlocale(LC_ALL, $config['locale']) === false) {
12 years ago
$error('The specified locale (' . $config['locale'] . ') does not exist on your platform!');
}
12 years ago
12 years ago
if (extension_loaded('gettext')) {
12 years ago
bindtextdomain('tinyboard', './inc/locale');
bind_textdomain_codeset('tinyboard', 'UTF-8');
textdomain('tinyboard');
} else {
_bindtextdomain('tinyboard', './inc/locale');
_bind_textdomain_codeset('tinyboard', 'UTF-8');
_textdomain('tinyboard');
}
12 years ago
12 years ago
12 years ago
if ($config['syslog'])
12 years ago
openlog('tinyboard', LOG_ODELAY, LOG_SYSLOG); // open a connection to sysem logger
12 years ago
if ($config['recaptcha'])
12 years ago
require_once 'inc/lib/recaptcha/recaptchalib.php';
12 years ago
if ($config['cache']['enabled'])
12 years ago
require_once 'inc/cache.php';
event('load-config');
12 years ago
}
function basic_error_function_because_the_other_isnt_loaded_yet($message, $priority = true) {
global $config;
12 years ago
if ($config['syslog'] && $priority !== false) {
12 years ago
// Use LOG_NOTICE instead of LOG_ERR or LOG_WARNING because most error message are not significant.
_syslog($priority !== true ? $priority : LOG_NOTICE, $message);
}
// Yes, this is horrible.
die('<!DOCTYPE html><html><head><title>Error</title>' .
'<style type="text/css">' .
'body{text-align:center;font-family:arial, helvetica, sans-serif;font-size:10pt;}' .
'p{padding:0;margin:20px 0;}' .
'p.c{font-size:11px;}' .
'</style></head>' .
'<body><h2>Error</h2>' . $message . '<hr/>' .
'<p class="c">This alternative error page is being displayed because the other couldn\'t be found or hasn\'t loaded yet.</p></body></html>');
}
function fatal_error_handler() {
12 years ago
if ($error = error_get_last()) {
if ($error['type'] == E_ERROR) {
if (function_exists('error')) {
12 years ago
error('Caught fatal error: ' . $error['message'] . ' in <strong>' . $error['file'] . '</strong> on line ' . $error['line'], LOG_ERR);
} else {
basic_error_function_because_the_other_isnt_loaded_yet('Caught fatal error: ' . $error['message'] . ' in ' . $error['file'] . ' on line ' . $error['line'], LOG_ERR);
}
13 years ago
}
}
12 years ago
}
12 years ago
12 years ago
function _syslog($priority, $message) {
12 years ago
if (isset($_SERVER['REMOTE_ADDR'], $_SERVER['REQUEST_METHOD'], $_SERVER['REQUEST_URI'])) {
12 years ago
// CGI
syslog($priority, $message . ' - client: ' . $_SERVER['REMOTE_ADDR'] . ', request: "' . $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . '"');
} else {
syslog($priority, $message);
}
}
12 years ago
function create_antibot($board, $thread = null) {
require_once dirname(__FILE__) . '/anti-bot.php';
return _create_antibot($board, $thread);
}
12 years ago
function rebuildThemes($action) {
// List themes
$query = query("SELECT `theme` FROM `theme_settings` WHERE `name` IS NULL AND `value` IS NULL") or error(db_error());
11 years ago
12 years ago
while ($theme = $query->fetch()) {
12 years ago
rebuildTheme($theme['theme'], $action);
}
}
function loadThemeConfig($_theme) {
global $config;
12 years ago
if (!file_exists($config['dir']['themes'] . '/' . $_theme . '/info.php'))
12 years ago
return false;
// Load theme information into $theme
include $config['dir']['themes'] . '/' . $_theme . '/info.php';
return $theme;
}
function rebuildTheme($theme, $action) {
global $config, $_theme;
$_theme = $theme;
$theme = loadThemeConfig($_theme);
12 years ago
if (file_exists($config['dir']['themes'] . '/' . $_theme . '/theme.php')) {
12 years ago
require_once $config['dir']['themes'] . '/' . $_theme . '/theme.php';
12 years ago
12 years ago
$theme['build_function']($action, themeSettings($_theme));
}
}
function themeSettings($theme) {
$query = prepare("SELECT `name`, `value` FROM `theme_settings` WHERE `theme` = :theme AND `name` IS NOT NULL");
$query->bindValue(':theme', $theme);
$query->execute() or error(db_error($query));
$settings = array();
12 years ago
while ($s = $query->fetch()) {
12 years ago
$settings[$s['name']] = $s['value'];
}
return $settings;
}
function sprintf3($str, $vars, $delim = '%') {
$replaces = array();
12 years ago
foreach ($vars as $k => $v) {
12 years ago
$replaces[$delim . $k . $delim] = $v;
}
return str_replace(array_keys($replaces),
array_values($replaces), $str);
}
function setupBoard($array) {
global $board, $config;
$board = array(
'uri' => $array['uri'],
'title' => $array['title'],
'subtitle' => $array['subtitle']
);
12 years ago
// older versions
$board['name'] = &$board['title'];
12 years ago
$board['dir'] = sprintf($config['board_path'], $board['uri']);
$board['url'] = sprintf($config['board_abbreviation'], $board['uri']);
loadConfig();
12 years ago
12 years ago
if (!file_exists($board['dir']))
@mkdir($board['dir'], 0777) or error("Couldn't create " . $board['dir'] . ". Check permissions.", true);
12 years ago
if (!file_exists($board['dir'] . $config['dir']['img']))
@mkdir($board['dir'] . $config['dir']['img'], 0777)
or error("Couldn't create " . $board['dir'] . $config['dir']['img'] . ". Check permissions.", true);
12 years ago
if (!file_exists($board['dir'] . $config['dir']['thumb']))
@mkdir($board['dir'] . $config['dir']['thumb'], 0777)
or error("Couldn't create " . $board['dir'] . $config['dir']['img'] . ". Check permissions.", true);
12 years ago
if (!file_exists($board['dir'] . $config['dir']['res']))
@mkdir($board['dir'] . $config['dir']['res'], 0777)
or error("Couldn't create " . $board['dir'] . $config['dir']['img'] . ". Check permissions.", true);
12 years ago
}
function openBoard($uri) {
$board = getBoardInfo($uri);
if ($board) {
setupBoard($board);
return true;
}
return false;
}
function getBoardInfo($uri) {
12 years ago
global $config;
11 years ago
12 years ago
if ($config['cache']['enabled'] && ($board = cache::get('board_' . $uri))) {
return $board;
}
12 years ago
$query = prepare("SELECT * FROM `boards` WHERE `uri` = :uri LIMIT 1");
$query->bindValue(':uri', $uri);
$query->execute() or error(db_error($query));
12 years ago
if ($board = $query->fetch()) {
if ($config['cache']['enabled'])
12 years ago
cache::set('board_' . $uri, $board);
return $board;
11 years ago
}
return false;
12 years ago
}
12 years ago
12 years ago
function boardTitle($uri) {
$board = getBoardInfo($uri);
if ($board)
12 years ago
return $board['title'];
11 years ago
return false;
12 years ago
}
function purge($uri) {
global $config, $debug;
if (preg_match($config['referer_match'], $config['root']) && isset($_SERVER['REQUEST_URI'])) {
12 years ago
$uri = (str_replace('\\', '/', dirname($_SERVER['REQUEST_URI'])) == '/' ? '/' : str_replace('\\', '/', dirname($_SERVER['REQUEST_URI'])) . '/') . $uri;
} else {
$uri = $config['root'] . $uri;
}
12 years ago
if ($config['debug']) {
12 years ago
$debug['purge'][] = $uri;
}
12 years ago
foreach ($config['purge'] as &$purge) {
12 years ago
$host = &$purge[0];
$port = &$purge[1];
$http_host = isset($purge[2]) ? $purge[2] : (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost');
12 years ago
$request = "PURGE {$uri} HTTP/1.1\r\nHost: {$http_host}\r\nUser-Agent: Tinyboard\r\nConnection: Close\r\n\r\n";
12 years ago
if ($fp = fsockopen($host, $port, $errno, $errstr, $config['purge_timeout'])) {
12 years ago
fwrite($fp, $request);
fclose($fp);
} else {
12 years ago
// Cannot connect?
error('Could not PURGE for ' . $host);
}
}
12 years ago
}
function file_write($path, $data, $simple = false, $skip_purge = false) {
global $config, $debug;
12 years ago
if (preg_match('/^remote:\/\/(.+)\:(.+)$/', $path, $m)) {
if (isset($config['remote'][$m[1]])) {
12 years ago
require_once 'inc/remote.php';
12 years ago
$remote = new Remote($config['remote'][$m[1]]);
$remote->write($data, $m[2]);
return;
} else {
error('Invalid remote server: ' . $m[1]);
}
}
12 years ago
if (!$fp = fopen($path, $simple ? 'w' : 'c'))
12 years ago
error('Unable to open file for writing: ' . $path);
12 years ago
// File locking
12 years ago
if (!$simple && !flock($fp, LOCK_EX)) {
12 years ago
error('Unable to lock file: ' . $path);
}
12 years ago
// Truncate file
12 years ago
if (!$simple && !ftruncate($fp, 0))
12 years ago
error('Unable to truncate file: ' . $path);
12 years ago
12 years ago
// Write data
if (($bytes = fwrite($fp, $data)) === false)
12 years ago
error('Unable to write to file: ' . $path);
12 years ago
// Unlock
12 years ago
if (!$simple)
12 years ago
flock($fp, LOCK_UN);
// Close
12 years ago
if (!fclose($fp))
12 years ago
error('Unable to close file: ' . $path);
if (!$skip_purge && isset($config['purge'])) {
12 years ago
// Purge cache
12 years ago
if (basename($path) == $config['file_index']) {
12 years ago
// Index file (/index.html); purge "/" as well
$uri = dirname($path);
// root
12 years ago
if ($uri == '.')
12 years ago
$uri = '';
else
$uri .= '/';
purge($uri);
13 years ago
}
12 years ago
purge($path);
13 years ago
}
if ($config['debug']) {
$debug['write'][] = $path . ': ' . $bytes . ' bytes';
}
12 years ago
event('write', $path);
}
function file_unlink($path) {
global $config, $debug;
12 years ago
if ($config['debug']) {
if (!isset($debug['unlink']))
12 years ago
$debug['unlink'] = array();
$debug['unlink'][] = $path;
}
$ret = @unlink($path);
12 years ago
if (isset($config['purge']) && $path[0] != '/' && isset($_SERVER['HTTP_HOST'])) {
12 years ago
// Purge cache
12 years ago
if (basename($path) == $config['file_index']) {
12 years ago
// Index file (/index.html); purge "/" as well
$uri = dirname($path);
// root
12 years ago
if ($uri == '.')
12 years ago
$uri = '';
else
$uri .= '/';
purge($uri);
13 years ago
}
12 years ago
purge($path);
13 years ago
}
12 years ago
event('unlink', $path);
return $ret;
}
function hasPermission($action = null, $board = null, $_mod = null) {
global $config;
12 years ago
if (isset($_mod))
12 years ago
$mod = &$_mod;
else
global $mod;
12 years ago
if (!is_array($mod))
12 years ago
return false;
12 years ago
if (isset($action) && $mod['type'] < $action)
12 years ago
return false;
12 years ago
if (!isset($board) || $config['mod']['skip_per_board'])
12 years ago
return true;
12 years ago
if (!isset($mod['boards']))
12 years ago
return false;
12 years ago
if (!in_array('*', $mod['boards']) && !in_array($board, $mod['boards']))
12 years ago
return false;
return true;
}
function listBoards() {
global $config;
12 years ago
if ($config['cache']['enabled'] && ($boards = cache::get('all_boards')))
12 years ago
return $boards;
$query = query("SELECT * FROM `boards` ORDER BY `uri`") or error(db_error());
$boards = $query->fetchAll();
12 years ago
if ($config['cache']['enabled'])
12 years ago
cache::set('all_boards', $boards);
return $boards;
}
function checkFlood($post) {
global $board, $config;
$query = prepare(sprintf("SELECT * FROM `posts_%s` WHERE (`ip` = :ip AND `time` >= :floodtime) OR (`ip` = :ip AND `body` != '' AND `body` = :body AND `time` >= :floodsameiptime) OR (`body` != '' AND `body` = :body AND `time` >= :floodsametime) LIMIT 1", $board['uri']));
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
$query->bindValue(':body', $post['body']);
12 years ago
$query->bindValue(':floodtime', time()-$config['flood_time'], PDO::PARAM_INT);
$query->bindValue(':floodsameiptime', time()-$config['flood_time_ip'], PDO::PARAM_INT);
$query->bindValue(':floodsametime', time()-$config['flood_time_same'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
$flood = (bool)$query->fetch();
12 years ago
if (event('check-flood', $post))
12 years ago
return true;
return $flood;
}
function until($timestamp) {
$difference = $timestamp - time();
12 years ago
if ($difference < 60) {
12 years ago
return $difference . ' second' . ($difference != 1 ? 's' : '');
12 years ago
} elseif ($difference < 60*60) {
12 years ago
return ($num = round($difference/(60))) . ' minute' . ($num != 1 ? 's' : '');
12 years ago
} elseif ($difference < 60*60*24) {
12 years ago
return ($num = round($difference/(60*60))) . ' hour' . ($num != 1 ? 's' : '');
12 years ago
} elseif ($difference < 60*60*24*7) {
12 years ago
return ($num = round($difference/(60*60*24))) . ' day' . ($num != 1 ? 's' : '');
12 years ago
} elseif ($difference < 60*60*24*365) {
12 years ago
return ($num = round($difference/(60*60*24*7))) . ' week' . ($num != 1 ? 's' : '');
}
11 years ago
return ($num = round($difference/(60*60*24*365))) . ' year' . ($num != 1 ? 's' : '');
12 years ago
}
function ago($timestamp) {
$difference = time() - $timestamp;
12 years ago
if ($difference < 60) {
12 years ago
return $difference . ' second' . ($difference != 1 ? 's' : '');
12 years ago
} elseif ($difference < 60*60) {
12 years ago
return ($num = round($difference/(60))) . ' minute' . ($num != 1 ? 's' : '');
12 years ago
} elseif ($difference < 60*60*24) {
12 years ago
return ($num = round($difference/(60*60))) . ' hour' . ($num != 1 ? 's' : '');
12 years ago
} elseif ($difference < 60*60*24*7) {
12 years ago
return ($num = round($difference/(60*60*24))) . ' day' . ($num != 1 ? 's' : '');
12 years ago
} elseif ($difference < 60*60*24*365) {
12 years ago
return ($num = round($difference/(60*60*24*7))) . ' week' . ($num != 1 ? 's' : '');
}
11 years ago
return ($num = round($difference/(60*60*24*365))) . ' year' . ($num != 1 ? 's' : '');
12 years ago
}
function displayBan($ban) {
global $config;
$ban['ip'] = $_SERVER['REMOTE_ADDR'];
// Show banned page and exit
die(
Element('page.html', array(
'title' => 'Banned!',
'config' => $config,
'body' => Element('banned.html', array(
'config' => $config,
12 years ago
'ban' => $ban
)
))
));
}
function checkBan($board = 0) {
global $config;
12 years ago
if (!isset($_SERVER['REMOTE_ADDR'])) {
12 years ago
// Server misconfiguration
return;
}
12 years ago
if (event('check-ban', $board))
12 years ago
return true;
$query = prepare("SELECT `set`, `expires`, `reason`, `board`, `bans`.`id` FROM `bans` WHERE (`board` IS NULL OR `board` = :board) AND `ip` = :ip ORDER BY `expires` IS NULL DESC, `expires` DESC, `expires` DESC LIMIT 1");
12 years ago
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
$query->bindValue(':board', $board);
$query->execute() or error(db_error($query));
12 years ago
if ($query->rowCount() < 1 && $config['ban_range']) {
$query = prepare("SELECT `set`, `expires`, `reason`, `board`, `bans`.`id` FROM `bans` WHERE (`board` IS NULL OR `board` = :board) AND :ip LIKE REPLACE(REPLACE(`ip`, '%', '!%'), '*', '%') ESCAPE '!' ORDER BY `expires` IS NULL DESC, `expires` DESC LIMIT 1");
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
13 years ago
$query->bindValue(':board', $board);
$query->execute() or error(db_error($query));
13 years ago
}
12 years ago
if ($query->rowCount() < 1 && $config['ban_cidr'] && !isIPv6()) {
12 years ago
// my most insane SQL query yet
$query = prepare("SELECT `set`, `expires`, `reason`, `board`, `bans`.`id` FROM `bans` WHERE (`board` IS NULL OR `board` = :board)
12 years ago
AND (
`ip` REGEXP '^(\[0-9]+\.\[0-9]+\.\[0-9]+\.\[0-9]+\)\/(\[0-9]+)$'
AND
:ip >= INET_ATON(SUBSTRING_INDEX(`ip`, '/', 1))
AND
:ip < INET_ATON(SUBSTRING_INDEX(`ip`, '/', 1)) + POW(2, 32 - SUBSTRING_INDEX(`ip`, '/', -1))
)
ORDER BY `expires` IS NULL DESC, `expires` DESC LIMIT 1");
$query->bindValue(':ip', ip2long($_SERVER['REMOTE_ADDR']));
$query->bindValue(':board', $board);
$query->execute() or error(db_error($query));
}
12 years ago
if ($ban = $query->fetch()) {
if ($ban['expires'] && $ban['expires'] < time()) {
12 years ago
// Ban expired
$query = prepare("DELETE FROM `bans` WHERE `id` = :id LIMIT 1");
$query->bindValue(':id', $ban['id'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
return;
}
12 years ago
displayBan($ban);
}
12 years ago
}
function threadLocked($id) {
global $board;
12 years ago
if (event('check-locked', $id))
12 years ago
return true;
$query = prepare(sprintf("SELECT `locked` FROM `posts_%s` WHERE `id` = :id AND `thread` IS NULL LIMIT 1", $board['uri']));
$query->bindValue(':id', $id, PDO::PARAM_INT);
$query->execute() or error(db_error());
12 years ago
if (!$post = $query->fetch()) {
12 years ago
// Non-existant, so it can't be locked...
return false;
}
12 years ago
return (bool)$post['locked'];
}
function threadSageLocked($id) {
global $board;
12 years ago
if (event('check-sage-locked', $id))
12 years ago
return true;
$query = prepare(sprintf("SELECT `sage` FROM `posts_%s` WHERE `id` = :id AND `thread` IS NULL LIMIT 1", $board['uri']));
$query->bindValue(':id', $id, PDO::PARAM_INT);
$query->execute() or error(db_error());
12 years ago
if (!$post = $query->fetch()) {
12 years ago
// Non-existant, so it can't be locked...
return false;
}
return (bool) $post['sage'];
}
function threadExists($id) {
global $board;
$query = prepare(sprintf("SELECT 1 FROM `posts_%s` WHERE `id` = :id AND `thread` IS NULL LIMIT 1", $board['uri']));
$query->bindValue(':id', $id, PDO::PARAM_INT);
$query->execute() or error(db_error());
12 years ago
if ($query->rowCount()) {
12 years ago
return true;
11 years ago
}
return false;
12 years ago
}
function post(array $post) {
global $pdo, $board;
$query = prepare(sprintf("INSERT INTO `posts_%s` (`id`, `thread`, `subject`, `email`, `name`, `trip`, `capcode`, `body`, `body_nomarkup`, `time`, `bump`, `thumb`, `thumbwidth`, `thumbheight`, `file`, `filewidth`, `fileheight`, `filesize`, `filename`, `filehash`, `password`, `ip`, `sticky`, `locked`, `sage`, `embed`) VALUES ( NULL, :thread, :subject, :email, :name, :trip, :capcode, :body, :body_nomarkup, :time, :time, :thumb, :thumbwidth, :thumbheight, :file, :width, :height, :filesize, :filename, :filehash, :password, :ip, :sticky, :locked, 0, :embed)", $board['uri']));
12 years ago
// Basic stuff
12 years ago
if (!empty($post['subject'])) {
12 years ago
$query->bindValue(':subject', $post['subject']);
} else {
$query->bindValue(':subject', NULL, PDO::PARAM_NULL);
}
12 years ago
if (!empty($post['email'])) {
12 years ago
$query->bindValue(':email', $post['email']);
} else {
$query->bindValue(':email', NULL, PDO::PARAM_NULL);
}
12 years ago
if (!empty($post['trip'])) {
12 years ago
$query->bindValue(':trip', $post['trip']);
} else {
$query->bindValue(':trip', NULL, PDO::PARAM_NULL);
}
$query->bindValue(':name', $post['name']);
$query->bindValue(':body', $post['body']);
$query->bindValue(':body_nomarkup', $post['body_nomarkup']);
$query->bindValue(':time', isset($post['time']) ? $post['time'] : time(), PDO::PARAM_INT);
$query->bindValue(':password', $post['password']);
$query->bindValue(':ip', isset($post['ip']) ? $post['ip'] : $_SERVER['REMOTE_ADDR']);
if ($post['op'] && $post['mod'] && isset($post['sticky']) && $post['sticky']) {
12 years ago
$query->bindValue(':sticky', 1, PDO::PARAM_INT);
} else {
$query->bindValue(':sticky', 0, PDO::PARAM_INT);
}
if ($post['op'] && $post['mod'] && isset($post['locked']) && $post['locked']) {
12 years ago
$query->bindValue(':locked', 1, PDO::PARAM_INT);
} else {
$query->bindValue(':locked', 0, PDO::PARAM_INT);
}
12 years ago
if ($post['mod'] && isset($post['capcode']) && $post['capcode']) {
12 years ago
$query->bindValue(':capcode', $post['capcode'], PDO::PARAM_INT);
} else {
$query->bindValue(':capcode', NULL, PDO::PARAM_NULL);
}
12 years ago
if (!empty($post['embed'])) {
12 years ago
$query->bindValue(':embed', $post['embed']);
} else {
$query->bindValue(':embed', NULL, PDO::PARAM_NULL);
}
12 years ago
if ($post['op']) {
12 years ago
// No parent thread, image
$query->bindValue(':thread', null, PDO::PARAM_NULL);
} else {
$query->bindValue(':thread', $post['thread'], PDO::PARAM_INT);
}
12 years ago
if ($post['has_file']) {
12 years ago
$query->bindValue(':thumb', $post['thumb']);
$query->bindValue(':thumbwidth', $post['thumbwidth'], PDO::PARAM_INT);