mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-24 07:30:10 +01:00
Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts: install.php
This commit is contained in:
commit
069f1def9b
@ -66,7 +66,7 @@ class Cache {
|
|||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
public static function set($key, $value, $expires = false) {
|
public static function set($key, $value, $expires = false) {
|
||||||
global $config;
|
global $config, $debug;
|
||||||
|
|
||||||
$key = $config['cache']['prefix'] . $key;
|
$key = $config['cache']['prefix'] . $key;
|
||||||
|
|
||||||
|
@ -88,12 +88,12 @@
|
|||||||
$config['db']['database'] = '';
|
$config['db']['database'] = '';
|
||||||
// Table prefix (optional)
|
// Table prefix (optional)
|
||||||
$config['db']['prefix'] = '';
|
$config['db']['prefix'] = '';
|
||||||
// Use a persistent connection (experimental; benefits unknown)
|
// Use a persistent database connection when possible
|
||||||
$config['db']['persistent'] = false;
|
$config['db']['persistent'] = false;
|
||||||
// Anything more to add to the DSN string (eg. port=xxx;foo=bar)
|
// Anything more to add to the DSN string (eg. port=xxx;foo=bar)
|
||||||
$config['db']['dsn'] = '';
|
$config['db']['dsn'] = '';
|
||||||
// Timeout duration in seconds (not all drivers support this)
|
// Connection timeout duration in seconds
|
||||||
$config['db']['timeout'] = 5;
|
$config['db']['timeout'] = 30;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ====================
|
* ====================
|
||||||
|
@ -28,13 +28,13 @@ class PreparedQueryDebug {
|
|||||||
$return = call_user_func_array(array($this->query, $function), $args);
|
$return = call_user_func_array(array($this->query, $function), $args);
|
||||||
|
|
||||||
if ($config['debug'] && $function == 'execute') {
|
if ($config['debug'] && $function == 'execute') {
|
||||||
$time = round((microtime(true) - $start) * 1000, 2) . 'ms';
|
$time = microtime(true) - $start;
|
||||||
|
|
||||||
$debug['sql'][] = array(
|
$debug['sql'][] = array(
|
||||||
'query' => $this->query->queryString,
|
'query' => $this->query->queryString,
|
||||||
'rows' => $this->query->rowCount(),
|
'rows' => $this->query->rowCount(),
|
||||||
'time' => '~' . $time
|
'time' => '~' . round($time * 1000, 2) . 'ms'
|
||||||
);
|
);
|
||||||
|
$debug['time']['db_queries'] += $time;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
@ -42,10 +42,14 @@ class PreparedQueryDebug {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function sql_open() {
|
function sql_open() {
|
||||||
global $pdo, $config;
|
global $pdo, $config, $debug;
|
||||||
if ($pdo)
|
if ($pdo)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
|
||||||
|
if ($config['debug'])
|
||||||
|
$start = microtime(true);
|
||||||
|
|
||||||
if (isset($config['db']['server'][0]) && $config['db']['server'][0] == ':')
|
if (isset($config['db']['server'][0]) && $config['db']['server'][0] == ':')
|
||||||
$unix_socket = substr($config['db']['server'], 1);
|
$unix_socket = substr($config['db']['server'], 1);
|
||||||
else
|
else
|
||||||
@ -64,6 +68,10 @@ function sql_open() {
|
|||||||
if ($config['db']['persistent'])
|
if ($config['db']['persistent'])
|
||||||
$options[PDO::ATTR_PERSISTENT] = true;
|
$options[PDO::ATTR_PERSISTENT] = true;
|
||||||
$pdo = new PDO($dsn, $config['db']['user'], $config['db']['password'], $options);
|
$pdo = new PDO($dsn, $config['db']['user'], $config['db']['password'], $options);
|
||||||
|
|
||||||
|
if ($config['debug'])
|
||||||
|
$debug['time']['db_connect'] = '~' . round((microtime(true) - $start) * 1000, 2) . 'ms';
|
||||||
|
|
||||||
if (mysql_version() >= 50503)
|
if (mysql_version() >= 50503)
|
||||||
query('SET NAMES utf8mb4') or error(db_error());
|
query('SET NAMES utf8mb4') or error(db_error());
|
||||||
else
|
else
|
||||||
@ -117,12 +125,13 @@ function query($query) {
|
|||||||
$query = $pdo->query($query);
|
$query = $pdo->query($query);
|
||||||
if (!$query)
|
if (!$query)
|
||||||
return false;
|
return false;
|
||||||
$time = round((microtime(true) - $start) * 1000, 2) . 'ms';
|
$time = microtime(true) - $start;
|
||||||
$debug['sql'][] = array(
|
$debug['sql'][] = array(
|
||||||
'query' => $query->queryString,
|
'query' => $query->queryString,
|
||||||
'rows' => $query->rowCount(),
|
'rows' => $query->rowCount(),
|
||||||
'time' => '~' . $time
|
'time' => '~' . round($time * 1000, 2) . 'ms'
|
||||||
);
|
);
|
||||||
|
$debug['time']['db_queries'] += $time;
|
||||||
return $query;
|
return $query;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ function pm_snippet($body, $len=null) {
|
|||||||
$len = &$config['mod']['snippet_length'];
|
$len = &$config['mod']['snippet_length'];
|
||||||
|
|
||||||
// Replace line breaks with some whitespace
|
// Replace line breaks with some whitespace
|
||||||
$body = str_replace('<br/>', ' ', $body);
|
$body = preg_replace('@<br/?>@i', ' ', $body);
|
||||||
|
|
||||||
// Strip tags
|
// Strip tags
|
||||||
$body = strip_tags($body);
|
$body = strip_tags($body);
|
||||||
|
@ -81,14 +81,6 @@ function loadConfig() {
|
|||||||
$__version = file_exists('.installed') ? trim(file_get_contents('.installed')) : false;
|
$__version = file_exists('.installed') ? trim(file_get_contents('.installed')) : false;
|
||||||
$config['version'] = $__version;
|
$config['version'] = $__version;
|
||||||
|
|
||||||
if ($config['debug']) {
|
|
||||||
if (!isset($debug)) {
|
|
||||||
$debug = array('sql' => array(), 'exec' => array(), 'purge' => array(), 'cached' => array(), 'write' => array());
|
|
||||||
$debug['start'] = $microtime_start;
|
|
||||||
$debug['start_debug'] = microtime(true);;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
date_default_timezone_set($config['timezone']);
|
date_default_timezone_set($config['timezone']);
|
||||||
|
|
||||||
if (!isset($config['global_message']))
|
if (!isset($config['global_message']))
|
||||||
@ -179,10 +171,10 @@ function loadConfig() {
|
|||||||
if (preg_match('/^\:\:(ffff\:)?(\d+\.\d+\.\d+\.\d+)$/', $__ip, $m))
|
if (preg_match('/^\:\:(ffff\:)?(\d+\.\d+\.\d+\.\d+)$/', $__ip, $m))
|
||||||
$_SERVER['REMOTE_ADDR'] = $m[2];
|
$_SERVER['REMOTE_ADDR'] = $m[2];
|
||||||
|
|
||||||
|
if ($config['locale'] != 'en') {
|
||||||
if (_setlocale(LC_ALL, $config['locale']) === false) {
|
if (_setlocale(LC_ALL, $config['locale']) === false) {
|
||||||
$error('The specified locale (' . $config['locale'] . ') does not exist on your platform!');
|
$error('The specified locale (' . $config['locale'] . ') does not exist on your platform!');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (extension_loaded('gettext')) {
|
if (extension_loaded('gettext')) {
|
||||||
bindtextdomain('tinyboard', './inc/locale');
|
bindtextdomain('tinyboard', './inc/locale');
|
||||||
bind_textdomain_codeset('tinyboard', 'UTF-8');
|
bind_textdomain_codeset('tinyboard', 'UTF-8');
|
||||||
@ -192,7 +184,7 @@ function loadConfig() {
|
|||||||
_bind_textdomain_codeset('tinyboard', 'UTF-8');
|
_bind_textdomain_codeset('tinyboard', 'UTF-8');
|
||||||
_textdomain('tinyboard');
|
_textdomain('tinyboard');
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($config['syslog'])
|
if ($config['syslog'])
|
||||||
openlog('tinyboard', LOG_ODELAY, LOG_SYSLOG); // open a connection to sysem logger
|
openlog('tinyboard', LOG_ODELAY, LOG_SYSLOG); // open a connection to sysem logger
|
||||||
@ -202,6 +194,25 @@ function loadConfig() {
|
|||||||
if ($config['cache']['enabled'])
|
if ($config['cache']['enabled'])
|
||||||
require_once 'inc/cache.php';
|
require_once 'inc/cache.php';
|
||||||
event('load-config');
|
event('load-config');
|
||||||
|
|
||||||
|
if ($config['debug']) {
|
||||||
|
if (!isset($debug)) {
|
||||||
|
$debug = array(
|
||||||
|
'sql' => array(),
|
||||||
|
'exec' => array(),
|
||||||
|
'purge' => array(),
|
||||||
|
'cached' => array(),
|
||||||
|
'write' => array(),
|
||||||
|
'time' => array(
|
||||||
|
'db_queries' => 0,
|
||||||
|
'exec' => 0,
|
||||||
|
),
|
||||||
|
'start' => $microtime_start,
|
||||||
|
'start_debug' => microtime(true)
|
||||||
|
);
|
||||||
|
$debug['start'] = $microtime_start;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function basic_error_function_because_the_other_isnt_loaded_yet($message, $priority = true) {
|
function basic_error_function_because_the_other_isnt_loaded_yet($message, $priority = true) {
|
||||||
@ -565,7 +576,12 @@ function listBoards() {
|
|||||||
function checkFlood($post) {
|
function checkFlood($post) {
|
||||||
global $board, $config;
|
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 = prepare(sprintf("SELECT COUNT(*) FROM ``posts_%s`` WHERE
|
||||||
|
(`ip` = :ip AND `time` >= :floodtime)
|
||||||
|
OR
|
||||||
|
(`ip` = :ip AND :body != '' AND `body_nomarkup` = :body AND `time` >= :floodsameiptime)
|
||||||
|
OR
|
||||||
|
(:body != '' AND `body_nomarkup` = :body AND `time` >= :floodsametime) LIMIT 1", $board['uri']));
|
||||||
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
|
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
|
||||||
$query->bindValue(':body', $post['body']);
|
$query->bindValue(':body', $post['body']);
|
||||||
$query->bindValue(':floodtime', time()-$config['flood_time'], PDO::PARAM_INT);
|
$query->bindValue(':floodtime', time()-$config['flood_time'], PDO::PARAM_INT);
|
||||||
@ -573,7 +589,7 @@ function checkFlood($post) {
|
|||||||
$query->bindValue(':floodsametime', time()-$config['flood_time_same'], PDO::PARAM_INT);
|
$query->bindValue(':floodsametime', time()-$config['flood_time_same'], PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
$flood = (bool) $query->fetch(PDO::FETCH_ASSOC);
|
$flood = (bool) $query->fetchColumn();
|
||||||
|
|
||||||
if (event('check-flood', $post))
|
if (event('check-flood', $post))
|
||||||
return true;
|
return true;
|
||||||
@ -650,12 +666,12 @@ function checkBan($board = 0) {
|
|||||||
if (event('check-ban', $board))
|
if (event('check-ban', $board))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
$query = prepare("SELECT `set`, `expires`, `reason`, `board`, `seen`, ``bans``.`id` FROM ``bans`` WHERE (`board` IS NULL OR `board` = :board) AND `ip` = :ip ORDER BY `expires` IS NULL DESC, `expires` DESC LIMIT 1");
|
$query = prepare("SELECT `set`, `expires`, `reason`, `board`, `seen`, `id` FROM ``bans`` WHERE (`board` IS NULL OR `board` = :board) AND `ip` = :ip ORDER BY `expires` IS NULL DESC, `expires` DESC LIMIT 1");
|
||||||
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
|
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
|
||||||
$query->bindValue(':board', $board);
|
$query->bindValue(':board', $board);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
if ($query->rowCount() < 1 && $config['ban_range']) {
|
if ($query->rowCount() < 1 && $config['ban_range']) {
|
||||||
$query = prepare("SELECT `set`, `expires`, `reason`, `board`, `seen`, ``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 = prepare("SELECT `set`, `expires`, `reason`, `board`, `seen`, `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']);
|
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
|
||||||
$query->bindValue(':board', $board);
|
$query->bindValue(':board', $board);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
@ -990,7 +1006,7 @@ function deletePost($id, $error_if_doesnt_exist=true, $rebuild_after=true) {
|
|||||||
$query->bindValue(':id', $id, PDO::PARAM_INT);
|
$query->bindValue(':id', $id, PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
$query = prepare("SELECT `board`, `post` FROM ``cites`` WHERE `target_board` = :board AND (`target` = " . implode(' OR `target` = ', $ids) . ")");
|
$query = prepare("SELECT `board`, `post` FROM ``cites`` WHERE `target_board` = :board AND (`target` = " . implode(' OR `target` = ', $ids) . ") ORDER BY `board`");
|
||||||
$query->bindValue(':board', $board['uri']);
|
$query->bindValue(':board', $board['uri']);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
while ($cite = $query->fetch(PDO::FETCH_ASSOC)) {
|
while ($cite = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
@ -1005,7 +1021,7 @@ function deletePost($id, $error_if_doesnt_exist=true, $rebuild_after=true) {
|
|||||||
if (isset($tmp_board))
|
if (isset($tmp_board))
|
||||||
openBoard($tmp_board);
|
openBoard($tmp_board);
|
||||||
|
|
||||||
$query = prepare("DELETE FROM ``cites`` WHERE (`target_board` = :board AND `target` = (" . implode(' OR `target` = ', $ids) . ")) OR (`board` = :board AND (`post` = " . implode(' OR `post` = ', $ids) . "))");
|
$query = prepare("DELETE FROM ``cites`` WHERE (`target_board` = :board AND (`target` = " . implode(' OR `target` = ', $ids) . ")) OR (`board` = :board AND (`post` = " . implode(' OR `post` = ', $ids) . "))");
|
||||||
$query->bindValue(':board', $board['uri']);
|
$query->bindValue(':board', $board['uri']);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
@ -1224,14 +1240,11 @@ function checkRobot($body) {
|
|||||||
// Returns an associative array with 'replies' and 'images' keys
|
// Returns an associative array with 'replies' and 'images' keys
|
||||||
function numPosts($id) {
|
function numPosts($id) {
|
||||||
global $board;
|
global $board;
|
||||||
$query = prepare(sprintf("SELECT COUNT(*) FROM ``posts_%s`` WHERE `thread` = :thread UNION ALL SELECT COUNT(*) FROM ``posts_%s`` WHERE `file` IS NOT NULL AND `thread` = :thread", $board['uri'], $board['uri']));
|
$query = prepare(sprintf("SELECT COUNT(*) AS `replies`, COUNT(NULLIF(`file`, 0)) AS `images` FROM ``posts_%s`` WHERE `thread` = :thread", $board['uri'], $board['uri']));
|
||||||
$query->bindValue(':thread', $id, PDO::PARAM_INT);
|
$query->bindValue(':thread', $id, PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
$num_posts = $query->fetchColumn();
|
return $query->fetch(PDO::FETCH_ASSOC);
|
||||||
$num_images = $query->fetchColumn();
|
|
||||||
|
|
||||||
return array('replies' => $num_posts, 'images' => $num_images);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function muteTime() {
|
function muteTime() {
|
||||||
@ -1577,9 +1590,6 @@ function markup(&$body, $track_cites = false) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// replace tabs with 8 spaces
|
|
||||||
$body = str_replace("\t", ' ', $body);
|
|
||||||
|
|
||||||
$tracked_cites = array();
|
$tracked_cites = array();
|
||||||
|
|
||||||
// Cites
|
// Cites
|
||||||
@ -1745,6 +1755,7 @@ function markup(&$body, $track_cites = false) {
|
|||||||
|
|
||||||
if ($config['markup_repair_tidy']) {
|
if ($config['markup_repair_tidy']) {
|
||||||
$tidy = new tidy();
|
$tidy = new tidy();
|
||||||
|
$body = str_replace("\t", '	', $body);
|
||||||
$body = $tidy->repairString($body, array(
|
$body = $tidy->repairString($body, array(
|
||||||
'doctype' => 'omit',
|
'doctype' => 'omit',
|
||||||
'bare' => true,
|
'bare' => true,
|
||||||
@ -1756,11 +1767,13 @@ function markup(&$body, $track_cites = false) {
|
|||||||
'output-html' => true,
|
'output-html' => true,
|
||||||
'newline' => 'LF',
|
'newline' => 'LF',
|
||||||
'quiet' => true,
|
'quiet' => true,
|
||||||
|
|
||||||
), 'utf8');
|
), 'utf8');
|
||||||
$body = str_replace("\n", '', $body);
|
$body = str_replace("\n", '', $body);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// replace tabs with 8 spaces
|
||||||
|
$body = str_replace("\t", ' ', $body);
|
||||||
|
|
||||||
return $tracked_cites;
|
return $tracked_cites;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2154,12 +2167,13 @@ function shell_exec_error($command, $suppress_stdout = false) {
|
|||||||
$return = preg_replace('/TB_SUCCESS$/', '', $return);
|
$return = preg_replace('/TB_SUCCESS$/', '', $return);
|
||||||
|
|
||||||
if ($config['debug']) {
|
if ($config['debug']) {
|
||||||
$time = round((microtime(true) - $start) * 1000, 2) . 'ms';
|
$time = microtime(true) - $start;
|
||||||
$debug['exec'][] = array(
|
$debug['exec'][] = array(
|
||||||
'command' => $command,
|
'command' => $command,
|
||||||
'time' => '~' . $time,
|
'time' => '~' . round($time * 1000, 2) . 'ms',
|
||||||
'response' => $return ? $return : null
|
'response' => $return ? $return : null
|
||||||
);
|
);
|
||||||
|
$debug['time']['exec'] += $time;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $return === 'TB_SUCCESS' ? false : $return;
|
return $return === 'TB_SUCCESS' ? false : $return;
|
||||||
|
@ -92,7 +92,7 @@ function mod_dashboard() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$config['cache']['enabled'] || ($args['unread_pms'] = cache::get('pm_unreadcount_' . $mod['id'])) == false) {
|
if (!$config['cache']['enabled'] || ($args['unread_pms'] = cache::get('pm_unreadcount_' . $mod['id'])) === false) {
|
||||||
$query = prepare('SELECT COUNT(*) FROM ``pms`` WHERE `to` = :id AND `unread` = 1');
|
$query = prepare('SELECT COUNT(*) FROM ``pms`` WHERE `to` = :id AND `unread` = 1');
|
||||||
$query->bindValue(':id', $mod['id']);
|
$query->bindValue(':id', $mod['id']);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
@ -1109,7 +1109,7 @@ function mod_move_reply($originBoard, $postID) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function mod_move($originBoard, $postID) {
|
function mod_move($originBoard, $postID) {
|
||||||
global $board, $config, $mod;
|
global $board, $config, $mod, $pdo;
|
||||||
|
|
||||||
if (!openBoard($originBoard))
|
if (!openBoard($originBoard))
|
||||||
error($config['error']['noboard']);
|
error($config['error']['noboard']);
|
||||||
@ -1226,13 +1226,14 @@ function mod_move($originBoard, $postID) {
|
|||||||
$clone($post['file_thumb'], sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb']);
|
$clone($post['file_thumb'], sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!empty($post['tracked_cites'])) {
|
||||||
|
$insert_rows = array();
|
||||||
foreach ($post['tracked_cites'] as $cite) {
|
foreach ($post['tracked_cites'] as $cite) {
|
||||||
$query = prepare('INSERT INTO ``cites`` VALUES (:board, :post, :target_board, :target)');
|
$insert_rows[] = '(' .
|
||||||
$query->bindValue(':board', $board['uri']);
|
$pdo->quote($board['uri']) . ', ' . $newPostID . ', ' .
|
||||||
$query->bindValue(':post', $newPostID, PDO::PARAM_INT);
|
$pdo->quote($cite[0]) . ', ' . (int)$cite[1] . ')';
|
||||||
$query->bindValue(':target_board',$cite[0]);
|
}
|
||||||
$query->bindValue(':target', $cite[1], PDO::PARAM_INT);
|
query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error());
|
||||||
$query->execute() or error(db_error($query));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1424,6 +1425,8 @@ function mod_edit_post($board, $edit_raw_html, $postID) {
|
|||||||
$post['body'] = str_replace("\n", '
', utf8tohtml($post['body']));
|
$post['body'] = str_replace("\n", '
', utf8tohtml($post['body']));
|
||||||
$post['body_nomarkup'] = str_replace("\r", '', $post['body_nomarkup']);
|
$post['body_nomarkup'] = str_replace("\r", '', $post['body_nomarkup']);
|
||||||
$post['body'] = str_replace("\r", '', $post['body']);
|
$post['body'] = str_replace("\r", '', $post['body']);
|
||||||
|
$post['body_nomarkup'] = str_replace("\t", '	', $post['body_nomarkup']);
|
||||||
|
$post['body'] = str_replace("\t", '	', $post['body']);
|
||||||
}
|
}
|
||||||
|
|
||||||
mod_page(_('Edit post'), 'mod/edit_post_form.html', array('token' => $security_token, 'board' => $board, 'raw' => $edit_raw_html, 'post' => $post));
|
mod_page(_('Edit post'), 'mod/edit_post_form.html', array('token' => $security_token, 'board' => $board, 'raw' => $edit_raw_html, 'post' => $post));
|
||||||
|
@ -45,19 +45,23 @@ function Element($templateFile, array $options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (isset($options['body']) && $config['debug']) {
|
if (isset($options['body']) && $config['debug']) {
|
||||||
|
$_debug = $debug;
|
||||||
|
|
||||||
if (isset($debug['start'])) {
|
if (isset($debug['start'])) {
|
||||||
$debug['time'] = '~' . round((microtime(true) - $debug['start']) * 1000, 2) . 'ms';
|
$_debug['time']['total'] = '~' . round((microtime(true) - $_debug['start']) * 1000, 2) . 'ms';
|
||||||
$debug['time (initialization)'] = '~' . round(($debug['start_debug'] - $debug['start']) * 1000, 2) . 'ms';
|
$_debug['time']['init'] = '~' . round(($_debug['start_debug'] - $_debug['start']) * 1000, 2) . 'ms';
|
||||||
unset($debug['start']);
|
unset($_debug['start']);
|
||||||
unset($debug['start_debug']);
|
unset($_debug['start_debug']);
|
||||||
}
|
}
|
||||||
if ($config['try_smarter'] && isset($build_pages) && !empty($build_pages))
|
if ($config['try_smarter'] && isset($build_pages) && !empty($build_pages))
|
||||||
$debug['build_pages'] = $build_pages;
|
$_debug['build_pages'] = $build_pages;
|
||||||
$debug['included'] = get_included_files();
|
$_debug['included'] = get_included_files();
|
||||||
$debug['memory'] = round(memory_get_usage(true) / (1024 * 1024), 2) . ' MiB';
|
$_debug['memory'] = round(memory_get_usage(true) / (1024 * 1024), 2) . ' MiB';
|
||||||
|
$_debug['time']['db_queries'] = '~' . round($_debug['time']['db_queries'] * 1000, 2) . 'ms';
|
||||||
|
$_debug['time']['exec'] = '~' . round($_debug['time']['exec'] * 1000, 2) . 'ms';
|
||||||
$options['body'] .=
|
$options['body'] .=
|
||||||
'<h3>Debug</h3><pre style="white-space: pre-wrap;font-size: 10px;">' .
|
'<h3>Debug</h3><pre style="white-space: pre-wrap;font-size: 10px;">' .
|
||||||
str_replace("\n", '<br/>', utf8tohtml(print_r($debug, true))) .
|
str_replace("\n", '<br/>', utf8tohtml(print_r($_debug, true))) .
|
||||||
'</pre>';
|
'</pre>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
19
install.php
19
install.php
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Installation/upgrade file
|
// Installation/upgrade file
|
||||||
define('VERSION', 'v0.9.6-dev-14 + <a href="https://int.vichan.net/devel/">vichan-devel-4.0.12</a>');
|
define('VERSION', 'v0.9.6-dev-16 + <a href="https://int.vichan.net/devel/">vichan-devel-4.0.13</a>');
|
||||||
|
|
||||||
require 'inc/functions.php';
|
require 'inc/functions.php';
|
||||||
|
|
||||||
@ -384,6 +384,23 @@ if (file_exists($config['has_installed'])) {
|
|||||||
case 'v0.9.6-dev-13':
|
case 'v0.9.6-dev-13':
|
||||||
query("ALTER TABLE ``antispam`` ADD INDEX `expires` (`expires`)") or error(db_error());
|
query("ALTER TABLE ``antispam`` ADD INDEX `expires` (`expires`)") or error(db_error());
|
||||||
case 'v0.9.6-dev-14':
|
case 'v0.9.6-dev-14':
|
||||||
|
case 'v0.9.6-dev-14 + <a href="https://int.vichan.net/devel/">vichan-devel-4.0.12</a>':
|
||||||
|
foreach ($boards as &$board) {
|
||||||
|
query(sprintf("ALTER TABLE ``posts_%s``
|
||||||
|
DROP INDEX `body`,
|
||||||
|
ADD INDEX `filehash` (`filehash`(40))", $board['uri'])) or error(db_error());
|
||||||
|
}
|
||||||
|
query("ALTER TABLE ``modlogs`` ADD INDEX `mod` (`mod`)") or error(db_error());
|
||||||
|
query("ALTER TABLE ``bans`` DROP INDEX `ip`") or error(db_error());
|
||||||
|
query("ALTER TABLE ``bans`` ADD INDEX `ip` (`ip`)") or error(db_error());
|
||||||
|
query("ALTER TABLE ``noticeboard`` ADD INDEX `time` (`time`)") or error(db_error());
|
||||||
|
query("ALTER TABLE ``pms`` ADD INDEX `to` (`to`, `unread`)") or error(db_error());
|
||||||
|
case 'v0.9.6-dev-15':
|
||||||
|
foreach ($boards as &$board) {
|
||||||
|
query(sprintf("ALTER TABLE ``posts_%s``
|
||||||
|
ADD INDEX `list_threads` (`thread`, `sticky`, `bump`)", $board['uri'])) or error(db_error());
|
||||||
|
}
|
||||||
|
case 'v0.9.6-dev-16':
|
||||||
case false:
|
case false:
|
||||||
// Update version number
|
// Update version number
|
||||||
file_write($config['has_installed'], VERSION);
|
file_write($config['has_installed'], VERSION);
|
||||||
|
11
install.sql
11
install.sql
@ -49,7 +49,7 @@ CREATE TABLE IF NOT EXISTS `bans` (
|
|||||||
`board` varchar(58) CHARACTER SET utf8 DEFAULT NULL,
|
`board` varchar(58) CHARACTER SET utf8 DEFAULT NULL,
|
||||||
`seen` tinyint(1) NOT NULL,
|
`seen` tinyint(1) NOT NULL,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
FULLTEXT KEY `ip` (`ip`)
|
KEY `ip` (`ip`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
@ -115,7 +115,8 @@ CREATE TABLE IF NOT EXISTS `modlogs` (
|
|||||||
`board` varchar(58) CHARACTER SET utf8 DEFAULT NULL,
|
`board` varchar(58) CHARACTER SET utf8 DEFAULT NULL,
|
||||||
`time` int(11) NOT NULL,
|
`time` int(11) NOT NULL,
|
||||||
`text` text NOT NULL,
|
`text` text NOT NULL,
|
||||||
KEY `time` (`time`)
|
KEY `time` (`time`),
|
||||||
|
KEY `mod`(`mod`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
@ -182,7 +183,8 @@ CREATE TABLE IF NOT EXISTS `noticeboard` (
|
|||||||
`time` int(11) NOT NULL,
|
`time` int(11) NOT NULL,
|
||||||
`subject` text NOT NULL,
|
`subject` text NOT NULL,
|
||||||
`body` text NOT NULL,
|
`body` text NOT NULL,
|
||||||
UNIQUE KEY `id` (`id`)
|
UNIQUE KEY `id` (`id`),
|
||||||
|
KEY `time` (`time`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
@ -198,7 +200,8 @@ CREATE TABLE IF NOT EXISTS `pms` (
|
|||||||
`message` text NOT NULL,
|
`message` text NOT NULL,
|
||||||
`time` int(11) NOT NULL,
|
`time` int(11) NOT NULL,
|
||||||
`unread` tinyint(1) NOT NULL,
|
`unread` tinyint(1) NOT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`),
|
||||||
|
KEY `to` (`to`, `unread`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
35
js/download-original.js
Normal file
35
js/download-original.js
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*
|
||||||
|
* download-original.js
|
||||||
|
* https://github.com/savetheinternet/Tinyboard/blob/master/js/download-original.js
|
||||||
|
*
|
||||||
|
* Makes image filenames clickable, allowing users to download and save files as their original filename.
|
||||||
|
* Only works in newer browsers. http://caniuse.com/#feat=download
|
||||||
|
*
|
||||||
|
* Released under the MIT license
|
||||||
|
* Copyright (c) 2012-2013 Michael Save <savetheinternet@tinyboard.org>
|
||||||
|
*
|
||||||
|
* Usage:
|
||||||
|
* $config['additional_javascript'][] = 'js/jquery.min.js';
|
||||||
|
* $config['additional_javascript'][] = 'js/download-original.js';
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
onready(function(){
|
||||||
|
$('.postfilename').each(function() {
|
||||||
|
var filename, truncated;
|
||||||
|
if ($(this).attr('title')) {
|
||||||
|
filename = $(this).attr('title');
|
||||||
|
truncated = true;
|
||||||
|
} else {
|
||||||
|
filename = $(this).text();
|
||||||
|
}
|
||||||
|
|
||||||
|
$(this).replaceWith(
|
||||||
|
$('<a></a>')
|
||||||
|
.attr('download', filename)
|
||||||
|
.append($(this).contents())
|
||||||
|
.attr('href', $(this).parent().parent().find('a').attr('href'))
|
||||||
|
.attr('title', _('Save as original filename') + (truncated ? ' (' + filename + ')' : ''))
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
6
mod.php
6
mod.php
@ -8,6 +8,9 @@ require 'inc/functions.php';
|
|||||||
require 'inc/mod/pages.php';
|
require 'inc/mod/pages.php';
|
||||||
require 'inc/mod/auth.php';
|
require 'inc/mod/auth.php';
|
||||||
|
|
||||||
|
if ($config['debug'])
|
||||||
|
$parse_start_time = microtime(true);
|
||||||
|
|
||||||
// Fix for magic quotes
|
// Fix for magic quotes
|
||||||
if (get_magic_quotes_gpc()) {
|
if (get_magic_quotes_gpc()) {
|
||||||
function strip_array($var) {
|
function strip_array($var) {
|
||||||
@ -159,8 +162,9 @@ foreach ($pages as $uri => $handler) {
|
|||||||
$debug['mod_page'] = array(
|
$debug['mod_page'] = array(
|
||||||
'req' => $query,
|
'req' => $query,
|
||||||
'match' => $uri,
|
'match' => $uri,
|
||||||
'handler' => $handler
|
'handler' => $handler,
|
||||||
);
|
);
|
||||||
|
$debug['time']['parse_mod_req'] = '~' . round((microtime(true) - $parse_start_time) * 1000, 2) . 'ms';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_string($handler)) {
|
if (is_string($handler)) {
|
||||||
|
13
post.php
13
post.php
@ -429,6 +429,12 @@ if (isset($_POST['delete'])) {
|
|||||||
error(sprintf($config['error']['toolong'], 'password'));
|
error(sprintf($config['error']['toolong'], 'password'));
|
||||||
|
|
||||||
wordfilters($post['body']);
|
wordfilters($post['body']);
|
||||||
|
|
||||||
|
// Check for a flood
|
||||||
|
if (!hasPermission($config['mod']['flood'], $board['uri']) && checkFlood($post)) {
|
||||||
|
error($config['error']['flood']);
|
||||||
|
}
|
||||||
|
|
||||||
$post['body'] = escape_markup_modifiers($post['body']);
|
$post['body'] = escape_markup_modifiers($post['body']);
|
||||||
|
|
||||||
if ($mod && isset($post['raw']) && $post['raw']) {
|
if ($mod && isset($post['raw']) && $post['raw']) {
|
||||||
@ -465,11 +471,6 @@ if (isset($_POST['delete'])) {
|
|||||||
|
|
||||||
$post['tracked_cites'] = markup($post['body'], true);
|
$post['tracked_cites'] = markup($post['body'], true);
|
||||||
|
|
||||||
// Check for a flood
|
|
||||||
if (!hasPermission($config['mod']['flood'], $board['uri']) && checkFlood($post)) {
|
|
||||||
error($config['error']['flood']);
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once 'inc/filters.php';
|
require_once 'inc/filters.php';
|
||||||
|
|
||||||
do_filters($post);
|
do_filters($post);
|
||||||
@ -691,7 +692,7 @@ if (isset($_POST['delete'])) {
|
|||||||
$pdo->quote($board['uri']) . ', ' . (int)$id . ', ' .
|
$pdo->quote($board['uri']) . ', ' . (int)$id . ', ' .
|
||||||
$pdo->quote($cite[0]) . ', ' . (int)$cite[1] . ')';
|
$pdo->quote($cite[0]) . ', ' . (int)$cite[1] . ')';
|
||||||
}
|
}
|
||||||
query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error());;
|
query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$post['op'] && strtolower($post['email']) != 'sage' && !$thread['sage'] && ($config['reply_limit'] == 0 || $numposts['replies']+1 < $config['reply_limit'])) {
|
if (!$post['op'] && strtolower($post['email']) != 'sage' && !$thread['sage'] && ($config['reply_limit'] == 0 || $numposts['replies']+1 < $config['reply_limit'])) {
|
||||||
|
@ -27,8 +27,9 @@ CREATE TABLE IF NOT EXISTS ``posts_{{ board }}`` (
|
|||||||
`embed` text,
|
`embed` text,
|
||||||
UNIQUE KEY `id` (`id`),
|
UNIQUE KEY `id` (`id`),
|
||||||
KEY `thread_id` (`thread`,`id`),
|
KEY `thread_id` (`thread`,`id`),
|
||||||
|
KEY `filehash` (`filehash`(40)),
|
||||||
KEY `time` (`time`),
|
KEY `time` (`time`),
|
||||||
FULLTEXT KEY `body` (`body`),
|
KEY `ip` (`ip`),
|
||||||
KEY `ip` (`ip`)
|
KEY `list_threads` (`thread`, `sticky`, `bump`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user