Blame Extras/phpBB/3.0.4/includes/mcp/mcp_reports.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* @package mcp
4c79b5
* @version $Id: mcp_reports.php 9015 2008-10-14 18:29:50Z toonarmy $
4c79b5
* @copyright (c) 2005 phpBB Group
4c79b5
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
4c79b5
*
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* @ignore
4c79b5
*/
4c79b5
if (!defined('IN_PHPBB'))
4c79b5
{
4c79b5
	exit;
4c79b5
}
4c79b5
4c79b5
/**
4c79b5
* mcp_reports
4c79b5
* Handling the reports queue
4c79b5
* @package mcp
4c79b5
*/
4c79b5
class mcp_reports
4c79b5
{
4c79b5
	var $p_master;
4c79b5
	var $u_action;
4c79b5
4c79b5
	function mcp_reports(&$p_master)
4c79b5
	{
4c79b5
		$this->p_master = &$p_master;
4c79b5
	}
4c79b5
4c79b5
	function main($id, $mode)
4c79b5
	{
4c79b5
		global $auth, $db, $user, $template, $cache;
4c79b5
		global $config, $phpbb_root_path, $phpEx, $action;
4c79b5
4c79b5
		include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
4c79b5
4c79b5
		$forum_id = request_var('f', 0);
4c79b5
		$start = request_var('start', 0);
4c79b5
4c79b5
		$this->page_title = 'MCP_REPORTS';
4c79b5
4c79b5
		switch ($action)
4c79b5
		{
4c79b5
			case 'close':
4c79b5
			case 'delete':
4c79b5
				include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx);
4c79b5
4c79b5
				$report_id_list = request_var('report_id_list', array(0));
4c79b5
4c79b5
				if (!sizeof($report_id_list))
4c79b5
				{
4c79b5
					trigger_error('NO_REPORT_SELECTED');
4c79b5
				}
4c79b5
4c79b5
				close_report($report_id_list, $mode, $action);
4c79b5
4c79b5
			break;
4c79b5
		}
4c79b5
4c79b5
		switch ($mode)
4c79b5
		{
4c79b5
			case 'report_details':
4c79b5
4c79b5
				$user->add_lang(array('posting', 'viewforum', 'viewtopic'));
4c79b5
4c79b5
				$post_id = request_var('p', 0);
4c79b5
4c79b5
				// closed reports are accessed by report id
4c79b5
				$report_id = request_var('r', 0);
4c79b5
4c79b5
				$sql = 'SELECT r.post_id, r.user_id, r.report_id, r.report_closed, report_time, r.report_text, rr.reason_title, rr.reason_description, u.username, u.username_clean, u.user_colour
4c79b5
					FROM ' . REPORTS_TABLE . ' r, ' . REPORTS_REASONS_TABLE . ' rr, ' . USERS_TABLE . ' u
4c79b5
					WHERE ' . (($report_id) ? 'r.report_id = ' . $report_id : "r.post_id = $post_id") . '
4c79b5
						AND rr.reason_id = r.reason_id
4c79b5
						AND r.user_id = u.user_id
4c79b5
					ORDER BY report_closed ASC';
4c79b5
				$result = $db->sql_query_limit($sql, 1);
4c79b5
				$report = $db->sql_fetchrow($result);
4c79b5
				$db->sql_freeresult($result);
4c79b5
4c79b5
				if (!$report)
4c79b5
				{
4c79b5
					trigger_error('NO_REPORT');
4c79b5
				}
4c79b5
4c79b5
				if (!$report_id && $report['report_closed'])
4c79b5
				{
4c79b5
					trigger_error('REPORT_CLOSED');
4c79b5
				}
4c79b5
4c79b5
				$post_id = $report['post_id'];
4c79b5
				$report_id = $report['report_id'];
4c79b5
4c79b5
				$post_info = get_post_data(array($post_id), 'm_report', true);
4c79b5
4c79b5
				if (!sizeof($post_info))
4c79b5
				{
4c79b5
					trigger_error('NO_REPORT_SELECTED');
4c79b5
				}
4c79b5
4c79b5
				$post_info = $post_info[$post_id];
4c79b5
4c79b5
				$reason = array('title' => $report['reason_title'], 'description' => $report['reason_description']);
4c79b5
				if (isset($user->lang['report_reasons']['TITLE'][strtoupper($reason['title'])]) && isset($user->lang['report_reasons']['DESCRIPTION'][strtoupper($reason['title'])]))
4c79b5
				{
4c79b5
					$reason['description'] = $user->lang['report_reasons']['DESCRIPTION'][strtoupper($reason['title'])];
4c79b5
					$reason['title'] = $user->lang['report_reasons']['TITLE'][strtoupper($reason['title'])];
4c79b5
				}
4c79b5
4c79b5
				if (topic_review($post_info['topic_id'], $post_info['forum_id'], 'topic_review', 0, false))
4c79b5
				{
4c79b5
					$template->assign_vars(array(
4c79b5
						'S_TOPIC_REVIEW'	=> true,
4c79b5
						'TOPIC_TITLE'		=> $post_info['topic_title'])
4c79b5
					);
4c79b5
				}
4c79b5
4c79b5
				$topic_tracking_info = $extensions = $attachments = array();
4c79b5
				// Get topic tracking info
4c79b5
				if ($config['load_db_lastread'])
4c79b5
				{
4c79b5
					$tmp_topic_data = array($post_info['topic_id'] => $post_info);
4c79b5
					$topic_tracking_info = get_topic_tracking($post_info['forum_id'], $post_info['topic_id'], $tmp_topic_data, array($post_info['forum_id'] => $post_info['forum_mark_time']));
4c79b5
					unset($tmp_topic_data);
4c79b5
				}
4c79b5
				else
4c79b5
				{
4c79b5
					$topic_tracking_info = get_complete_topic_tracking($post_info['forum_id'], $post_info['topic_id']);
4c79b5
				}
4c79b5
4c79b5
				$post_unread = (isset($topic_tracking_info[$post_info['topic_id']]) && $post_info['post_time'] > $topic_tracking_info[$post_info['topic_id']]) ? true : false;
4c79b5
4c79b5
				// Process message, leave it uncensored
4c79b5
				$message = $post_info['post_text'];
4c79b5
4c79b5
				if ($post_info['bbcode_bitfield'])
4c79b5
				{
4c79b5
					include_once($phpbb_root_path . 'includes/bbcode.' . $phpEx);
4c79b5
					$bbcode = new bbcode($post_info['bbcode_bitfield']);
4c79b5
					$bbcode->bbcode_second_pass($message, $post_info['bbcode_uid'], $post_info['bbcode_bitfield']);
4c79b5
				}
4c79b5
4c79b5
				$message = bbcode_nl2br($message);
4c79b5
				$message = smiley_text($message);
4c79b5
4c79b5
				if ($post_info['post_attachment'] && $auth->acl_get('u_download') && $auth->acl_get('f_download', $post_info['forum_id']))
4c79b5
				{
4c79b5
					$extensions = $cache->obtain_attach_extensions($post_info['forum_id']);
4c79b5
4c79b5
					$sql = 'SELECT *
4c79b5
						FROM ' . ATTACHMENTS_TABLE . '
4c79b5
						WHERE post_msg_id = ' . $post_id . '
4c79b5
							AND in_message = 0
4c79b5
						ORDER BY filetime DESC, post_msg_id ASC';
4c79b5
					$result = $db->sql_query($sql);
4c79b5
4c79b5
					while ($row = $db->sql_fetchrow($result))
4c79b5
					{
4c79b5
						$attachments[] = $row;
4c79b5
					}
4c79b5
					$db->sql_freeresult($result);
4c79b5
4c79b5
					if (sizeof($attachments))
4c79b5
					{
4c79b5
						$update_count = array();
4c79b5
						parse_attachments($post_info['forum_id'], $message, $attachments, $update_count);
4c79b5
					}
4c79b5
4c79b5
					// Display not already displayed Attachments for this post, we already parsed them. ;)
4c79b5
					if (!empty($attachments))
4c79b5
					{
4c79b5
						$template->assign_var('S_HAS_ATTACHMENTS', true);
4c79b5
4c79b5
						foreach ($attachments as $attachment)
4c79b5
						{
4c79b5
							$template->assign_block_vars('attachment', array(
4c79b5
								'DISPLAY_ATTACHMENT'	=> $attachment)
4c79b5
							);
4c79b5
						}
4c79b5
					}
4c79b5
				}
4c79b5
4c79b5
				$template->assign_vars(array(
4c79b5
					'S_MCP_REPORT'			=> true,
4c79b5
					'S_CLOSE_ACTION'		=> append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=reports&mode=report_details&f=' . $post_info['forum_id'] . '&p=' . $post_id),
4c79b5
					'S_CAN_VIEWIP'			=> $auth->acl_get('m_info', $post_info['forum_id']),
4c79b5
					'S_POST_REPORTED'		=> $post_info['post_reported'],
4c79b5
					'S_POST_UNAPPROVED'		=> !$post_info['post_approved'],
4c79b5
					'S_POST_LOCKED'			=> $post_info['post_edit_locked'],
4c79b5
					'S_USER_NOTES'			=> true,
4c79b5
4c79b5
					'U_EDIT'					=> ($auth->acl_get('m_edit', $post_info['forum_id'])) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=edit&f={$post_info['forum_id']}&p={$post_info['post_id']}") : '',
4c79b5
					'U_MCP_APPROVE'				=> append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=queue&mode=approve_details&f=' . $post_info['forum_id'] . '&p=' . $post_id),
4c79b5
					'U_MCP_REPORT'				=> append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=reports&mode=report_details&f=' . $post_info['forum_id'] . '&p=' . $post_id),
4c79b5
					'U_MCP_REPORTER_NOTES'		=> append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&mode=user_notes&u=' . $report['user_id']),
4c79b5
					'U_MCP_USER_NOTES'			=> append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&mode=user_notes&u=' . $post_info['user_id']),
4c79b5
					'U_MCP_WARN_REPORTER'		=> ($auth->acl_get('m_warn')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=warn&mode=warn_user&u=' . $report['user_id']) : '',
4c79b5
					'U_MCP_WARN_USER'			=> ($auth->acl_get('m_warn')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=warn&mode=warn_user&u=' . $post_info['user_id']) : '',
4c79b5
					'U_VIEW_FORUM'				=> append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $post_info['forum_id']),
4c79b5
					'U_VIEW_POST'				=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $post_info['forum_id'] . '&p=' . $post_info['post_id'] . '#p' . $post_info['post_id']),
4c79b5
					'U_VIEW_TOPIC'				=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $post_info['forum_id'] . '&t=' . $post_info['topic_id']),
4c79b5
4c79b5
					'EDIT_IMG'				=> $user->img('icon_post_edit', $user->lang['EDIT_POST']),
4c79b5
					'MINI_POST_IMG'			=> ($post_unread) ? $user->img('icon_post_target_unread', 'NEW_POST') : $user->img('icon_post_target', 'POST'),
4c79b5
					'UNAPPROVED_IMG'		=> $user->img('icon_topic_unapproved', $user->lang['POST_UNAPPROVED']),
4c79b5
4c79b5
					'RETURN_REPORTS'			=> sprintf($user->lang['RETURN_REPORTS'], '', ''),
4c79b5
					'REPORTED_IMG'				=> $user->img('icon_topic_reported', $user->lang['POST_REPORTED']),
4c79b5
					'REPORT_DATE'				=> $user->format_date($report['report_time']),
4c79b5
					'REPORT_ID'					=> $report_id,
4c79b5
					'REPORT_REASON_TITLE'		=> $reason['title'],
4c79b5
					'REPORT_REASON_DESCRIPTION'	=> $reason['description'],
4c79b5
					'REPORT_TEXT'				=> $report['report_text'],
4c79b5
4c79b5
					'POST_AUTHOR_FULL'		=> get_username_string('full', $post_info['user_id'], $post_info['username'], $post_info['user_colour'], $post_info['post_username']),
4c79b5
					'POST_AUTHOR_COLOUR'	=> get_username_string('colour', $post_info['user_id'], $post_info['username'], $post_info['user_colour'], $post_info['post_username']),
4c79b5
					'POST_AUTHOR'			=> get_username_string('username', $post_info['user_id'], $post_info['username'], $post_info['user_colour'], $post_info['post_username']),
4c79b5
					'U_POST_AUTHOR'			=> get_username_string('profile', $post_info['user_id'], $post_info['username'], $post_info['user_colour'], $post_info['post_username']),
4c79b5
4c79b5
					'REPORTER_FULL'				=> get_username_string('full', $report['user_id'], $report['username'], $report['user_colour']),
4c79b5
					'REPORTER_COLOUR'			=> get_username_string('colour', $report['user_id'], $report['username'], $report['user_colour']),
4c79b5
					'REPORTER_NAME'				=> get_username_string('username', $report['user_id'], $report['username'], $report['user_colour']),
4c79b5
					'U_VIEW_REPORTER_PROFILE'	=> get_username_string('profile', $report['user_id'], $report['username'], $report['user_colour']),
4c79b5
4c79b5
					'POST_PREVIEW'			=> $message,
4c79b5
					'POST_SUBJECT'			=> ($post_info['post_subject']) ? $post_info['post_subject'] : $user->lang['NO_SUBJECT'],
4c79b5
					'POST_DATE'				=> $user->format_date($post_info['post_time']),
4c79b5
					'POST_IP'				=> $post_info['poster_ip'],
4c79b5
					'POST_IPADDR'			=> ($auth->acl_get('m_info', $post_info['forum_id']) && request_var('lookup', '')) ? @gethostbyaddr($post_info['poster_ip']) : '',
4c79b5
					'POST_ID'				=> $post_info['post_id'],
4c79b5
4c79b5
					'U_LOOKUP_IP'			=> ($auth->acl_get('m_info', $post_info['forum_id'])) ? $this->u_action . '&r=' . $report_id . '&p=' . $post_id . '&f=' . $forum_id . '&lookup=' . $post_info['poster_ip'] . '#ip' : '',
4c79b5
				));
4c79b5
4c79b5
				$this->tpl_name = 'mcp_post';
4c79b5
4c79b5
			break;
4c79b5
4c79b5
			case 'reports':
4c79b5
			case 'reports_closed':
4c79b5
				$topic_id = request_var('t', 0);
4c79b5
4c79b5
				$forum_info = array();
4c79b5
				$forum_list_reports = get_forum_list('m_report', false, true);
4c79b5
				$forum_list_read = array_flip(get_forum_list('f_read', true, true)); // Flipped so we can isset() the forum IDs
4c79b5
4c79b5
				// Remove forums we cannot read
4c79b5
				foreach ($forum_list_reports as $k => $forum_data)
4c79b5
				{
4c79b5
					if (!isset($forum_list_read[$forum_data['forum_id']]))
4c79b5
					{
4c79b5
						unset($forum_list_reports[$k]);
4c79b5
					}
4c79b5
				}
4c79b5
				unset($forum_list_read);
4c79b5
4c79b5
				if ($topic_id && $forum_id)
4c79b5
				{
4c79b5
					$topic_info = get_topic_data(array($topic_id));
4c79b5
4c79b5
					if (!sizeof($topic_info))
4c79b5
					{
4c79b5
						trigger_error('TOPIC_NOT_EXIST');
4c79b5
					}
4c79b5
4c79b5
					$topic_info = $topic_info[$topic_id];
4c79b5
					$forum_id = $topic_info['forum_id'];
4c79b5
				}
4c79b5
				else if ($topic_id && !$forum_id)
4c79b5
				{
4c79b5
					$topic_id = 0;
4c79b5
				}
4c79b5
4c79b5
				$forum_list = array();
4c79b5
4c79b5
				if (!$forum_id)
4c79b5
				{
4c79b5
					foreach ($forum_list_reports as $row)
4c79b5
					{
4c79b5
						$forum_list[] = $row['forum_id'];
4c79b5
					}
4c79b5
4c79b5
					if (!sizeof($forum_list))
4c79b5
					{
4c79b5
						trigger_error('NOT_MODERATOR');
4c79b5
					}
4c79b5
4c79b5
					$global_id = $forum_list[0];
4c79b5
4c79b5
					$sql = 'SELECT SUM(forum_topics) as sum_forum_topics
4c79b5
						FROM ' . FORUMS_TABLE . '
4c79b5
						WHERE ' . $db->sql_in_set('forum_id', $forum_list);
4c79b5
					$result = $db->sql_query($sql);
4c79b5
					$forum_info['forum_topics'] = (int) $db->sql_fetchfield('sum_forum_topics');
4c79b5
					$db->sql_freeresult($result);
4c79b5
				}
4c79b5
				else
4c79b5
				{
4c79b5
					$forum_info = get_forum_data(array($forum_id), 'm_report');
4c79b5
4c79b5
					if (!sizeof($forum_info))
4c79b5
					{
4c79b5
						trigger_error('NOT_MODERATOR');
4c79b5
					}
4c79b5
4c79b5
					$forum_info = $forum_info[$forum_id];
4c79b5
					$forum_list = array($forum_id);
4c79b5
					$global_id = $forum_id;
4c79b5
				}
4c79b5
4c79b5
				$forum_list[] = 0;
4c79b5
				$forum_data = array();
4c79b5
4c79b5
				$forum_options = '<option value="0"' . (($forum_id == 0) ? ' selected="selected"' : '') . '>' . $user->lang['ALL_FORUMS'] . '</option>';
4c79b5
				foreach ($forum_list_reports as $row)
4c79b5
				{
4c79b5
					$forum_options .= '<option value="' . $row['forum_id'] . '"' . (($forum_id == $row['forum_id']) ? ' selected="selected"' : '') . '>' . str_repeat('   ', $row['padding']) . $row['forum_name'] . '</option>';
4c79b5
					$forum_data[$row['forum_id']] = $row;
4c79b5
				}
4c79b5
				unset($forum_list_reports);
4c79b5
4c79b5
				$sort_days = $total = 0;
4c79b5
				$sort_key = $sort_dir = '';
4c79b5
				$sort_by_sql = $sort_order_sql = array();
4c79b5
				mcp_sorting($mode, $sort_days, $sort_key, $sort_dir, $sort_by_sql, $sort_order_sql, $total, $forum_id, $topic_id);
4c79b5
4c79b5
				$forum_topics = ($total == -1) ? $forum_info['forum_topics'] : $total;
4c79b5
				$limit_time_sql = ($sort_days) ? 'AND t.topic_last_post_time >= ' . (time() - ($sort_days * 86400)) : '';
4c79b5
4c79b5
				if ($mode == 'reports')
4c79b5
				{
4c79b5
					$report_state = 'AND p.post_reported = 1 AND r.report_closed = 0';
4c79b5
				}
4c79b5
				else
4c79b5
				{
4c79b5
					$report_state = 'AND r.report_closed = 1';
4c79b5
				}
4c79b5
4c79b5
				$sql = 'SELECT r.report_id
4c79b5
					FROM ' . POSTS_TABLE . ' p, ' . TOPICS_TABLE . ' t, ' . REPORTS_TABLE . ' r ' . (($sort_order_sql[0] == 'u') ? ', ' . USERS_TABLE . ' u' : '') . (($sort_order_sql[0] == 'r') ? ', ' . USERS_TABLE . ' ru' : '') . '
4c79b5
					WHERE ' . $db->sql_in_set('p.forum_id', $forum_list) . "
4c79b5
						$report_state
4c79b5
						AND r.post_id = p.post_id
4c79b5
						" . (($sort_order_sql[0] == 'u') ? 'AND u.user_id = p.poster_id' : '') . '
4c79b5
						' . (($sort_order_sql[0] == 'r') ? 'AND ru.user_id = p.poster_id' : '') . '
4c79b5
						' . (($topic_id) ? 'AND p.topic_id = ' . $topic_id : '') . "
4c79b5
						AND t.topic_id = p.topic_id
4c79b5
						$limit_time_sql
4c79b5
					ORDER BY $sort_order_sql";
4c79b5
				$result = $db->sql_query_limit($sql, $config['topics_per_page'], $start);
4c79b5
4c79b5
				$i = 0;
4c79b5
				$report_ids = array();
4c79b5
				while ($row = $db->sql_fetchrow($result))
4c79b5
				{
4c79b5
					$report_ids[] = $row['report_id'];
4c79b5
					$row_num[$row['report_id']] = $i++;
4c79b5
				}
4c79b5
				$db->sql_freeresult($result);
4c79b5
4c79b5
				if (sizeof($report_ids))
4c79b5
				{
4c79b5
					$sql = 'SELECT t.forum_id, t.topic_id, t.topic_title, p.post_id, p.post_subject, p.post_username, p.poster_id, p.post_time, u.username, u.username_clean, u.user_colour, r.user_id as reporter_id, ru.username as reporter_name, ru.user_colour as reporter_colour, r.report_time, r.report_id
4c79b5
						FROM ' . REPORTS_TABLE . ' r, ' . POSTS_TABLE . ' p, ' . TOPICS_TABLE . ' t, ' . USERS_TABLE . ' u, ' . USERS_TABLE . ' ru
4c79b5
						WHERE ' . $db->sql_in_set('r.report_id', $report_ids) . '
4c79b5
							AND t.topic_id = p.topic_id
4c79b5
							AND r.post_id = p.post_id
4c79b5
							AND u.user_id = p.poster_id
4c79b5
							AND ru.user_id = r.user_id
4c79b5
						ORDER BY ' . $sort_order_sql;
4c79b5
					$result = $db->sql_query($sql);
4c79b5
4c79b5
					$report_data = $rowset = array();
4c79b5
					while ($row = $db->sql_fetchrow($result))
4c79b5
					{
4c79b5
						$global_topic = ($row['forum_id']) ? false : true;
4c79b5
						if ($global_topic)
4c79b5
						{
4c79b5
							$row['forum_id'] = $global_id;
4c79b5
						}
4c79b5
4c79b5
						$template->assign_block_vars('postrow', array(
4c79b5
							'U_VIEWFORUM'				=> (!$global_topic) ? append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']) : '',
4c79b5
							'U_VIEWPOST'				=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&p=' . $row['post_id']) . '#p' . $row['post_id'],
4c79b5
							'U_VIEW_DETAILS'			=> append_sid("{$phpbb_root_path}mcp.$phpEx", "i=reports&start=$start&mode=report_details&f={$row['forum_id']}&r={$row['report_id']}"),
4c79b5
4c79b5
							'POST_AUTHOR_FULL'		=> get_username_string('full', $row['poster_id'], $row['username'], $row['user_colour'], $row['post_username']),
4c79b5
							'POST_AUTHOR_COLOUR'	=> get_username_string('colour', $row['poster_id'], $row['username'], $row['user_colour'], $row['post_username']),
4c79b5
							'POST_AUTHOR'			=> get_username_string('username', $row['poster_id'], $row['username'], $row['user_colour'], $row['post_username']),
4c79b5
							'U_POST_AUTHOR'			=> get_username_string('profile', $row['poster_id'], $row['username'], $row['user_colour'], $row['post_username']),
4c79b5
4c79b5
							'REPORTER_FULL'			=> get_username_string('full', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']),
4c79b5
							'REPORTER_COLOUR'		=> get_username_string('colour', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']),
4c79b5
							'REPORTER'				=> get_username_string('username', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']),
4c79b5
							'U_REPORTER'			=> get_username_string('profile', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']),
4c79b5
4c79b5
							'FORUM_NAME'	=> (!$global_topic) ? $forum_data[$row['forum_id']]['forum_name'] : $user->lang['GLOBAL_ANNOUNCEMENT'],
4c79b5
							'POST_ID'		=> $row['post_id'],
4c79b5
							'POST_SUBJECT'	=> ($row['post_subject']) ? $row['post_subject'] : $user->lang['NO_SUBJECT'],
4c79b5
							'POST_TIME'		=> $user->format_date($row['post_time']),
4c79b5
							'REPORT_ID'		=> $row['report_id'],
4c79b5
							'REPORT_TIME'	=> $user->format_date($row['report_time']),
4c79b5
							'TOPIC_TITLE'	=> $row['topic_title'])
4c79b5
						);
4c79b5
					}
4c79b5
					$db->sql_freeresult($result);
4c79b5
					unset($report_ids, $row);
4c79b5
				}
4c79b5
4c79b5
				// Now display the page
4c79b5
				$template->assign_vars(array(
4c79b5
					'L_EXPLAIN'				=> ($mode == 'reports') ? $user->lang['MCP_REPORTS_OPEN_EXPLAIN'] : $user->lang['MCP_REPORTS_CLOSED_EXPLAIN'],
4c79b5
					'L_TITLE'				=> ($mode == 'reports') ? $user->lang['MCP_REPORTS_OPEN'] : $user->lang['MCP_REPORTS_CLOSED'],
4c79b5
					'L_ONLY_TOPIC'			=> ($topic_id) ? sprintf($user->lang['ONLY_TOPIC'], $topic_info['topic_title']) : '',
4c79b5
4c79b5
					'S_MCP_ACTION'			=> $this->u_action,
4c79b5
					'S_FORUM_OPTIONS'		=> $forum_options,
4c79b5
					'S_CLOSED'				=> ($mode == 'reports_closed') ? true : false,
4c79b5
4c79b5
					'PAGINATION'			=> generate_pagination($this->u_action . "&f=$forum_id&t=$topic_id&st=$sort_days&sk=$sort_key&sd=$sort_dir", $total, $config['topics_per_page'], $start),
4c79b5
					'PAGE_NUMBER'			=> on_page($total, $config['topics_per_page'], $start),
4c79b5
					'TOPIC_ID'				=> $topic_id,
4c79b5
					'TOTAL'					=> $total,
4c79b5
					'TOTAL_REPORTS'			=> ($total == 1) ? $user->lang['LIST_REPORT'] : sprintf($user->lang['LIST_REPORTS'], $total),					
4c79b5
					)
4c79b5
				);
4c79b5
4c79b5
				$this->tpl_name = 'mcp_reports';
4c79b5
			break;
4c79b5
		}
4c79b5
	}
4c79b5
}
4c79b5
4c79b5
/**
4c79b5
* Closes a report
4c79b5
*/
4c79b5
function close_report($report_id_list, $mode, $action)
4c79b5
{
4c79b5
	global $db, $template, $user, $config;
4c79b5
	global $phpEx, $phpbb_root_path;
4c79b5
4c79b5
	$sql = 'SELECT r.post_id
4c79b5
		FROM ' . REPORTS_TABLE . ' r
4c79b5
		WHERE ' . $db->sql_in_set('r.report_id', $report_id_list);
4c79b5
	$result = $db->sql_query($sql);
4c79b5
4c79b5
	$post_id_list = array();
4c79b5
	while ($row = $db->sql_fetchrow($result))
4c79b5
	{
4c79b5
		$post_id_list[] = $row['post_id'];
4c79b5
	}
4c79b5
	$post_id_list = array_unique($post_id_list);
4c79b5
4c79b5
	if (!check_ids($post_id_list, POSTS_TABLE, 'post_id', array('m_report')))
4c79b5
	{
4c79b5
		trigger_error('NOT_AUTHORISED');
4c79b5
	}
4c79b5
4c79b5
	if ($action == 'delete' && strpos($user->data['session_page'], 'mode=report_details') !== false)
4c79b5
	{
4c79b5
		$redirect = request_var('redirect', build_url(array('mode', 'r', 'quickmod')) . '&mode=reports');
4c79b5
	}
4c79b5
	else if ($action == 'close' && !request_var('r', 0))
4c79b5
	{
4c79b5
		$redirect = request_var('redirect', build_url(array('mode', 'p', 'quickmod')) . '&mode=reports');
4c79b5
	}
4c79b5
	else
4c79b5
	{
4c79b5
		$redirect = request_var('redirect', build_url(array('quickmod')));
4c79b5
	}
4c79b5
	$success_msg = '';
4c79b5
	$forum_ids = array();
4c79b5
	$topic_ids = array();
4c79b5
4c79b5
	$s_hidden_fields = build_hidden_fields(array(
4c79b5
		'i'					=> 'reports',
4c79b5
		'mode'				=> $mode,
4c79b5
		'report_id_list'	=> $report_id_list,
4c79b5
		'action'			=> $action,
4c79b5
		'redirect'			=> $redirect)
4c79b5
	);
4c79b5
4c79b5
	if (confirm_box(true))
4c79b5
	{
4c79b5
		$post_info = get_post_data($post_id_list, 'm_report');
4c79b5
4c79b5
		$sql = 'SELECT r.report_id, r.post_id, r.report_closed, r.user_id, r.user_notify, u.username, u.username_clean, u.user_email, u.user_jabber, u.user_lang, u.user_notify_type
4c79b5
			FROM ' . REPORTS_TABLE . ' r, ' . USERS_TABLE . ' u
4c79b5
			WHERE ' . $db->sql_in_set('r.report_id', $report_id_list) . '
4c79b5
				' . (($action == 'close') ? 'AND r.report_closed = 0' : '') . '
4c79b5
				AND r.user_id = u.user_id';
4c79b5
		$result = $db->sql_query($sql);
4c79b5
4c79b5
		$reports = $close_report_posts = $close_report_topics = $notify_reporters = $report_id_list = array();
4c79b5
		while ($report = $db->sql_fetchrow($result))
4c79b5
		{
4c79b5
			$reports[$report['report_id']] = $report;
4c79b5
			$report_id_list[] = $report['report_id'];
4c79b5
4c79b5
			if (!$report['report_closed'])
4c79b5
			{
4c79b5
				$close_report_posts[] = $report['post_id'];
4c79b5
				$close_report_topics[] = $post_info[$report['post_id']]['topic_id'];
4c79b5
			}
4c79b5
4c79b5
			if ($report['user_notify'] && !$report['report_closed'])
4c79b5
			{
4c79b5
				$notify_reporters[$report['report_id']] = &$reports[$report['report_id']];
4c79b5
			}
4c79b5
		}
4c79b5
		$db->sql_freeresult($result);
4c79b5
4c79b5
		if (sizeof($reports))
4c79b5
		{
4c79b5
			$close_report_posts = array_unique($close_report_posts);
4c79b5
			$close_report_topics = array_unique($close_report_topics);
4c79b5
4c79b5
			if (sizeof($close_report_posts))
4c79b5
			{
4c79b5
				// Get a list of topics that still contain reported posts
4c79b5
				$sql = 'SELECT DISTINCT topic_id
4c79b5
					FROM ' . POSTS_TABLE . '
4c79b5
					WHERE ' . $db->sql_in_set('topic_id', $close_report_topics) . '
4c79b5
						AND post_reported = 1
4c79b5
						AND ' . $db->sql_in_set('post_id', $close_report_posts, true);
4c79b5
				$result = $db->sql_query($sql);
4c79b5
4c79b5
				$keep_report_topics = array();
4c79b5
				while ($row = $db->sql_fetchrow($result))
4c79b5
				{
4c79b5
					$keep_report_topics[] = $row['topic_id'];
4c79b5
				}
4c79b5
				$db->sql_freeresult($result);
4c79b5
4c79b5
				$close_report_topics = array_diff($close_report_topics, $keep_report_topics);
4c79b5
				unset($keep_report_topics);
4c79b5
			}
4c79b5
4c79b5
			$db->sql_transaction('begin');
4c79b5
4c79b5
			if ($action == 'close')
4c79b5
			{
4c79b5
				$sql = 'UPDATE ' . REPORTS_TABLE . '
4c79b5
					SET report_closed = 1
4c79b5
					WHERE ' . $db->sql_in_set('report_id', $report_id_list);
4c79b5
			}
4c79b5
			else
4c79b5
			{
4c79b5
				$sql = 'DELETE FROM ' . REPORTS_TABLE . '
4c79b5
					WHERE ' . $db->sql_in_set('report_id', $report_id_list);
4c79b5
			}
4c79b5
			$db->sql_query($sql);
4c79b5
4c79b5
4c79b5
			if (sizeof($close_report_posts))
4c79b5
			{
4c79b5
				$sql = 'UPDATE ' . POSTS_TABLE . '
4c79b5
					SET post_reported = 0
4c79b5
					WHERE ' . $db->sql_in_set('post_id', $close_report_posts);
4c79b5
				$db->sql_query($sql);
4c79b5
4c79b5
				if (sizeof($close_report_topics))
4c79b5
				{
4c79b5
					$sql = 'UPDATE ' . TOPICS_TABLE . '
4c79b5
						SET topic_reported = 0
4c79b5
						WHERE ' . $db->sql_in_set('topic_id', $close_report_topics) . '
4c79b5
							OR ' . $db->sql_in_set('topic_moved_id', $close_report_topics);
4c79b5
					$db->sql_query($sql);
4c79b5
				}
4c79b5
			}
4c79b5
4c79b5
			$db->sql_transaction('commit');
4c79b5
		}
4c79b5
		unset($close_report_posts, $close_report_topics);
4c79b5
4c79b5
		foreach ($reports as $report)
4c79b5
		{
4c79b5
			add_log('mod', $post_info[$report['post_id']]['forum_id'], $post_info[$report['post_id']]['topic_id'], 'LOG_REPORT_' .  strtoupper($action) . 'D', $post_info[$report['post_id']]['post_subject']);
4c79b5
		}
4c79b5
4c79b5
		$messenger = new messenger();
4c79b5
4c79b5
		// Notify reporters
4c79b5
		if (sizeof($notify_reporters))
4c79b5
		{
4c79b5
			foreach ($notify_reporters as $report_id => $reporter)
4c79b5
			{
4c79b5
				if ($reporter['user_id'] == ANONYMOUS)
4c79b5
				{
4c79b5
					continue;
4c79b5
				}
4c79b5
4c79b5
				$post_id = $reporter['post_id'];
4c79b5
4c79b5
				$messenger->template('report_' . $action . 'd', $reporter['user_lang']);
4c79b5
4c79b5
				$messenger->to($reporter['user_email'], $reporter['username']);
4c79b5
				$messenger->im($reporter['user_jabber'], $reporter['username']);
4c79b5
4c79b5
				$messenger->assign_vars(array(
4c79b5
					'USERNAME'		=> htmlspecialchars_decode($reporter['username']),
4c79b5
					'CLOSER_NAME'	=> htmlspecialchars_decode($user->data['username']),
4c79b5
					'POST_SUBJECT'	=> htmlspecialchars_decode(censor_text($post_info[$post_id]['post_subject'])),
4c79b5
					'TOPIC_TITLE'	=> htmlspecialchars_decode(censor_text($post_info[$post_id]['topic_title'])))
4c79b5
				);
4c79b5
4c79b5
				$messenger->send($reporter['user_notify_type']);
4c79b5
			}
4c79b5
		}
4c79b5
		
4c79b5
		foreach ($post_info as $post)
4c79b5
		{
4c79b5
			$forum_ids[$post['forum_id']] = $post['forum_id'];
4c79b5
			$topic_ids[$post['topic_id']] = $post['topic_id'];
4c79b5
		}
4c79b5
		
4c79b5
		unset($notify_reporters, $post_info, $reports);
4c79b5
4c79b5
		$messenger->save_queue();
4c79b5
4c79b5
		$success_msg = (sizeof($report_id_list) == 1) ? 'REPORT_' . strtoupper($action) . 'D_SUCCESS' : 'REPORTS_' . strtoupper($action) . 'D_SUCCESS';
4c79b5
	}
4c79b5
	else
4c79b5
	{
4c79b5
		confirm_box(false, $user->lang[strtoupper($action) . '_REPORT' . ((sizeof($report_id_list) == 1) ? '' : 'S') . '_CONFIRM'], $s_hidden_fields);
4c79b5
	}
4c79b5
4c79b5
	$redirect = request_var('redirect', "index.$phpEx");
4c79b5
	$redirect = reapply_sid($redirect);
4c79b5
4c79b5
	if (!$success_msg)
4c79b5
	{
4c79b5
		redirect($redirect);
4c79b5
	}
4c79b5
	else
4c79b5
	{
4c79b5
		meta_refresh(3, $redirect);
4c79b5
		$return_forum = '';
4c79b5
		if (sizeof($forum_ids == 1))
4c79b5
		{
4c79b5
			$return_forum = sprintf($user->lang['RETURN_FORUM'], '', '') . '

';
4c79b5
		}
4c79b5
		$return_topic = '';
4c79b5
		if (sizeof($topic_ids == 1))
4c79b5
		{
4c79b5
			$return_topic = sprintf($user->lang['RETURN_TOPIC'], '', '') . '

';
4c79b5
		}
4c79b5
		
4c79b5
		trigger_error($user->lang[$success_msg] . '

' . $return_forum . $return_topic . sprintf($user->lang['RETURN_PAGE'], "", ''));
4c79b5
	}
4c79b5
}
4c79b5
4c79b5
?>