Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 175 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
| mcp_pm_reports | |
0.00% |
0 / 173 |
|
0.00% |
0 / 2 |
2070 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| main | |
0.00% |
0 / 172 |
|
0.00% |
0 / 1 |
1980 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * |
| 4 | * This file is part of the phpBB Forum Software package. |
| 5 | * |
| 6 | * @copyright (c) phpBB Limited <https://www.phpbb.com> |
| 7 | * @license GNU General Public License, version 2 (GPL-2.0) |
| 8 | * |
| 9 | * For full copyright and license information, please see |
| 10 | * the docs/CREDITS.txt file. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | /** |
| 15 | * @ignore |
| 16 | */ |
| 17 | if (!defined('IN_PHPBB')) |
| 18 | { |
| 19 | exit; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * mcp_reports |
| 24 | * Handling the reports queue |
| 25 | */ |
| 26 | class mcp_pm_reports |
| 27 | { |
| 28 | var $p_master; |
| 29 | var $u_action; |
| 30 | |
| 31 | function __construct($p_master) |
| 32 | { |
| 33 | $this->p_master = $p_master; |
| 34 | } |
| 35 | |
| 36 | function main($id, $mode) |
| 37 | { |
| 38 | global $auth, $db, $user, $template, $request; |
| 39 | global $config, $phpbb_root_path, $phpEx, $action, $phpbb_container; |
| 40 | |
| 41 | include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx); |
| 42 | include_once($phpbb_root_path . 'includes/functions_privmsgs.' . $phpEx); |
| 43 | |
| 44 | /* @var $pagination \phpbb\pagination */ |
| 45 | $pagination = $phpbb_container->get('pagination'); |
| 46 | $start = $request->variable('start', 0); |
| 47 | |
| 48 | $this->page_title = 'MCP_PM_REPORTS'; |
| 49 | |
| 50 | switch ($action) |
| 51 | { |
| 52 | case 'close': |
| 53 | case 'delete': |
| 54 | $report_id_list = $request->variable('report_id_list', array(0)); |
| 55 | |
| 56 | if (!count($report_id_list)) |
| 57 | { |
| 58 | trigger_error('NO_REPORT_SELECTED'); |
| 59 | } |
| 60 | |
| 61 | if (!function_exists('close_report')) |
| 62 | { |
| 63 | include($phpbb_root_path . 'includes/mcp/mcp_reports.' . $phpEx); |
| 64 | } |
| 65 | |
| 66 | close_report($report_id_list, $mode, $action, true); |
| 67 | |
| 68 | break; |
| 69 | } |
| 70 | |
| 71 | switch ($mode) |
| 72 | { |
| 73 | case 'pm_report_details': |
| 74 | |
| 75 | $user->add_lang(array('posting', 'viewforum', 'viewtopic', 'ucp')); |
| 76 | |
| 77 | $report_id = $request->variable('r', 0); |
| 78 | |
| 79 | $sql = 'SELECT r.pm_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 |
| 80 | FROM ' . REPORTS_TABLE . ' r, ' . REPORTS_REASONS_TABLE . ' rr, ' . USERS_TABLE . ' u |
| 81 | WHERE r.report_id = ' . $report_id . ' |
| 82 | AND rr.reason_id = r.reason_id |
| 83 | AND r.user_id = u.user_id |
| 84 | AND r.post_id = 0 |
| 85 | ORDER BY report_closed ASC'; |
| 86 | $result = $db->sql_query_limit($sql, 1); |
| 87 | $report = $db->sql_fetchrow($result); |
| 88 | $db->sql_freeresult($result); |
| 89 | |
| 90 | if (!$report_id || !$report) |
| 91 | { |
| 92 | trigger_error('NO_REPORT'); |
| 93 | } |
| 94 | |
| 95 | /* @var $phpbb_notifications \phpbb\notification\manager */ |
| 96 | $phpbb_notifications = $phpbb_container->get('notification_manager'); |
| 97 | |
| 98 | $phpbb_notifications->mark_notifications_by_parent('report_pm', $report_id, $user->data['user_id']); |
| 99 | |
| 100 | $pm_id = $report['pm_id']; |
| 101 | $report_id = $report['report_id']; |
| 102 | |
| 103 | $pm_info = phpbb_get_pm_data(array($pm_id)); |
| 104 | |
| 105 | if (!count($pm_info)) |
| 106 | { |
| 107 | trigger_error('NO_REPORT_SELECTED'); |
| 108 | } |
| 109 | |
| 110 | $pm_info = $pm_info[$pm_id]; |
| 111 | |
| 112 | write_pm_addresses(array('to' => $pm_info['to_address'], 'bcc' => $pm_info['bcc_address']), (int) $pm_info['author_id']); |
| 113 | |
| 114 | $reason = array('title' => $report['reason_title'], 'description' => $report['reason_description']); |
| 115 | if (isset($user->lang['report_reasons']['TITLE'][strtoupper($reason['title'])]) && isset($user->lang['report_reasons']['DESCRIPTION'][strtoupper($reason['title'])])) |
| 116 | { |
| 117 | $reason['description'] = $user->lang['report_reasons']['DESCRIPTION'][strtoupper($reason['title'])]; |
| 118 | $reason['title'] = $user->lang['report_reasons']['TITLE'][strtoupper($reason['title'])]; |
| 119 | } |
| 120 | |
| 121 | // Process message, leave it uncensored |
| 122 | $parse_flags = ($pm_info['bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES; |
| 123 | $message = generate_text_for_display($pm_info['message_text'], $pm_info['bbcode_uid'], $pm_info['bbcode_bitfield'], $parse_flags, false); |
| 124 | |
| 125 | $report['report_text'] = make_clickable(bbcode_nl2br($report['report_text'])); |
| 126 | |
| 127 | if ($pm_info['message_attachment'] && $auth->acl_get('u_pm_download')) |
| 128 | { |
| 129 | $sql = 'SELECT * |
| 130 | FROM ' . ATTACHMENTS_TABLE . ' |
| 131 | WHERE post_msg_id = ' . $pm_id . ' |
| 132 | AND in_message = 1 |
| 133 | ORDER BY filetime DESC'; |
| 134 | $result = $db->sql_query($sql); |
| 135 | |
| 136 | $attachments = []; |
| 137 | while ($row = $db->sql_fetchrow($result)) |
| 138 | { |
| 139 | $attachments[] = $row; |
| 140 | } |
| 141 | $db->sql_freeresult($result); |
| 142 | |
| 143 | if (count($attachments)) |
| 144 | { |
| 145 | $update_count = array(); |
| 146 | parse_attachments(0, $message, $attachments, $update_count); |
| 147 | } |
| 148 | |
| 149 | // Display not already displayed Attachments for this post, we already parsed them. ;) |
| 150 | if (!empty($attachments)) |
| 151 | { |
| 152 | $template->assign_var('S_HAS_ATTACHMENTS', true); |
| 153 | |
| 154 | foreach ($attachments as $attachment) |
| 155 | { |
| 156 | $template->assign_block_vars('attachment', array( |
| 157 | 'DISPLAY_ATTACHMENT' => $attachment) |
| 158 | ); |
| 159 | } |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | $template->assign_vars(array( |
| 164 | 'S_MCP_REPORT' => true, |
| 165 | 'S_PM' => true, |
| 166 | 'S_CLOSE_ACTION' => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=pm_reports&mode=pm_report_details&r=' . $report_id), |
| 167 | 'S_CAN_VIEWIP' => $auth->acl_getf_global('m_info'), |
| 168 | 'S_POST_REPORTED' => $pm_info['message_reported'], |
| 169 | 'S_REPORT_CLOSED' => $report['report_closed'], |
| 170 | 'S_USER_NOTES' => true, |
| 171 | |
| 172 | 'U_MCP_REPORT' => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=pm_reports&mode=pm_report_details&r=' . $report_id), |
| 173 | 'U_MCP_REPORTER_NOTES' => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&mode=user_notes&u=' . $report['user_id']), |
| 174 | 'U_MCP_USER_NOTES' => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&mode=user_notes&u=' . $pm_info['author_id']), |
| 175 | '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']) : '', |
| 176 | 'U_MCP_WARN_USER' => ($auth->acl_get('m_warn')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=warn&mode=warn_user&u=' . $pm_info['author_id']) : '', |
| 177 | |
| 178 | 'EDIT_IMG' => $user->img('icon_post_edit', $user->lang['EDIT_POST']), |
| 179 | 'MINI_POST_IMG' => $user->img('icon_post_target', 'POST'), |
| 180 | |
| 181 | 'RETURN_REPORTS' => sprintf($user->lang['RETURN_REPORTS'], '<a href="' . append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=pm_reports' . (($pm_info['message_reported']) ? '&mode=pm_reports' : '&mode=pm_reports_closed') . '&start=' . $start) . '">', '</a>'), |
| 182 | 'REPORTED_IMG' => $user->img('icon_topic_reported', $user->lang['POST_REPORTED']), |
| 183 | 'REPORT_DATE' => $user->format_date($report['report_time']), |
| 184 | 'REPORT_ID' => $report_id, |
| 185 | 'REPORT_REASON_TITLE' => $reason['title'], |
| 186 | 'REPORT_REASON_DESCRIPTION' => $reason['description'], |
| 187 | 'REPORT_TEXT' => $report['report_text'], |
| 188 | |
| 189 | 'POST_AUTHOR_FULL' => get_username_string('full', $pm_info['author_id'], $pm_info['username'], $pm_info['user_colour']), |
| 190 | 'POST_AUTHOR_COLOUR' => get_username_string('colour', $pm_info['author_id'], $pm_info['username'], $pm_info['user_colour']), |
| 191 | 'POST_AUTHOR' => get_username_string('username', $pm_info['author_id'], $pm_info['username'], $pm_info['user_colour']), |
| 192 | 'U_POST_AUTHOR' => get_username_string('profile', $pm_info['author_id'], $pm_info['username'], $pm_info['user_colour']), |
| 193 | |
| 194 | 'REPORTER_FULL' => get_username_string('full', $report['user_id'], $report['username'], $report['user_colour']), |
| 195 | 'REPORTER_COLOUR' => get_username_string('colour', $report['user_id'], $report['username'], $report['user_colour']), |
| 196 | 'REPORTER_NAME' => get_username_string('username', $report['user_id'], $report['username'], $report['user_colour']), |
| 197 | 'U_VIEW_REPORTER_PROFILE' => get_username_string('profile', $report['user_id'], $report['username'], $report['user_colour']), |
| 198 | |
| 199 | 'POST_PREVIEW' => $message, |
| 200 | 'POST_SUBJECT' => ($pm_info['message_subject']) ? $pm_info['message_subject'] : $user->lang['NO_SUBJECT'], |
| 201 | 'POST_DATE' => $user->format_date($pm_info['message_time']), |
| 202 | 'POST_IP' => $pm_info['author_ip'], |
| 203 | 'POST_IPADDR' => ($auth->acl_getf_global('m_info') && $request->variable('lookup', '')) ? @gethostbyaddr($pm_info['author_ip']) : '', |
| 204 | 'POST_ID' => $pm_info['msg_id'], |
| 205 | |
| 206 | 'U_LOOKUP_IP' => ($auth->acl_getf_global('m_info')) ? $this->u_action . '&r=' . $report_id . '&pm=' . $pm_id . '&lookup=' . $pm_info['author_ip'] . '#ip' : '', |
| 207 | )); |
| 208 | |
| 209 | $this->tpl_name = 'mcp_post'; |
| 210 | |
| 211 | break; |
| 212 | |
| 213 | case 'pm_reports': |
| 214 | case 'pm_reports_closed': |
| 215 | $user->add_lang(array('ucp')); |
| 216 | |
| 217 | $sort_days = $total = 0; |
| 218 | $sort_key = $sort_dir = ''; |
| 219 | $sort_by_sql = $sort_order_sql = array(); |
| 220 | phpbb_mcp_sorting($mode, $sort_days, $sort_key, $sort_dir, $sort_by_sql, $sort_order_sql, $total); |
| 221 | |
| 222 | $limit_time_sql = ($sort_days) ? 'AND r.report_time >= ' . (time() - ($sort_days * 86400)) : ''; |
| 223 | |
| 224 | if ($mode == 'pm_reports') |
| 225 | { |
| 226 | $report_state = 'p.message_reported = 1 AND r.report_closed = 0'; |
| 227 | } |
| 228 | else |
| 229 | { |
| 230 | $report_state = 'r.report_closed = 1'; |
| 231 | } |
| 232 | |
| 233 | $sql = 'SELECT r.report_id |
| 234 | FROM ' . PRIVMSGS_TABLE . ' p, ' . REPORTS_TABLE . ' r ' . (($sort_order_sql[0] == 'u') ? ', ' . USERS_TABLE . ' u' : '') . (($sort_order_sql[0] == 'r') ? ', ' . USERS_TABLE . ' ru' : '') . " |
| 235 | WHERE $report_state |
| 236 | AND r.pm_id = p.msg_id |
| 237 | " . (($sort_order_sql[0] == 'u') ? 'AND u.user_id = p.author_id' : '') . ' |
| 238 | ' . (($sort_order_sql[0] == 'r') ? 'AND ru.user_id = r.user_id' : '') . " |
| 239 | AND r.post_id = 0 |
| 240 | $limit_time_sql |
| 241 | ORDER BY $sort_order_sql"; |
| 242 | $result = $db->sql_query_limit($sql, $config['topics_per_page'], $start); |
| 243 | |
| 244 | $report_ids = array(); |
| 245 | while ($row = $db->sql_fetchrow($result)) |
| 246 | { |
| 247 | $report_ids[] = $row['report_id']; |
| 248 | } |
| 249 | $db->sql_freeresult($result); |
| 250 | |
| 251 | if (count($report_ids)) |
| 252 | { |
| 253 | $sql = 'SELECT p.*, 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 |
| 254 | FROM ' . REPORTS_TABLE . ' r, ' . PRIVMSGS_TABLE . ' p, ' . USERS_TABLE . ' u, ' . USERS_TABLE . ' ru |
| 255 | WHERE ' . $db->sql_in_set('r.report_id', $report_ids) . " |
| 256 | AND r.pm_id = p.msg_id |
| 257 | AND p.author_id = u.user_id |
| 258 | AND ru.user_id = r.user_id |
| 259 | ORDER BY $sort_order_sql"; |
| 260 | $result = $db->sql_query($sql); |
| 261 | |
| 262 | $pm_list = $pm_by_id = array(); |
| 263 | while ($row = $db->sql_fetchrow($result)) |
| 264 | { |
| 265 | $pm_by_id[(int) $row['msg_id']] = $row; |
| 266 | $pm_list[] = (int) $row['msg_id']; |
| 267 | } |
| 268 | $db->sql_freeresult($result); |
| 269 | |
| 270 | if (count($pm_list)) |
| 271 | { |
| 272 | $address_list = get_recipient_strings($pm_by_id); |
| 273 | |
| 274 | foreach ($pm_list as $message_id) |
| 275 | { |
| 276 | $row = $pm_by_id[$message_id]; |
| 277 | $template->assign_block_vars('postrow', array( |
| 278 | 'U_VIEW_DETAILS' => append_sid("{$phpbb_root_path}mcp.$phpEx", "i=pm_reports&mode=pm_report_details&r={$row['report_id']}"), |
| 279 | |
| 280 | 'PM_AUTHOR_FULL' => get_username_string('full', $row['author_id'], $row['username'], $row['user_colour']), |
| 281 | 'PM_AUTHOR_COLOUR' => get_username_string('colour', $row['author_id'], $row['username'], $row['user_colour']), |
| 282 | 'PM_AUTHOR' => get_username_string('username', $row['author_id'], $row['username'], $row['user_colour']), |
| 283 | 'U_PM_AUTHOR' => get_username_string('profile', $row['author_id'], $row['username'], $row['user_colour']), |
| 284 | |
| 285 | 'REPORTER_FULL' => get_username_string('full', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']), |
| 286 | 'REPORTER_COLOUR' => get_username_string('colour', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']), |
| 287 | 'REPORTER' => get_username_string('username', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']), |
| 288 | 'U_REPORTER' => get_username_string('profile', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']), |
| 289 | |
| 290 | 'PM_SUBJECT' => ($row['message_subject']) ? $row['message_subject'] : $user->lang['NO_SUBJECT'], |
| 291 | 'PM_TIME' => $user->format_date($row['message_time']), |
| 292 | 'REPORT_ID' => $row['report_id'], |
| 293 | 'REPORT_TIME' => $user->format_date($row['report_time']), |
| 294 | |
| 295 | 'RECIPIENTS' => implode($user->lang['COMMA_SEPARATOR'], $address_list[$row['msg_id']]), |
| 296 | 'ATTACH_ICON_IMG' => ($auth->acl_get('u_download') && $row['message_attachment']) ? $user->img('icon_topic_attach', $user->lang['TOTAL_ATTACHMENTS']) : '', |
| 297 | )); |
| 298 | } |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | $base_url = $this->u_action . "&st=$sort_days&sk=$sort_key&sd=$sort_dir"; |
| 303 | $pagination->generate_template_pagination($base_url, 'pagination', 'start', $total, $config['topics_per_page'], $start); |
| 304 | |
| 305 | // Now display the page |
| 306 | $template->assign_vars(array( |
| 307 | 'L_EXPLAIN' => ($mode == 'pm_reports') ? $user->lang['MCP_PM_REPORTS_OPEN_EXPLAIN'] : $user->lang['MCP_PM_REPORTS_CLOSED_EXPLAIN'], |
| 308 | 'L_TITLE' => ($mode == 'pm_reports') ? $user->lang['MCP_PM_REPORTS_OPEN'] : $user->lang['MCP_PM_REPORTS_CLOSED'], |
| 309 | |
| 310 | 'S_PM' => true, |
| 311 | 'S_MCP_ACTION' => $this->u_action, |
| 312 | 'S_CLOSED' => ($mode == 'pm_reports_closed') ? true : false, |
| 313 | |
| 314 | 'TOTAL' => $total, |
| 315 | 'TOTAL_REPORTS' => $user->lang('LIST_REPORTS', (int) $total), |
| 316 | ) |
| 317 | ); |
| 318 | |
| 319 | $this->tpl_name = 'mcp_reports'; |
| 320 | break; |
| 321 | } |
| 322 | } |
| 323 | } |