2010-11-02 06:57:33 -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 ;
}
/*
joaoptm78 @ gmail . com
http :// www . php . net / manual / en / function . filesize . php #100097
*/
function format_bytes ( $size ) {
$units = array ( ' B' , ' KB' , ' MB' , ' GB' , ' TB' );
for ( $i = 0 ; $size >= 1024 && $i < 4 ; $i ++ ) $size /= 1024 ;
return round ( $size , 2 ) . $units [ $i ];
}
function doBoardListPart ( $list , $root ) {
global $config ;
$body = '' ;
2012-04-12 10:18:19 -04:00
foreach ( $list as $board ) {
if ( is_array ( $board ))
2013-07-31 05:03:50 -04:00
$body .= ' [' . doBoardListPart ( $board , $root ) . '] ' ;
// $body .= ' <span class="sub">[' . doBoardListPart($board, $root) . ']</span> ';
2012-04-11 12:49:22 -04:00
else {
2012-04-12 10:18:19 -04:00
if (( $key = array_search ( $board , $list )) && gettype ( $key ) == 'string' ) {
2012-04-11 12:49:22 -04:00
$body .= ' <a href="' . $board . '">' . $key . '</a> /' ;
} else {
$body .= ' <a href="' . $root . $board . '/' . $config [ 'file_index' ] . '">' . $board . '</a> /' ;
}
}
2011-04-13 08:21:07 -04:00
}
2012-04-11 12:49:22 -04:00
$body = preg_replace ( '/\/$/' , '' , $body );
2011-04-13 08:21:07 -04:00
2012-04-11 12:49:22 -04:00
return $body ;
}
function createBoardlist ( $mod = false ) {
global $config ;
2010-11-02 06:57:33 -04:00
2012-08-27 07:50:15 -04:00
if ( ! isset ( $config [ 'boards' ])) return array ( 'top' => '' , 'bottom' => '' );
2010-11-02 06:57:33 -04:00
2012-04-11 12:49:22 -04:00
$body = doBoardListPart ( $config [ 'boards' ], $mod ? '?/' : $config [ 'root' ]);
2013-08-11 07:06:13 -04:00
if ( $config [ 'boardlist_wrap_bracket' ] && ! preg_match ( '/\] $/' , $body ))
2012-04-11 12:49:22 -04:00
$body = '[' . $body . ']' ;
2010-11-02 06:57:33 -04:00
2012-04-11 12:49:22 -04:00
$body = trim ( $body );
2011-02-19 04:16:13 -05:00
2012-08-27 07:50:15 -04:00
return array (
2012-04-11 12:49:22 -04:00
'top' => '<div class="boardlist">' . $body . '</div>' ,
'bottom' => '<div class="boardlist bottom">' . $body . '</div>'
);
}
2013-08-03 00:22:28 -04:00
function error ( $message , $priority = true , $debug_stuff = false ) {
2013-08-03 02:01:52 -04:00
global $board , $mod , $config , $db_error ;
2011-02-19 04:16:13 -05: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 );
2011-02-19 04:16:13 -05:00
}
2011-11-18 07:39:13 -05:00
2012-04-12 10:18:19 -04:00
if ( defined ( 'STDIN' )) {
2012-04-11 12:49:22 -04:00
// Running from CLI
die ( 'Error: ' . $message . " \n " );
2010-11-02 06:57:33 -04:00
}
2013-08-03 22:14:25 -04:00
2013-08-03 02:01:52 -04:00
if ( $config [ 'debug' ] && isset ( $db_error )) {
$debug_stuff = array_combine ( array ( 'SQLSTATE' , 'Error code' , 'Error message' ), $db_error );
}
2013-09-15 00:03:27 -04:00
// Is there a reason to disable this?
if ( isset ( $_POST [ 'json_response' ])) {
header ( 'Content-Type: text/json; charset=utf-8' );
die ( json_encode ( array (
'error' => $message
)));
}
2012-08-27 07:50:15 -04:00
die ( Element ( 'page.html' , array (
2013-08-03 00:22:28 -04:00
'config' => $config ,
'title' => _ ( 'Error' ),
'subtitle' => _ ( 'An error has occured.' ),
'body' => Element ( 'error.html' , array (
'config' => $config ,
'message' => $message ,
'mod' => $mod ,
'board' => isset ( $board ) ? $board : false ,
'debug' => is_array ( $debug_stuff ) ? str_replace ( " \n " , ' ' , utf8tohtml ( print_r ( $debug_stuff , true ))) : utf8tohtml ( $debug_stuff )
))
2012-04-11 12:49:22 -04:00
)));
}
function loginForm ( $error = false , $username = false , $redirect = false ) {
global $config ;
2012-08-27 01:19:05 -04:00
die ( Element ( 'page.html' , array (
'index' => $config [ 'root' ],
'title' => _ ( 'Login' ),
'config' => $config ,
'body' => Element ( 'login.html' , array (
2011-03-26 04:11:48 -04:00
'config' => $config ,
2012-04-11 12:49:22 -04:00
'error' => $error ,
'username' => utf8tohtml ( $username ),
'redirect' => $redirect
2010-12-01 05:24:14 -05:00
)
2012-04-11 12:49:22 -04:00
)
)));
}
function pm_snippet ( $body , $len = null ) {
global $config ;
2012-04-12 10:18:19 -04:00
if ( ! isset ( $len ))
2012-04-11 12:49:22 -04:00
$len = & $config [ 'mod' ][ 'snippet_length' ];
// Replace line breaks with some whitespace
2013-08-30 23:26:53 -04:00
$body = preg_replace ( '@<br/?>@i' , ' ' , $body );
2012-04-11 12:49:22 -04:00
// Strip tags
$body = strip_tags ( $body );
// Unescape HTML characters, to avoid splitting them in half
$body = html_entity_decode ( $body , ENT_COMPAT , 'UTF-8' );
// calculate strlen() so we can add "..." after if needed
$strlen = mb_strlen ( $body );
2013-02-28 19:42:38 -05:00
$body = mb_substr ( $body , 0 , $len );
2012-04-11 12:49:22 -04:00
// Re-escape the characters.
return '<em>' . utf8tohtml ( $body ) . ( $strlen > $len ? '…' : '' ) . '</em>' ;
}
function capcode ( $cap ) {
global $config ;
2012-04-12 10:18:19 -04:00
if ( ! $cap )
2012-04-11 12:49:22 -04:00
return false ;
2012-08-27 07:50:15 -04:00
$capcode = array ();
2012-04-12 10:18:19 -04:00
if ( isset ( $config [ 'custom_capcode' ][ $cap ])) {
if ( is_array ( $config [ 'custom_capcode' ][ $cap ])) {
2012-04-11 12:49:22 -04:00
$capcode [ 'cap' ] = sprintf ( $config [ 'custom_capcode' ][ $cap ][ 0 ], $cap );
2012-04-12 10:18:19 -04:00
if ( isset ( $config [ 'custom_capcode' ][ $cap ][ 1 ]))
2012-04-11 12:49:22 -04:00
$capcode [ 'name' ] = $config [ 'custom_capcode' ][ $cap ][ 1 ];
2012-04-12 10:18:19 -04:00
if ( isset ( $config [ 'custom_capcode' ][ $cap ][ 2 ]))
2012-04-11 12:49:22 -04:00
$capcode [ 'trip' ] = $config [ 'custom_capcode' ][ $cap ][ 2 ];
} else {
$capcode [ 'cap' ] = sprintf ( $config [ 'custom_capcode' ][ $cap ], $cap );
}
} else {
$capcode [ 'cap' ] = sprintf ( $config [ 'capcode' ], $cap );
2010-12-01 05:24:14 -05:00
}
2012-04-11 12:49:22 -04:00
return $capcode ;
}
function truncate ( $body , $url , $max_lines = false , $max_chars = false ) {
global $config ;
2012-04-12 10:18:19 -04:00
if ( $max_lines === false )
2012-04-11 12:49:22 -04:00
$max_lines = $config [ 'body_truncate' ];
2012-04-12 10:18:19 -04:00
if ( $max_chars === false )
2012-04-11 12:49:22 -04:00
$max_chars = $config [ 'body_truncate_char' ];
2013-01-14 20:11:55 -05:00
// We don't want to risk truncating in the middle of an HTML comment.
// It's easiest just to remove them all first.
$body = preg_replace ( '/<!--.*?-->/s' , '' , $body );
2012-04-11 12:49:22 -04:00
$original_body = $body ;
$lines = substr_count ( $body , '<br/>' );
// Limit line count
2012-04-12 10:18:19 -04:00
if ( $lines > $max_lines ) {
if ( preg_match ( '/(((.*?)<br\/>){' . $max_lines . '})/' , $body , $m ))
2012-04-11 12:49:22 -04:00
$body = $m [ 0 ];
2011-04-12 04:02:20 -04:00
}
2013-01-18 19:10:14 -05:00
$body = mb_substr ( $body , 0 , $max_chars );
2012-04-11 12:49:22 -04:00
2012-04-12 10:18:19 -04:00
if ( $body != $original_body ) {
2012-04-11 12:49:22 -04:00
// Remove any corrupt tags at the end
$body = preg_replace ( '/<([\w]+)?([^>]*)?$/' , '' , $body );
2011-12-04 18:33:31 -05:00
2012-04-11 12:49:22 -04:00
// Open tags
2012-04-12 10:18:19 -04:00
if ( preg_match_all ( '/<([\w]+)[^>]*>/' , $body , $open_tags )) {
2012-04-11 12:49:22 -04:00
2012-08-27 07:50:15 -04:00
$tags = array ();
2012-04-12 10:18:19 -04:00
for ( $x = 0 ; $x < count ( $open_tags [ 0 ]); $x ++ ) {
if ( ! preg_match ( '/\/(\s+)?>$/' , $open_tags [ 0 ][ $x ]))
2012-04-11 12:49:22 -04:00
$tags [] = $open_tags [ 1 ][ $x ];
}
// List successfully closed tags
2012-04-12 10:18:19 -04:00
if ( preg_match_all ( '/(<\/([\w]+))>/' , $body , $closed_tags )) {
for ( $x = 0 ; $x < count ( $closed_tags [ 0 ]); $x ++ ) {
2012-04-11 12:49:22 -04:00
unset ( $tags [ array_search ( $closed_tags [ 2 ][ $x ], $tags )]);
}
}
// remove broken HTML entity at the end (if existent)
$body = preg_replace ( '/&[^;]+$/' , '' , $body );
2012-08-16 10:05:19 -04:00
$tags_no_close_needed = array ( " colgroup " , " dd " , " dt " , " li " , " optgroup " , " option " , " p " , " tbody " , " td " , " tfoot " , " th " , " thead " , " tr " , " br " , " img " );
2012-04-11 12:49:22 -04:00
// Close any open tags
2012-04-12 10:18:19 -04:00
foreach ( $tags as & $tag ) {
2012-08-16 10:05:19 -04:00
if ( ! in_array ( $tag , $tags_no_close_needed ))
$body .= " </ { $tag } > " ;
2011-12-04 18:33:31 -05:00
}
} else {
2012-04-11 12:49:22 -04:00
// remove broken HTML entity at the end (if existent)
2013-03-17 15:14:30 -04:00
$body = preg_replace ( '/&[^;]*$/' , '' , $body );
2011-04-12 07:08:54 -04:00
}
2013-08-01 01:56:04 -04:00
$body .= '<span class="toolong">' . sprintf ( _ ( 'Post too long. Click <a href="%s">here</a> to view the full text.' ), $url ) . '</span>' ;
2011-04-12 07:08:54 -04:00
}
2012-04-11 12:49:22 -04:00
return $body ;
}
2013-08-19 09:47:56 -04:00
function bidi_cleanup ( $data ) {
// Closes all embedded RTL and LTR unicode formatting blocks in a string so that
2013-08-18 15:19:54 -04:00
// it can be used inside another without controlling its direction.
2013-08-19 09:47:56 -04:00
$explicits = '\xE2\x80\xAA|\xE2\x80\xAB|\xE2\x80\xAD|\xE2\x80\xAE' ;
$pdf = '\xE2\x80\xAC' ;
preg_match_all ( " ! $explicits ! " , $data , $m1 , PREG_OFFSET_CAPTURE | PREG_SET_ORDER );
preg_match_all ( " ! $pdf ! " , $data , $m2 , PREG_OFFSET_CAPTURE | PREG_SET_ORDER );
if ( count ( $m1 ) || count ( $m2 )){
$p = array ();
foreach ( $m1 as $m ){ $p [ $m [ 0 ][ 1 ]] = 'push' ; }
foreach ( $m2 as $m ){ $p [ $m [ 0 ][ 1 ]] = 'pop' ; }
ksort ( $p );
$offset = 0 ;
$stack = 0 ;
foreach ( $p as $pos => $type ){
if ( $type == 'push' ){
$stack ++ ;
} else {
if ( $stack ){
$stack -- ;
} else {
# we have a pop without a push - remove it
$data = substr ( $data , 0 , $pos - $offset )
. substr ( $data , $pos + 3 - $offset );
$offset += 3 ;
}
}
}
# now add some pops if your stack is bigger than 0
for ( $i = 0 ; $i < $stack ; $i ++ ){
$data .= " \xE2 \x80 \xAC " ;
}
return $data ;
}
return $data ;
2013-04-02 05:28:04 -04:00
}
2012-08-27 01:19:05 -04:00
function secure_link_confirm ( $text , $title , $confirm_message , $href ) {
global $config ;
2013-07-31 02:08:55 -04:00
return '<a onclick="if (event.which==2) return true;if (confirm(\'' . htmlentities ( addslashes ( $confirm_message )) . '\')) document.location=\'?/' . htmlspecialchars ( addslashes ( $href . '/' . make_secure_link_token ( $href ))) . '\';return false;" title="' . htmlentities ( $title ) . '" href="?/' . $href . '">' . $text . '</a>' ;
2012-08-27 01:19:05 -04:00
}
function secure_link ( $href ) {
return $href . '/' . make_secure_link_token ( $href );
2012-04-11 12:49:22 -04:00
}
2013-07-19 18:36:12 -04:00
function embed_html ( $link ) {
global $config ;
foreach ( $config [ 'embedding' ] as $embed ) {
if ( $html = preg_replace ( $embed [ 0 ], $embed [ 1 ], $link )) {
if ( $html == $link )
continue ; // Nope
$html = str_replace ( '%%tb_width%%' , $config [ 'embed_width' ], $html );
$html = str_replace ( '%%tb_height%%' , $config [ 'embed_height' ], $html );
return $html ;
}
}
if ( $link [ 0 ] == '<' ) {
// Prior to v0.9.6-dev-8, HTML code for embedding was stored in the database instead of the link.
return $link ;
}
return 'Embedding error.' ;
}
2012-04-11 12:49:22 -04:00
class Post {
2013-08-16 07:08:01 -04:00
public function __construct ( $post , $root = null , $mod = false ) {
2011-04-17 01:28:15 -04:00
global $config ;
2012-04-12 10:18:19 -04:00
if ( ! isset ( $root ))
2012-04-11 12:49:22 -04:00
$root = & $config [ 'root' ];
2012-02-11 02:53:27 -05:00
2013-08-16 07:08:01 -04:00
foreach ( $post as $key => $value ) {
$this -> { $key } = $value ;
}
$this -> subject = utf8tohtml ( $this -> subject );
$this -> name = utf8tohtml ( $this -> name );
2012-04-11 12:49:22 -04:00
$this -> mod = $mod ;
2013-08-16 07:08:01 -04:00
$this -> root = $root ;
2011-04-17 01:28:15 -04:00
2013-07-19 18:36:12 -04:00
if ( $this -> embed )
$this -> embed = embed_html ( $this -> embed );
2013-08-16 07:08:01 -04:00
$this -> modifiers = extract_modifiers ( $this -> body_nomarkup );
2013-08-29 01:29:04 -04:00
if ( $config [ 'always_regenerate_markup' ]) {
$this -> body = $this -> body_nomarkup ;
markup ( $this -> body );
}
2012-04-12 10:18:19 -04:00
if ( $this -> mod )
2012-04-11 12:49:22 -04:00
// Fix internal links
// Very complicated regex
$this -> body = preg_replace (
2013-07-31 02:08:55 -04:00
'/<a((([a-zA-Z]+="[^"]+")|[a-zA-Z]+=[a-zA-Z]+|\s)*)href="' . preg_quote ( $config [ 'root' ], '/' ) . '(' . sprintf ( preg_quote ( $config [ 'board_path' ], '/' ), $config [ 'board_regex' ]) . ')/u' ,
2012-04-11 12:49:22 -04:00
'<a $1href="?/$4' ,
$this -> body
);
}
public function link ( $pre = '' ) {
global $config , $board ;
2011-04-17 01:28:15 -04:00
2012-04-11 12:49:22 -04:00
return $this -> root . $board [ 'dir' ] . $config [ 'dir' ][ 'res' ] . sprintf ( $config [ 'file_page' ], $this -> thread ) . '#' . $pre . $this -> id ;
}
public function postControls () {
global $board , $config ;
2011-04-17 01:28:15 -04:00
2012-04-11 12:49:22 -04:00
$built = '' ;
2012-04-12 10:18:19 -04:00
if ( $this -> mod ) {
2012-04-11 12:49:22 -04:00
// Mod controls (on posts)
2011-04-17 01:28:15 -04:00
2012-04-11 12:49:22 -04:00
// Delete
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'delete' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_delete' ], 'Delete' , 'Are you sure you want to delete this?' , $board [ 'dir' ] . 'delete/' . $this -> id );
2012-04-11 12:49:22 -04:00
// Delete all posts by IP
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'deletebyip' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_deletebyip' ], 'Delete all posts by IP' , 'Are you sure you want to delete all posts by this IP address?' , $board [ 'dir' ] . 'deletebyip/' . $this -> id );
2012-04-11 12:49:22 -04:00
// Delete all posts by IP (global)
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'deletebyip_global' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_deletebyip_global' ], 'Delete all posts by IP across all boards' , 'Are you sure you want to delete all posts by this IP address, across all boards?' , $board [ 'dir' ] . 'deletebyip/' . $this -> id . '/global' );
2012-04-11 12:49:22 -04:00
// Ban
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'ban' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Ban' ) . '" href="?/' . $board [ 'dir' ] . 'ban/' . $this -> id . '">' . $config [ 'mod' ][ 'link_ban' ] . '</a>' ;
2012-04-11 12:49:22 -04:00
// Ban & Delete
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'bandelete' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Ban & Delete' ) . '" href="?/' . $board [ 'dir' ] . 'ban&delete/' . $this -> id . '">' . $config [ 'mod' ][ 'link_bandelete' ] . '</a>' ;
2012-02-11 02:53:27 -05:00
2012-04-11 12:49:22 -04:00
// Delete file (keep post)
2012-04-12 10:18:19 -04:00
if ( ! empty ( $this -> file ) && hasPermission ( $config [ 'mod' ][ 'deletefile' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_deletefile' ], _ ( 'Delete file' ), _ ( 'Are you sure you want to delete this file?' ), $board [ 'dir' ] . 'deletefile/' . $this -> id );
2012-04-11 12:49:22 -04:00
2013-08-08 15:41:21 -04:00
// Spoiler file (keep post)
2013-08-12 07:08:40 -04:00
if ( ! empty ( $this -> file ) && $this -> file != 'deleted' && $this -> thumb != 'spoiler' && hasPermission ( $config [ 'mod' ][ 'spoilerimage' ], $board [ 'uri' ], $this -> mod ) && $config [ 'spoiler_images' ])
2013-08-08 15:43:40 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_spoilerimage' ], 'Spoiler File' , 'Are you sure you want to spoiler this file?' , $board [ 'uri' ] . '/spoiler/' . $this -> id );
2013-08-08 15:41:21 -04:00
2012-04-11 12:49:22 -04:00
// Edit post
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'editpost' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Edit post' ) . '" href="?/' . $board [ 'dir' ] . 'edit' . ( $config [ 'mod' ][ 'raw_html_default' ] ? '_raw' : '' ) . '/' . $this -> id . '">' . $config [ 'mod' ][ 'link_editpost' ] . '</a>' ;
2012-04-11 12:49:22 -04:00
2012-04-12 10:18:19 -04:00
if ( ! empty ( $built ))
2012-04-11 12:49:22 -04:00
$built = '<span class="controls">' . $built . '</span>' ;
2011-04-17 01:28:15 -04:00
}
2012-04-11 12:49:22 -04:00
return $built ;
2011-04-17 01:28:15 -04:00
}
2013-08-16 14:11:24 -04:00
public function ratio () {
return fraction ( $this -> filewidth , $this -> fileheight , ':' );
}
2012-04-11 12:49:22 -04:00
public function build ( $index = false ) {
global $board , $config ;
2012-08-27 07:50:15 -04:00
return Element ( 'post_reply.html' , array ( 'config' => $config , 'board' => $board , 'post' => & $this , 'index' => $index ));
2011-04-06 04:31:26 -04:00
}
2012-04-11 12:49:22 -04:00
};
class Thread {
2013-08-16 07:08:01 -04:00
public function __construct ( $post , $root = null , $mod = false , $hr = true ) {
2012-04-11 12:49:22 -04:00
global $config ;
2012-04-12 10:18:19 -04:00
if ( ! isset ( $root ))
2012-04-11 12:49:22 -04:00
$root = & $config [ 'root' ];
2013-08-16 07:08:01 -04:00
foreach ( $post as $key => $value ) {
$this -> { $key } = $value ;
}
$this -> subject = utf8tohtml ( $this -> subject );
$this -> name = utf8tohtml ( $this -> name );
$this -> mod = $mod ;
$this -> root = $root ;
2013-08-16 07:51:10 -04:00
$this -> hr = $hr ;
2013-08-16 07:08:01 -04:00
$this -> posts = array ();
2012-04-11 12:49:22 -04:00
$this -> omitted = 0 ;
$this -> omitted_images = 0 ;
2013-07-19 18:36:12 -04:00
if ( $this -> embed )
$this -> embed = embed_html ( $this -> embed );
2013-08-16 07:08:01 -04:00
$this -> modifiers = extract_modifiers ( $this -> body_nomarkup );
2013-08-29 01:29:04 -04:00
if ( $config [ 'always_regenerate_markup' ]) {
$this -> body = $this -> body_nomarkup ;
markup ( $this -> body );
}
2012-04-12 10:18:19 -04:00
if ( $this -> mod )
2012-04-11 12:49:22 -04:00
// Fix internal links
// Very complicated regex
$this -> body = preg_replace (
2013-07-31 02:08:55 -04:00
'/<a((([a-zA-Z]+="[^"]+")|[a-zA-Z]+=[a-zA-Z]+|\s)*)href="' . preg_quote ( $config [ 'root' ], '/' ) . '(' . sprintf ( preg_quote ( $config [ 'board_path' ], '/' ), $config [ 'board_regex' ]) . ')/u' ,
2012-11-03 00:29:11 -04:00
'<a $1href="?/$4' ,
2012-04-11 12:49:22 -04:00
$this -> body
);
}
public function link ( $pre = '' ) {
global $config , $board ;
return $this -> root . $board [ 'dir' ] . $config [ 'dir' ][ 'res' ] . sprintf ( $config [ 'file_page' ], $this -> id ) . '#' . $pre . $this -> id ;
}
public function add ( Post $post ) {
$this -> posts [] = $post ;
}
public function postControls () {
global $board , $config ;
$built = '' ;
2012-04-12 10:18:19 -04:00
if ( $this -> mod ) {
2012-04-11 12:49:22 -04:00
// Mod controls (on posts)
// Delete
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'delete' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_delete' ], _ ( 'Delete' ), _ ( 'Are you sure you want to delete this?' ), $board [ 'dir' ] . 'delete/' . $this -> id );
2011-02-12 01:25:15 -05:00
2012-04-11 12:49:22 -04:00
// Delete all posts by IP
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'deletebyip' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_deletebyip' ], _ ( 'Delete all posts by IP' ), _ ( 'Are you sure you want to delete all posts by this IP address?' ), $board [ 'dir' ] . 'deletebyip/' . $this -> id );
2011-02-06 08:37:26 -05:00
2012-04-11 12:49:22 -04:00
// Delete all posts by IP (global)
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'deletebyip_global' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_deletebyip_global' ], _ ( 'Delete all posts by IP across all boards' ), _ ( 'Are you sure you want to delete all posts by this IP address, across all boards?' ), $board [ 'dir' ] . 'deletebyip/' . $this -> id . '/global' );
2011-04-17 01:28:15 -04:00
2012-04-11 12:49:22 -04:00
// Ban
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'ban' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Ban' ) . '" href="?/' . $board [ 'dir' ] . 'ban/' . $this -> id . '">' . $config [ 'mod' ][ 'link_ban' ] . '</a>' ;
2011-01-18 00:48:39 -05:00
2012-04-11 12:49:22 -04:00
// Ban & Delete
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'bandelete' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Ban & Delete' ) . '" href="?/' . $board [ 'dir' ] . 'ban&delete/' . $this -> id . '">' . $config [ 'mod' ][ 'link_bandelete' ] . '</a>' ;
2011-05-19 07:50:19 -04:00
2012-04-11 12:49:22 -04:00
// Delete file (keep post)
2012-04-12 10:18:19 -04:00
if ( ! empty ( $this -> file ) && $this -> file != 'deleted' && hasPermission ( $config [ 'mod' ][ 'deletefile' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_deletefile' ], _ ( 'Delete file' ), _ ( 'Are you sure you want to delete this file?' ), $board [ 'dir' ] . 'deletefile/' . $this -> id );
2013-08-08 15:41:21 -04:00
// Spoiler file (keep post)
2013-08-12 07:08:40 -04:00
if ( ! empty ( $this -> file ) && $this -> file != 'deleted' && $this -> thumb != 'spoiler' && hasPermission ( $config [ 'mod' ][ 'spoilerimage' ], $board [ 'uri' ], $this -> mod ) && $config [ 'spoiler_images' ])
2013-08-08 15:43:40 -04:00
$built .= ' ' . secure_link_confirm ( $config [ 'mod' ][ 'link_spoilerimage' ], 'Spoiler File' , 'Are you sure you want to spoiler this file?' , $board [ 'uri' ] . '/spoiler/' . $this -> id );
2011-02-12 01:25:15 -05:00
2012-04-11 12:49:22 -04:00
// Sticky
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'sticky' ], $board [ 'uri' ], $this -> mod ))
if ( $this -> sticky )
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Make thread not sticky' ) . '" href="?/' . secure_link ( $board [ 'dir' ] . 'unsticky/' . $this -> id ) . '">' . $config [ 'mod' ][ 'link_desticky' ] . '</a>' ;
2012-04-11 12:49:22 -04:00
else
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Make thread sticky' ) . '" href="?/' . secure_link ( $board [ 'dir' ] . 'sticky/' . $this -> id ) . '">' . $config [ 'mod' ][ 'link_sticky' ] . '</a>' ;
2011-02-06 08:37:26 -05:00
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'bumplock' ], $board [ 'uri' ], $this -> mod ))
2013-08-16 07:08:01 -04:00
if ( $this -> sage )
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Allow thread to be bumped' ) . '" href="?/' . secure_link ( $board [ 'dir' ] . 'bumpunlock/' . $this -> id ) . '">' . $config [ 'mod' ][ 'link_bumpunlock' ] . '</a>' ;
2012-04-11 12:49:22 -04:00
else
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Prevent thread from being bumped' ) . '" href="?/' . secure_link ( $board [ 'dir' ] . 'bumplock/' . $this -> id ) . '">' . $config [ 'mod' ][ 'link_bumplock' ] . '</a>' ;
2011-04-17 01:28:15 -04:00
2012-04-11 12:49:22 -04:00
// Lock
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'lock' ], $board [ 'uri' ], $this -> mod ))
if ( $this -> locked )
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Unlock thread' ) . '" href="?/' . secure_link ( $board [ 'dir' ] . 'unlock/' . $this -> id ) . '">' . $config [ 'mod' ][ 'link_unlock' ] . '</a>' ;
2012-04-11 12:49:22 -04:00
else
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Lock thread' ) . '" href="?/' . secure_link ( $board [ 'dir' ] . 'lock/' . $this -> id ) . '">' . $config [ 'mod' ][ 'link_lock' ] . '</a>' ;
2011-01-18 00:48:39 -05:00
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'move' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Move thread to another board' ) . '" href="?/' . $board [ 'dir' ] . 'move/' . $this -> id . '">' . $config [ 'mod' ][ 'link_move' ] . '</a>' ;
2010-12-10 05:14:45 -05:00
2012-04-11 12:49:22 -04:00
// Edit post
2012-04-12 10:18:19 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'editpost' ], $board [ 'uri' ], $this -> mod ))
2013-08-02 20:52:58 -04:00
$built .= ' <a title="' . _ ( 'Edit post' ) . '" href="?/' . $board [ 'dir' ] . 'edit' . ( $config [ 'mod' ][ 'raw_html_default' ] ? '_raw' : '' ) . '/' . $this -> id . '">' . $config [ 'mod' ][ 'link_editpost' ] . '</a>' ;
2010-11-04 02:16:47 -04:00
2012-04-12 10:18:19 -04:00
if ( ! empty ( $built ))
2012-04-11 12:49:22 -04:00
$built = '<span class="controls op">' . $built . '</span>' ;
2010-11-02 06:57:33 -04:00
}
2012-04-11 12:49:22 -04:00
return $built ;
}
2013-08-16 14:11:24 -04:00
public function ratio () {
return fraction ( $this -> filewidth , $this -> fileheight , ':' );
}
2012-04-11 12:49:22 -04:00
public function build ( $index = false ) {
global $board , $config , $debug ;
2013-09-14 13:54:09 -04:00
event ( 'show-thread' , $this );
2012-08-27 07:50:15 -04:00
$built = Element ( 'post_thread.html' , array ( 'config' => $config , 'board' => $board , 'post' => & $this , 'index' => $index ));
2012-04-11 12:49:22 -04:00
return $built ;
}
};