[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/includes/mcp/ -> mcp_reports.php (source)

   1  <?php
   2  /**
   3  *
   4  * @package mcp
   5  * @version $Id$
   6  * @copyright (c) 2005 phpBB Group
   7  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
   8  *
   9  */
  10  
  11  /**
  12  * @ignore
  13  */
  14  if (!defined('IN_PHPBB'))
  15  {
  16      exit;
  17  }
  18  
  19  /**
  20  * mcp_reports
  21  * Handling the reports queue
  22  * @package mcp
  23  */
  24  class mcp_reports
  25  {
  26      var $p_master;
  27      var $u_action;
  28  
  29  	function mcp_reports(&$p_master)
  30      {
  31          $this->p_master = &$p_master;
  32      }
  33  
  34  	function main($id, $mode)
  35      {
  36          global $auth, $db, $user, $template, $cache;
  37          global $config, $phpbb_root_path, $phpEx, $action;
  38  
  39          include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
  40  
  41          $forum_id = request_var('f', 0);
  42          $start = request_var('start', 0);
  43  
  44          $this->page_title = 'MCP_REPORTS';
  45  
  46          switch ($action)
  47          {
  48              case 'close':
  49              case 'delete':
  50                  include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx);
  51  
  52                  $report_id_list = request_var('report_id_list', array(0));
  53  
  54                  if (!sizeof($report_id_list))
  55                  {
  56                      trigger_error('NO_REPORT_SELECTED');
  57                  }
  58  
  59                  close_report($report_id_list, $mode, $action);
  60  
  61              break;
  62          }
  63  
  64          switch ($mode)
  65          {
  66              case 'report_details':
  67  
  68                  $user->add_lang(array('posting', 'viewforum', 'viewtopic'));
  69  
  70                  $post_id = request_var('p', 0);
  71  
  72                  // closed reports are accessed by report id
  73                  $report_id = request_var('r', 0);
  74  
  75                  $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
  76                      FROM ' . REPORTS_TABLE . ' r, ' . REPORTS_REASONS_TABLE . ' rr, ' . USERS_TABLE . ' u
  77                      WHERE ' . (($report_id) ? 'r.report_id = ' . $report_id : "r.post_id = $post_id") . '
  78                          AND rr.reason_id = r.reason_id
  79                          AND r.user_id = u.user_id
  80                          AND r.pm_id = 0
  81                      ORDER BY report_closed ASC';
  82                  $result = $db->sql_query_limit($sql, 1);
  83                  $report = $db->sql_fetchrow($result);
  84                  $db->sql_freeresult($result);
  85  
  86                  if (!$report)
  87                  {
  88                      trigger_error('NO_REPORT');
  89                  }
  90  
  91                  if (!$report_id && $report['report_closed'])
  92                  {
  93                      trigger_error('REPORT_CLOSED');
  94                  }
  95  
  96                  $post_id = $report['post_id'];
  97                  $report_id = $report['report_id'];
  98  
  99                  $post_info = get_post_data(array($post_id), 'm_report', true);
 100  
 101                  if (!sizeof($post_info))
 102                  {
 103                      trigger_error('NO_REPORT_SELECTED');
 104                  }
 105  
 106                  $post_info = $post_info[$post_id];
 107  
 108                  $reason = array('title' => $report['reason_title'], 'description' => $report['reason_description']);
 109                  if (isset($user->lang['report_reasons']['TITLE'][strtoupper($reason['title'])]) && isset($user->lang['report_reasons']['DESCRIPTION'][strtoupper($reason['title'])]))
 110                  {
 111                      $reason['description'] = $user->lang['report_reasons']['DESCRIPTION'][strtoupper($reason['title'])];
 112                      $reason['title'] = $user->lang['report_reasons']['TITLE'][strtoupper($reason['title'])];
 113                  }
 114  
 115                  if (topic_review($post_info['topic_id'], $post_info['forum_id'], 'topic_review', 0, false))
 116                  {
 117                      $template->assign_vars(array(
 118                          'S_TOPIC_REVIEW'    => true,
 119                          'S_BBCODE_ALLOWED'    => $post_info['enable_bbcode'],
 120                          'TOPIC_TITLE'        => $post_info['topic_title'])
 121                      );
 122                  }
 123  
 124                  $topic_tracking_info = $extensions = $attachments = array();
 125                  // Get topic tracking info
 126                  if ($config['load_db_lastread'])
 127                  {
 128                      $tmp_topic_data = array($post_info['topic_id'] => $post_info);
 129                      $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']));
 130                      unset($tmp_topic_data);
 131                  }
 132                  else
 133                  {
 134                      $topic_tracking_info = get_complete_topic_tracking($post_info['forum_id'], $post_info['topic_id']);
 135                  }
 136  
 137                  $post_unread = (isset($topic_tracking_info[$post_info['topic_id']]) && $post_info['post_time'] > $topic_tracking_info[$post_info['topic_id']]) ? true : false;
 138  
 139                  // Process message, leave it uncensored
 140                  $message = $post_info['post_text'];
 141  
 142                  if ($post_info['bbcode_bitfield'])
 143                  {
 144                      include_once($phpbb_root_path . 'includes/bbcode.' . $phpEx);
 145                      $bbcode = new bbcode($post_info['bbcode_bitfield']);
 146                      $bbcode->bbcode_second_pass($message, $post_info['bbcode_uid'], $post_info['bbcode_bitfield']);
 147                  }
 148  
 149                  $message = bbcode_nl2br($message);
 150                  $message = smiley_text($message);
 151                  $report['report_text'] = make_clickable(bbcode_nl2br($report['report_text']));
 152  
 153                  if ($post_info['post_attachment'] && $auth->acl_get('u_download') && $auth->acl_get('f_download', $post_info['forum_id']))
 154                  {
 155                      $sql = 'SELECT *
 156                          FROM ' . ATTACHMENTS_TABLE . '
 157                          WHERE post_msg_id = ' . $post_id . '
 158                              AND in_message = 0
 159                          ORDER BY filetime DESC';
 160                      $result = $db->sql_query($sql);
 161  
 162                      while ($row = $db->sql_fetchrow($result))
 163                      {
 164                          $attachments[] = $row;
 165                      }
 166                      $db->sql_freeresult($result);
 167  
 168                      if (sizeof($attachments))
 169                      {
 170                          $update_count = array();
 171                          parse_attachments($post_info['forum_id'], $message, $attachments, $update_count);
 172                      }
 173  
 174                      // Display not already displayed Attachments for this post, we already parsed them. ;)
 175                      if (!empty($attachments))
 176                      {
 177                          $template->assign_var('S_HAS_ATTACHMENTS', true);
 178  
 179                          foreach ($attachments as $attachment)
 180                          {
 181                              $template->assign_block_vars('attachment', array(
 182                                  'DISPLAY_ATTACHMENT'    => $attachment)
 183                              );
 184                          }
 185                      }
 186                  }
 187  
 188                  $template->assign_vars(array(
 189                      'S_MCP_REPORT'            => true,
 190                      'S_CLOSE_ACTION'        => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=reports&amp;mode=report_details&amp;f=' . $post_info['forum_id'] . '&amp;p=' . $post_id),
 191                      'S_CAN_VIEWIP'            => $auth->acl_get('m_info', $post_info['forum_id']),
 192                      'S_POST_REPORTED'        => $post_info['post_reported'],
 193                      'S_POST_UNAPPROVED'        => !$post_info['post_approved'],
 194                      'S_POST_LOCKED'            => $post_info['post_edit_locked'],
 195                      'S_USER_NOTES'            => true,
 196  
 197                      'U_EDIT'                    => ($auth->acl_get('m_edit', $post_info['forum_id'])) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=edit&amp;f={$post_info['forum_id']}&amp;p={$post_info['post_id']}") : '',
 198                      'U_MCP_APPROVE'                => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=queue&amp;mode=approve_details&amp;f=' . $post_info['forum_id'] . '&amp;p=' . $post_id),
 199                      'U_MCP_REPORT'                => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=reports&amp;mode=report_details&amp;f=' . $post_info['forum_id'] . '&amp;p=' . $post_id),
 200                      'U_MCP_REPORTER_NOTES'        => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&amp;mode=user_notes&amp;u=' . $report['user_id']),
 201                      'U_MCP_USER_NOTES'            => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&amp;mode=user_notes&amp;u=' . $post_info['user_id']),
 202                      'U_MCP_WARN_REPORTER'        => ($auth->acl_get('m_warn')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=warn&amp;mode=warn_user&amp;u=' . $report['user_id']) : '',
 203                      'U_MCP_WARN_USER'            => ($auth->acl_get('m_warn')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=warn&amp;mode=warn_user&amp;u=' . $post_info['user_id']) : '',
 204                      'U_VIEW_FORUM'                => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $post_info['forum_id']),
 205                      'U_VIEW_POST'                => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $post_info['forum_id'] . '&amp;p=' . $post_info['post_id'] . '#p' . $post_info['post_id']),
 206                      'U_VIEW_TOPIC'                => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $post_info['forum_id'] . '&amp;t=' . $post_info['topic_id']),
 207  
 208                      'EDIT_IMG'                => $user->img('icon_post_edit', $user->lang['EDIT_POST']),
 209                      'MINI_POST_IMG'            => ($post_unread) ? $user->img('icon_post_target_unread', 'UNREAD_POST') : $user->img('icon_post_target', 'POST'),
 210                      'UNAPPROVED_IMG'        => $user->img('icon_topic_unapproved', $user->lang['POST_UNAPPROVED']),
 211  
 212                      'RETURN_REPORTS'            => sprintf($user->lang['RETURN_REPORTS'], '<a href="' . append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=reports' . (($post_info['post_reported']) ? '&amp;mode=reports' : '&amp;mode=reports_closed') . '&amp;start=' . $start . '&amp;f=' . $post_info['forum_id']) . '">', '</a>'),
 213                      'REPORTED_IMG'                => $user->img('icon_topic_reported', $user->lang['POST_REPORTED']),
 214                      'REPORT_DATE'                => $user->format_date($report['report_time']),
 215                      'REPORT_ID'                    => $report_id,
 216                      'REPORT_REASON_TITLE'        => $reason['title'],
 217                      'REPORT_REASON_DESCRIPTION'    => $reason['description'],
 218                      'REPORT_TEXT'                => $report['report_text'],
 219  
 220                      'POST_AUTHOR_FULL'        => get_username_string('full', $post_info['user_id'], $post_info['username'], $post_info['user_colour'], $post_info['post_username']),
 221                      'POST_AUTHOR_COLOUR'    => get_username_string('colour', $post_info['user_id'], $post_info['username'], $post_info['user_colour'], $post_info['post_username']),
 222                      'POST_AUTHOR'            => get_username_string('username', $post_info['user_id'], $post_info['username'], $post_info['user_colour'], $post_info['post_username']),
 223                      'U_POST_AUTHOR'            => get_username_string('profile', $post_info['user_id'], $post_info['username'], $post_info['user_colour'], $post_info['post_username']),
 224  
 225                      'REPORTER_FULL'                => get_username_string('full', $report['user_id'], $report['username'], $report['user_colour']),
 226                      'REPORTER_COLOUR'            => get_username_string('colour', $report['user_id'], $report['username'], $report['user_colour']),
 227                      'REPORTER_NAME'                => get_username_string('username', $report['user_id'], $report['username'], $report['user_colour']),
 228                      'U_VIEW_REPORTER_PROFILE'    => get_username_string('profile', $report['user_id'], $report['username'], $report['user_colour']),
 229  
 230                      'POST_PREVIEW'            => $message,
 231                      'POST_SUBJECT'            => ($post_info['post_subject']) ? $post_info['post_subject'] : $user->lang['NO_SUBJECT'],
 232                      'POST_DATE'                => $user->format_date($post_info['post_time']),
 233                      'POST_IP'                => $post_info['poster_ip'],
 234                      'POST_IPADDR'            => ($auth->acl_get('m_info', $post_info['forum_id']) && request_var('lookup', '')) ? @gethostbyaddr($post_info['poster_ip']) : '',
 235                      'POST_ID'                => $post_info['post_id'],
 236  
 237                      'U_LOOKUP_IP'            => ($auth->acl_get('m_info', $post_info['forum_id'])) ? $this->u_action . '&amp;r=' . $report_id . '&amp;p=' . $post_id . '&amp;f=' . $forum_id . '&amp;lookup=' . $post_info['poster_ip'] . '#ip' : '',
 238                  ));
 239  
 240                  $this->tpl_name = 'mcp_post';
 241  
 242              break;
 243  
 244              case 'reports':
 245              case 'reports_closed':
 246                  $topic_id = request_var('t', 0);
 247  
 248                  $forum_info = array();
 249                  $forum_list_reports = get_forum_list('m_report', false, true);
 250                  $forum_list_read = array_flip(get_forum_list('f_read', true, true)); // Flipped so we can isset() the forum IDs
 251  
 252                  // Remove forums we cannot read
 253                  foreach ($forum_list_reports as $k => $forum_data)
 254                  {
 255                      if (!isset($forum_list_read[$forum_data['forum_id']]))
 256                      {
 257                          unset($forum_list_reports[$k]);
 258                      }
 259                  }
 260                  unset($forum_list_read);
 261  
 262                  if ($topic_id)
 263                  {
 264                      $topic_info = get_topic_data(array($topic_id));
 265  
 266                      if (!sizeof($topic_info))
 267                      {
 268                          trigger_error('TOPIC_NOT_EXIST');
 269                      }
 270  
 271                      if ($forum_id != $topic_info[$topic_id]['forum_id'])
 272                      {
 273                          $topic_id = 0;
 274                      }
 275                      else
 276                      {
 277                          $topic_info = $topic_info[$topic_id];
 278                          $forum_id = (int) $topic_info['forum_id'];
 279                      }
 280                  }
 281  
 282                  $forum_list = array();
 283  
 284                  if (!$forum_id)
 285                  {
 286                      foreach ($forum_list_reports as $row)
 287                      {
 288                          $forum_list[] = $row['forum_id'];
 289                      }
 290  
 291                      if (!sizeof($forum_list))
 292                      {
 293                          trigger_error('NOT_MODERATOR');
 294                      }
 295  
 296                      $global_id = $forum_list[0];
 297  
 298                      $sql = 'SELECT SUM(forum_topics) as sum_forum_topics
 299                          FROM ' . FORUMS_TABLE . '
 300                          WHERE ' . $db->sql_in_set('forum_id', $forum_list);
 301                      $result = $db->sql_query($sql);
 302                      $forum_info['forum_topics'] = (int) $db->sql_fetchfield('sum_forum_topics');
 303                      $db->sql_freeresult($result);
 304                  }
 305                  else
 306                  {
 307                      $forum_info = get_forum_data(array($forum_id), 'm_report');
 308  
 309                      if (!sizeof($forum_info))
 310                      {
 311                          trigger_error('NOT_MODERATOR');
 312                      }
 313  
 314                      $forum_info = $forum_info[$forum_id];
 315                      $forum_list = array($forum_id);
 316                      $global_id = $forum_id;
 317                  }
 318  
 319                  $forum_list[] = 0;
 320                  $forum_data = array();
 321  
 322                  $forum_options = '<option value="0"' . (($forum_id == 0) ? ' selected="selected"' : '') . '>' . $user->lang['ALL_FORUMS'] . '</option>';
 323                  foreach ($forum_list_reports as $row)
 324                  {
 325                      $forum_options .= '<option value="' . $row['forum_id'] . '"' . (($forum_id == $row['forum_id']) ? ' selected="selected"' : '') . '>' . str_repeat('&nbsp; &nbsp;', $row['padding']) . $row['forum_name'] . '</option>';
 326                      $forum_data[$row['forum_id']] = $row;
 327                  }
 328                  unset($forum_list_reports);
 329  
 330                  $sort_days = $total = 0;
 331                  $sort_key = $sort_dir = '';
 332                  $sort_by_sql = $sort_order_sql = array();
 333                  mcp_sorting($mode, $sort_days, $sort_key, $sort_dir, $sort_by_sql, $sort_order_sql, $total, $forum_id, $topic_id);
 334  
 335                  $forum_topics = ($total == -1) ? $forum_info['forum_topics'] : $total;
 336                  $limit_time_sql = ($sort_days) ? 'AND r.report_time >= ' . (time() - ($sort_days * 86400)) : '';
 337  
 338                  if ($mode == 'reports')
 339                  {
 340                      $report_state = 'AND p.post_reported = 1 AND r.report_closed = 0';
 341                  }
 342                  else
 343                  {
 344                      $report_state = 'AND r.report_closed = 1';
 345                  }
 346  
 347                  $sql = 'SELECT r.report_id
 348                      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' : '') . '
 349                      WHERE ' . $db->sql_in_set('p.forum_id', $forum_list) . "
 350                          $report_state
 351                          AND r.post_id = p.post_id
 352                          " . (($sort_order_sql[0] == 'u') ? 'AND u.user_id = p.poster_id' : '') . '
 353                          ' . (($sort_order_sql[0] == 'r') ? 'AND ru.user_id = r.user_id' : '') . '
 354                          ' . (($topic_id) ? 'AND p.topic_id = ' . $topic_id : '') . "
 355                          AND t.topic_id = p.topic_id
 356                          AND r.pm_id = 0
 357                          $limit_time_sql
 358                      ORDER BY $sort_order_sql";
 359                  $result = $db->sql_query_limit($sql, $config['topics_per_page'], $start);
 360  
 361                  $i = 0;
 362                  $report_ids = array();
 363                  while ($row = $db->sql_fetchrow($result))
 364                  {
 365                      $report_ids[] = $row['report_id'];
 366                      $row_num[$row['report_id']] = $i++;
 367                  }
 368                  $db->sql_freeresult($result);
 369  
 370                  if (sizeof($report_ids))
 371                  {
 372                      $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
 373                          FROM ' . REPORTS_TABLE . ' r, ' . POSTS_TABLE . ' p, ' . TOPICS_TABLE . ' t, ' . USERS_TABLE . ' u, ' . USERS_TABLE . ' ru
 374                          WHERE ' . $db->sql_in_set('r.report_id', $report_ids) . '
 375                              AND t.topic_id = p.topic_id
 376                              AND r.post_id = p.post_id
 377                              AND u.user_id = p.poster_id
 378                              AND ru.user_id = r.user_id
 379                              AND r.pm_id = 0
 380                          ORDER BY ' . $sort_order_sql;
 381                      $result = $db->sql_query($sql);
 382  
 383                      $report_data = $rowset = array();
 384                      while ($row = $db->sql_fetchrow($result))
 385                      {
 386                          $global_topic = ($row['forum_id']) ? false : true;
 387                          if ($global_topic)
 388                          {
 389                              $row['forum_id'] = $global_id;
 390                          }
 391  
 392                          $template->assign_block_vars('postrow', array(
 393                              'U_VIEWFORUM'                => (!$global_topic) ? append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']) : '',
 394                              'U_VIEWPOST'                => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&amp;p=' . $row['post_id']) . '#p' . $row['post_id'],
 395                              'U_VIEW_DETAILS'            => append_sid("{$phpbb_root_path}mcp.$phpEx", "i=reports&amp;start=$start&amp;mode=report_details&amp;f={$row['forum_id']}&amp;r={$row['report_id']}"),
 396  
 397                              'POST_AUTHOR_FULL'        => get_username_string('full', $row['poster_id'], $row['username'], $row['user_colour'], $row['post_username']),
 398                              'POST_AUTHOR_COLOUR'    => get_username_string('colour', $row['poster_id'], $row['username'], $row['user_colour'], $row['post_username']),
 399                              'POST_AUTHOR'            => get_username_string('username', $row['poster_id'], $row['username'], $row['user_colour'], $row['post_username']),
 400                              'U_POST_AUTHOR'            => get_username_string('profile', $row['poster_id'], $row['username'], $row['user_colour'], $row['post_username']),
 401  
 402                              'REPORTER_FULL'            => get_username_string('full', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']),
 403                              'REPORTER_COLOUR'        => get_username_string('colour', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']),
 404                              'REPORTER'                => get_username_string('username', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']),
 405                              'U_REPORTER'            => get_username_string('profile', $row['reporter_id'], $row['reporter_name'], $row['reporter_colour']),
 406  
 407                              'FORUM_NAME'    => (!$global_topic) ? $forum_data[$row['forum_id']]['forum_name'] : $user->lang['GLOBAL_ANNOUNCEMENT'],
 408                              'POST_ID'        => $row['post_id'],
 409                              'POST_SUBJECT'    => ($row['post_subject']) ? $row['post_subject'] : $user->lang['NO_SUBJECT'],
 410                              'POST_TIME'        => $user->format_date($row['post_time']),
 411                              'REPORT_ID'        => $row['report_id'],
 412                              'REPORT_TIME'    => $user->format_date($row['report_time']),
 413                              'TOPIC_TITLE'    => $row['topic_title'])
 414                          );
 415                      }
 416                      $db->sql_freeresult($result);
 417                      unset($report_ids, $row);
 418                  }
 419  
 420                  // Now display the page
 421                  $template->assign_vars(array(
 422                      'L_EXPLAIN'                => ($mode == 'reports') ? $user->lang['MCP_REPORTS_OPEN_EXPLAIN'] : $user->lang['MCP_REPORTS_CLOSED_EXPLAIN'],
 423                      'L_TITLE'                => ($mode == 'reports') ? $user->lang['MCP_REPORTS_OPEN'] : $user->lang['MCP_REPORTS_CLOSED'],
 424                      'L_ONLY_TOPIC'            => ($topic_id) ? sprintf($user->lang['ONLY_TOPIC'], $topic_info['topic_title']) : '',
 425  
 426                      'S_MCP_ACTION'            => $this->u_action,
 427                      'S_FORUM_OPTIONS'        => $forum_options,
 428                      'S_CLOSED'                => ($mode == 'reports_closed') ? true : false,
 429  
 430                      'PAGINATION'            => generate_pagination($this->u_action . "&amp;f=$forum_id&amp;t=$topic_id&amp;st=$sort_days&amp;sk=$sort_key&amp;sd=$sort_dir", $total, $config['topics_per_page'], $start),
 431                      'PAGE_NUMBER'            => on_page($total, $config['topics_per_page'], $start),
 432                      'TOPIC_ID'                => $topic_id,
 433                      'TOTAL'                    => $total,
 434                      'TOTAL_REPORTS'            => ($total == 1) ? $user->lang['LIST_REPORT'] : sprintf($user->lang['LIST_REPORTS'], $total),
 435                      )
 436                  );
 437  
 438                  $this->tpl_name = 'mcp_reports';
 439              break;
 440          }
 441      }
 442  }
 443  
 444  /**
 445  * Closes a report
 446  */
 447  function close_report($report_id_list, $mode, $action, $pm = false)
 448  {
 449      global $db, $template, $user, $config, $auth;
 450      global $phpEx, $phpbb_root_path;
 451  
 452      $pm_where = ($pm) ? ' AND r.post_id = 0 ' : ' AND r.pm_id = 0 ';
 453      $id_column = ($pm) ? 'pm_id' : 'post_id';
 454      $module = ($pm) ? 'pm_reports' : 'reports';
 455      $pm_prefix = ($pm) ? 'PM_' : '';
 456  
 457      $sql = "SELECT r.$id_column
 458          FROM " . REPORTS_TABLE . ' r
 459          WHERE ' . $db->sql_in_set('r.report_id', $report_id_list) . $pm_where;
 460      $result = $db->sql_query($sql);
 461  
 462      $post_id_list = array();
 463      while ($row = $db->sql_fetchrow($result))
 464      {
 465          $post_id_list[] = $row[$id_column];
 466      }
 467      $post_id_list = array_unique($post_id_list);
 468  
 469      if ($pm)
 470      {
 471          if (!$auth->acl_getf_global('m_report'))
 472          {
 473              trigger_error('NOT_AUTHORISED');
 474          }
 475      }
 476      else
 477      {
 478          if (!check_ids($post_id_list, POSTS_TABLE, 'post_id', array('m_report')))
 479          {
 480              trigger_error('NOT_AUTHORISED');
 481          }
 482      }
 483  
 484      if ($action == 'delete' && strpos($user->data['session_page'], 'mode=report_details') !== false)
 485      {
 486          $redirect = request_var('redirect', build_url(array('mode', 'r', 'quickmod')) . '&amp;mode=reports');
 487      }
 488      elseif ($action == 'delete' && strpos($user->data['session_page'], 'mode=pm_report_details') !== false)
 489      {
 490          $redirect = request_var('redirect', build_url(array('mode', 'r', 'quickmod')) . '&amp;mode=pm_reports');
 491      }
 492      else if ($action == 'close' && !request_var('r', 0))
 493      {
 494          $redirect = request_var('redirect', build_url(array('mode', 'p', 'quickmod')) . '&amp;mode=' . $module);
 495      }
 496      else
 497      {
 498          $redirect = request_var('redirect', build_url(array('quickmod')));
 499      }
 500      $success_msg = '';
 501      $forum_ids = array();
 502      $topic_ids = array();
 503  
 504      $s_hidden_fields = build_hidden_fields(array(
 505          'i'                    => $module,
 506          'mode'                => $mode,
 507          'report_id_list'    => $report_id_list,
 508          'action'            => $action,
 509          'redirect'            => $redirect)
 510      );
 511  
 512      if (confirm_box(true))
 513      {
 514          $post_info = ($pm) ? get_pm_data($post_id_list) : get_post_data($post_id_list, 'm_report');
 515  
 516          $sql = "SELECT r.report_id, r.$id_column, 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
 517              FROM " . REPORTS_TABLE . ' r, ' . USERS_TABLE . ' u
 518              WHERE ' . $db->sql_in_set('r.report_id', $report_id_list) . '
 519                  ' . (($action == 'close') ? 'AND r.report_closed = 0' : '') . '
 520                  AND r.user_id = u.user_id' . $pm_where;
 521          $result = $db->sql_query($sql);
 522  
 523          $reports = $close_report_posts = $close_report_topics = $notify_reporters = $report_id_list = array();
 524          while ($report = $db->sql_fetchrow($result))
 525          {
 526              $reports[$report['report_id']] = $report;
 527              $report_id_list[] = $report['report_id'];
 528  
 529              if (!$report['report_closed'])
 530              {
 531                  $close_report_posts[] = $report[$id_column];
 532  
 533                  if (!$pm)
 534                  {
 535                      $close_report_topics[] = $post_info[$report['post_id']]['topic_id'];
 536                  }
 537              }
 538  
 539              if ($report['user_notify'] && !$report['report_closed'])
 540              {
 541                  $notify_reporters[$report['report_id']] = &$reports[$report['report_id']];
 542              }
 543          }
 544          $db->sql_freeresult($result);
 545  
 546          if (sizeof($reports))
 547          {
 548              $close_report_posts = array_unique($close_report_posts);
 549              $close_report_topics = array_unique($close_report_topics);
 550  
 551              if (!$pm && sizeof($close_report_posts))
 552              {
 553                  // Get a list of topics that still contain reported posts
 554                  $sql = 'SELECT DISTINCT topic_id
 555                      FROM ' . POSTS_TABLE . '
 556                      WHERE ' . $db->sql_in_set('topic_id', $close_report_topics) . '
 557                          AND post_reported = 1
 558                          AND ' . $db->sql_in_set('post_id', $close_report_posts, true);
 559                  $result = $db->sql_query($sql);
 560  
 561                  $keep_report_topics = array();
 562                  while ($row = $db->sql_fetchrow($result))
 563                  {
 564                      $keep_report_topics[] = $row['topic_id'];
 565                  }
 566                  $db->sql_freeresult($result);
 567  
 568                  $close_report_topics = array_diff($close_report_topics, $keep_report_topics);
 569                  unset($keep_report_topics);
 570              }
 571  
 572              $db->sql_transaction('begin');
 573  
 574              if ($action == 'close')
 575              {
 576                  $sql = 'UPDATE ' . REPORTS_TABLE . '
 577                      SET report_closed = 1
 578                      WHERE ' . $db->sql_in_set('report_id', $report_id_list);
 579              }
 580              else
 581              {
 582                  $sql = 'DELETE FROM ' . REPORTS_TABLE . '
 583                      WHERE ' . $db->sql_in_set('report_id', $report_id_list);
 584              }
 585              $db->sql_query($sql);
 586  
 587  
 588              if (sizeof($close_report_posts))
 589              {
 590                  if ($pm)
 591                  {
 592                      $sql = 'UPDATE ' . PRIVMSGS_TABLE . '
 593                          SET message_reported = 0
 594                          WHERE ' . $db->sql_in_set('msg_id', $close_report_posts);
 595                      $db->sql_query($sql);
 596  
 597                      if ($action == 'delete')
 598                      {
 599                          delete_pm(ANONYMOUS, $close_report_posts, PRIVMSGS_INBOX);
 600                      }
 601                  }
 602                  else
 603                  {
 604                      $sql = 'UPDATE ' . POSTS_TABLE . '
 605                          SET post_reported = 0
 606                          WHERE ' . $db->sql_in_set('post_id', $close_report_posts);
 607                      $db->sql_query($sql);
 608  
 609                      if (sizeof($close_report_topics))
 610                      {
 611                          $sql = 'UPDATE ' . TOPICS_TABLE . '
 612                              SET topic_reported = 0
 613                              WHERE ' . $db->sql_in_set('topic_id', $close_report_topics) . '
 614                                  OR ' . $db->sql_in_set('topic_moved_id', $close_report_topics);
 615                          $db->sql_query($sql);
 616                      }
 617                  }
 618              }
 619  
 620              $db->sql_transaction('commit');
 621          }
 622          unset($close_report_posts, $close_report_topics);
 623  
 624          foreach ($reports as $report)
 625          {
 626              if ($pm)
 627              {
 628                  add_log('mod', 0, 0, 'LOG_PM_REPORT_' .  strtoupper($action) . 'D', $post_info[$report['pm_id']]['message_subject']);
 629              }
 630              else
 631              {
 632                  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']);
 633              }
 634          }
 635  
 636          $messenger = new messenger();
 637  
 638          // Notify reporters
 639          if (sizeof($notify_reporters))
 640          {
 641              foreach ($notify_reporters as $report_id => $reporter)
 642              {
 643                  if ($reporter['user_id'] == ANONYMOUS)
 644                  {
 645                      continue;
 646                  }
 647  
 648                  $post_id = $reporter[$id_column];
 649  
 650                  $messenger->template((($pm) ? 'pm_report_' : 'report_') . $action . 'd', $reporter['user_lang']);
 651  
 652                  $messenger->to($reporter['user_email'], $reporter['username']);
 653                  $messenger->im($reporter['user_jabber'], $reporter['username']);
 654  
 655                  if ($pm)
 656                  {
 657                      $messenger->assign_vars(array(
 658                          'USERNAME'        => htmlspecialchars_decode($reporter['username']),
 659                          'CLOSER_NAME'    => htmlspecialchars_decode($user->data['username']),
 660                          'PM_SUBJECT'    => htmlspecialchars_decode(censor_text($post_info[$post_id]['message_subject'])),
 661                      ));
 662                  }
 663                  else
 664                  {
 665                      $messenger->assign_vars(array(
 666                          'USERNAME'        => htmlspecialchars_decode($reporter['username']),
 667                          'CLOSER_NAME'    => htmlspecialchars_decode($user->data['username']),
 668                          'POST_SUBJECT'    => htmlspecialchars_decode(censor_text($post_info[$post_id]['post_subject'])),
 669                          'TOPIC_TITLE'    => htmlspecialchars_decode(censor_text($post_info[$post_id]['topic_title'])))
 670                      );
 671                  }
 672  
 673                  $messenger->send($reporter['user_notify_type']);
 674              }
 675          }
 676  
 677          if (!$pm)
 678          {
 679              foreach ($post_info as $post)
 680              {
 681                  $forum_ids[$post['forum_id']] = $post['forum_id'];
 682                  $topic_ids[$post['topic_id']] = $post['topic_id'];
 683              }
 684          }
 685  
 686          unset($notify_reporters, $post_info, $reports);
 687  
 688          $messenger->save_queue();
 689  
 690          $success_msg = (sizeof($report_id_list) == 1) ? "{$pm_prefix}REPORT_" . strtoupper($action) . 'D_SUCCESS' : "{$pm_prefix}REPORTS_" . strtoupper($action) . 'D_SUCCESS';
 691      }
 692      else
 693      {
 694          confirm_box(false, $user->lang[strtoupper($action) . "_{$pm_prefix}REPORT" . ((sizeof($report_id_list) == 1) ? '' : 'S') . '_CONFIRM'], $s_hidden_fields);
 695      }
 696  
 697      $redirect = request_var('redirect', "index.$phpEx");
 698      $redirect = reapply_sid($redirect);
 699  
 700      if (!$success_msg)
 701      {
 702          redirect($redirect);
 703      }
 704      else
 705      {
 706          meta_refresh(3, $redirect);
 707  
 708          $return_forum = '';
 709          $return_topic = '';
 710  
 711          if (!$pm)
 712          {
 713              if (sizeof($forum_ids) === 1)
 714              {
 715                  $return_forum = sprintf($user->lang['RETURN_FORUM'], '<a href="' . append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . current($forum_ids)) . '">', '</a>') . '<br /><br />';
 716              }
 717  
 718              if (sizeof($topic_ids) === 1)
 719              {
 720                  $return_topic = sprintf($user->lang['RETURN_TOPIC'], '<a href="' . append_sid("{$phpbb_root_path}viewtopic.$phpEx", 't=' . current($topic_ids) . '&amp;f=' . current($forum_ids)) . '">', '</a>') . '<br /><br />';
 721              }
 722          }
 723  
 724          trigger_error($user->lang[$success_msg] . '<br /><br />' . $return_forum . $return_topic . sprintf($user->lang['RETURN_PAGE'], "<a href=\"$redirect\">", '</a>'));
 725      }
 726  }
 727  
 728  ?>


Generated: Wed Oct 2 15:03:47 2013 Cross-referenced by PHPXref 0.7.1