query(" UPDATE reportsv2 SET Status='Resolved', LastChangeTime='".sqltime()."', ModComment = '$Comment', ResolverID='".$LoggedUser['ID']."' WHERE ID='$ReportID' AND Status != 'Resolved'"); if ($DB->affected_rows() > 0) { $Cache->delete_value('num_torrent_reportsv2'); $Cache->delete_value('reports_torrent_'.$TorrentID); } else { //Someone beat us to it. Inform the staffer. ?>
Somebody has already resolved this report
query("SELECT ID FROM torrents WHERE ID = ".$TorrentID); $TorrentExists = ($DB->record_count() > 0); if (!$TorrentExists) { $DB->query(" UPDATE reportsv2 SET Status='Resolved', LastChangeTime='".sqltime()."', ResolverID='".$LoggedUser['ID']."', ModComment='Report already dealt with (Torrent deleted)' WHERE ID=".$ReportID); $Cache->decrement('num_torrent_reportsv2'); } if ($Report) { //Resolve with a parallel check $DB->query(" UPDATE reportsv2 SET Status='Resolved', LastChangeTime='".sqltime()."', ResolverID='".$LoggedUser['ID']."' WHERE ID=$ReportID AND Status != 'Resolved'"); } //See if it we managed to resolve if ($DB->affected_rows() > 0 || !$Report) { //We did, lets do all our shit if ($Report) { $Cache->decrement('num_torrent_reportsv2'); } if (isset($Escaped['upload'])) { $Upload = true; } else { $Upload = false; } if ($_POST['resolve_type'] == "tags_lots") { $DB->query("INSERT IGNORE INTO torrents_bad_tags (TorrentID, UserID, TimeAdded) VALUES (".$TorrentID.", ".$LoggedUser['ID']." , '".sqltime()."')"); $DB->query("SELECT GroupID FROM torrents WHERE ID = ".$TorrentID); list($GroupID) = $DB->next_record(); $Cache->delete_value('torrents_details_'.$GroupID); $SendPM = true; } if ($_POST['resolve_type'] == "folders_bad") { $DB->query("INSERT IGNORE INTO torrents_bad_folders (TorrentID, UserID, TimeAdded) VALUES (".$TorrentID.", ".$LoggedUser['ID'].", '".sqltime()."')"); $DB->query("SELECT GroupID FROM torrents WHERE ID = ".$TorrentID); list($GroupID) = $DB->next_record(); $Cache->delete_value('torrents_details_'.$GroupID); $SendPM = true; } if ($_POST['resolve_type'] == "filename") { $DB->query("INSERT IGNORE INTO torrents_bad_files (TorrentID, UserID, TimeAdded) VALUES (".$TorrentID.", ".$LoggedUser['ID'].", '".sqltime()."')"); $DB->query("SELECT GroupID FROM torrents WHERE ID = ".$TorrentID); list($GroupID) = $DB->next_record(); $Cache->delete_value('torrents_details_'.$GroupID); $SendPM = true; } //Log and delete if (isset($Escaped['delete']) && check_perms('users_mod')) { $DB->query("SELECT Username FROM users_main WHERE ID = ".$UploaderID); list($UpUsername) = $DB->next_record(); $Log = "Torrent ".$TorrentID." (".$RawName.") uploaded by ".$UpUsername." was deleted by ".$LoggedUser['Username']; $Log .= ($Escaped['resolve_type'] == 'custom' ? "" : " for the reason: ".$ResolveType['title']."."); if (isset($Escaped['log_message']) && $Escaped['log_message'] != "") { $Log .= " ( ".$Escaped['log_message']." )"; } $DB->query("SELECT GroupID, hex(info_hash) FROM torrents WHERE ID = ".$TorrentID); list($GroupID, $InfoHash) = $DB->next_record(); Torrents::delete_torrent($TorrentID, 0, $ResolveType['reason']); //$InfoHash = unpack("H*", $InfoHash); $Log .= " (".strtoupper($InfoHash).")"; Misc::write_log($Log); $Log = "deleted torrent for the reason: ".$ResolveType['title'].". ( ".$Escaped['log_message']." )"; Torrents::write_group_log($GroupID, $TorrentID, $LoggedUser['ID'], $Log, 0); } else { $Log = "No log message (Torrent wasn't deleted)"; } //Warnings / remove upload if ($Upload) { $Cache->begin_transaction('user_info_heavy_'.$UploaderID); $Cache->update_row(false, array('DisableUpload' => '1')); $Cache->commit_transaction(0); $DB->query(" UPDATE users_info SET DisableUpload='1' WHERE UserID=".$UploaderID); } if ($Warning > 0) { $WarnLength = $Warning * (7 * 24 * 60 * 60); $Reason = "Uploader of torrent (".$TorrentID.") ".$RawName." which was resolved with the preset: ".$ResolveType['title']."."; if ($Escaped['admin_message']) { $Reason .= " (".$Escaped['admin_message'].")."; } if ($Upload) { $Reason .= " (Upload privileges Removed)."; } Tools::warn_user($UploaderID, $WarnLength, $Reason); } else { //This is a bitch for people that don't warn but do other things, it makes me sad. $AdminComment = ''; if ($Upload) { //They removed upload $AdminComment .= "Upload privileges removed by ".$LoggedUser['Username']; $AdminComment .= "\nReason: Uploader of torrent (".$TorrentID.") ".db_string($RawName)." which was resolved with the preset: ".$ResolveType['title'].". (Report ID: $ReportID)"; } if ($Escaped['admin_message']) { //They did nothing of note, but still want to mark it (Or upload and mark) $AdminComment .= " (".$Escaped['admin_message'].")"; } if ($AdminComment) { $AdminComment = date("Y-m-d").' - '.$AdminComment."\n\n"; $DB->query("UPDATE users_info SET AdminComment=CONCAT('".db_string($AdminComment)."',AdminComment) WHERE UserID='".db_string($UploaderID)."'"); } } //PM if ($Escaped['uploader_pm'] || $Warning > 0 || isset($Escaped['delete']) || $SendPM) { if (isset($Escaped['delete'])) { $PM = '[url=https://'.SSL_SITE_URL."/torrents.php?torrentid=".$TorrentID."]Your above torrent[/url] was reported and has been deleted.\n\n"; } else { $PM = '[url=https://'.SSL_SITE_URL."/torrents.php?torrentid=".$TorrentID."]Your above torrent[/url] was reported but not deleted.\n\n"; } $Preset = $ResolveType['resolve_options']['pm']; if ($Preset != '') { $PM .= "Reason: ".$Preset; } if ($Warning > 0) { $PM .= "\nThis has resulted in a [url=https://".SSL_SITE_URL."/wiki.php?action=article&id=218]".$Warning." week warning.[/url]\n"; } if ($Upload) { $PM .= "This has ".($Warning > 0 ? 'also ' : '')."resulted in you losing your upload privileges."; } if ($Log) { $PM = $PM."\nLog Message: ".$Log."\n"; } if ($Escaped['uploader_pm']) { $PM .= "\nMessage from ".$LoggedUser['Username'].": ".$PMMessage; } $PM .= "\n\nReport was handled by [user]".$LoggedUser['Username']."[/user]."; Misc::send_pm($UploaderID, 0, $Escaped['raw_name'], $PM); } $Cache->delete_value('reports_torrent_'.$TorrentID); //Now we've done everything, update the DB with values if ($Report) { $DB->query("UPDATE reportsv2 SET Type = '".$Escaped['resolve_type']."', LogMessage='".db_string($Log)."', ModComment='".$Escaped['comment']."' WHERE ID=".$ReportID); } } else { //Someone beat us to it. Inform the staffer. ?>
Somebody has already resolved this report