Rewrite report system due to flooding

This commit is contained in:
Fredrick Brennan 2015-03-13 12:45:57 +08:00 committed by czaks
parent 95a9b7b72b
commit 8943bb0bb3
4 changed files with 43 additions and 12 deletions

View file

@ -43,19 +43,12 @@ Menu.onclick(function(e, $buf) {
var postId = $ele.find('.post_no').not('[id]').text();
$buf.find('#report_menu,#global_report_menu').click(function(e) {
$('#delete_'+postId).prop('checked', 'checked');
if ($(this).attr('id') === 'global_report_menu') {
header = "<div><h1>Attention!</h1><p>This form is only for reporting <strong>child pornography</strong>, <strong>bot spam</strong> and <strong>credit card numbers, social security numbers or banking information</strong>. DMCA requests and all other deletion requests <em>MUST</em> be sent via email to admin@8chan.co.</p><p>8chan is unmoderated and allows posts without collecting <em>ANY</em> information from the poster less the details of their post. Furthermore, all boards on 8chan are user created and not actively monitored by anyone but the board creator.</p><p>8chan has a small volunteer staff to handle this queue, please do not waste their time by filling it with nonsense! <em>If you made a report with this tool and the post was not deleted, <strong>do not make the report again!</strong> Email admin@8chan.co instead.</em> Abuse of the global report system could lead to address blocks against your IP from 8chan.</p><p>Again, 8chan's global volunteers <em>do not</em> handle board specific issues. You most likely want to click \"Report\" instead to reach the creator and volunteers he assigned to this board.</p>";
$('#global_report').prop('checked', 'checked');
if ($(this).attr('id') === "global_report_menu") {
var global = '&global';
} else {
header = "";
$('#global_report').prop('checked', '');
var global = '';
}
alert(header+"Enter reason below...<br/><input type='text' id='alert_reason'>", true, function(){
$('#reason').val($('#alert_reason').val());
$('input[name=report][type=submit]').click();
});
window.open(configRoot+'report.php?board='+board_name+'&post=delete_'+postId+global, "", (global?"width=600, height=575":"width=500, height=275"));
});
});