Blame Identity/Models/Html/phpBB/3.0.4/includes/mcp/mcp_reports.php

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

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

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

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