Gazelle/sections/forums/take_warn.php

93 lines
3.7 KiB
PHP
Raw Normal View History

2012-08-27 08:00:24 +00:00
<?php
2012-10-19 08:00:17 +00:00
if (!check_perms('users_warn')) {
error(404);
2012-08-27 08:00:24 +00:00
}
2012-10-11 08:00:15 +00:00
Misc::assert_isset_request($_POST, array('reason', 'privatemessage', 'body', 'length', 'postid', 'userid'));
2012-08-27 08:00:24 +00:00
$Reason = db_string($_POST['reason']);
$PrivateMessage = db_string($_POST['privatemessage']);
$Body = db_string($_POST['body']);
$Length = $_POST['length'];
2012-10-19 08:00:17 +00:00
$PostID = (int) $_POST['postid'];
$UserID = (int) $_POST['userid'];
$Key = (int) $_POST['key'];
2012-08-27 08:00:24 +00:00
$SQLTime = sqltime();
2012-08-29 08:00:17 +00:00
2012-10-11 08:00:15 +00:00
$UserInfo = Users::user_info($UserID);
2012-10-19 08:00:17 +00:00
if ($UserInfo['Class'] > $LoggedUser['Class']) {
error(403);
2012-08-29 08:00:17 +00:00
}
2012-10-19 08:00:17 +00:00
$URL = "https://" . SSL_SITE_URL . "/forums.php?action=viewthread&amp;postid=$PostID#post$PostID";
2012-08-27 08:00:24 +00:00
if ($Length != 'verbal') {
2012-10-19 08:00:17 +00:00
$Time = ((int) $Length) * (7 * 24 * 60 * 60);
Tools::warn_user($UserID, $Time, "$URL - " . $Reason);
$Subject = "You have received a warning";
$PrivateMessage = "You have received a $Length week warning for [url=$URL]this post.[/url]\n\n" . $PrivateMessage;
2012-08-28 08:00:14 +00:00
$WarnTime = time_plus($Time);
2012-10-19 08:00:17 +00:00
$AdminComment = date("Y-m-d") . ' - Warned until ' . $WarnTime . ' by ' . $LoggedUser['Username'] . " for $URL \nReason: $Reason\n\n";
2012-08-28 08:00:14 +00:00
2012-08-27 08:00:24 +00:00
} else {
2012-10-19 08:00:17 +00:00
$Subject = "You have received a verbal warning";
$PrivateMessage = "You have received a verbal warning for [url=$URL]this post.[/url]\n\n" . $PrivateMessage;
$AdminComment = date("Y-m-d") . ' - Verbally warned by ' . $LoggedUser['Username'] . " for $URL \nReason: $Reason\n\n";
2012-10-20 08:00:36 +00:00
Tools::update_user_notes($UserID, $AdminComment);
2012-08-27 08:00:24 +00:00
}
2012-08-28 08:00:14 +00:00
2012-10-19 08:00:17 +00:00
$DB->query("INSERT INTO users_warnings_forums (UserID, Comment) VALUES('$UserID', '" . db_string($AdminComment) . "')
2012-08-28 08:00:14 +00:00
ON DUPLICATE KEY UPDATE Comment = CONCAT('" . db_string($AdminComment) . "', Comment)");
2012-10-11 08:00:15 +00:00
Misc::send_pm($UserID, $LoggedUser['ID'], $Subject, $PrivateMessage);
2012-08-27 08:00:24 +00:00
//edit the post
2012-10-19 08:00:17 +00:00
$DB->query("SELECT
2012-08-27 08:00:24 +00:00
p.Body,
p.AuthorID,
p.TopicID,
t.ForumID,
CEIL((SELECT COUNT(ID)
FROM forums_posts
WHERE forums_posts.TopicID = p.TopicID
2012-10-19 08:00:17 +00:00
AND forums_posts.ID <= '$PostID')/" . POSTS_PER_PAGE
. ")
2012-08-27 08:00:24 +00:00
AS Page
FROM forums_posts as p
JOIN forums_topics as t on p.TopicID = t.ID
JOIN forums as f ON t.ForumID=f.ID
WHERE p.ID='$PostID'");
2012-10-19 08:00:17 +00:00
list($OldBody, $AuthorID, $TopicID, $ForumID, $Page) = $DB->next_record();
2012-08-27 08:00:24 +00:00
// Perform the update
2012-10-19 08:00:17 +00:00
$DB->query("UPDATE forums_posts SET
2012-08-27 08:00:24 +00:00
Body = '$Body',
EditedUserID = '$UserID',
EditedTime = '" . $SQLTime . "'
WHERE ID='$PostID'");
$CatalogueID = floor((POSTS_PER_PAGE * $Page - POSTS_PER_PAGE) / THREAD_CATALOGUE);
2012-10-19 08:00:17 +00:00
$Cache->begin_transaction('thread_' . $TopicID . '_catalogue_' . $CatalogueID);
if ($Cache->MemcacheDBArray[$Key]['ID'] != $PostID) {
$Cache->cancel_transaction();
$Cache->delete('thread_' . $TopicID . '_catalogue_' . $CatalogueID);
//just clear the cache for would be cache-screwer-uppers
2012-08-27 08:00:24 +00:00
} else {
2012-10-19 08:00:17 +00:00
$Cache->update_row($Key, array('ID' => $Cache->MemcacheDBArray[$Key]['ID'], 'AuthorID' => $Cache->MemcacheDBArray[$Key]['AuthorID'], 'AddedTime' => $Cache->MemcacheDBArray[$Key]['AddedTime'],
'Body' => $_POST['body'], //Don't url decode.
'EditedUserID' => $LoggedUser['ID'], 'EditedTime' => $SQLTime, 'Username' => $LoggedUser['Username']));
$Cache->commit_transaction(3600 * 24 * 5);
2012-08-27 08:00:24 +00:00
}
$ThreadInfo = get_thread_info($TopicID);
if ($ThreadInfo['StickyPostID'] == $PostID) {
2012-10-19 08:00:17 +00:00
$ThreadInfo['StickyPost']['Body'] = $_POST['body'];
$ThreadInfo['StickyPost']['EditedUserID'] = $LoggedUser['ID'];
$ThreadInfo['StickyPost']['EditedTime'] = $SQLTime;
$Cache->cache_value('thread_' . $TopicID . '_info', $ThreadInfo, 0);
2012-08-27 08:00:24 +00:00
}
2012-10-19 08:00:17 +00:00
$DB->query("INSERT INTO comments_edits (Page, PostID, EditUser, EditTime, Body)
2012-08-27 08:00:24 +00:00
VALUES ('forums', " . $PostID . ", " . $UserID . ", '" . $SQLTime . "', '" . db_string($OldBody) . "')");
2012-10-19 08:00:17 +00:00
$Cache->delete_value("forums_edits_$PostID");
2012-08-27 08:00:24 +00:00
header("Location: forums.php?action=viewthread&postid=$PostID#post$PostID");
?>