1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602:
<?php
if (!defined('SMF'))
die('No direct access...');
function ReportedContent()
{
global $txt, $context, $user_info, $smcFunc;
global $sourcedir, $scripturl;
$context['report_type'] = substr($_GET['area'], 8);
loadLanguage('ModerationCenter');
loadTemplate('ReportedContent');
require_once($sourcedir . '/Subs-ReportedContent.php');
$context['report_post_action'] = !empty($_SESSION['rc_confirmation']) ? $_SESSION['rc_confirmation'] : array();
unset($_SESSION['rc_confirmation']);
$context['page_title'] = $txt['mc_reported_' . $context['report_type']];
$context[$context['moderation_menu_name']]['tab_data'] = array(
'title' => $txt['mc_reported_' . $context['report_type']],
'help' => '',
'description' => $txt['mc_reported_' . $context['report_type'] . '_desc'],
);
if ($context['report_type'] == 'members' || $user_info['mod_cache']['bq'] == '0=1')
isAllowedTo('moderate_forum');
$subActions = array(
'show' => 'ShowReports',
'closed' => 'ShowClosedReports',
'handle' => 'HandleReport',
'details' => 'ReportDetails',
'handlecomment' => 'HandleComment',
'editcomment' => 'EditComment',
);
call_integration_hook('integrate_reported_' . $context['report_type'], array(&$subActions));
if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]))
$context['sub_action'] = $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_REQUEST['sa']), ENT_QUOTES);
else
$context['sub_action'] = 'show';
call_helper($subActions[$context['sub_action']]);
if ($context['sub_action'] == 'show' || $context['sub_action'] == 'closed')
{
foreach ($context['reports'] as $key => $report)
{
$context['reports'][$key]['quickbuttons'] = array(
'details' => array(
'label' => $txt['mc_reportedp_details'],
'href' => $report['report_href'],
'icon' => 'details',
),
'ignore' => array(
'label' => $report['ignore'] ? $txt['mc_reportedp_unignore'] : $txt['mc_reportedp_ignore'],
'href' => $scripturl.'?action=moderate;area=reported'.$context['report_type'].';sa=handle;ignore='.(int)!$report['ignore'].';rid='.$report['id'].';start='.$context['start'].';'.$context['session_var'].'='.$context['session_id'].';'.$context['mod-report-ignore_token_var'].'='.$context['mod-report-ignore_token'],
'javascript' => !$report['ignore'] ? ' class="you_sure" data-confirm="' . $txt['mc_reportedp_ignore_confirm'] . '"' : '',
'icon' => 'ignore'
),
'close' => array(
'label' => $context['view_closed'] ? $txt['mc_reportedp_open'] : $txt['mc_reportedp_close'],
'href' => $scripturl.'?action=moderate;area=reported'.$context['report_type'].';sa=handle;closed='.(int)!$report['closed'].';rid='.$report['id'].';start='.$context['start'].';'.$context['session_var'].'='.$context['session_id'].';'.$context['mod-report-closed_token_var'].'='.$context['mod-report-closed_token'],
'icon' => $context['view_closed'] ? 'folder' : 'close',
),
);
if ($context['report_type'] == 'posts')
$context['reports'][$key]['quickbuttons']['delete'] = array(
'label' => $txt['mc_reportedp_delete'],
'href' => $scripturl.'?action=deletemsg;topic='.$report['topic']['id'].'.0;msg='.$report['topic']['id_msg'].';modcenter;'.$context['session_var'].'='.$context['session_id'],
'javascript' => 'data-confirm="'.$txt['mc_reportedp_delete_confirm'].'" class="you_sure"',
'icon' => 'delete',
'show' => !$report['closed'] && (is_array($context['report_remove_any_boards']) && in_array($report['topic']['id_board'], $context['report_remove_any_boards']))
);
if ($context['report_type'] == 'members')
$ban_link = $scripturl.'?action=admin;area=ban;sa=add;u='.$report['user']['id'].';'.$context['session_var'].'='.$context['session_id'];
else
$ban_link = $scripturl.'?action=admin;area=ban;sa=add'.(!empty($report['author']['id']) ? ';u='.$report['author']['id'] : ';msg='.$report['topic']['id_msg']).';'.$context['session_var'].'='.$context['session_id'];
$context['reports'][$key]['quickbuttons'] += array(
'ban' => array(
'label' => $txt['mc_reportedp_ban'],
'href' => $ban_link,
'icon' => 'error',
'show' => !$report['closed'] && !empty($context['report_manage_bans']) && ($context['report_type'] == 'posts' || $context['report_type'] == 'members' && !empty($report['user']['id']))
),
'quickmod' => array(
'content' => '<input type="checkbox" name="close[]" value="'.$report['id'].'">',
'show' => !$context['view_closed']
)
);
}
}
}
function ShowReports()
{
global $context, $scripturl;
$context['view_closed'] = 0;
$context['sub_template'] = 'reported_' . $context['report_type'];
$context['start'] = (int) isset($_GET['start']) ? $_GET['start'] : 0;
$context['total_reports'] = countReports($context['view_closed']);
$context['reports_how_many'] = 10;
$context['page_index'] = constructPageIndex($scripturl . '?action=moderate;area=reported' . $context['report_type'] . ';sa=show', $context['start'], $context['total_reports'], $context['reports_how_many']);
$context['reports'] = getReports($context['view_closed']);
if (isset($_POST['close']) && isset($_POST['close_selected']))
{
checkSession('post');
validateToken('mod-report-close-all');
$toClose = array();
foreach ($_POST['close'] as $rid)
$toClose[] = (int) $rid;
if (!empty($toClose))
updateReport('closed', 1, $toClose);
$_SESSION['rc_confirmation'] = 'close_all';
redirectexit($scripturl . '?action=moderate;area=reported' . $context['report_type']);
}
createToken('mod-report-close-all');
createToken('mod-report-ignore', 'get');
createToken('mod-report-closed', 'get');
}
function ShowClosedReports()
{
global $context, $scripturl;
$context['view_closed'] = 1;
$context['sub_template'] = 'reported_' . $context['report_type'];
$context['start'] = (int) isset($_GET['start']) ? $_GET['start'] : 0;
$context['total_reports'] = countReports($context['view_closed']);
$context['reports_how_many'] = 10;
$context['page_index'] = constructPageIndex($scripturl . '?action=moderate;area=reported' . $context['report_type'] . ';sa=closed', $context['start'], $context['total_reports'], $context['reports_how_many']);
$context['reports'] = getReports($context['view_closed']);
createToken('mod-report-ignore', 'get');
createToken('mod-report-closed', 'get');
}
function ReportDetails()
{
global $context, $sourcedir, $scripturl, $txt;
if (empty($_REQUEST['rid']))
fatal_lang_error('mc_reportedp_none_found');
$report_id = (int) $_REQUEST['rid'];
$report = getReportDetails($report_id);
if (!$report)
fatal_lang_error('mc_no_modreport_found');
$context['report'] = array(
'id' => $report['id_report'],
'report_href' => $scripturl . '?action=moderate;area=reported' . $context['report_type'] . ';rid=' . $report['id_report'],
'comments' => array(),
'mod_comments' => array(),
'time_started' => timeformat($report['time_started']),
'last_updated' => timeformat($report['time_updated']),
'num_reports' => $report['num_reports'],
'closed' => $report['closed'],
'ignore' => $report['ignore_all']
);
if ($context['report_type'] == 'members')
{
$extraDetails = array(
'user' => array(
'id' => $report['id_user'],
'name' => $report['user_name'],
'link' => $report['id_user'] ? '<a href="' . $scripturl . '?action=profile;u=' . $report['id_user'] . '">' . $report['user_name'] . '</a>' : $report['user_name'],
'href' => $scripturl . '?action=profile;u=' . $report['id_user'],
),
);
}
else
{
$extraDetails = array(
'topic_id' => $report['id_topic'],
'board_id' => $report['id_board'],
'message_id' => $report['id_msg'],
'message_href' => $scripturl . '?msg=' . $report['id_msg'],
'message_link' => '<a href="' . $scripturl . '?msg=' . $report['id_msg'] . '">' . $report['subject'] . '</a>',
'author' => array(
'id' => $report['id_author'],
'name' => $report['author_name'],
'link' => $report['id_author'] ? '<a href="' . $scripturl . '?action=profile;u=' . $report['id_author'] . '">' . $report['author_name'] . '</a>' : $report['author_name'],
'href' => $scripturl . '?action=profile;u=' . $report['id_author'],
),
'subject' => $report['subject'],
'body' => parse_bbc($report['body']),
);
}
$context['report'] = array_merge($context['report'], $extraDetails);
$reportComments = getReportComments($report_id);
if (!empty($reportComments))
$context['report'] = array_merge($context['report'], $reportComments);
require_once($sourcedir . '/Modlog.php');
require_once($sourcedir . '/Subs-List.php');
loadLanguage('Modlog');
if ($context['report_type'] == 'members')
{
$user_id_length = strlen((string) $context['report']['user']['id']);
$member = 's:6:"member";s:' . $user_id_length . ':"' . $context['report']['user']['id'] . '";}';
$params = array(
'lm.extra LIKE {raw:member}
AND lm.action LIKE {raw:report}',
array('member' => '\'%' . $member . '\'', 'report' => '\'%_user_report\''),
1,
true,
);
}
else
{
$params = array(
'lm.id_topic = {int:id_topic}
AND lm.id_board != {int:not_a_reported_post}',
array('id_topic' => $context['report']['topic_id'], 'not_a_reported_post' => 0),
1,
);
}
$listOptions = array(
'id' => 'moderation_actions_list',
'title' => $txt['mc_modreport_modactions'],
'items_per_page' => 15,
'no_items_label' => $txt['modlog_no_entries_found'],
'base_href' => $scripturl . '?action=moderate;area=reported' . $context['report_type'] . ';sa=details;rid=' . $context['report']['id'],
'default_sort_col' => 'time',
'get_items' => array(
'function' => 'list_getModLogEntries',
'params' => $params,
),
'get_count' => array(
'function' => 'list_getModLogEntryCount',
'params' => $params,
),
'columns' => array(
'action' => array(
'header' => array(
'value' => $txt['modlog_action'],
),
'data' => array(
'db' => 'action_text',
'class' => 'smalltext',
),
'sort' => array(
'default' => 'lm.action',
'reverse' => 'lm.action DESC',
),
),
'time' => array(
'header' => array(
'value' => $txt['modlog_date'],
),
'data' => array(
'db' => 'time',
'class' => 'smalltext',
),
'sort' => array(
'default' => 'lm.log_time',
'reverse' => 'lm.log_time DESC',
),
),
'moderator' => array(
'header' => array(
'value' => $txt['modlog_member'],
),
'data' => array(
'db' => 'moderator_link',
'class' => 'smalltext',
),
'sort' => array(
'default' => 'mem.real_name',
'reverse' => 'mem.real_name DESC',
),
),
'position' => array(
'header' => array(
'value' => $txt['modlog_position'],
),
'data' => array(
'db' => 'position',
'class' => 'smalltext',
),
'sort' => array(
'default' => 'mg.group_name',
'reverse' => 'mg.group_name DESC',
),
),
'ip' => array(
'header' => array(
'value' => $txt['modlog_ip'],
),
'data' => array(
'db' => 'ip',
'class' => 'smalltext',
),
'sort' => array(
'default' => 'lm.ip',
'reverse' => 'lm.ip DESC',
),
),
),
);
createList($listOptions);
if ($context['report']['closed'])
$context[$context['moderation_menu_name']]['current_subsection'] = 'closed';
if ($context['report_type'] == 'members')
{
$context['page_title'] = sprintf($txt['mc_viewmemberreport'], $context['report']['user']['name']);
$context['sub_template'] = 'viewmemberreport';
}
else
{
$context['page_title'] = sprintf($txt['mc_viewmodreport'], $context['report']['subject'], $context['report']['author']['name']);
$context['sub_template'] = 'viewmodreport';
}
createToken('mod-reportC-add');
createToken('mod-reportC-delete', 'get');
createToken('mod-report-ignore', 'get');
createToken('mod-report-closed', 'get');
}
function HandleComment()
{
global $smcFunc, $scripturl, $user_info, $context;
if (empty($_REQUEST['rid']))
fatal_lang_error('mc_reportedp_none_found');
$report_id = (int) $_REQUEST['rid'];
if (isset($_POST['add_comment']) && !empty($_POST['mod_comment']))
{
checkSession();
validateToken('mod-reportC-add');
$new_comment = trim($smcFunc['htmlspecialchars']($_POST['mod_comment']));
saveModComment($report_id, array($report_id, $new_comment, time()));
$_SESSION['rc_confirmation'] = 'message_saved';
}
if (isset($_REQUEST['delete']) && isset($_REQUEST['mid']))
{
checkSession('get');
validateToken('mod-reportC-delete', 'get');
if (empty($_REQUEST['mid']))
fatal_lang_error('mc_reportedp_comment_none_found');
$comment_id = (int) $_REQUEST['mid'];
$comment = getCommentModDetails($comment_id);
if (empty($comment))
fatal_lang_error('report_action_message_delete_issue');
$comment_owner = $user_info['id'] == $comment['id_member'];
if (!allowedTo('admin_forum') && !$comment_owner)
fatal_lang_error('report_action_message_delete_cannot');
deleteModComment($comment_id);
$_SESSION['rc_confirmation'] = 'message_deleted';
}
redirectexit($scripturl . '?action=moderate;area=reported' . $context['report_type'] . ';sa=details;rid=' . $report_id);
}
function EditComment()
{
global $smcFunc, $context, $txt, $scripturl, $user_info;
checkSession(isset($_REQUEST['save']) ? 'post' : 'get');
if (empty($_REQUEST['rid']))
fatal_lang_error('mc_reportedp_none_found');
if (empty($_REQUEST['mid']))
fatal_lang_error('mc_reportedp_comment_none_found');
$context['report_id'] = (int) $_REQUEST['rid'];
$context['comment_id'] = (int) $_REQUEST['mid'];
$context['comment'] = getCommentModDetails($context['comment_id']);
if (empty($context['comment']))
fatal_lang_error('mc_reportedp_comment_none_found');
$context['page_title'] = $txt['mc_reported_posts'];
$context['sub_template'] = 'edit_comment';
if (isset($_REQUEST['save']) && isset($_POST['edit_comment']) && !empty($_POST['mod_comment']))
{
validateToken('mod-reportC-edit');
if (empty($context['comment']))
fatal_lang_error('report_action_message_edit_issue');
$comment_owner = $user_info['id'] == $context['comment']['id_member'];
if (!allowedTo('admin_forum') && !$comment_owner)
fatal_lang_error('report_action_message_edit_cannot');
$edited_comment = trim($smcFunc['htmlspecialchars']($_POST['mod_comment']));
editModComment($context['comment_id'], $edited_comment);
$_SESSION['rc_confirmation'] = 'message_edited';
redirectexit($scripturl . '?action=moderate;area=reported' . $context['report_type'] . ';sa=details;rid=' . $context['report_id']);
}
createToken('mod-reportC-edit');
}
function HandleReport()
{
global $scripturl, $context;
checkSession('get');
if (empty($_GET['rid']) && (!isset($_GET['ignore']) || !isset($_GET['closed'])))
fatal_lang_error('mc_reportedp_none_found');
$action = isset($_GET['ignore']) ? 'ignore' : 'closed';
validateToken('mod-report-' . $action, 'get');
$value = (int) $_GET[$action];
$message = $action == 'ignore' ? ($value ? 'ignore' : 'unignore') : ($value ? 'close' : 'open');
$report_id = (int) $_REQUEST['rid'];
updateReport($action, $value, $report_id);
$_SESSION['rc_confirmation'] = $message;
redirectexit($scripturl . '?action=moderate;area=reported' . $context['report_type']);
}
?>