Gazelle/sections/reports/takeresolve.php

64 lines
1.4 KiB
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
authorize();
2013-04-15 08:00:54 +00:00
if (!check_perms('admin_reports') && !check_perms('project_team') && !check_perms('site_moderate_forums')) {
2011-03-28 14:21:28 +00:00
error(403);
}
2013-04-15 08:00:54 +00:00
if (empty($_POST['reportid']) && !is_number($_POST['reportid'])) {
2011-03-28 14:21:28 +00:00
error(403);
}
$ReportID = $_POST['reportid'];
2013-07-04 08:00:56 +00:00
$DB->query("
SELECT Type
FROM reports
WHERE ID = $ReportID");
2011-03-28 14:21:28 +00:00
list($Type) = $DB->next_record();
2013-04-15 08:00:54 +00:00
if (!check_perms('admin_reports')) {
if (check_perms('site_moderate_forums')) {
2013-08-28 23:08:41 +00:00
if (!in_array($Type, array('comment', 'post', 'thread'))) {
error($Type);
}
2013-04-15 08:00:54 +00:00
} elseif (check_perms('project_team')) {
if ($Type != 'request_update') {
error(403);
}
2011-03-28 14:21:28 +00:00
}
}
2013-07-04 08:00:56 +00:00
$DB->query("
UPDATE reports
SET Status = 'Resolved',
ResolvedTime = '".sqltime()."',
ResolverID = '".$LoggedUser['ID']."'
WHERE ID = '".db_string($ReportID)."'");
$Channels = array();
2013-04-15 08:00:54 +00:00
if ($Type == 'request_update') {
$Channels[] = '#requestedits';
2011-03-28 14:21:28 +00:00
$Cache->decrement('num_update_reports');
}
2013-08-28 23:08:41 +00:00
if (in_array($Type, array('comment', 'post', 'thread'))) {
2013-04-15 08:00:54 +00:00
$Channels[] = '#forumreports';
$Cache->decrement('num_forum_reports');
}
2013-07-04 08:00:56 +00:00
$DB->query("
SELECT COUNT(ID)
FROM reports
WHERE Status = 'New'");
2011-03-28 14:21:28 +00:00
list($Remaining) = $DB->next_record();
2013-04-15 08:00:54 +00:00
foreach ($Channels as $Channel) {
2013-07-04 08:00:56 +00:00
send_irc("PRIVMSG $Channel :Report $ReportID resolved by ".preg_replace('/^(.{2})/', '$1·', $LoggedUser['Username']).' on site ('.(int)$Remaining.' remaining).');
2011-03-28 14:21:28 +00:00
}
$Cache->delete_value('num_other_reports');
header('Location: reports.php');
?>