2012-04-12 12:11:41 -04:00
< ? php
/*
* Copyright ( c ) 2010 - 2012 Tinyboard Development Group
*/
if ( realpath ( $_SERVER [ 'SCRIPT_FILENAME' ]) == str_replace ( '\\' , '/' , __FILE__ )) {
// You cannot request this file directly.
exit ;
}
function mod_page ( $title , $template , $args ) {
global $config , $mod ;
echo Element ( 'page.html' , array (
'config' => $config ,
'mod' => $mod ,
'title' => $title ,
'body' => Element ( $template ,
array_merge (
array ( 'config' => $config , 'mod' => $mod ),
$args
)
)
)
);
}
function mod_login () {
$args = array ();
if ( isset ( $_POST [ 'login' ])) {
// Check if inputs are set and not empty
if ( ! isset ( $_POST [ 'username' ], $_POST [ 'password' ]) || $_POST [ 'username' ] == '' || $_POST [ 'password' ] == '' ) {
$args [ 'error' ] = $config [ 'error' ][ 'invalid' ];
} elseif ( ! login ( $_POST [ 'username' ], $_POST [ 'password' ])) {
if ( $config [ 'syslog' ])
_syslog ( LOG_WARNING , 'Unauthorized login attempt!' );
$args [ 'error' ] = $config [ 'error' ][ 'invalid' ];
} else {
2012-04-16 02:40:24 -04:00
modLog ( 'Logged in' );
2012-04-12 12:11:41 -04:00
// Login successful
// Set cookies
setCookies ();
header ( 'Location: ?/' , true , $config [ 'redirect_http' ]);
}
}
if ( isset ( $_POST [ 'username' ]))
$args [ 'username' ] = $_POST [ 'username' ];
2012-04-12 20:41:30 -04:00
mod_page ( 'Login' , 'mod/login.html' , $args );
}
function mod_confirm ( $request ) {
mod_page ( 'Confirm action' , 'mod/confirm.html' , array ( 'request' => $request ));
2012-04-12 12:11:41 -04:00
}
function mod_dashboard () {
$args = array ();
$args [ 'boards' ] = listBoards ();
mod_page ( 'Dashboard' , 'mod/dashboard.html' , $args );
}
2012-04-12 20:41:30 -04:00
function mod_log ( $page_no = 1 ) {
global $config ;
if ( ! hasPermission ( $config [ 'mod' ][ 'modlog' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
$query = prepare ( " SELECT `username`, `ip`, `board`, `time`, `text` FROM `modlogs` LEFT JOIN `mods` ON `mod` = `mods`.`id` ORDER BY `time` DESC LIMIT :offset, :limit " );
$query -> bindValue ( ':limit' , $config [ 'mod' ][ 'modlog_page' ], PDO :: PARAM_INT );
$query -> bindValue ( ':offset' , ( $page_no - 1 ) * $config [ 'mod' ][ 'modlog_page' ], PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
$logs = $query -> fetchAll ( PDO :: FETCH_ASSOC );
2012-04-13 06:57:59 -04:00
$query = prepare ( " SELECT COUNT(*) AS `count` FROM `modlogs` " );
$query -> execute () or error ( db_error ( $query ));
$count = $query -> fetchColumn ( 0 );
mod_page ( 'Moderation log' , 'mod/log.html' , array ( 'logs' => $logs , 'count' => $count ));
2012-04-12 20:41:30 -04:00
}
2012-04-12 12:11:41 -04:00
function mod_view_board ( $boardName , $page_no = 1 ) {
global $config , $mod ;
if ( ! openBoard ( $boardName ))
error ( $config [ 'error' ][ 'noboard' ]);
if ( ! $page = index ( $page_no , $mod )) {
error ( $config [ 'error' ][ '404' ]);
}
$page [ 'pages' ] = getPages ( true );
$page [ 'pages' ][ $page_no - 1 ][ 'selected' ] = true ;
$page [ 'btn' ] = getPageButtons ( $page [ 'pages' ], true );
$page [ 'mod' ] = true ;
$page [ 'config' ] = $config ;
2012-04-16 02:40:24 -04:00
2012-04-12 12:11:41 -04:00
echo Element ( 'index.html' , $page );
}
function mod_view_thread ( $boardName , $thread ) {
global $config , $mod ;
if ( ! openBoard ( $boardName ))
error ( $config [ 'error' ][ 'noboard' ]);
$page = buildThread ( $thread , true , $mod );
echo $page ;
}
2012-04-12 20:41:30 -04:00
function mod_ip_remove_note ( $ip , $id ) {
global $config , $mod ;
2012-04-14 08:58:36 -04:00
if ( ! hasPermission ( $config [ 'mod' ][ 'remove_notes' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
2012-04-12 20:41:30 -04:00
if ( filter_var ( $ip , FILTER_VALIDATE_IP ) === false )
error ( " Invalid IP address. " );
$query = prepare ( 'DELETE FROM `ip_notes` WHERE `ip` = :ip AND `id` = :id' );
$query -> bindValue ( ':ip' , $ip );
$query -> bindValue ( ':id' , $id );
$query -> execute () or error ( db_error ( $query ));
2012-04-16 02:40:24 -04:00
modLog ( " Removed a note for <a href= \" ?/IP/ { $ip } \" > { $ip } </a> " );
2012-04-12 20:41:30 -04:00
header ( 'Location: ?/IP/' . $ip , true , $config [ 'redirect_http' ]);
}
2012-04-12 12:11:41 -04:00
function mod_page_ip ( $ip ) {
global $config , $mod ;
2012-04-12 19:47:27 -04:00
if ( filter_var ( $ip , FILTER_VALIDATE_IP ) === false )
2012-04-12 19:29:08 -04:00
error ( " Invalid IP address. " );
2012-04-12 19:47:27 -04:00
if ( isset ( $_POST [ 'ban_id' ], $_POST [ 'unban' ])) {
2012-04-14 08:58:36 -04:00
if ( ! hasPermission ( $config [ 'mod' ][ 'unban' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
2012-04-12 19:47:27 -04:00
require_once 'inc/mod/ban.php' ;
unban ( $_POST [ 'ban_id' ]);
header ( 'Location: ?/IP/' . $ip , true , $config [ 'redirect_http' ]);
return ;
}
2012-04-12 20:41:30 -04:00
if ( isset ( $_POST [ 'note' ])) {
2012-04-14 08:58:36 -04:00
if ( ! hasPermission ( $config [ 'mod' ][ 'create_notes' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
2012-04-12 20:41:30 -04:00
markup ( $_POST [ 'note' ]);
$query = prepare ( 'INSERT INTO `ip_notes` VALUES (NULL, :ip, :mod, :time, :body)' );
$query -> bindValue ( ':ip' , $ip );
$query -> bindValue ( ':mod' , $mod [ 'id' ]);
$query -> bindValue ( ':time' , time ());
$query -> bindValue ( ':body' , $_POST [ 'note' ]);
$query -> execute () or error ( db_error ( $query ));
2012-04-16 02:40:24 -04:00
modLog ( " Added a note for <a href= \" ?/IP/ { $ip } \" > { $ip } </a> " );
2012-04-12 20:41:30 -04:00
header ( 'Location: ?/IP/' . $ip , true , $config [ 'redirect_http' ]);
return ;
}
2012-04-12 12:11:41 -04:00
$args = array ();
$args [ 'ip' ] = $ip ;
$args [ 'posts' ] = array ();
$boards = listBoards ();
foreach ( $boards as $board ) {
2012-04-12 19:29:08 -04:00
openBoard ( $board [ 'uri' ]);
2012-04-12 12:11:41 -04:00
$query = prepare ( sprintf ( 'SELECT * FROM `posts_%s` WHERE `ip` = :ip ORDER BY `sticky` DESC, `id` DESC LIMIT :limit' , $board [ 'uri' ]));
$query -> bindValue ( ':ip' , $ip );
$query -> bindValue ( ':limit' , $config [ 'mod' ][ 'ip_recentposts' ], PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
2012-04-16 02:40:24 -04:00
while ( $post = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-04-12 12:11:41 -04:00
if ( ! $post [ 'thread' ]) {
2012-04-16 02:40:24 -04:00
// TODO: There is no reason why this should be such a fucking mess.
2012-04-12 12:11:41 -04:00
$po = new Thread (
$post [ 'id' ], $post [ 'subject' ], $post [ 'email' ], $post [ 'name' ], $post [ 'trip' ], $post [ 'capcode' ], $post [ 'body' ],
$post [ 'time' ], $post [ 'thumb' ], $post [ 'thumbwidth' ], $post [ 'thumbheight' ], $post [ 'file' ], $post [ 'filewidth' ],
$post [ 'fileheight' ], $post [ 'filesize' ], $post [ 'filename' ], $post [ 'ip' ], $post [ 'sticky' ], $post [ 'locked' ],
$post [ 'sage' ], $post [ 'embed' ], '?/' , $mod , false
);
} else {
$po = new Post (
$post [ 'id' ], $post [ 'thread' ], $post [ 'subject' ], $post [ 'email' ], $post [ 'name' ], $post [ 'trip' ], $post [ 'capcode' ],
$post [ 'body' ], $post [ 'time' ], $post [ 'thumb' ], $post [ 'thumbwidth' ], $post [ 'thumbheight' ], $post [ 'file' ], $post [ 'filewidth' ],
$post [ 'fileheight' ], $post [ 'filesize' ], $post [ 'filename' ], $post [ 'ip' ], $post [ 'embed' ], '?/' , $mod
);
}
if ( ! isset ( $args [ 'posts' ][ $board [ 'uri' ]]))
2012-04-12 19:29:08 -04:00
$args [ 'posts' ][ $board [ 'uri' ]] = array ( 'board' => $board , 'posts' => array ());
$args [ 'posts' ][ $board [ 'uri' ]][ 'posts' ][] = $po -> build ( true );
2012-04-12 12:11:41 -04:00
}
}
2012-04-12 19:29:08 -04:00
$args [ 'boards' ] = $boards ;
2012-04-12 20:41:30 -04:00
2012-04-14 08:28:21 -04:00
if ( hasPermission ( $config [ 'mod' ][ 'view_ban' ])) {
$query = prepare ( " SELECT `bans`.*, `username` FROM `bans` LEFT JOIN `mods` ON `mod` = `mods`.`id` WHERE `ip` = :ip " );
$query -> bindValue ( ':ip' , $ip );
$query -> execute () or error ( db_error ( $query ));
$args [ 'bans' ] = $query -> fetchAll ( PDO :: FETCH_ASSOC );
}
if ( hasPermission ( $config [ 'mod' ][ 'view_notes' ])) {
$query = prepare ( " SELECT `ip_notes`.*, `username` FROM `ip_notes` LEFT JOIN `mods` ON `mod` = `mods`.`id` WHERE `ip` = :ip " );
$query -> bindValue ( ':ip' , $ip );
$query -> execute () or error ( db_error ( $query ));
$args [ 'notes' ] = $query -> fetchAll ( PDO :: FETCH_ASSOC );
}
2012-04-12 19:47:27 -04:00
2012-04-12 12:11:41 -04:00
mod_page ( " IP: $ip " , 'mod/view_ip.html' , $args );
}
2012-04-12 20:41:30 -04:00
function mod_ban () {
2012-04-14 08:28:21 -04:00
global $config ;
if ( ! hasPermission ( $config [ 'mod' ][ 'ban' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
2012-04-12 20:41:30 -04:00
if ( ! isset ( $_POST [ 'ip' ], $_POST [ 'reason' ], $_POST [ 'length' ], $_POST [ 'board' ])) {
mod_page ( " New ban " , 'mod/ban_form.html' , array ());
return ;
}
2012-04-12 19:29:08 -04:00
require_once 'inc/mod/ban.php' ;
ban ( $_POST [ 'ip' ], $_POST [ 'reason' ], parse_time ( $_POST [ 'length' ]), $_POST [ 'board' ] == '*' ? false : $_POST [ 'board' ]);
2012-04-12 19:47:27 -04:00
if ( isset ( $_POST [ 'redirect' ]))
2012-04-12 19:29:08 -04:00
header ( 'Location: ' . $_POST [ 'redirect' ], true , $config [ 'redirect_http' ]);
else
header ( 'Location: ?/' , true , $config [ 'redirect_http' ]);
}
2012-04-16 02:40:24 -04:00
function mod_bans () {
global $config ;
if ( ! hasPermission ( $config [ 'mod' ][ 'view_banlist' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
if ( isset ( $_POST [ 'unban' ])) {
if ( ! hasPermission ( $config [ 'mod' ][ 'unban' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
$unban = array ();
foreach ( $_POST as $name => $unused ) {
if ( preg_match ( '/^ban_(\d+)$/' , $name , $match ))
$unban [] = $match [ 1 ];
}
query ( 'DELETE FROM `bans` WHERE `id` = ' . implode ( ' OR `id` = ' , $unban )) or error ( db_error ());
foreach ( $unban as $id ) {
modLog ( " Removed ban # { $id } " );
}
header ( 'Location: ?/bans' , true , $config [ 'redirect_http' ]);
}
if ( $config [ 'mod' ][ 'view_banexpired' ]) {
$query = prepare ( " SELECT `bans`.*, `username` FROM `bans` LEFT JOIN `mods` ON `mod` = `mods`.`id` ORDER BY (`expires` IS NOT NULL AND `expires` < :time), `set` DESC " );
$query -> bindValue ( ':time' , time (), PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
} else {
// Filter out expired bans
$query = prepare ( " SELECT `bans`.*, `username` FROM `bans` INNER JOIN `mods` ON `mod` = `mods`.`id` WHERE `expires` = 0 OR `expires` > :time ORDER BY `set` DESC " );
$query -> bindValue ( ':time' , time (), PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
}
$bans = $query -> fetchAll ( PDO :: FETCH_ASSOC );
foreach ( $bans as & $ban ) {
if ( filter_var ( $ban [ 'ip' ], FILTER_VALIDATE_IP ) !== false )
$ban [ 'real_ip' ] = true ;
}
mod_page ( 'Ban list' , 'mod/ban_list.html' , array ( 'bans' => $bans ));
}
2012-04-12 20:41:30 -04:00
function mod_delete ( $board , $post ) {
global $config , $mod ;
if ( ! openBoard ( $board ))
error ( $config [ 'error' ][ 'noboard' ]);
if ( ! hasPermission ( $config [ 'mod' ][ 'delete' ], $board ))
error ( $config [ 'error' ][ 'noaccess' ]);
// Delete post
deletePost ( $post );
// Record the action
modLog ( " Deleted post # { $post } " );
// Rebuild board
buildIndex ();
// Redirect
header ( 'Location: ?/' . sprintf ( $config [ 'board_path' ], $board ) . $config [ 'file_index' ], true , $config [ 'redirect_http' ]);
}
2012-04-13 07:43:01 -04:00
function mod_users () {
global $config ;
2012-04-13 08:00:40 -04:00
if ( ! hasPermission ( $config [ 'mod' ][ 'manageusers' ]))
2012-04-13 07:43:01 -04:00
error ( $config [ 'error' ][ 'noaccess' ]);
$args = array ();
$query = query ( " SELECT *, (SELECT `time` FROM `modlogs` WHERE `mod` = `id` ORDER BY `time` DESC LIMIT 1) AS `last`, (SELECT `text` FROM `modlogs` WHERE `mod` = `id` ORDER BY `time` DESC LIMIT 1) AS `action` FROM `mods` ORDER BY `type` DESC,`id` " ) or error ( db_error ());
$args [ 'users' ] = $query -> fetchAll ( PDO :: FETCH_ASSOC );
2012-04-13 08:00:40 -04:00
mod_page ( 'Manage users' , 'mod/users.html' , $args );
}
2012-04-14 08:28:21 -04:00
function mod_user_promote ( $uid , $action ) {
global $config ;
if ( ! hasPermission ( $config [ 'mod' ][ 'promoteusers' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
$query = prepare ( " UPDATE `mods` SET `type` = `type` " . ( $action == 'promote' ? " +1 WHERE `type` < " . ( int ) ADMIN : " -1 WHERE `type` > " . ( int ) JANITOR ) . " AND `id` = :id " );
$query -> bindValue ( ':id' , $uid );
$query -> execute () or error ( db_error ( $query ));
2012-04-16 02:40:24 -04:00
modLog (( $action == 'promote' ? 'Promoted' : 'Demoted' ) . " user # { $uid } " );
2012-04-14 08:28:21 -04:00
header ( 'Location: ?/users' , true , $config [ 'redirect_http' ]);
}
2012-04-16 02:40:24 -04:00
function mod_pm ( $id , $reply = false ) {
global $mod , $config ;
$query = prepare ( " SELECT `mods`.`username`, `mods_to`.`username` AS `to_username`, `pms`.* FROM `pms` LEFT JOIN `mods` ON `mods`.`id` = `sender` LEFT JOIN `mods` AS `mods_to` ON `mods_to`.`id` = `to` WHERE `pms`.`id` = :id " );
$query -> bindValue ( ':id' , $id );
$query -> execute () or error ( db_error ( $query ));
if (( ! $pm = $query -> fetch ( PDO :: FETCH_ASSOC )) || ( $pm [ 'to' ] != $mod [ 'id' ] && ! hasPermission ( $config [ 'mod' ][ 'master_pm' ])))
error ( $config [ 'error' ][ '404' ]);
if ( isset ( $_POST [ 'delete' ])) {
$query = prepare ( " DELETE FROM `pms` WHERE `id` = :id " );
$query -> bindValue ( ':id' , $id );
$query -> execute () or error ( db_error ( $query ));
header ( 'Location: ?/' , true , $config [ 'redirect_http' ]);
return ;
}
if ( $pm [ 'unread' ] && $pm [ 'to' ] == $mod [ 'id' ]) {
$query = prepare ( " UPDATE `pms` SET `unread` = 0 WHERE `id` = :id " );
$query -> bindValue ( ':id' , $id );
$query -> execute () or error ( db_error ( $query ));
modLog ( 'Read a PM' );
}
if ( $reply ) {
if ( ! $pm [ 'to_username' ])
error ( $config [ 'error' ][ '404' ]); // deleted?
mod_page ( " New PM for { $pm [ 'to_username' ] } " , 'mod/new_pm.html' , array ( 'username' => $pm [ 'to_username' ], 'id' => $pm [ 'to' ], 'message' => quote ( $pm [ 'message' ])));
} else {
mod_page ( " Private message – # $id " , 'mod/pm.html' , $pm );
}
}
2012-04-13 08:00:40 -04:00
function mod_new_pm ( $username ) {
global $config , $mod ;
if ( ! hasPermission ( $config [ 'mod' ][ 'create_pm' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
$query = prepare ( " SELECT `id` FROM `mods` WHERE `username` = :username " );
$query -> bindValue ( ':username' , $username );
$query -> execute () or error ( db_error ( $query ));
2012-04-14 08:28:21 -04:00
if ( ! $id = $query -> fetchColumn ( 0 )) {
// Old style ?/PM: by user ID
$query = prepare ( " SELECT `username` FROM `mods` WHERE `id` = :username " );
$query -> bindValue ( ':username' , $username );
$query -> execute () or error ( db_error ( $query ));
if ( $username = $query -> fetchColumn ( 0 ))
header ( 'Location: ?/new_PM/' . $username , true , $config [ 'redirect_http' ]);
else
error ( $config [ 'error' ][ '404' ]);
}
2012-04-13 08:00:40 -04:00
if ( isset ( $_POST [ 'message' ])) {
markup ( $_POST [ 'message' ]);
$query = prepare ( " INSERT INTO `pms` VALUES (NULL, :me, :id, :message, :time, 1) " );
$query -> bindValue ( ':me' , $mod [ 'id' ]);
$query -> bindValue ( ':id' , $id );
$query -> bindValue ( ':message' , $_POST [ 'message' ]);
$query -> bindValue ( ':time' , time ());
$query -> execute () or error ( db_error ( $query ));
2012-04-16 02:40:24 -04:00
modLog ( 'Sent a PM to ' . utf8tohtml ( $username ));
2012-04-13 08:00:40 -04:00
header ( 'Location: ?/' , true , $config [ 'redirect_http' ]);
}
mod_page ( " New PM for { $username } " , 'mod/new_pm.html' , array ( 'username' => $username , 'id' => $id ));
2012-04-13 07:43:01 -04:00
}
2012-04-14 08:28:21 -04:00
function mod_rebuild () {
2012-04-14 08:58:36 -04:00
global $config , $twig ;
2012-04-14 08:28:21 -04:00
if ( ! hasPermission ( $config [ 'mod' ][ 'rebuild' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
2012-04-14 08:58:36 -04:00
if ( isset ( $_POST [ 'rebuild' ])) {
$log = array ();
$boards = listBoards ();
$rebuilt_scripts = array ();
if ( isset ( $_POST [ 'rebuild_cache' ])) {
$log [] = 'Clearing template cache' ;
load_twig ();
$twig -> clearCacheFiles ();
}
if ( isset ( $_POST [ 'rebuild_themes' ])) {
$log [] = 'Regenerating theme files' ;
rebuildThemes ( 'all' );
}
if ( isset ( $_POST [ 'rebuild_javascript' ])) {
$log [] = 'Rebuilding <strong>' . $config [ 'file_script' ] . '</strong>' ;
buildJavascript ();
$rebuilt_scripts [] = $config [ 'file_script' ];
}
foreach ( $boards as $board ) {
2012-04-15 06:04:26 -04:00
if ( ! ( isset ( $_POST [ 'boards_all' ]) || isset ( $_POST [ 'board_' . $board [ 'uri' ]])))
2012-04-14 08:58:36 -04:00
continue ;
openBoard ( $board [ 'uri' ]);
$log [] = '<strong>' . sprintf ( $config [ 'board_abbreviation' ], $board [ 'uri' ]) . '</strong>: Creating index pages' ;
if ( ! in_array ( $config [ 'file_script' ], $rebuilt_scripts )) {
$log [] = '<strong>' . sprintf ( $config [ 'board_abbreviation' ], $board [ 'uri' ]) . '</strong>: Rebuilding <strong>' . $config [ 'file_script' ] . '</strong>' ;
buildJavascript ();
$rebuilt_scripts [] = $config [ 'file_script' ];
}
$query = query ( sprintf ( " SELECT `id` FROM `posts_%s` WHERE `thread` IS NULL " , $board [ 'uri' ])) or error ( db_error ());
2012-04-16 02:40:24 -04:00
while ( $post = $query -> fetch ( PDO :: FETCH_ASSOC )) {
2012-04-14 08:58:36 -04:00
$log [] = '<strong>' . sprintf ( $config [ 'board_abbreviation' ], $board [ 'uri' ]) . '</strong>: Rebuilding thread #' . $post [ 'id' ];
buildThread ( $post [ 'id' ]);
}
}
mod_page ( " Rebuild " , 'mod/rebuilt.html' , array ( 'logs' => $log ));
return ;
}
2012-04-14 08:28:21 -04:00
mod_page ( " Rebuild " , 'mod/rebuild.html' , array ( 'boards' => listBoards ()));
}
2012-04-16 03:28:57 -04:00
function mod_reports () {
global $config , $mod ;
if ( ! hasPermission ( $config [ 'mod' ][ 'reports' ]))
error ( $config [ 'error' ][ 'noaccess' ]);
$query = prepare ( " SELECT * FROM `reports` ORDER BY `time` DESC LIMIT :limit " );
$query -> bindValue ( ':limit' , $config [ 'mod' ][ 'recent_reports' ], PDO :: PARAM_INT );
$query -> execute () or error ( db_error ( $query ));
$reports = $query -> fetchAll ( PDO :: FETCH_ASSOC );
$report_queries = array ();
foreach ( $reports as $report ) {
if ( ! isset ( $report_queries [ $report [ 'board' ]]))
$report_queries [ $report [ 'board' ]] = array ();
$report_queries [ $report [ 'board' ]][] = $report [ 'post' ];
}
$report_posts = array ();
foreach ( $report_queries as $board => $posts ) {
$report_posts [ $board ] = array ();
$query = query ( sprintf ( 'SELECT * FROM `posts_%s` WHERE `id` = ' . implode ( ' OR `id` = ' , $posts ), $board )) or error ( db_error ());
while ( $post = $query -> fetch ()) {
$report_posts [ $board ][ $post [ 'id' ]] = $post ;
}
}
$body = '' ;
foreach ( $reports as $report ) {
if ( ! isset ( $report_posts [ $report [ 'board' ]][ $report [ 'post' ]])) {
// // Invalid report (post has since been deleted)
$query = prepare ( " DELETE FROM `reports` WHERE `post` = :id AND `board` = :board " );
$query -> bindValue ( ':id' , $report [ 'post' ], PDO :: PARAM_INT );
$query -> bindValue ( ':board' , $report [ 'board' ]);
$query -> execute () or error ( db_error ( $query ));
continue ;
}
openBoard ( $report [ 'board' ]);
$post = & $report_posts [ $report [ 'board' ]][ $report [ 'post' ]];
if ( ! $post [ 'thread' ]) {
// Still need to fix this:
$po = new Thread (
$post [ 'id' ], $post [ 'subject' ], $post [ 'email' ], $post [ 'name' ], $post [ 'trip' ],
$post [ 'capcode' ], $post [ 'body' ], $post [ 'time' ], $post [ 'thumb' ],
$post [ 'thumbwidth' ], $post [ 'thumbheight' ], $post [ 'file' ], $post [ 'filewidth' ],
$post [ 'fileheight' ], $post [ 'filesize' ], $post [ 'filename' ], $post [ 'ip' ], $post [ 'sticky' ],
$post [ 'locked' ], $post [ 'sage' ], $post [ 'embed' ], '?/' , $mod , false
);
} else {
$po = new Post (
$post [ 'id' ], $post [ 'thread' ], $post [ 'subject' ], $post [ 'email' ], $post [ 'name' ], $post [ 'trip' ], $post [ 'capcode' ],
$post [ 'body' ], $post [ 'time' ], $post [ 'thumb' ], $post [ 'thumbwidth' ], $post [ 'thumbheight' ], $post [ 'file' ], $post [ 'filewidth' ],
$post [ 'fileheight' ], $post [ 'filesize' ], $post [ 'filename' ], $post [ 'ip' ], $post [ 'embed' ], '?/' , $mod
);
}
// a little messy and inefficient
$append_html = Element ( 'mod/report.html' , array ( 'report' => $report , 'config' => $config , 'mod' => $mod ));
// Bug fix for https://github.com/savetheinternet/Tinyboard/issues/21
$po -> body = truncate ( $po -> body , $po -> link (), $config [ 'body_truncate' ] - substr_count ( $append_html , '<br>' ));
if ( mb_strlen ( $po -> body ) + mb_strlen ( $append_html ) > $config [ 'body_truncate_char' ]) {
// still too long; temporarily increase limit in the config
$__old_body_truncate_char = $config [ 'body_truncate_char' ];
$config [ 'body_truncate_char' ] = mb_strlen ( $po -> body ) + mb_strlen ( $append_html );
}
$po -> body .= $append_html ;
$body .= $po -> build ( true ) . '<hr>' ;
if ( isset ( $__old_body_truncate_char ))
$config [ 'body_truncate_char' ] = $__old_body_truncate_char ;
}
mod_page ( " Report queue " , 'mod/reports.html' , array ( 'reports' => $body ));
}
function mod_report_dismiss ( $id , $all = false ) {
global $config ;
$query = prepare ( " SELECT `post`, `board`, `ip` FROM `reports` WHERE `id` = :id " );
$query -> bindValue ( ':id' , $id );
$query -> execute () or error ( db_error ( $query ));
if ( $report = $query -> fetch ( PDO :: FETCH_ASSOC )) {
$ip = $report [ 'ip' ];
$board = $report [ 'board' ];
$post = $report [ 'post' ];
} else
error ( $config [ 'error' ][ '404' ]);
if ( ! $all && ! hasPermission ( $config [ 'mod' ][ 'report_dismiss' ], $board ))
error ( $config [ 'error' ][ 'noaccess' ]);
if ( $all && ! hasPermission ( $config [ 'mod' ][ 'report_dismiss_ip' ], $board ))
error ( $config [ 'error' ][ 'noaccess' ]);
if ( $all ) {
$query = prepare ( " DELETE FROM `reports` WHERE `ip` = :ip " );
$query -> bindValue ( ':ip' , $ip );
} else {
$query = prepare ( " DELETE FROM `reports` WHERE `id` = :id " );
$query -> bindValue ( ':id' , $id );
}
$query -> execute () or error ( db_error ( $query ));
if ( $all )
modLog ( " Dismissed all reports by <a href= \" ?/IP/ $ip\ " > $ip </ a > " );
else
modLog ( " Dismissed a report for post # { $id } " , $board );
header ( 'Location: ?/reports' , true , $config [ 'redirect_http' ]);
}