2010-11-02 07:54:50 -04:00
< ? php
2012-04-11 12:49:22 -04:00
/*
2013-01-20 05:23:46 -05:00
* Copyright ( c ) 2010 - 2013 Tinyboard Development Group
2012-04-11 12:49:22 -04:00
*/
2012-04-12 10:18:19 -04:00
if ( realpath ( $_SERVER [ 'SCRIPT_FILENAME' ]) == str_replace ( '\\' , '/' , __FILE__ )) {
2012-04-11 12:49:22 -04:00
// You cannot request this file directly.
exit ;
}
2013-09-06 06:12:04 -04:00
define ( 'TINYBOARD' , null );
2013-08-28 18:25:15 -04:00
$microtime_start = microtime ( true );
2012-04-11 12:49:22 -04:00
require_once 'inc/display.php' ;
require_once 'inc/template.php' ;
require_once 'inc/database.php' ;
require_once 'inc/events.php' ;
2013-07-02 13:52:29 -04:00
require_once 'inc/api.php' ;
2013-09-16 19:15:24 -04:00
require_once 'inc/bans.php' ;
2012-04-11 12:49:22 -04:00
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 () {
2013-08-28 18:25:15 -04:00
global $board , $config , $__ip , $debug , $__version , $microtime_start ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$error = function_exists ( 'error' ) ? 'error' : 'basic_error_function_because_the_other_isnt_loaded_yet' ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
reset_events ();
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $_SERVER [ 'REMOTE_ADDR' ]))
2012-04-11 12:49:22 -04:00
$_SERVER [ 'REMOTE_ADDR' ] = '0.0.0.0' ;
2013-08-03 07:50:25 -04:00
2012-05-05 11:33:10 -04:00
$arrays = array (
'db' ,
2013-08-21 08:44:23 -04:00
'api' ,
2012-05-05 11:33:10 -04:00
'cache' ,
'cookies' ,
'error' ,
'dir' ,
'mod' ,
'spam' ,
2013-08-02 20:52:58 -04:00
'filters' ,
2012-05-05 11:33:10 -04:00
'wordfilters' ,
'custom_capcode' ,
'custom_tripcode' ,
'dnsbl' ,
'dnsbl_exceptions' ,
'remote' ,
'allowed_ext' ,
'allowed_ext_files' ,
'file_icons' ,
'footer' ,
'stylesheets' ,
'additional_javascript' ,
'markup' ,
2013-08-02 20:52:58 -04:00
'custom_pages' ,
'dashboard_links'
2012-05-05 11:33:10 -04:00
);
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$config = array ();
2012-04-12 10:18:19 -04:00
foreach ( $arrays as $key ) {
2012-04-11 12:49:22 -04:00
$config [ $key ] = array ();
2011-04-13 08:21:07 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
require 'inc/config.php' ;
2012-04-12 10:18:19 -04:00
if ( ! file_exists ( 'inc/instance-config.php' ))
2012-04-11 12:49:22 -04:00
$error ( 'Tinyboard is not configured! Create inc/instance-config.php.' );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
require 'inc/instance-config.php' ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( isset ( $board [ 'dir' ]) && file_exists ( $board [ 'dir' ] . '/config.php' )) {
2012-04-11 12:49:22 -04:00
require $board [ 'dir' ] . '/config.php' ;
2011-04-30 04:52:04 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $__version ))
2012-04-11 12:49:22 -04:00
$__version = file_exists ( '.installed' ) ? trim ( file_get_contents ( '.installed' )) : false ;
$config [ 'version' ] = $__version ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
date_default_timezone_set ( $config [ 'timezone' ]);
2013-08-03 07:50:25 -04:00
2013-08-02 20:52:58 -04:00
if ( ! isset ( $config [ 'global_message' ]))
$config [ 'global_message' ] = false ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'post_url' ]))
2012-04-11 12:49:22 -04:00
$config [ 'post_url' ] = $config [ 'root' ] . $config [ 'file_post' ];
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'referer_match' ]))
if ( isset ( $_SERVER [ 'HTTP_HOST' ])) {
2012-04-11 12:49:22 -04:00
$config [ 'referer_match' ] = '/^' .
2013-09-14 15:48:37 -04:00
( preg_match ( '@^https?://@' , $config [ 'root' ]) ? '' :
2012-04-11 12:49:22 -04:00
'https?:\/\/' . $_SERVER [ 'HTTP_HOST' ]) .
preg_quote ( $config [ 'root' ], '/' ) .
'(' .
2013-07-31 02:08:55 -04:00
str_replace ( '%s' , $config [ 'board_regex' ], preg_quote ( $config [ 'board_path' ], '/' )) .
2012-04-11 12:49:22 -04:00
'(' .
preg_quote ( $config [ 'file_index' ], '/' ) . '|' .
str_replace ( '%d' , '\d+' , preg_quote ( $config [ 'file_page' ])) .
')?' .
'|' .
2013-07-31 02:08:55 -04:00
str_replace ( '%s' , $config [ 'board_regex' ], preg_quote ( $config [ 'board_path' ], '/' )) .
2012-04-11 12:49:22 -04:00
preg_quote ( $config [ 'dir' ][ 'res' ], '/' ) .
str_replace ( '%d' , '\d+' , preg_quote ( $config [ 'file_page' ], '/' )) .
'|' .
preg_quote ( $config [ 'file_mod' ], '/' ) . '\?\/.+' .
2013-07-31 02:08:55 -04:00
')([#?](.+)?)?$/ui' ;
2011-12-05 11:04:46 -05:00
} else {
2012-04-11 12:49:22 -04:00
// CLI mode
$config [ 'referer_match' ] = '//' ;
}
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'cookies' ][ 'path' ]))
2012-04-11 12:49:22 -04:00
$config [ 'cookies' ][ 'path' ] = & $config [ 'root' ];
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'dir' ][ 'static' ]))
2012-04-11 12:49:22 -04:00
$config [ 'dir' ][ 'static' ] = $config [ 'root' ] . 'static/' ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'image_sticky' ]))
2012-04-11 12:49:22 -04:00
$config [ 'image_sticky' ] = $config [ 'dir' ][ 'static' ] . 'sticky.gif' ;
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'image_locked' ]))
2012-04-11 12:49:22 -04:00
$config [ 'image_locked' ] = $config [ 'dir' ][ 'static' ] . 'locked.gif' ;
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'image_bumplocked' ]))
2012-04-11 12:49:22 -04:00
$config [ 'image_bumplocked' ] = $config [ 'dir' ][ 'static' ] . 'sage.gif' ;
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'image_deleted' ]))
2012-04-11 12:49:22 -04:00
$config [ 'image_deleted' ] = $config [ 'dir' ][ 'static' ] . 'deleted.png' ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'uri_thumb' ]))
2012-04-11 12:49:22 -04:00
$config [ 'uri_thumb' ] = $config [ 'root' ] . $board [ 'dir' ] . $config [ 'dir' ][ 'thumb' ];
2012-04-12 10:18:19 -04:00
elseif ( isset ( $board [ 'dir' ]))
2012-04-11 12:49:22 -04:00
$config [ 'uri_thumb' ] = sprintf ( $config [ 'uri_thumb' ], $board [ 'dir' ]);
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'uri_img' ]))
2012-04-11 12:49:22 -04:00
$config [ 'uri_img' ] = $config [ 'root' ] . $board [ 'dir' ] . $config [ 'dir' ][ 'img' ];
2012-04-12 10:18:19 -04:00
elseif ( isset ( $board [ 'dir' ]))
2012-04-11 12:49:22 -04:00
$config [ 'uri_img' ] = sprintf ( $config [ 'uri_img' ], $board [ 'dir' ]);
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'uri_stylesheets' ]))
2012-04-11 12:49:22 -04:00
$config [ 'uri_stylesheets' ] = $config [ 'root' ] . 'stylesheets/' ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'url_stylesheet' ]))
2012-04-11 12:49:22 -04:00
$config [ 'url_stylesheet' ] = $config [ 'uri_stylesheets' ] . 'style.css' ;
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'url_javascript' ]))
2012-04-11 12:49:22 -04:00
$config [ 'url_javascript' ] = $config [ 'root' ] . $config [ 'file_script' ];
2012-04-12 10:18:19 -04:00
if ( ! isset ( $config [ 'additional_javascript_url' ]))
2012-04-11 12:49:22 -04:00
$config [ 'additional_javascript_url' ] = $config [ 'root' ];
2013-08-16 07:08:01 -04:00
if ( ! isset ( $config [ 'uri_flags' ]))
$config [ 'uri_flags' ] = $config [ 'root' ] . 'static/flags/%s.png' ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'root_file' ]) {
2012-04-11 12:49:22 -04:00
chdir ( $config [ 'root_file' ]);
2011-11-18 07:39:13 -05:00
}
2012-04-10 11:18:38 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'verbose_errors' ]) {
2013-08-03 02:01:52 -04:00
set_error_handler ( 'verbose_error_handler' );
2012-04-11 12:49:22 -04:00
error_reporting ( E_ALL );
2013-08-03 05:21:02 -04:00
ini_set ( 'display_errors' , true );
2013-08-03 00:22:28 -04:00
ini_set ( 'html_errors' , false );
2012-04-10 11:18:38 -04:00
}
2013-08-03 00:22:28 -04:00
2012-04-11 12:49:22 -04:00
// Keep the original address to properly comply with other board configurations
2012-04-12 10:18:19 -04:00
if ( ! isset ( $__ip ))
2012-04-11 12:49:22 -04:00
$__ip = $_SERVER [ 'REMOTE_ADDR' ];
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// ::ffff:0.0.0.0
2012-04-12 10:18:19 -04:00
if ( preg_match ( '/^\:\:(ffff\:)?(\d+\.\d+\.\d+\.\d+)$/' , $__ip , $m ))
2012-04-11 12:49:22 -04:00
$_SERVER [ 'REMOTE_ADDR' ] = $m [ 2 ];
2013-08-03 07:50:25 -04:00
2013-08-30 01:00:33 -04:00
if ( $config [ 'locale' ] != 'en' ) {
if ( _setlocale ( LC_ALL , $config [ 'locale' ]) === false ) {
$error ( 'The specified locale (' . $config [ 'locale' ] . ') does not exist on your platform!' );
}
if ( extension_loaded ( 'gettext' )) {
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' );
}
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'syslog' ])
2012-04-11 12:49:22 -04:00
openlog ( 'tinyboard' , LOG_ODELAY , LOG_SYSLOG ); // open a connection to sysem logger
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'recaptcha' ])
2012-04-11 12:49:22 -04:00
require_once 'inc/lib/recaptcha/recaptchalib.php' ;
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ])
2012-04-11 12:49:22 -04:00
require_once 'inc/cache.php' ;
2012-11-18 18:28:23 -05:00
event ( 'load-config' );
2013-08-29 18:39:11 -04:00
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 ;
}
}
2012-04-11 12:49:22 -04:00
}
function basic_error_function_because_the_other_isnt_loaded_yet ( $message , $priority = true ) {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'syslog' ] && $priority !== false ) {
2012-04-11 12:49:22 -04:00
// Use LOG_NOTICE instead of LOG_ERR or LOG_WARNING because most error message are not significant.
_syslog ( $priority !== true ? $priority : LOG_NOTICE , $message );
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// 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 () {
2012-04-12 10:18:19 -04:00
if ( $error = error_get_last ()) {
if ( $error [ 'type' ] == E_ERROR ) {
if ( function_exists ( 'error' )) {
2012-04-11 12:49:22 -04:00
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 );
}
2011-04-14 03:03:12 -04:00
}
}
2012-04-11 12:49:22 -04:00
}
2012-04-10 11:18:38 -04:00
2012-04-11 12:49:22 -04:00
function _syslog ( $priority , $message ) {
2012-04-12 10:18:19 -04:00
if ( isset ( $_SERVER [ 'REMOTE_ADDR' ], $_SERVER [ 'REQUEST_METHOD' ], $_SERVER [ 'REQUEST_URI' ])) {
2012-04-11 12:49:22 -04:00
// CGI
syslog ( $priority , $message . ' - client: ' . $_SERVER [ 'REMOTE_ADDR' ] . ', request: "' . $_SERVER [ 'REQUEST_METHOD' ] . ' ' . $_SERVER [ 'REQUEST_URI' ] . '"' );
} else {
syslog ( $priority , $message );
}
}
2012-04-10 11:18:38 -04:00
2013-08-03 02:01:52 -04:00
function verbose_error_handler ( $errno , $errstr , $errfile , $errline ) {
if ( error_reporting () == 0 )
return false ; // Looks like this warning was suppressed by the @ operator.
error ( utf8tohtml ( $errstr ), true , array (
'file' => $errfile . ':' . $errline ,
'errno' => $errno ,
'error' => $errstr ,
'backtrace' => array_slice ( debug_backtrace (), 1 )
));
}
2013-09-08 11:33:51 -04:00
function define_groups () {
global $config ;
foreach ( $config [ 'mod' ][ 'groups' ] as $group_value => $group_name )
defined ( $group_name ) or define ( $group_name , $group_value , true );
ksort ( $config [ 'mod' ][ 'groups' ]);
}
2012-04-12 07:56:01 -04:00
function create_antibot ( $board , $thread = null ) {
2012-04-16 18:16:36 -04:00
require_once dirname ( __FILE__ ) . '/anti-bot.php' ;
2013-08-03 07:50:25 -04:00
2012-04-12 07:56:01 -04:00
return _create_antibot ( $board , $thread );
}
2012-04-11 12:49:22 -04:00
2013-07-18 12:06:26 -04:00
function rebuildThemes ( $action , $board = false ) {
2012-04-11 12:49:22 -04:00
// List themes
2013-07-31 22:14:26 -04:00
$query = query ( " SELECT `theme` FROM ``theme_settings`` WHERE `name` IS NULL AND `value` IS NULL " ) or error ( db_error ());
2012-08-30 11:35:27 -04:00
2013-07-31 20:51:43 -04:00
while ( $theme = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2013-07-18 12:06:26 -04:00
rebuildTheme ( $theme [ 'theme' ], $action , $board );
2012-04-11 12:49:22 -04:00
}
}
function loadThemeConfig ( $_theme ) {
global $config ;
2012-04-12 10:18:19 -04:00
if ( ! file_exists ( $config [ 'dir' ][ 'themes' ] . '/' . $_theme . '/info.php' ))
2012-04-11 12:49:22 -04:00
return false ;
// Load theme information into $theme
include $config [ 'dir' ][ 'themes' ] . '/' . $_theme . '/info.php' ;
return $theme ;
}
2013-07-18 12:06:26 -04:00
function rebuildTheme ( $theme , $action , $board = false ) {
2012-04-11 12:49:22 -04:00
global $config , $_theme ;
$_theme = $theme ;
$theme = loadThemeConfig ( $_theme );
2012-04-12 10:18:19 -04:00
if ( file_exists ( $config [ 'dir' ][ 'themes' ] . '/' . $_theme . '/theme.php' )) {
2012-04-11 12:49:22 -04:00
require_once $config [ 'dir' ][ 'themes' ] . '/' . $_theme . '/theme.php' ;
2013-08-03 07:50:25 -04:00
2013-07-18 12:06:26 -04:00
$theme [ 'build_function' ]( $action , themeSettings ( $_theme ), $board );
2012-04-11 12:49:22 -04:00
}
}
function themeSettings ( $theme ) {
2013-07-31 22:14:26 -04:00
$query = prepare ( " SELECT `name`, `value` FROM ``theme_settings`` WHERE `theme` = :theme AND `name` IS NOT NULL " );
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':theme' , $theme );
$query -> execute () or error ( db_error ( $query ));
$settings = array ();
2013-07-31 20:51:43 -04:00
while ( $s = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-04-11 12:49:22 -04:00
$settings [ $s [ 'name' ]] = $s [ 'value' ];
}
return $settings ;
}
function sprintf3 ( $str , $vars , $delim = '%' ) {
$replaces = array ();
2012-04-12 10:18:19 -04:00
foreach ( $vars as $k => $v ) {
2012-04-11 12:49:22 -04:00
$replaces [ $delim . $k . $delim ] = $v ;
}
return str_replace ( array_keys ( $replaces ),
2013-08-03 07:50:25 -04:00
array_values ( $replaces ), $str );
2012-04-11 12:49:22 -04:00
}
2013-07-31 03:12:06 -04:00
function mb_substr_replace ( $string , $replacement , $start , $length ) {
return mb_substr ( $string , 0 , $start ) . $replacement . mb_substr ( $string , $start + $length );
}
2012-04-11 12:49:22 -04:00
function setupBoard ( $array ) {
global $board , $config ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$board = array (
2012-04-12 09:23:47 -04:00
'uri' => $array [ 'uri' ],
2012-04-12 12:11:41 -04:00
'title' => $array [ 'title' ],
'subtitle' => $array [ 'subtitle' ]
2012-04-12 09:23:47 -04:00
);
2013-08-03 07:50:25 -04:00
2012-04-12 12:11:41 -04:00
// older versions
$board [ 'name' ] = & $board [ 'title' ];
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$board [ 'dir' ] = sprintf ( $config [ 'board_path' ], $board [ 'uri' ]);
$board [ 'url' ] = sprintf ( $config [ 'board_abbreviation' ], $board [ 'uri' ]);
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
loadConfig ();
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! file_exists ( $board [ 'dir' ]))
2012-04-12 09:23:47 -04:00
@ mkdir ( $board [ 'dir' ], 0777 ) or error ( " Couldn't create " . $board [ 'dir' ] . " . Check permissions. " , true );
2012-04-12 10:18:19 -04:00
if ( ! file_exists ( $board [ 'dir' ] . $config [ 'dir' ][ 'img' ]))
2012-04-12 09:23:47 -04:00
@ mkdir ( $board [ 'dir' ] . $config [ 'dir' ][ 'img' ], 0777 )
or error ( " Couldn't create " . $board [ 'dir' ] . $config [ 'dir' ][ 'img' ] . " . Check permissions. " , true );
2012-04-12 10:18:19 -04:00
if ( ! file_exists ( $board [ 'dir' ] . $config [ 'dir' ][ 'thumb' ]))
2012-04-12 09:23:47 -04:00
@ mkdir ( $board [ 'dir' ] . $config [ 'dir' ][ 'thumb' ], 0777 )
or error ( " Couldn't create " . $board [ 'dir' ] . $config [ 'dir' ][ 'img' ] . " . Check permissions. " , true );
2012-04-12 10:18:19 -04:00
if ( ! file_exists ( $board [ 'dir' ] . $config [ 'dir' ][ 'res' ]))
2012-04-12 09:23:47 -04:00
@ mkdir ( $board [ 'dir' ] . $config [ 'dir' ][ 'res' ], 0777 )
or error ( " Couldn't create " . $board [ 'dir' ] . $config [ 'dir' ][ 'img' ] . " . Check permissions. " , true );
2012-04-11 12:49:22 -04:00
}
function openBoard ( $uri ) {
2013-08-03 07:50:25 -04:00
global $config , $build_pages ;
if ( $config [ 'try_smarter' ])
$build_pages = array ();
2013-02-28 18:12:17 -05:00
$board = getBoardInfo ( $uri );
if ( $board ) {
setupBoard ( $board );
return true ;
}
return false ;
}
function getBoardInfo ( $uri ) {
2012-04-11 12:49:22 -04:00
global $config ;
2012-08-30 11:35:27 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ] && ( $board = cache :: get ( 'board_' . $uri ))) {
2013-02-28 18:12:17 -05:00
return $board ;
2011-04-13 09:47:47 -04:00
}
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( " SELECT * FROM ``boards`` WHERE `uri` = :uri LIMIT 1 " );
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':uri' , $uri );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
if ( $board = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ])
2012-04-11 12:49:22 -04:00
cache :: set ( 'board_' . $uri , $board );
2013-02-28 18:12:17 -05:00
return $board ;
2012-08-30 11:35:27 -04:00
}
return false ;
2012-04-11 12:49:22 -04:00
}
2012-04-10 11:18:38 -04:00
2012-04-11 12:49:22 -04:00
function boardTitle ( $uri ) {
2013-02-28 18:12:17 -05:00
$board = getBoardInfo ( $uri );
if ( $board )
2012-04-11 12:49:22 -04:00
return $board [ 'title' ];
2012-08-30 11:35:27 -04:00
return false ;
2012-04-11 12:49:22 -04:00
}
function purge ( $uri ) {
global $config , $debug ;
2013-08-03 07:50:25 -04:00
2013-07-31 02:19:58 -04:00
// Fix for Unicode
2013-08-04 22:12:21 -04:00
$uri = rawurlencode ( $uri );
$noescape = " /!~*()+: " ;
$noescape = preg_split ( '//' , $noescape );
$noescape_url = array_map ( " rawurlencode " , $noescape );
$uri = str_replace ( $noescape_url , $noescape , $uri );
2013-08-03 07:50:25 -04:00
2012-04-19 09:09:51 -04:00
if ( preg_match ( $config [ 'referer_match' ], $config [ 'root' ]) && isset ( $_SERVER [ 'REQUEST_URI' ])) {
2012-04-11 12:49:22 -04:00
$uri = ( str_replace ( '\\' , '/' , dirname ( $_SERVER [ 'REQUEST_URI' ])) == '/' ? '/' : str_replace ( '\\' , '/' , dirname ( $_SERVER [ 'REQUEST_URI' ])) . '/' ) . $uri ;
} else {
$uri = $config [ 'root' ] . $uri ;
2011-09-20 15:49:07 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'debug' ]) {
2012-04-11 12:49:22 -04:00
$debug [ 'purge' ][] = $uri ;
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
foreach ( $config [ 'purge' ] as & $purge ) {
2012-04-11 12:49:22 -04:00
$host = & $purge [ 0 ];
$port = & $purge [ 1 ];
2012-04-19 09:07:52 -04:00
$http_host = isset ( $purge [ 2 ]) ? $purge [ 2 ] : ( isset ( $_SERVER [ 'HTTP_HOST' ]) ? $_SERVER [ 'HTTP_HOST' ] : 'localhost' );
2012-04-11 12:49:22 -04:00
$request = " PURGE { $uri } HTTP/1.1 \r \n Host: { $http_host } \r \n User-Agent: Tinyboard \r \n Connection: Close \r \n \r \n " ;
2012-04-12 10:18:19 -04:00
if ( $fp = fsockopen ( $host , $port , $errno , $errstr , $config [ 'purge_timeout' ])) {
2012-04-11 12:49:22 -04:00
fwrite ( $fp , $request );
fclose ( $fp );
2011-05-23 01:29:58 -04:00
} else {
2012-04-11 12:49:22 -04:00
// Cannot connect?
error ( 'Could not PURGE for ' . $host );
2011-05-21 11:12:57 -04:00
}
}
2012-04-11 12:49:22 -04:00
}
function file_write ( $path , $data , $simple = false , $skip_purge = false ) {
2013-07-16 01:21:06 -04:00
global $config , $debug ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( preg_match ( '/^remote:\/\/(.+)\:(.+)$/' , $path , $m )) {
if ( isset ( $config [ 'remote' ][ $m [ 1 ]])) {
2012-04-11 12:49:22 -04:00
require_once 'inc/remote.php' ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$remote = new Remote ( $config [ 'remote' ][ $m [ 1 ]]);
$remote -> write ( $data , $m [ 2 ]);
return ;
} else {
error ( 'Invalid remote server: ' . $m [ 1 ]);
2011-05-21 11:13:44 -04:00
}
2011-05-20 03:19:27 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! $fp = fopen ( $path , $simple ? 'w' : 'c' ))
2012-04-11 12:49:22 -04:00
error ( 'Unable to open file for writing: ' . $path );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// File locking
2012-04-12 10:18:19 -04:00
if ( ! $simple && ! flock ( $fp , LOCK_EX )) {
2012-04-11 12:49:22 -04:00
error ( 'Unable to lock file: ' . $path );
2012-02-16 07:32:28 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Truncate file
2012-04-12 10:18:19 -04:00
if ( ! $simple && ! ftruncate ( $fp , 0 ))
2012-04-11 12:49:22 -04:00
error ( 'Unable to truncate file: ' . $path );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Write data
2013-07-16 01:21:06 -04:00
if (( $bytes = fwrite ( $fp , $data )) === false )
2012-04-11 12:49:22 -04:00
error ( 'Unable to write to file: ' . $path );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Unlock
2012-04-12 10:18:19 -04:00
if ( ! $simple )
2012-04-11 12:49:22 -04:00
flock ( $fp , LOCK_UN );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Close
2012-04-12 10:18:19 -04:00
if ( ! fclose ( $fp ))
2012-04-11 12:49:22 -04:00
error ( 'Unable to close file: ' . $path );
2013-08-03 07:50:25 -04:00
2012-04-19 09:07:52 -04:00
if ( ! $skip_purge && isset ( $config [ 'purge' ])) {
2012-04-11 12:49:22 -04:00
// Purge cache
2012-04-12 10:18:19 -04:00
if ( basename ( $path ) == $config [ 'file_index' ]) {
2012-04-11 12:49:22 -04:00
// Index file (/index.html); purge "/" as well
$uri = dirname ( $path );
// root
2012-04-12 10:18:19 -04:00
if ( $uri == '.' )
2012-04-11 12:49:22 -04:00
$uri = '' ;
else
$uri .= '/' ;
purge ( $uri );
2011-03-01 05:26:04 -05:00
}
2012-04-11 12:49:22 -04:00
purge ( $path );
2011-03-01 05:26:04 -05:00
}
2013-08-03 07:50:25 -04:00
2013-07-16 01:21:06 -04:00
if ( $config [ 'debug' ]) {
$debug [ 'write' ][] = $path . ': ' . $bytes . ' bytes' ;
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
event ( 'write' , $path );
}
function file_unlink ( $path ) {
global $config , $debug ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'debug' ]) {
if ( ! isset ( $debug [ 'unlink' ]))
2012-04-11 12:49:22 -04:00
$debug [ 'unlink' ] = array ();
$debug [ 'unlink' ][] = $path ;
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$ret = @ unlink ( $path );
2012-04-12 10:18:19 -04:00
if ( isset ( $config [ 'purge' ]) && $path [ 0 ] != '/' && isset ( $_SERVER [ 'HTTP_HOST' ])) {
2012-04-11 12:49:22 -04:00
// Purge cache
2012-04-12 10:18:19 -04:00
if ( basename ( $path ) == $config [ 'file_index' ]) {
2012-04-11 12:49:22 -04:00
// Index file (/index.html); purge "/" as well
$uri = dirname ( $path );
// root
2012-04-12 10:18:19 -04:00
if ( $uri == '.' )
2012-04-11 12:49:22 -04:00
$uri = '' ;
else
$uri .= '/' ;
purge ( $uri );
2011-01-01 09:37:52 -05:00
}
2012-04-11 12:49:22 -04:00
purge ( $path );
2011-01-01 09:37:52 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
event ( 'unlink' , $path );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return $ret ;
}
function hasPermission ( $action = null , $board = null , $_mod = null ) {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( isset ( $_mod ))
2012-04-11 12:49:22 -04:00
$mod = & $_mod ;
else
global $mod ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! is_array ( $mod ))
2012-04-11 12:49:22 -04:00
return false ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( isset ( $action ) && $mod [ 'type' ] < $action )
2012-04-11 12:49:22 -04:00
return false ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $board ) || $config [ 'mod' ][ 'skip_per_board' ])
2012-04-11 12:49:22 -04:00
return true ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $mod [ 'boards' ]))
2012-04-11 12:49:22 -04:00
return false ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! in_array ( '*' , $mod [ 'boards' ]) && ! in_array ( $board , $mod [ 'boards' ]))
2012-04-11 12:49:22 -04:00
return false ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return true ;
}
function listBoards () {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ] && ( $boards = cache :: get ( 'all_boards' )))
2012-04-11 12:49:22 -04:00
return $boards ;
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = query ( " SELECT * FROM ``boards`` ORDER BY `uri` " ) or error ( db_error ());
2012-04-11 12:49:22 -04:00
$boards = $query -> fetchAll ();
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ])
2012-04-11 12:49:22 -04:00
cache :: set ( 'all_boards' , $boards );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return $boards ;
}
function until ( $timestamp ) {
$difference = $timestamp - time ();
2012-04-12 10:18:19 -04:00
if ( $difference < 60 ) {
2013-07-27 01:50:38 -04:00
return $difference . ' ' . ngettext ( 'second' , 'seconds' , $difference );
2012-04-12 10:18:19 -04:00
} elseif ( $difference < 60 * 60 ) {
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 ))) . ' ' . ngettext ( 'minute' , 'minutes' , $num );
2012-04-12 10:18:19 -04:00
} elseif ( $difference < 60 * 60 * 24 ) {
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 * 60 ))) . ' ' . ngettext ( 'hour' , 'hours' , $num );
2012-04-12 10:18:19 -04:00
} elseif ( $difference < 60 * 60 * 24 * 7 ) {
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 * 60 * 24 ))) . ' ' . ngettext ( 'day' , 'days' , $num );
2012-04-12 10:18:19 -04:00
} elseif ( $difference < 60 * 60 * 24 * 365 ) {
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 * 60 * 24 * 7 ))) . ' ' . ngettext ( 'week' , 'weeks' , $num );
2012-04-11 12:49:22 -04:00
}
2012-08-30 11:35:27 -04:00
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 * 60 * 24 * 365 ))) . ' ' . ngettext ( 'year' , 'years' , $num );
2012-04-11 12:49:22 -04:00
}
function ago ( $timestamp ) {
$difference = time () - $timestamp ;
2012-04-12 10:18:19 -04:00
if ( $difference < 60 ) {
2013-07-27 01:50:38 -04:00
return $difference . ' ' . ngettext ( 'second' , 'seconds' , $difference );
2012-04-12 10:18:19 -04:00
} elseif ( $difference < 60 * 60 ) {
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 ))) . ' ' . ngettext ( 'minute' , 'minutes' , $num );
2012-04-12 10:18:19 -04:00
} elseif ( $difference < 60 * 60 * 24 ) {
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 * 60 ))) . ' ' . ngettext ( 'hour' , 'hours' , $num );
2012-04-12 10:18:19 -04:00
} elseif ( $difference < 60 * 60 * 24 * 7 ) {
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 * 60 * 24 ))) . ' ' . ngettext ( 'day' , 'days' , $num );
2012-04-12 10:18:19 -04:00
} elseif ( $difference < 60 * 60 * 24 * 365 ) {
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 * 60 * 24 * 7 ))) . ' ' . ngettext ( 'week' , 'weeks' , $num );
2012-04-11 12:49:22 -04:00
}
2012-08-30 11:35:27 -04:00
2013-07-27 01:50:38 -04:00
return ( $num = round ( $difference / ( 60 * 60 * 24 * 365 ))) . ' ' . ngettext ( 'year' , 'years' , $num );
2012-04-11 12:49:22 -04:00
}
function displayBan ( $ban ) {
2013-09-17 18:47:34 -04:00
global $config , $board ;
2013-08-03 07:50:25 -04:00
2013-07-16 06:33:37 -04:00
if ( ! $ban [ 'seen' ]) {
2013-09-16 19:15:24 -04:00
Bans :: seen ( $ban [ 'id' ]);
2013-07-16 06:33:37 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$ban [ 'ip' ] = $_SERVER [ 'REMOTE_ADDR' ];
2013-09-17 18:47:34 -04:00
if ( $ban [ 'post' ] && isset ( $ban [ 'post' ][ 'board' ], $ban [ 'post' ][ 'id' ])) {
2013-09-20 22:51:23 -04:00
if ( openBoard ( $ban [ 'post' ][ 'board' ])) {
$query = query ( sprintf ( " SELECT `thumb`, `file` FROM ``posts_%s`` WHERE `id` = " .
( int ) $ban [ 'post' ][ 'id' ], $board [ 'uri' ]));
if ( $_post = $query -> fetch ( PDO :: FETCH_ASSOC )) {
$ban [ 'post' ] = array_merge ( $ban [ 'post' ], $_post );
} else {
$ban [ 'post' ][ 'file' ] = 'deleted' ;
$ban [ 'post' ][ 'thumb' ] = false ;
}
2013-09-17 18:47:34 -04:00
} else {
$ban [ 'post' ][ 'file' ] = 'deleted' ;
$ban [ 'post' ][ 'thumb' ] = false ;
}
2013-09-17 18:56:04 -04:00
if ( $ban [ 'post' ][ 'thread' ]) {
$post = new Post ( $ban [ 'post' ]);
} else {
$post = new Thread ( $ban [ 'post' ], null , false , false );
}
2013-09-17 18:47:34 -04:00
}
2013-09-20 22:51:23 -04:00
$denied_appeals = array ();
$pending_appeal = false ;
if ( $config [ 'ban_appeals' ]) {
$query = query ( " SELECT `time`, `denied` FROM `ban_appeals` WHERE `ban_id` = " . ( int ) $ban [ 'id' ]) or error ( db_error ());
while ( $ban_appeal = $query -> fetch ( PDO :: FETCH_ASSOC )) {
if ( $ban_appeal [ 'denied' ]) {
$denied_appeals [] = $ban_appeal [ 'time' ];
} else {
$pending_appeal = $ban_appeal [ 'time' ];
}
}
}
2012-04-11 12:49:22 -04:00
// Show banned page and exit
die (
Element ( 'page.html' , array (
2013-07-27 01:21:30 -04:00
'title' => _ ( 'Banned!' ),
2012-04-11 12:49:22 -04:00
'config' => $config ,
2013-09-17 18:47:34 -04:00
'nojavascript' => true ,
2012-04-11 12:49:22 -04:00
'body' => Element ( 'banned.html' , array (
2011-04-22 10:24:15 -04:00
'config' => $config ,
2013-09-17 18:47:34 -04:00
'ban' => $ban ,
2013-09-17 18:56:04 -04:00
'board' => $board ,
2013-09-20 22:51:23 -04:00
'post' => isset ( $post ) ? $post -> build ( true ) : false ,
'denied_appeals' => $denied_appeals ,
'pending_appeal' => $pending_appeal
2012-04-11 12:49:22 -04:00
)
))
));
}
2013-09-10 02:20:54 -04:00
function checkBan ( $board = false ) {
2012-04-11 12:49:22 -04:00
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $_SERVER [ 'REMOTE_ADDR' ])) {
2012-04-11 12:49:22 -04:00
// Server misconfiguration
return ;
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( event ( 'check-ban' , $board ))
2012-04-11 12:49:22 -04:00
return true ;
2013-09-10 02:20:54 -04:00
2013-09-16 19:15:24 -04:00
$bans = Bans :: find ( $_SERVER [ 'REMOTE_ADDR' ], $board );
2013-09-10 02:20:54 -04:00
2013-09-16 19:15:24 -04:00
foreach ( $bans as & $ban ) {
2012-04-12 10:18:19 -04:00
if ( $ban [ 'expires' ] && $ban [ 'expires' ] < time ()) {
2013-09-16 19:15:24 -04:00
Bans :: delete ( $ban [ 'id' ]);
2013-07-16 06:33:37 -04:00
if ( $config [ 'require_ban_view' ] && ! $ban [ 'seen' ]) {
2013-09-16 19:15:24 -04:00
if ( ! isset ( $_POST [ 'json_response' ])) {
displayBan ( $ban );
} else {
header ( 'Content-Type: text/json' );
die ( json_encode ( array ( 'error' => true , 'banned' => true )));
}
2013-07-16 06:33:37 -04:00
}
2013-09-10 02:20:54 -04:00
} else {
2013-09-16 19:15:24 -04:00
if ( ! isset ( $_POST [ 'json_response' ])) {
displayBan ( $ban );
} else {
header ( 'Content-Type: text/json' );
die ( json_encode ( array ( 'error' => true , 'banned' => true )));
}
2011-10-10 07:37:39 -04:00
}
}
2013-08-03 07:50:25 -04:00
2013-09-16 19:15:24 -04:00
// I'm not sure where else to put this. It doesn't really matter where; it just needs to be called every
// now and then to keep the ban list tidy.
2013-08-04 04:48:13 -04:00
if ( $config [ 'cache' ][ 'enabled' ] && $last_time_purged = cache :: get ( 'purged_bans_last' )) {
2013-08-04 04:49:21 -04:00
if ( time () - $last_time_purged < $config [ 'purge_bans' ] )
2013-08-04 04:48:13 -04:00
return ;
}
2013-09-16 19:15:24 -04:00
Bans :: purge ();
2013-08-04 04:48:13 -04:00
if ( $config [ 'cache' ][ 'enabled' ])
cache :: set ( 'purged_bans_last' , time ());
2012-04-11 12:49:22 -04:00
}
function threadLocked ( $id ) {
global $board ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( event ( 'check-locked' , $id ))
2012-04-11 12:49:22 -04:00
return true ;
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT `locked` FROM ``posts_%s`` WHERE `id` = :id AND `thread` IS NULL LIMIT 1 " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ());
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
if (( $locked = $query -> fetchColumn ()) === false ) {
2012-04-11 12:49:22 -04:00
// Non-existant, so it can't be locked...
return false ;
2010-11-30 07:12:54 -05:00
}
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
return ( bool ) $locked ;
2012-04-11 12:49:22 -04:00
}
function threadSageLocked ( $id ) {
global $board ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( event ( 'check-sage-locked' , $id ))
2012-04-11 12:49:22 -04:00
return true ;
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT `sage` FROM ``posts_%s`` WHERE `id` = :id AND `thread` IS NULL LIMIT 1 " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ());
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
if (( $sagelocked = $query -> fetchColumn ()) === false ) {
2012-04-11 12:49:22 -04:00
// Non-existant, so it can't be locked...
return false ;
}
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
return ( bool ) $sagelocked ;
2012-04-11 12:49:22 -04:00
}
function threadExists ( $id ) {
global $board ;
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT 1 FROM ``posts_%s`` WHERE `id` = :id AND `thread` IS NULL LIMIT 1 " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ());
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $query -> rowCount ()) {
2012-04-11 12:49:22 -04:00
return true ;
2012-08-30 11:35:27 -04:00
}
return false ;
2012-04-11 12:49:22 -04:00
}
2013-09-06 09:09:18 -04:00
function insertFloodPost ( array $post ) {
global $board ;
$query = prepare ( " INSERT INTO ``flood`` VALUES (NULL, :ip, :board, :time, :posthash, :filehash, :isreply) " );
$query -> bindValue ( ':ip' , $_SERVER [ 'REMOTE_ADDR' ]);
$query -> bindValue ( ':board' , $board [ 'uri' ]);
$query -> bindValue ( ':time' , time ());
2013-09-06 22:50:32 -04:00
$query -> bindValue ( ':posthash' , make_comment_hex ( $post [ 'body_nomarkup' ]));
2013-09-06 09:09:18 -04:00
if ( $post [ 'has_file' ])
$query -> bindValue ( ':filehash' , $post [ 'filehash' ]);
else
$query -> bindValue ( ':filehash' , null , PDO :: PARAM_NULL );
2013-09-06 10:04:22 -04:00
$query -> bindValue ( ':isreply' , ! $post [ 'op' ], PDO :: PARAM_INT );
2013-09-06 09:09:18 -04:00
$query -> execute () or error ( db_error ( $query ));
}
2012-04-11 12:49:22 -04:00
function post ( array $post ) {
global $pdo , $board ;
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " INSERT INTO ``posts_%s`` 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' ]));
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Basic stuff
2012-04-12 10:18:19 -04:00
if ( ! empty ( $post [ 'subject' ])) {
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':subject' , $post [ 'subject' ]);
} else {
2013-09-06 09:09:18 -04:00
$query -> bindValue ( ':subject' , null , PDO :: PARAM_NULL );
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! empty ( $post [ 'email' ])) {
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':email' , $post [ 'email' ]);
} else {
2013-09-06 09:09:18 -04:00
$query -> bindValue ( ':email' , null , PDO :: PARAM_NULL );
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! empty ( $post [ 'trip' ])) {
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':trip' , $post [ 'trip' ]);
} else {
2013-09-06 09:09:18 -04:00
$query -> bindValue ( ':trip' , null , PDO :: PARAM_NULL );
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$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' ]);
2013-08-03 07:50:25 -04:00
2013-06-08 06:55:13 -04:00
if ( $post [ 'op' ] && $post [ 'mod' ] && isset ( $post [ 'sticky' ]) && $post [ 'sticky' ]) {
2013-09-06 09:09:18 -04:00
$query -> bindValue ( ':sticky' , true , PDO :: PARAM_INT );
2012-04-11 12:49:22 -04:00
} else {
2013-09-06 09:09:18 -04:00
$query -> bindValue ( ':sticky' , false , PDO :: PARAM_INT );
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2013-06-08 06:55:13 -04:00
if ( $post [ 'op' ] && $post [ 'mod' ] && isset ( $post [ 'locked' ]) && $post [ 'locked' ]) {
2013-09-06 09:09:18 -04:00
$query -> bindValue ( ':locked' , true , PDO :: PARAM_INT );
2012-04-11 12:49:22 -04:00
} else {
2013-09-06 09:09:18 -04:00
$query -> bindValue ( ':locked' , false , PDO :: PARAM_INT );
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $post [ 'mod' ] && isset ( $post [ 'capcode' ]) && $post [ 'capcode' ]) {
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':capcode' , $post [ 'capcode' ], PDO :: PARAM_INT );
} else {
2013-09-06 09:09:18 -04:00
$query -> bindValue ( ':capcode' , null , PDO :: PARAM_NULL );
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! empty ( $post [ 'embed' ])) {
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':embed' , $post [ 'embed' ]);
} else {
2013-09-06 09:09:18 -04:00
$query -> bindValue ( ':embed' , null , PDO :: PARAM_NULL );
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $post [ 'op' ]) {
2012-04-11 12:49:22 -04:00
// No parent thread, image
$query -> bindValue ( ':thread' , null , PDO :: PARAM_NULL );
} else {
$query -> bindValue ( ':thread' , $post [ 'thread' ], PDO :: PARAM_INT );
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $post [ 'has_file' ]) {
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':thumb' , $post [ 'thumb' ]);
$query -> bindValue ( ':thumbwidth' , $post [ 'thumbwidth' ], PDO :: PARAM_INT );
$query -> bindValue ( ':thumbheight' , $post [ 'thumbheight' ], PDO :: PARAM_INT );
$query -> bindValue ( ':file' , $post [ 'file' ]);
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( isset ( $post [ 'width' ], $post [ 'height' ])) {
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':width' , $post [ 'width' ], PDO :: PARAM_INT );
$query -> bindValue ( ':height' , $post [ 'height' ], PDO :: PARAM_INT );
2010-12-17 09:18:03 -05:00
} else {
$query -> bindValue ( ':width' , null , PDO :: PARAM_NULL );
$query -> bindValue ( ':height' , null , PDO :: PARAM_NULL );
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':filesize' , $post [ 'filesize' ], PDO :: PARAM_INT );
$query -> bindValue ( ':filename' , $post [ 'filename' ]);
$query -> bindValue ( ':filehash' , $post [ 'filehash' ]);
} else {
$query -> bindValue ( ':thumb' , null , PDO :: PARAM_NULL );
$query -> bindValue ( ':thumbwidth' , null , PDO :: PARAM_NULL );
$query -> bindValue ( ':thumbheight' , null , PDO :: PARAM_NULL );
$query -> bindValue ( ':file' , null , PDO :: PARAM_NULL );
$query -> bindValue ( ':width' , null , PDO :: PARAM_NULL );
$query -> bindValue ( ':height' , null , PDO :: PARAM_NULL );
$query -> bindValue ( ':filesize' , null , PDO :: PARAM_NULL );
$query -> bindValue ( ':filename' , null , PDO :: PARAM_NULL );
$query -> bindValue ( ':filehash' , null , PDO :: PARAM_NULL );
2010-12-17 09:18:03 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! $query -> execute ()) {
2012-04-11 12:49:22 -04:00
undoImage ( $post );
error ( db_error ( $query ));
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return $pdo -> lastInsertId ();
}
function bumpThread ( $id ) {
2013-08-03 17:42:34 -04:00
global $config , $board , $build_pages ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( event ( 'bump' , $id ))
2012-04-11 12:49:22 -04:00
return true ;
2013-08-03 07:50:25 -04:00
2013-08-03 17:42:34 -04:00
if ( $config [ 'try_smarter' ])
$build_pages [] = thread_find_page ( $id );
2013-08-03 20:34:59 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " UPDATE ``posts_%s`` SET `bump` = :time WHERE `id` = :id AND `thread` IS NULL " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':time' , time (), PDO :: PARAM_INT );
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
}
// Remove file from post
function deleteFile ( $id , $remove_entirely_if_already = true ) {
global $board , $config ;
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT `thread`,`thumb`,`file` FROM ``posts_%s`` WHERE `id` = :id LIMIT 1 " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-07-31 20:51:43 -04:00
if ( ! $post = $query -> fetch ( PDO :: FETCH_ASSOC ))
2012-04-11 12:49:22 -04:00
error ( $config [ 'error' ][ 'invalidpost' ]);
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $post [ 'file' ] == 'deleted' && ! $post [ 'thread' ])
2012-04-11 12:49:22 -04:00
return ; // Can't delete OP's image completely.
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " UPDATE ``posts_%s`` SET `thumb` = NULL, `thumbwidth` = NULL, `thumbheight` = NULL, `filewidth` = NULL, `fileheight` = NULL, `filesize` = NULL, `filename` = NULL, `filehash` = NULL, `file` = :file WHERE `id` = :id " , $board [ 'uri' ]));
2012-04-12 10:18:19 -04:00
if ( $post [ 'file' ] == 'deleted' && $remove_entirely_if_already ) {
2012-04-11 12:49:22 -04:00
// Already deleted; remove file fully
$query -> bindValue ( ':file' , null , PDO :: PARAM_NULL );
} else {
// Delete thumbnail
file_unlink ( $board [ 'dir' ] . $config [ 'dir' ][ 'thumb' ] . $post [ 'thumb' ]);
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Delete file
file_unlink ( $board [ 'dir' ] . $config [ 'dir' ][ 'img' ] . $post [ 'file' ]);
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Set file to 'deleted'
$query -> bindValue ( ':file' , 'deleted' , PDO :: PARAM_INT );
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $post [ 'thread' ])
2012-04-11 12:49:22 -04:00
buildThread ( $post [ 'thread' ]);
2012-05-28 03:08:09 -04:00
else
buildThread ( $id );
2012-04-11 12:49:22 -04:00
}
// rebuild post (markup)
function rebuildPost ( $id ) {
global $board ;
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT `body_nomarkup`, `thread` FROM ``posts_%s`` WHERE `id` = :id " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
if (( ! $post = $query -> fetch ( PDO :: FETCH_ASSOC )) || ! $post [ 'body_nomarkup' ])
2012-04-11 12:49:22 -04:00
return false ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
markup ( $body = & $post [ 'body_nomarkup' ]);
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " UPDATE ``posts_%s`` SET `body` = :body WHERE `id` = :id " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':body' , $body );
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
buildThread ( $post [ 'thread' ] ? $post [ 'thread' ] : $id );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return true ;
}
// Delete a post (reply or thread)
function deletePost ( $id , $error_if_doesnt_exist = true , $rebuild_after = true ) {
global $board , $config ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Select post and replies (if thread) in one query
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT `id`,`thread`,`thumb`,`file` FROM ``posts_%s`` WHERE `id` = :id OR `thread` = :id " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $query -> rowCount () < 1 ) {
if ( $error_if_doesnt_exist )
2011-02-12 01:25:15 -05:00
error ( $config [ 'error' ][ 'invalidpost' ]);
2012-04-11 12:49:22 -04:00
else return false ;
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$ids = array ();
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Delete posts and maybe replies
2013-07-31 20:51:43 -04:00
while ( $post = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2013-08-17 02:06:45 -04:00
event ( 'delete' , $post );
2012-04-12 10:18:19 -04:00
if ( ! $post [ 'thread' ]) {
2012-04-11 12:49:22 -04:00
// Delete thread HTML page
file_unlink ( $board [ 'dir' ] . $config [ 'dir' ][ 'res' ] . sprintf ( $config [ 'file_page' ], $post [ 'id' ]));
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$antispam_query = prepare ( 'DELETE FROM ``antispam`` WHERE `board` = :board AND `thread` = :thread' );
2012-04-18 11:19:10 -04:00
$antispam_query -> bindValue ( ':board' , $board [ 'uri' ]);
$antispam_query -> bindValue ( ':thread' , $post [ 'id' ]);
$antispam_query -> execute () or error ( db_error ( $antispam_query ));
2012-04-12 10:18:19 -04:00
} elseif ( $query -> rowCount () == 1 ) {
2012-04-11 12:49:22 -04:00
// Rebuild thread
$rebuild = & $post [ 'thread' ];
2011-01-20 21:14:55 -05:00
}
2012-04-12 10:18:19 -04:00
if ( $post [ 'thumb' ]) {
2011-01-20 21:14:55 -05:00
// Delete thumbnail
2011-05-23 01:29:58 -04:00
file_unlink ( $board [ 'dir' ] . $config [ 'dir' ][ 'thumb' ] . $post [ 'thumb' ]);
2012-04-11 12:49:22 -04:00
}
2012-04-12 10:18:19 -04:00
if ( $post [ 'file' ]) {
2011-01-20 21:14:55 -05:00
// Delete file
2011-05-23 01:29:58 -04:00
file_unlink ( $board [ 'dir' ] . $config [ 'dir' ][ 'img' ] . $post [ 'file' ]);
2011-01-20 21:14:55 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$ids [] = ( int ) $post [ 'id' ];
2013-08-03 07:50:25 -04:00
2011-01-20 21:14:55 -05:00
}
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " DELETE FROM ``posts_%s`` WHERE `id` = :id OR `thread` = :id " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-08-30 01:00:33 -04:00
$query = prepare ( " SELECT `board`, `post` FROM ``cites`` WHERE `target_board` = :board AND (`target` = " . implode ( ' OR `target` = ' , $ids ) . " ) ORDER BY `board` " );
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':board' , $board [ 'uri' ]);
$query -> execute () or error ( db_error ( $query ));
2013-07-31 20:51:43 -04:00
while ( $cite = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-04-12 10:18:19 -04:00
if ( $board [ 'uri' ] != $cite [ 'board' ]) {
if ( ! isset ( $tmp_board ))
2012-04-11 12:49:22 -04:00
$tmp_board = $board [ 'uri' ];
openBoard ( $cite [ 'board' ]);
2011-01-18 08:41:43 -05:00
}
2012-04-11 12:49:22 -04:00
rebuildPost ( $cite [ 'post' ]);
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( isset ( $tmp_board ))
2012-04-11 12:49:22 -04:00
openBoard ( $tmp_board );
2013-08-03 07:50:25 -04:00
2013-08-30 01:00:33 -04:00
$query = prepare ( " DELETE FROM ``cites`` WHERE (`target_board` = :board AND (`target` = " . implode ( ' OR `target` = ' , $ids ) . " )) OR (`board` = :board AND (`post` = " . implode ( ' OR `post` = ' , $ids ) . " )) " );
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':board' , $board [ 'uri' ]);
$query -> execute () or error ( db_error ( $query ));
2013-08-30 01:00:33 -04:00
2012-04-12 10:18:19 -04:00
if ( isset ( $rebuild ) && $rebuild_after ) {
2012-04-11 12:49:22 -04:00
buildThread ( $rebuild );
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return true ;
}
function clean () {
global $board , $config ;
$offset = round ( $config [ 'max_pages' ] * $config [ 'threads_per_page' ]);
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// I too wish there was an easier way of doing this...
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT `id` FROM ``posts_%s`` WHERE `thread` IS NULL ORDER BY `sticky` DESC, `bump` DESC LIMIT :offset, 9001 " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':offset' , $offset , PDO :: PARAM_INT );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$query -> execute () or error ( db_error ( $query ));
2013-07-31 20:51:43 -04:00
while ( $post = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-04-11 12:49:22 -04:00
deletePost ( $post [ 'id' ]);
}
}
2013-08-03 07:50:25 -04:00
function thread_find_page ( $thread ) {
global $config , $board ;
$query = query ( sprintf ( " SELECT `id` FROM ``posts_%s`` WHERE `thread` IS NULL ORDER BY `sticky` DESC, `bump` DESC " , $board [ 'uri' ])) or error ( db_error ( $query ));
$threads = $query -> fetchAll ( PDO :: FETCH_COLUMN );
if (( $index = array_search ( $thread , $threads )) === false )
return false ;
return floor (( $config [ 'threads_per_page' ] + $index ) / $config [ 'threads_per_page' ]);
}
2012-04-11 12:49:22 -04:00
function index ( $page , $mod = false ) {
global $board , $config , $debug ;
$body = '' ;
$offset = round ( $page * $config [ 'threads_per_page' ] - $config [ 'threads_per_page' ]);
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT * FROM ``posts_%s`` WHERE `thread` IS NULL ORDER BY `sticky` DESC, `bump` DESC LIMIT :offset,:threads_per_page " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':offset' , $offset , PDO :: PARAM_INT );
$query -> bindValue ( ':threads_per_page' , $config [ 'threads_per_page' ], PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-07-31 17:04:36 -04:00
if ( $page == 1 && $query -> rowCount () < $config [ 'threads_per_page' ])
2013-07-31 17:02:42 -04:00
$board [ 'thread_count' ] = $query -> rowCount ();
2013-08-03 07:50:25 -04:00
2013-07-31 17:02:42 -04:00
if ( $query -> rowCount () < 1 && $page > 1 )
2012-04-11 12:49:22 -04:00
return false ;
2013-07-02 13:52:29 -04:00
$threads = array ();
2013-07-31 20:51:43 -04:00
while ( $th = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2013-08-16 07:08:01 -04:00
$thread = new Thread ( $th , $mod ? '?/' : $config [ 'root' ], $mod );
2013-08-03 07:50:25 -04:00
2013-09-07 23:35:02 -04:00
if ( $config [ 'cache' ][ 'enabled' ]) {
$cached = cache :: get ( " thread_index_ { $board [ 'uri' ] } _ { $th [ 'id' ] } " );
if ( isset ( $cached [ 'replies' ], $cached [ 'omitted' ])) {
$replies = $cached [ 'replies' ];
$omitted = $cached [ 'omitted' ];
} else {
2013-09-09 05:19:11 -04:00
unset ( $cached );
2013-09-07 23:35:02 -04:00
}
}
2013-09-09 05:19:11 -04:00
if ( ! isset ( $cached )) {
2013-07-31 22:14:26 -04:00
$posts = prepare ( sprintf ( " SELECT * FROM ``posts_%s`` WHERE `thread` = :id ORDER BY `id` DESC LIMIT :limit " , $board [ 'uri' ]));
2012-09-27 14:46:20 -04:00
$posts -> bindValue ( ':id' , $th [ 'id' ]);
$posts -> bindValue ( ':limit' , ( $th [ 'sticky' ] ? $config [ 'threads_preview_sticky' ] : $config [ 'threads_preview' ]), PDO :: PARAM_INT );
$posts -> execute () or error ( db_error ( $posts ));
2013-08-03 07:50:25 -04:00
2013-01-27 22:27:47 -05:00
$replies = array_reverse ( $posts -> fetchAll ( PDO :: FETCH_ASSOC ));
2013-08-03 07:50:25 -04:00
2013-01-27 22:27:47 -05:00
if ( count ( $replies ) == ( $th [ 'sticky' ] ? $config [ 'threads_preview_sticky' ] : $config [ 'threads_preview' ])) {
2013-06-18 13:21:41 -04:00
$count = numPosts ( $th [ 'id' ]);
$omitted = array ( 'post_count' => $count [ 'replies' ], 'image_count' => $count [ 'images' ]);
2013-01-27 22:27:47 -05:00
} else {
$omitted = false ;
}
2013-08-03 07:50:25 -04:00
2013-01-22 20:43:46 -05:00
if ( $config [ 'cache' ][ 'enabled' ])
2013-01-27 22:27:47 -05:00
cache :: set ( " thread_index_ { $board [ 'uri' ] } _ { $th [ 'id' ] } " , array (
'replies' => $replies ,
'omitted' => $omitted ,
));
2013-01-22 20:43:46 -05:00
}
2013-08-03 07:50:25 -04:00
2013-01-22 20:43:46 -05:00
$num_images = 0 ;
foreach ( $replies as $po ) {
if ( $po [ 'file' ])
$num_images ++ ;
2013-08-03 07:50:25 -04:00
2013-08-16 07:08:01 -04:00
$thread -> add ( new Post ( $po , $mod ? '?/' : $config [ 'root' ], $mod ));
2013-01-22 20:43:46 -05:00
}
2013-08-03 07:50:25 -04:00
2013-01-27 22:27:47 -05:00
if ( $omitted ) {
$thread -> omitted = $omitted [ 'post_count' ] - ( $th [ 'sticky' ] ? $config [ 'threads_preview_sticky' ] : $config [ 'threads_preview' ]);
$thread -> omitted_images = $omitted [ 'image_count' ] - $num_images ;
2012-04-11 12:49:22 -04:00
}
2013-07-02 13:52:29 -04:00
$threads [] = $thread ;
2012-04-11 12:49:22 -04:00
$body .= $thread -> build ( true );
2011-01-18 08:41:43 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return array (
2012-09-27 14:46:20 -04:00
'board' => $board ,
'body' => $body ,
2012-04-11 12:49:22 -04:00
'post_url' => $config [ 'post_url' ],
'config' => $config ,
2013-07-02 13:52:29 -04:00
'boardlist' => createBoardlist ( $mod ),
'threads' => $threads
2012-04-11 12:49:22 -04:00
);
}
2010-11-04 10:39:02 -04:00
2012-04-11 12:49:22 -04:00
function getPageButtons ( $pages , $mod = false ) {
global $config , $board ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$btn = array ();
$root = ( $mod ? '?/' : $config [ 'root' ]) . $board [ 'dir' ];
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
foreach ( $pages as $num => $page ) {
if ( isset ( $page [ 'selected' ])) {
2012-04-11 12:49:22 -04:00
// Previous button
2012-04-12 10:18:19 -04:00
if ( $num == 0 ) {
2012-04-11 12:49:22 -04:00
// There is no previous page.
$btn [ 'prev' ] = _ ( 'Previous' );
} else {
$loc = ( $mod ? '?/' . $board [ 'uri' ] . '/' : '' ) .
( $num == 1 ?
$config [ 'file_index' ]
:
sprintf ( $config [ 'file_page' ], $num )
);
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$btn [ 'prev' ] = '<form action="' . ( $mod ? '' : $root . $loc ) . '" method="get">' .
( $mod ?
'<input type="hidden" name="status" value="301" />' .
'<input type="hidden" name="r" value="' . htmlentities ( $loc ) . '" />'
: '' ) .
'<input type="submit" value="' . _ ( 'Previous' ) . '" /></form>' ;
2011-02-17 01:07:36 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $num == count ( $pages ) - 1 ) {
2012-04-11 12:49:22 -04:00
// There is no next page.
$btn [ 'next' ] = _ ( 'Next' );
} else {
$loc = ( $mod ? '?/' . $board [ 'uri' ] . '/' : '' ) . sprintf ( $config [ 'file_page' ], $num + 2 );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$btn [ 'next' ] = '<form action="' . ( $mod ? '' : $root . $loc ) . '" method="get">' .
( $mod ?
'<input type="hidden" name="status" value="301" />' .
'<input type="hidden" name="r" value="' . htmlentities ( $loc ) . '" />'
: '' ) .
'<input type="submit" value="' . _ ( 'Next' ) . '" /></form>' ;
2010-11-02 06:57:33 -04:00
}
}
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return $btn ;
}
function getPages ( $mod = false ) {
global $board , $config ;
2013-08-03 07:50:25 -04:00
2013-07-31 17:02:42 -04:00
if ( isset ( $board [ 'thread_count' ])) {
$count = $board [ 'thread_count' ];
} else {
// Count threads
2013-07-31 22:14:26 -04:00
$query = query ( sprintf ( " SELECT COUNT(*) FROM ``posts_%s`` WHERE `thread` IS NULL " , $board [ 'uri' ])) or error ( db_error ());
2013-07-31 17:02:42 -04:00
$count = $query -> fetchColumn ();
}
2012-04-11 12:49:22 -04:00
$count = floor (( $config [ 'threads_per_page' ] + $count - 1 ) / $config [ 'threads_per_page' ]);
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $count < 1 ) $count = 1 ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$pages = array ();
2012-04-12 10:18:19 -04:00
for ( $x = 0 ; $x < $count && $x < $config [ 'max_pages' ]; $x ++ ) {
2012-04-11 12:49:22 -04:00
$pages [] = array (
'num' => $x + 1 ,
'link' => $x == 0 ? ( $mod ? '?/' : $config [ 'root' ]) . $board [ 'dir' ] . $config [ 'file_index' ] : ( $mod ? '?/' : $config [ 'root' ]) . $board [ 'dir' ] . sprintf ( $config [ 'file_page' ], $x + 1 )
);
2011-01-18 08:41:43 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return $pages ;
}
2013-09-06 22:50:32 -04:00
// Stolen with permission from PlainIB (by Frank Usrs)
function make_comment_hex ( $str ) {
// remove cross-board citations
// the numbers don't matter
$str = preg_replace ( '!>>>/[A-Za-z0-9]+/!' , '' , $str );
if ( function_exists ( 'iconv' )) {
// remove diacritics and other noise
// FIXME: this removes cyrillic entirely
$str = iconv ( 'UTF-8' , 'ASCII//TRANSLIT//IGNORE' , $str );
}
$str = strtolower ( $str );
// strip all non-alphabet characters
$str = preg_replace ( '/[^a-z]/' , '' , $str );
return md5 ( $str );
}
2012-04-11 12:49:22 -04:00
function makerobot ( $body ) {
global $config ;
$body = strtolower ( $body );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Leave only letters
$body = preg_replace ( '/[^a-z]/i' , '' , $body );
// Remove repeating characters
2012-04-12 10:18:19 -04:00
if ( $config [ 'robot_strip_repeating' ])
2012-04-11 12:49:22 -04:00
$body = preg_replace ( '/(.)\\1+/' , '$1' , $body );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return sha1 ( $body );
}
function checkRobot ( $body ) {
2012-08-30 11:35:27 -04:00
if ( empty ( $body ) || event ( 'check-robot' , $body ))
2012-04-11 12:49:22 -04:00
return true ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body = makerobot ( $body );
2013-07-31 22:14:26 -04:00
$query = prepare ( " SELECT 1 FROM ``robot`` WHERE `hash` = :hash LIMIT 1 " );
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':hash' , $body );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
if ( $query -> fetchColumn ()) {
2012-04-11 12:49:22 -04:00
return true ;
2011-01-20 03:24:23 -05:00
}
2012-08-30 11:35:27 -04:00
// Insert new hash
2013-07-31 22:14:26 -04:00
$query = prepare ( " INSERT INTO ``robot`` VALUES (:hash) " );
2012-08-30 11:35:27 -04:00
$query -> bindValue ( ':hash' , $body );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2012-08-30 11:35:27 -04:00
return false ;
2012-04-11 12:49:22 -04:00
}
2013-06-18 13:21:41 -04:00
// Returns an associative array with 'replies' and 'images' keys
2012-04-11 12:49:22 -04:00
function numPosts ( $id ) {
global $board ;
2013-08-31 12:04:42 -04:00
$query = prepare ( sprintf ( " SELECT COUNT(*) AS `replies`, COUNT(NULLIF(`file`, 0)) AS `images` FROM ``posts_%s`` WHERE `thread` = :thread " , $board [ 'uri' ], $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':thread' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-08-31 12:04:42 -04:00
return $query -> fetch ( PDO :: FETCH_ASSOC );
2012-04-11 12:49:22 -04:00
}
function muteTime () {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $time = event ( 'mute-time' ))
2012-04-11 12:49:22 -04:00
return $time ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Find number of mutes in the past X hours
2013-07-31 22:14:26 -04:00
$query = prepare ( " SELECT COUNT(*) FROM ``mutes`` WHERE `time` >= :time AND `ip` = :ip " );
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':time' , time () - ( $config [ 'robot_mute_hour' ] * 3600 ), PDO :: PARAM_INT );
$query -> bindValue ( ':ip' , $_SERVER [ 'REMOTE_ADDR' ]);
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
if ( ! $result = $query -> fetchColumn ())
return 0 ;
return pow ( $config [ 'robot_mute_multiplier' ], $result );
2012-04-11 12:49:22 -04:00
}
function mute () {
// Insert mute
2013-07-31 22:14:26 -04:00
$query = prepare ( " INSERT INTO ``mutes`` VALUES (:ip, :time) " );
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':time' , time (), PDO :: PARAM_INT );
$query -> bindValue ( ':ip' , $_SERVER [ 'REMOTE_ADDR' ]);
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return muteTime ();
}
function checkMute () {
global $config , $debug ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ]) {
2012-04-11 12:49:22 -04:00
// Cached mute?
2012-04-12 10:18:19 -04:00
if (( $mute = cache :: get ( " mute_ ${ _SERVER['REMOTE_ADDR'] } " )) && ( $mutetime = cache :: get ( " mutetime_ ${ _SERVER['REMOTE_ADDR'] } " ))) {
2012-04-11 12:49:22 -04:00
error ( sprintf ( $config [ 'error' ][ 'youaremuted' ], $mute [ 'time' ] + $mutetime - time ()));
}
2011-01-20 03:24:23 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$mutetime = muteTime ();
2012-04-12 10:18:19 -04:00
if ( $mutetime > 0 ) {
2012-04-11 12:49:22 -04:00
// Find last mute time
2013-07-31 22:14:26 -04:00
$query = prepare ( " SELECT `time` FROM ``mutes`` WHERE `ip` = :ip ORDER BY `time` DESC LIMIT 1 " );
2011-01-20 03:24:23 -05:00
$query -> bindValue ( ':ip' , $_SERVER [ 'REMOTE_ADDR' ]);
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
if ( ! $mute = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-04-11 12:49:22 -04:00
// What!? He's muted but he's not muted...
return ;
2011-05-19 07:24:17 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $mute [ 'time' ] + $mutetime > time ()) {
if ( $config [ 'cache' ][ 'enabled' ]) {
2012-04-11 12:49:22 -04:00
cache :: set ( " mute_ ${ _SERVER['REMOTE_ADDR'] } " , $mute , $mute [ 'time' ] + $mutetime - time ());
cache :: set ( " mutetime_ ${ _SERVER['REMOTE_ADDR'] } " , $mutetime , $mute [ 'time' ] + $mutetime - time ());
2011-01-20 03:24:23 -05:00
}
2012-04-11 12:49:22 -04:00
// Not expired yet
error ( sprintf ( $config [ 'error' ][ 'youaremuted' ], $mute [ 'time' ] + $mutetime - time ()));
} else {
// Already expired
return ;
2011-01-20 03:24:23 -05:00
}
}
2012-04-11 12:49:22 -04:00
}
function buildIndex () {
2013-08-03 07:50:25 -04:00
global $board , $config , $build_pages ;
2012-04-11 12:49:22 -04:00
$pages = getPages ();
2013-08-03 17:42:34 -04:00
if ( ! $config [ 'try_smarter' ])
$antibot = create_antibot ( $board [ 'uri' ]);
2012-04-11 12:49:22 -04:00
2013-08-20 12:53:05 -04:00
if ( $config [ 'api' ][ 'enabled' ]) {
2013-08-20 17:35:16 -04:00
$api = new Api ();
2013-08-20 12:53:05 -04:00
$catalog = array ();
}
2013-08-03 07:50:25 -04:00
for ( $page = 1 ; $page <= $config [ 'max_pages' ]; $page ++ ) {
2013-01-23 12:56:06 -05:00
$filename = $board [ 'dir' ] . ( $page == 1 ? $config [ 'file_index' ] : sprintf ( $config [ 'file_page' ], $page ));
2013-08-03 20:34:59 -04:00
2013-08-29 04:55:25 -04:00
if ( $config [ 'try_smarter' ] && isset ( $build_pages ) && ! empty ( $build_pages )
2013-07-02 13:52:29 -04:00
&& ! in_array ( $page , $build_pages ) && is_file ( $filename ))
2013-08-03 07:50:25 -04:00
continue ;
$content = index ( $page );
if ( ! $content )
break ;
2013-08-03 17:42:34 -04:00
if ( $config [ 'try_smarter' ]) {
$antibot = create_antibot ( $board [ 'uri' ], 0 - $page );
$content [ 'current_page' ] = $page ;
}
2013-01-23 12:56:06 -05:00
$antibot -> reset ();
2012-04-11 12:49:22 -04:00
$content [ 'pages' ] = $pages ;
$content [ 'pages' ][ $page - 1 ][ 'selected' ] = true ;
$content [ 'btn' ] = getPageButtons ( $content [ 'pages' ]);
2012-07-04 13:17:51 -04:00
$content [ 'antibot' ] = $antibot ;
2013-01-23 12:56:06 -05:00
2012-04-11 12:49:22 -04:00
file_write ( $filename , Element ( 'index.html' , $content ));
2013-07-02 13:52:29 -04:00
// json api
2013-08-20 12:53:05 -04:00
if ( $config [ 'api' ][ 'enabled' ]) {
$threads = $content [ 'threads' ];
$json = json_encode ( $api -> translatePage ( $threads ));
2013-08-21 08:43:35 -04:00
$jsonFilename = $board [ 'dir' ] . ( $page - 1 ) . '.json' ; // pages should start from 0
2013-08-20 12:53:05 -04:00
file_write ( $jsonFilename , $json );
2013-07-02 13:52:29 -04:00
2013-08-20 12:53:05 -04:00
$catalog [ $page - 1 ] = $threads ;
}
2011-02-17 06:03:52 -05:00
}
2013-07-02 13:52:29 -04:00
2012-04-12 10:18:19 -04:00
if ( $page < $config [ 'max_pages' ]) {
for (; $page <= $config [ 'max_pages' ]; $page ++ ) {
2011-02-12 01:25:15 -05:00
$filename = $board [ 'dir' ] . ( $page == 1 ? $config [ 'file_index' ] : sprintf ( $config [ 'file_page' ], $page ));
2012-04-11 12:49:22 -04:00
file_unlink ( $filename );
2013-07-02 13:52:29 -04:00
2013-08-21 08:43:35 -04:00
$jsonFilename = $board [ 'dir' ] . ( $page - 1 ) . '.json' ;
2013-07-02 13:52:29 -04:00
file_unlink ( $jsonFilename );
2010-11-02 06:57:33 -04:00
}
}
2013-07-02 13:52:29 -04:00
// json api catalog
2013-08-20 12:53:05 -04:00
if ( $config [ 'api' ][ 'enabled' ]) {
$json = json_encode ( $api -> translateCatalog ( $catalog ));
2013-08-21 08:43:35 -04:00
$jsonFilename = $board [ 'dir' ] . 'catalog.json' ;
2013-08-20 12:53:05 -04:00
file_write ( $jsonFilename , $json );
}
2013-08-29 04:55:25 -04:00
if ( $config [ 'try_smarter' ])
$build_pages = array ();
2012-04-11 12:49:22 -04:00
}
function buildJavascript () {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$stylesheets = array ();
2012-04-12 10:18:19 -04:00
foreach ( $config [ 'stylesheets' ] as $name => $uri ) {
2012-04-11 12:49:22 -04:00
$stylesheets [] = array (
'name' => addslashes ( $name ),
'uri' => addslashes (( ! empty ( $uri ) ? $config [ 'uri_stylesheets' ] : '' ) . $uri ));
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$script = Element ( 'main.js' , array (
'config' => $config ,
'stylesheets' => $stylesheets
));
2013-08-03 07:50:25 -04:00
2013-07-31 06:54:53 -04:00
// Check if we have translation for the javascripts; if yes, we add it to additional javascripts
list ( $pure_locale ) = explode ( " . " , $config [ 'locale' ]);
if ( file_exists ( $jsloc = " inc/locale/ $pure_locale /LC_MESSAGES/javascript.js " )) {
$script = file_get_contents ( $jsloc ) . " \n \n " . $script ;
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'additional_javascript_compile' ]) {
foreach ( $config [ 'additional_javascript' ] as $file ) {
2012-04-11 12:49:22 -04:00
$script .= file_get_contents ( $file );
2012-03-14 06:44:41 -04:00
}
2011-03-26 11:36:32 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'minify_js' ]) {
2012-04-11 12:49:22 -04:00
require_once 'inc/lib/minify/JSMin.php' ;
$script = JSMin :: minify ( $script );
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
file_write ( $config [ 'file_script' ], $script );
}
function checkDNSBL () {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( isIPv6 ())
2012-04-11 12:49:22 -04:00
return ; // No IPv6 support yet.
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $_SERVER [ 'REMOTE_ADDR' ]))
2012-04-11 12:49:22 -04:00
return ; // Fix your web server configuration
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( in_array ( $_SERVER [ 'REMOTE_ADDR' ], $config [ 'dnsbl_exceptions' ]))
2012-04-11 12:49:22 -04:00
return ;
2013-08-03 07:50:25 -04:00
2012-04-14 20:21:43 -04:00
$ipaddr = ReverseIPOctets ( $_SERVER [ 'REMOTE_ADDR' ]);
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
foreach ( $config [ 'dnsbl' ] as $blacklist ) {
2012-04-14 20:21:43 -04:00
if ( ! is_array ( $blacklist ))
2012-04-11 12:49:22 -04:00
$blacklist = array ( $blacklist );
2013-08-03 07:50:25 -04:00
2012-04-14 20:21:43 -04:00
if (( $lookup = str_replace ( '%' , $ipaddr , $blacklist [ 0 ])) == $blacklist [ 0 ])
$lookup = $ipaddr . '.' . $blacklist [ 0 ];
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! $ip = DNS ( $lookup ))
2012-04-11 12:49:22 -04:00
continue ; // not in list
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$blacklist_name = isset ( $blacklist [ 2 ]) ? $blacklist [ 2 ] : $blacklist [ 0 ];
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! isset ( $blacklist [ 1 ])) {
2012-04-11 12:49:22 -04:00
// If you're listed at all, you're blocked.
error ( sprintf ( $config [ 'error' ][ 'dnsbl' ], $blacklist_name ));
2012-04-12 10:18:19 -04:00
} elseif ( is_array ( $blacklist [ 1 ])) {
foreach ( $blacklist [ 1 ] as $octet ) {
if ( $ip == $octet || $ip == '127.0.0.' . $octet )
2012-03-17 15:34:34 -04:00
error ( sprintf ( $config [ 'error' ][ 'dnsbl' ], $blacklist_name ));
2011-05-19 03:37:23 -04:00
}
2012-04-12 10:18:19 -04:00
} elseif ( is_callable ( $blacklist [ 1 ])) {
if ( $blacklist [ 1 ]( $ip ))
2012-04-11 12:49:22 -04:00
error ( sprintf ( $config [ 'error' ][ 'dnsbl' ], $blacklist_name ));
} else {
2012-04-12 10:18:19 -04:00
if ( $ip == $blacklist [ 1 ] || $ip == '127.0.0.' . $blacklist [ 1 ])
2012-04-11 12:49:22 -04:00
error ( sprintf ( $config [ 'error' ][ 'dnsbl' ], $blacklist_name ));
2011-05-19 03:37:23 -04:00
}
2011-01-18 20:37:31 -05:00
}
2012-04-11 12:49:22 -04:00
}
function isIPv6 () {
return strstr ( $_SERVER [ 'REMOTE_ADDR' ], ':' ) !== false ;
}
function ReverseIPOctets ( $ip ) {
return implode ( '.' , array_reverse ( explode ( '.' , $ip )));
}
function wordfilters ( & $body ) {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
foreach ( $config [ 'wordfilters' ] as $filter ) {
if ( isset ( $filter [ 2 ]) && $filter [ 2 ]) {
2013-08-12 11:53:23 -04:00
if ( is_callable ( $filter [ 1 ]))
$body = preg_replace_callback ( $filter [ 0 ], $filter [ 1 ], $body );
else
$body = preg_replace ( $filter [ 0 ], $filter [ 1 ], $body );
2012-04-11 12:49:22 -04:00
} else {
$body = str_ireplace ( $filter [ 0 ], $filter [ 1 ], $body );
}
2011-02-17 04:32:11 -05:00
}
2012-04-11 12:49:22 -04:00
}
function quote ( $body , $quote = true ) {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body = str_replace ( '<br/>' , " \n " , $body );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body = strip_tags ( $body );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body = preg_replace ( " /(^| \n )/ " , '$1>' , $body );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body .= " \n " ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'minify_html' ])
2012-04-11 12:49:22 -04:00
$body = str_replace ( " \n " , '
' , $body );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return $body ;
}
function markup_url ( $matches ) {
2013-01-16 13:49:26 -05:00
global $config , $markup_urls ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$url = $matches [ 1 ];
$after = $matches [ 2 ];
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$markup_urls [] = $url ;
2013-08-03 07:50:25 -04:00
2013-07-31 03:43:01 -04:00
return '<a target="_blank" rel="nofollow" href="' . $config [ 'link_prefix' ] . $url . '">' . $url . '</a>' . $after ;
2012-04-11 12:49:22 -04:00
}
function unicodify ( $body ) {
$body = str_replace ( '...' , '…' , $body );
$body = str_replace ( '<--' , '←' , $body );
$body = str_replace ( '-->' , '→' , $body );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// En and em- dashes are rendered exactly the same in
// most monospace fonts (they look the same in code
// editors).
2013-01-23 11:37:15 -05:00
$body = str_replace ( '---' , '—' , $body ); // em dash
2013-02-12 12:25:56 -05:00
$body = str_replace ( '--' , '–' , $body ); // en dash
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return $body ;
}
2013-08-16 07:08:01 -04:00
function extract_modifiers ( $body ) {
$modifiers = array ();
2013-08-16 07:25:56 -04:00
if ( preg_match_all ( '@<tinyboard ([\w\s]+)>(.+?)</tinyboard>@us' , $body , $matches , PREG_SET_ORDER )) {
2013-08-16 07:08:01 -04:00
foreach ( $matches as $match ) {
2013-08-16 07:25:56 -04:00
if ( preg_match ( '/^escape /' , $match [ 1 ]))
continue ;
$modifiers [ $match [ 1 ]] = html_entity_decode ( $match [ 2 ]);
2013-08-16 07:08:01 -04:00
}
}
2013-08-16 07:25:56 -04:00
2013-08-16 07:08:01 -04:00
return $modifiers ;
}
2012-04-11 12:49:22 -04:00
function markup ( & $body , $track_cites = false ) {
global $board , $config , $markup_urls ;
2013-08-16 07:25:56 -04:00
$modifiers = extract_modifiers ( $body );
2013-08-17 03:53:39 -04:00
$body = preg_replace ( '@<tinyboard (?!escape )([\w\s]+)>(.+?)</tinyboard>@us' , '' , $body );
2013-08-17 03:56:38 -04:00
$body = preg_replace ( '@<(tinyboard) escape ([\w\s]+)>@i' , '<$1 $2>' , $body );
2013-08-16 07:25:56 -04:00
2013-08-17 14:49:56 -04:00
if ( isset ( $modifiers [ 'raw html' ]) && $modifiers [ 'raw html' ] == '1' ) {
return array ();
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body = str_replace ( " \r " , '' , $body );
$body = utf8tohtml ( $body );
2013-08-03 07:50:25 -04:00
2013-07-30 22:08:56 -04:00
if ( mysql_version () < 50503 )
$body = mb_encode_numericentity ( $body , array ( 0x010000 , 0xffffff , 0 , 0xffffff ), 'UTF-8' );
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
foreach ( $config [ 'markup' ] as $markup ) {
if ( is_string ( $markup [ 1 ])) {
2012-04-11 12:49:22 -04:00
$body = preg_replace ( $markup [ 0 ], $markup [ 1 ], $body );
2012-04-12 10:18:19 -04:00
} elseif ( is_callable ( $markup [ 1 ])) {
2012-04-11 12:49:22 -04:00
$body = preg_replace_callback ( $markup [ 0 ], $markup [ 1 ], $body );
2011-04-06 05:18:36 -04:00
}
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'markup_urls' ]) {
2012-04-11 12:49:22 -04:00
$markup_urls = array ();
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body = preg_replace_callback (
'/((?:https?:\/\/|ftp:\/\/|irc:\/\/)[^\s<>()"]+?(?:\([^\s<>()"]*?\)[^\s<>()"]*?)*)((?:\s|<|>|"|\.||\]|!|\?|,|,|")*(?:[\s<>()"]|$))/' ,
'markup_url' ,
$body ,
- 1 ,
$num_links );
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $num_links > $config [ 'max_links' ])
2012-04-11 12:49:22 -04:00
error ( $config [ 'error' ][ 'toomanylinks' ]);
2011-04-12 05:56:37 -04:00
}
2013-08-29 07:24:38 -04:00
if ( $config [ 'markup_repair_tidy' ])
$body = str_replace ( ' ' , ' ' , $body );
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'auto_unicode' ]) {
2012-04-11 12:49:22 -04:00
$body = unicodify ( $body );
2013-08-03 07:50:25 -04:00
2012-05-08 09:59:54 -04:00
if ( $config [ 'markup_urls' ]) {
foreach ( $markup_urls as & $url ) {
$body = str_replace ( unicodify ( $url ), $url , $body );
}
2012-04-11 12:49:22 -04:00
}
2012-01-30 13:57:25 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$tracked_cites = array ();
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Cites
2013-07-31 18:59:54 -04:00
if ( isset ( $board ) && preg_match_all ( '/(^|\s)>>(\d+?)([\s,.)?]|$)/m' , $body , $cites , PREG_SET_ORDER | PREG_OFFSET_CAPTURE )) {
2012-04-12 10:18:19 -04:00
if ( count ( $cites [ 0 ]) > $config [ 'max_cites' ]) {
2012-04-11 12:49:22 -04:00
error ( $config [ 'error' ][ 'toomanycites' ]);
2010-11-02 06:57:33 -04:00
}
2013-08-03 07:50:25 -04:00
2013-07-26 11:01:13 -04:00
$skip_chars = 0 ;
2013-07-31 03:12:06 -04:00
$body_tmp = $body ;
2013-08-28 22:52:31 -04:00
$search_cites = array ();
foreach ( $cites as $matches ) {
$search_cites [] = '`id` = ' . $matches [ 2 ][ 0 ];
}
$search_cites = array_unique ( $search_cites );
$query = query ( sprintf ( 'SELECT `thread`, `id` FROM ``posts_%s`` WHERE ' .
implode ( ' OR ' , $search_cites ), $board [ 'uri' ])) or error ( db_error ());
$cited_posts = array ();
while ( $cited = $query -> fetch ( PDO :: FETCH_ASSOC )) {
$cited_posts [ $cited [ 'id' ]] = $cited [ 'thread' ] ? $cited [ 'thread' ] : false ;
}
2013-07-26 11:01:13 -04:00
foreach ( $cites as $matches ) {
$cite = $matches [ 2 ][ 0 ];
2013-08-03 07:50:25 -04:00
2013-07-31 03:13:51 -04:00
// preg_match_all is not multibyte-safe
2013-07-31 03:12:06 -04:00
foreach ( $matches as & $match ) {
$match [ 1 ] = mb_strlen ( substr ( $body_tmp , 0 , $match [ 1 ]));
}
2013-08-03 07:50:25 -04:00
2013-08-28 22:52:31 -04:00
if ( isset ( $cited_posts [ $cite ])) {
2012-04-11 12:49:22 -04:00
$replacement = '<a onclick="highlightReply(\'' . $cite . '\');" href="' .
2013-08-28 22:52:31 -04:00
$config [ 'root' ] . $board [ 'dir' ] . $config [ 'dir' ][ 'res' ] .
( $cited_posts [ $cite ] ? $cited_posts [ $cite ] : $cite ) . '.html#' . $cite . '">' .
'>>' . $cite .
'</a>' ;
2013-08-03 07:50:25 -04:00
2013-07-31 03:12:06 -04:00
$body = mb_substr_replace ( $body , $matches [ 1 ][ 0 ] . $replacement . $matches [ 3 ][ 0 ], $matches [ 0 ][ 1 ] + $skip_chars , mb_strlen ( $matches [ 0 ][ 0 ]));
$skip_chars += mb_strlen ( $matches [ 1 ][ 0 ] . $replacement . $matches [ 3 ][ 0 ]) - mb_strlen ( $matches [ 0 ][ 0 ]);
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $track_cites && $config [ 'track_cites' ])
2013-08-28 22:52:31 -04:00
$tracked_cites [] = array ( $board [ 'uri' ], $cite );
2011-04-06 05:18:36 -04:00
}
}
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Cross-board linking
2013-07-31 02:08:55 -04:00
if ( preg_match_all ( '/(^|\s)>>>\/(' . $config [ 'board_regex' ] . 'f?)\/(\d+)?([\s,.)?]|$)/um' , $body , $cites , PREG_SET_ORDER | PREG_OFFSET_CAPTURE )) {
2012-04-12 10:18:19 -04:00
if ( count ( $cites [ 0 ]) > $config [ 'max_cites' ]) {
2012-04-11 12:49:22 -04:00
error ( $config [ 'error' ][ 'toomanycross' ]);
}
2013-08-03 07:50:25 -04:00
2013-07-26 11:01:13 -04:00
$skip_chars = 0 ;
2013-07-31 03:12:06 -04:00
$body_tmp = $body ;
2013-08-28 23:31:02 -04:00
if ( isset ( $cited_posts )) {
// Carry found posts from local board >>X links
foreach ( $cited_posts as $cite => $thread ) {
$cited_posts [ $cite ] = $config [ 'root' ] . $board [ 'dir' ] . $config [ 'dir' ][ 'res' ] .
( $thread ? $thread : $cite ) . '.html#' . $cite ;
}
$cited_posts = array (
$board [ 'uri' ] => $cited_posts
);
} else
$cited_posts = array ();
$crossboard_indexes = array ();
$search_cites_boards = array ();
foreach ( $cites as $matches ) {
$_board = $matches [ 2 ][ 0 ];
$cite = @ $matches [ 3 ][ 0 ];
if ( ! isset ( $search_cites_boards [ $_board ]))
$search_cites_boards [ $_board ] = array ();
$search_cites_boards [ $_board ][] = $cite ;
}
$tmp_board = $board [ 'uri' ];
foreach ( $search_cites_boards as $_board => $search_cites ) {
$clauses = array ();
foreach ( $search_cites as $cite ) {
if ( ! $cite || isset ( $cited_posts [ $_board ][ $cite ]))
continue ;
$clauses [] = '`id` = ' . $cite ;
}
$clauses = array_unique ( $clauses );
if ( $board [ 'uri' ] != $_board ) {
if ( ! openBoard ( $_board ))
continue ; // Unknown board
}
if ( ! empty ( $clauses )) {
$cited_posts [ $_board ] = array ();
$query = query ( sprintf ( 'SELECT `thread`, `id` FROM ``posts_%s`` WHERE ' .
implode ( ' OR ' , $clauses ), $board [ 'uri' ])) or error ( db_error ());
while ( $cite = $query -> fetch ( PDO :: FETCH_ASSOC )) {
$cited_posts [ $_board ][ $cite [ 'id' ]] = $config [ 'root' ] . $board [ 'dir' ] . $config [ 'dir' ][ 'res' ] .
( $cite [ 'thread' ] ? $cite [ 'thread' ] : $cite [ 'id' ]) . '.html#' . $cite [ 'id' ];
}
}
$crossboard_indexes [ $_board ] = $config [ 'root' ] . $board [ 'dir' ] . $config [ 'file_index' ];
}
// Restore old board
if ( $board [ 'uri' ] != $tmp_board )
openBoard ( $tmp_board );
2013-08-28 22:52:31 -04:00
2013-07-26 11:01:13 -04:00
foreach ( $cites as $matches ) {
$_board = $matches [ 2 ][ 0 ];
$cite = @ $matches [ 3 ][ 0 ];
2013-08-03 07:50:25 -04:00
2013-07-31 03:13:51 -04:00
// preg_match_all is not multibyte-safe
2013-07-31 03:12:06 -04:00
foreach ( $matches as & $match ) {
$match [ 1 ] = mb_strlen ( substr ( $body_tmp , 0 , $match [ 1 ]));
}
2013-08-03 07:50:25 -04:00
2013-08-28 23:31:02 -04:00
if ( $cite ) {
if ( isset ( $cited_posts [ $_board ][ $cite ])) {
$link = $cited_posts [ $_board ][ $cite ];
$replacement = '<a ' .
( $_board == $board [ 'uri' ] ?
'onclick="highlightReply(\'' . $cite . '\');" '
: '' ) . 'href="' . $link . '">' .
'>>>/' . $_board . '/' . $cite .
'</a>' ;
2013-07-31 03:12:06 -04:00
$body = mb_substr_replace ( $body , $matches [ 1 ][ 0 ] . $replacement . $matches [ 4 ][ 0 ], $matches [ 0 ][ 1 ] + $skip_chars , mb_strlen ( $matches [ 0 ][ 0 ]));
2013-07-26 11:01:13 -04:00
$skip_chars += mb_strlen ( $matches [ 1 ][ 0 ] . $replacement . $matches [ 4 ][ 0 ]) - mb_strlen ( $matches [ 0 ][ 0 ]);
2013-08-28 23:31:02 -04:00
if ( $track_cites && $config [ 'track_cites' ])
$tracked_cites [] = array ( $_board , $cite );
2011-04-06 05:18:36 -04:00
}
2013-08-28 23:31:02 -04:00
} elseif ( isset ( $crossboard_indexes [ $_board ])) {
$replacement = '<a href="' . $crossboard_indexes [ $_board ] . '">' .
'>>>/' . $_board . '/' .
'</a>' ;
$body = mb_substr_replace ( $body , $matches [ 1 ][ 0 ] . $replacement . $matches [ 4 ][ 0 ], $matches [ 0 ][ 1 ] + $skip_chars , mb_strlen ( $matches [ 0 ][ 0 ]));
$skip_chars += mb_strlen ( $matches [ 1 ][ 0 ] . $replacement . $matches [ 4 ][ 0 ]) - mb_strlen ( $matches [ 0 ][ 0 ]);
2010-11-02 06:57:33 -04:00
}
}
}
2013-08-28 23:31:02 -04:00
$tracked_cites = array_unique ( $tracked_cites , SORT_REGULAR );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body = preg_replace ( " /^ \ s*>.* $ /m " , '<span class="quote">$0</span>' , $body );
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'strip_superfluous_returns' ])
2012-04-11 12:49:22 -04:00
$body = preg_replace ( '/\s+$/' , '' , $body );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body = preg_replace ( " / \n / " , '<br/>' , $body );
2013-08-29 07:24:38 -04:00
2013-08-29 01:56:36 -04:00
if ( $config [ 'markup_repair_tidy' ]) {
$tidy = new tidy ();
2013-08-30 23:23:29 -04:00
$body = str_replace ( " \t " , '	' , $body );
2013-08-29 07:24:38 -04:00
$body = $tidy -> repairString ( $body , array (
2013-08-29 07:05:03 -04:00
'doctype' => 'omit' ,
'bare' => true ,
'literal-attributes' => true ,
'indent' => false ,
'show-body-only' => true ,
'wrap' => 0 ,
'output-bom' => false ,
2013-08-29 07:24:38 -04:00
'output-html' => true ,
'newline' => 'LF' ,
'quiet' => true ,
2013-08-29 07:05:03 -04:00
), 'utf8' );
2013-08-29 01:56:36 -04:00
$body = str_replace ( " \n " , '' , $body );
}
2013-08-30 23:23:29 -04:00
// replace tabs with 8 spaces
$body = str_replace ( " \t " , ' ' , $body );
2013-08-29 07:05:03 -04:00
2012-04-11 12:49:22 -04:00
return $tracked_cites ;
}
2010-11-04 10:39:02 -04:00
2013-07-31 18:59:54 -04:00
function escape_markup_modifiers ( $string ) {
2013-08-17 03:56:38 -04:00
return preg_replace ( '@<(tinyboard) ([\w\s]+)>@mi' , '<$1 escape $2>' , $string );
2013-07-31 18:59:54 -04:00
}
2012-04-11 12:49:22 -04:00
function utf8tohtml ( $utf8 ) {
2013-07-30 22:08:56 -04:00
return htmlspecialchars ( $utf8 , ENT_NOQUOTES , 'UTF-8' );
2012-04-11 12:49:22 -04:00
}
2010-11-04 10:39:02 -04:00
2013-07-28 20:33:26 -04:00
function ordutf8 ( $string , & $offset ) {
$code = ord ( substr ( $string , $offset , 1 ));
if ( $code >= 128 ) { // otherwise 0xxxxxxx
if ( $code < 224 )
$bytesnumber = 2 ; // 110xxxxx
else if ( $code < 240 )
$bytesnumber = 3 ; // 1110xxxx
else if ( $code < 248 )
$bytesnumber = 4 ; // 11110xxx
$codetemp = $code - 192 - ( $bytesnumber > 2 ? 32 : 0 ) - ( $bytesnumber > 3 ? 16 : 0 );
for ( $i = 2 ; $i <= $bytesnumber ; $i ++ ) {
$offset ++ ;
$code2 = ord ( substr ( $string , $offset , 1 )) - 128 ; //10xxxxxx
$codetemp = $codetemp * 64 + $code2 ;
}
$code = $codetemp ;
}
$offset += 1 ;
if ( $offset >= strlen ( $string ))
$offset = - 1 ;
return $code ;
}
function strip_combining_chars ( $str ) {
$chars = preg_split ( '//u' , $str , - 1 , PREG_SPLIT_NO_EMPTY );
$str = '' ;
2013-07-28 20:46:00 -04:00
foreach ( $chars as $char ) {
$o = 0 ;
$ord = ordutf8 ( $char , $o );
2013-08-03 07:50:25 -04:00
2013-07-28 20:33:26 -04:00
if ( $ord >= 768 && $ord <= 879 )
continue ;
2013-08-03 07:50:25 -04:00
2013-07-28 20:33:26 -04:00
if ( $ord >= 7616 && $ord <= 7679 )
continue ;
2013-08-03 07:50:25 -04:00
2013-07-28 20:33:26 -04:00
if ( $ord >= 8400 && $ord <= 8447 )
continue ;
2013-08-03 07:50:25 -04:00
2013-07-28 20:33:26 -04:00
if ( $ord >= 65056 && $ord <= 65071 )
continue ;
2013-08-03 07:50:25 -04:00
2013-07-28 20:33:26 -04:00
$str .= $char ;
}
return $str ;
}
function buildThread ( $id , $return = false , $mod = false ) {
2013-08-03 07:50:25 -04:00
global $board , $config , $build_pages ;
2012-04-11 12:49:22 -04:00
$id = round ( $id );
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( event ( 'build-thread' , $id ))
2012-04-11 12:49:22 -04:00
return ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ] && ! $mod ) {
2012-04-11 12:49:22 -04:00
// Clear cache
cache :: delete ( " thread_index_ { $board [ 'uri' ] } _ { $id } " );
cache :: delete ( " thread_ { $board [ 'uri' ] } _ { $id } " );
2011-04-13 06:02:58 -04:00
}
2013-08-03 07:50:25 -04:00
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT * FROM ``posts_%s`` WHERE (`thread` IS NULL AND `id` = :id) OR `thread` = :id ORDER BY `thread`,`id` " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':id' , $id , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
while ( $post = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-04-12 10:18:19 -04:00
if ( ! isset ( $thread )) {
2013-08-16 07:08:01 -04:00
$thread = new Thread ( $post , $mod ? '?/' : $config [ 'root' ], $mod );
2010-11-02 06:57:33 -04:00
} else {
2013-08-16 07:08:01 -04:00
$thread -> add ( new Post ( $post , $mod ? '?/' : $config [ 'root' ], $mod ));
2010-11-02 06:57:33 -04:00
}
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Check if any posts were found
2012-04-12 10:18:19 -04:00
if ( ! isset ( $thread ))
2012-04-11 12:49:22 -04:00
error ( $config [ 'error' ][ 'nonexistant' ]);
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$body = Element ( 'thread.html' , array (
2013-07-16 02:48:20 -04:00
'board' => $board ,
'thread' => $thread ,
'body' => $thread -> build (),
2012-04-11 12:49:22 -04:00
'config' => $config ,
'id' => $id ,
'mod' => $mod ,
2013-08-13 07:53:23 -04:00
'antibot' => $mod || $return ? false : create_antibot ( $board [ 'uri' ], $id ),
2012-04-11 12:49:22 -04:00
'boardlist' => createBoardlist ( $mod ),
2013-08-02 20:52:58 -04:00
'return' => ( $mod ? '?' . $board [ 'url' ] . $config [ 'file_index' ] : $config [ 'root' ] . $board [ 'dir' ] . $config [ 'file_index' ])
2012-04-11 12:49:22 -04:00
));
2012-08-30 11:35:27 -04:00
2013-08-03 07:50:25 -04:00
if ( $config [ 'try_smarter' ] && ! $mod )
$build_pages [] = thread_find_page ( $id );
2012-04-12 10:18:19 -04:00
if ( $return )
2012-04-11 12:49:22 -04:00
return $body ;
2012-08-30 11:35:27 -04:00
file_write ( $board [ 'dir' ] . $config [ 'dir' ][ 'res' ] . sprintf ( $config [ 'file_page' ], $id ), $body );
2013-07-02 13:52:29 -04:00
// json api
2013-08-20 12:53:05 -04:00
if ( $config [ 'api' ][ 'enabled' ]) {
2013-08-20 17:35:16 -04:00
$api = new Api ();
2013-08-20 12:53:05 -04:00
$json = json_encode ( $api -> translateThread ( $thread ));
2013-08-21 08:43:35 -04:00
$jsonFilename = $board [ 'dir' ] . $config [ 'dir' ][ 'res' ] . $id . '.json' ;
2013-08-20 12:53:05 -04:00
file_write ( $jsonFilename , $json );
}
}
2013-08-21 08:53:48 -04:00
function rrmdir ( $dir ) {
2012-04-11 12:49:22 -04:00
if ( is_dir ( $dir )) {
$objects = scandir ( $dir );
foreach ( $objects as $object ) {
if ( $object != " . " && $object != " .. " ) {
if ( filetype ( $dir . " / " . $object ) == " dir " )
rrmdir ( $dir . " / " . $object );
else
file_unlink ( $dir . " / " . $object );
2010-11-04 00:40:39 -04:00
}
}
2012-04-11 12:49:22 -04:00
reset ( $objects );
rmdir ( $dir );
2010-11-04 00:40:39 -04:00
}
2012-04-11 12:49:22 -04:00
}
2010-11-04 00:40:39 -04:00
2012-04-11 12:49:22 -04:00
function poster_id ( $ip , $thread ) {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $id = event ( 'poster-id' , $ip , $thread ))
2012-04-11 12:49:22 -04:00
return $id ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Confusing, hard to brute-force, but simple algorithm
return substr ( sha1 ( sha1 ( $ip . $config [ 'secure_trip_salt' ] . $thread ) . $config [ 'secure_trip_salt' ]), 0 , $config [ 'poster_id_length' ]);
}
2010-11-02 06:57:33 -04:00
2012-04-11 12:49:22 -04:00
function generate_tripcode ( $name ) {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $trip = event ( 'tripcode' , $name ))
2012-04-11 12:49:22 -04:00
return $trip ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! preg_match ( '/^([^#]+)?(##|#)(.+)$/' , $name , $match ))
2012-04-11 12:49:22 -04:00
return array ( $name );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
$name = $match [ 1 ];
$secure = $match [ 2 ] == '##' ;
$trip = $match [ 3 ];
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// convert to SHIT_JIS encoding
$trip = mb_convert_encoding ( $trip , 'Shift_JIS' , 'UTF-8' );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// generate salt
$salt = substr ( $trip . 'H..' , 1 , 2 );
2013-08-03 03:36:20 -04:00
$salt = preg_replace ( '/[^.-z]/' , '.' , $salt );
2012-04-11 12:49:22 -04:00
$salt = strtr ( $salt , ':;<=>?@[\]^_`' , 'ABCDEFGabcdef' );
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $secure ) {
if ( isset ( $config [ 'custom_tripcode' ][ " ## { $trip } " ]))
2012-04-11 12:49:22 -04:00
$trip = $config [ 'custom_tripcode' ][ " ## { $trip } " ];
else
$trip = '!!' . substr ( crypt ( $trip , $config [ 'secure_trip_salt' ]), - 10 );
} else {
2012-04-12 10:18:19 -04:00
if ( isset ( $config [ 'custom_tripcode' ][ " # { $trip } " ]))
2012-04-11 12:49:22 -04:00
$trip = $config [ 'custom_tripcode' ][ " # { $trip } " ];
else
$trip = '!' . substr ( crypt ( $trip , $salt ), - 10 );
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return array ( $name , $trip );
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
// Highest common factor
function hcf ( $a , $b ){
$gcd = 1 ;
if ( $a > $b ) {
$a = $a + $b ;
$b = $a - $b ;
$a = $a - $b ;
}
if ( $b == ( round ( $b / $a )) * $a )
$gcd = $a ;
else {
2012-04-12 10:18:19 -04:00
for ( $i = round ( $a / 2 ); $i ; $i -- ) {
2012-04-11 12:49:22 -04:00
if ( $a == round ( $a / $i ) * $i && $b == round ( $b / $i ) * $i ) {
$gcd = $i ;
$i = false ;
}
2011-02-19 03:45:54 -05:00
}
}
2012-04-11 12:49:22 -04:00
return $gcd ;
}
function fraction ( $numerator , $denominator , $sep ) {
$gcf = hcf ( $numerator , $denominator );
$numerator = $numerator / $gcf ;
$denominator = $denominator / $gcf ;
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return " { $numerator } { $sep } { $denominator } " ;
}
function getPostByHash ( $hash ) {
global $board ;
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT `id`,`thread` FROM ``posts_%s`` WHERE `filehash` = :hash " , $board [ 'uri' ]));
2012-04-11 12:49:22 -04:00
$query -> bindValue ( ':hash' , $hash , PDO :: PARAM_STR );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
if ( $post = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-04-11 12:49:22 -04:00
return $post ;
2011-02-19 03:28:07 -05:00
}
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return false ;
}
2012-11-14 15:33:27 -05:00
function getPostByHashInThread ( $hash , $thread ) {
global $board ;
2013-07-31 22:14:26 -04:00
$query = prepare ( sprintf ( " SELECT `id`,`thread` FROM ``posts_%s`` WHERE `filehash` = :hash AND ( `thread` = :thread OR `id` = :thread ) " , $board [ 'uri' ]));
2012-11-14 15:33:27 -05:00
$query -> bindValue ( ':hash' , $hash , PDO :: PARAM_STR );
$query -> bindValue ( ':thread' , $thread , PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2013-08-03 07:50:25 -04:00
2013-07-31 20:51:43 -04:00
if ( $post = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-11-14 15:33:27 -05:00
return $post ;
}
2013-08-03 07:50:25 -04:00
2012-11-14 15:33:27 -05:00
return false ;
}
2012-04-11 12:49:22 -04:00
function undoImage ( array $post ) {
2012-04-12 10:18:19 -04:00
if ( ! $post [ 'has_file' ])
2012-04-11 12:49:22 -04:00
return ;
2013-08-03 07:50:25 -04:00
2013-08-18 11:07:04 -04:00
if ( isset ( $post [ 'file_path' ]))
file_unlink ( $post [ 'file_path' ]);
if ( isset ( $post [ 'thumb_path' ]))
file_unlink ( $post [ 'thumb_path' ]);
2012-04-11 12:49:22 -04:00
}
function rDNS ( $ip_addr ) {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ] && ( $host = cache :: get ( 'rdns_' . $ip_addr ))) {
2011-12-02 19:52:31 -05:00
return $host ;
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! $config [ 'dns_system' ]) {
2012-04-11 12:49:22 -04:00
$host = gethostbyaddr ( $ip_addr );
} else {
2013-08-04 05:03:21 -04:00
$resp = shell_exec_error ( 'host -W 1 ' . $ip_addr );
2012-04-12 10:18:19 -04:00
if ( preg_match ( '/domain name pointer ([^\s]+)$/' , $resp , $m ))
2012-04-11 12:49:22 -04:00
$host = $m [ 1 ];
else
$host = $ip_addr ;
2012-03-14 23:00:25 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ])
2013-08-29 06:40:39 -04:00
cache :: set ( 'rdns_' . $ip_addr , $host );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return $host ;
}
2012-03-14 23:00:25 -04:00
2012-04-11 12:49:22 -04:00
function DNS ( $host ) {
global $config ;
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ] && ( $ip_addr = cache :: get ( 'dns_' . $host ))) {
2013-08-28 03:00:41 -04:00
return $ip_addr != '?' ? $ip_addr : false ;
2012-04-11 12:49:22 -04:00
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( ! $config [ 'dns_system' ]) {
2012-04-11 12:49:22 -04:00
$ip_addr = gethostbyname ( $host );
2012-04-12 10:18:19 -04:00
if ( $ip_addr == $host )
2012-04-11 12:49:22 -04:00
$ip_addr = false ;
} else {
2013-08-04 05:03:21 -04:00
$resp = shell_exec_error ( 'host -W 1 ' . $host );
2012-04-12 10:18:19 -04:00
if ( preg_match ( '/has address ([^\s]+)$/' , $resp , $m ))
2012-04-11 12:49:22 -04:00
$ip_addr = $m [ 1 ];
else
$ip_addr = false ;
}
2013-08-03 07:50:25 -04:00
2012-04-12 10:18:19 -04:00
if ( $config [ 'cache' ][ 'enabled' ])
2013-08-29 06:40:39 -04:00
cache :: set ( 'dns_' . $host , $ip_addr !== false ? $ip_addr : '?' );
2013-08-03 07:50:25 -04:00
2012-04-11 12:49:22 -04:00
return $ip_addr ;
}
2013-08-03 20:34:59 -04:00
2013-08-04 16:32:36 -04:00
function shell_exec_error ( $command , $suppress_stdout = false ) {
2013-08-03 20:34:59 -04:00
global $config , $debug ;
if ( $config [ 'debug' ])
$start = microtime ( true );
2013-08-04 16:32:36 -04:00
$return = trim ( shell_exec ( 'PATH="' . escapeshellcmd ( $config [ 'shell_path' ]) . ':$PATH";' .
$command . ' 2>&1 ' . ( $suppress_stdout ? '> /dev/null ' : '' ) . '&& echo "TB_SUCCESS"' ));
2013-08-03 20:34:59 -04:00
$return = preg_replace ( '/TB_SUCCESS$/' , '' , $return );
if ( $config [ 'debug' ]) {
2013-08-29 18:39:11 -04:00
$time = microtime ( true ) - $start ;
2013-08-03 20:34:59 -04:00
$debug [ 'exec' ][] = array (
'command' => $command ,
2013-08-29 18:39:11 -04:00
'time' => '~' . round ( $time * 1000 , 2 ) . 'ms' ,
2013-08-03 20:34:59 -04:00
'response' => $return ? $return : null
);
2013-08-29 18:39:11 -04:00
$debug [ 'time' ][ 'exec' ] += $time ;
2013-08-03 20:34:59 -04:00
}
2013-08-03 22:14:25 -04:00
return $return === 'TB_SUCCESS' ? false : $return ;
2013-08-03 20:34:59 -04:00
}