mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
223 lines
6.3 KiB
JavaScript
223 lines
6.3 KiB
JavaScript
function ChangeReportType() {
|
|
$.post("reportsv2.php?action=ajax_report", $('#reportform').serialize(), function(response) {
|
|
$('#dynamic_form').html(response);
|
|
});
|
|
}
|
|
|
|
function ChangeResolve(reportid) {
|
|
var url = 'reportsv2.php?action=ajax_change_resolve&id=' + reportid
|
|
+ '&type=' + $('#resolve_type' + reportid).val()
|
|
+ '&categoryid=' + $('#categoryid' + reportid).val();
|
|
$.getJSON(url, function(x) {
|
|
$('#delete' + reportid).prop('checked', x[0] == '1');
|
|
if ($('#uploaderid' + reportid).val() == $('#reporterid' + reportid).val()) {
|
|
$('#upload' + reportid).prop('checked', false);
|
|
$('#warning' + reportid).val('0');
|
|
} else {
|
|
$('#upload' + reportid).prop('checked', x[1] == '1');
|
|
$('#warning' + reportid).val(x[2]);
|
|
}
|
|
$('#update_resolve' + reportid).enable();
|
|
});
|
|
}
|
|
|
|
function Load(reportid) {
|
|
var type = $('#type' + reportid).val();
|
|
$('#resolve_type' + reportid + ' option[value="'+type+'"]').prop('selected', true);
|
|
// Can't use ChangeResolve() because we need it to block to do the uploader==reporter part
|
|
var url = 'reportsv2.php?action=ajax_change_resolve&id=' + reportid
|
|
+ '&type=' + $('#resolve_type' + reportid).val()
|
|
+ '&categoryid=' + $('#categoryid' + reportid).val();
|
|
$.getJSON(url, function(x) {
|
|
$('#delete' + reportid).prop('checked', x[0] == '1');
|
|
if ($('#uploaderid' + reportid).val() == $('#reporterid' + reportid).val()) {
|
|
$('#upload' + reportid).prop('checked', false);
|
|
$('#warning' + reportid).val('0');
|
|
} else {
|
|
$('#upload' + reportid).prop('checked', x[1] == '1');
|
|
$('#warning' + reportid).val(x[2]);
|
|
}
|
|
$('#update_resolve' + reportid).enable();
|
|
});
|
|
}
|
|
|
|
function ErrorBox(reportid, message) {
|
|
$('#all_reports').prepend('<div class="box pad center" id="error_box">Message from report ' + reportid + ': ' + message + '\n<input type="button" value="Hide Errors" onclick="HideErrors();" /></div>');
|
|
}
|
|
|
|
function HideErrors() {
|
|
if ($('#error_box')) {
|
|
$('#error_box').remove();
|
|
}
|
|
}
|
|
|
|
function TakeResolve(reportid) {
|
|
$('#submit_' + reportid).disable();
|
|
$.post("reportsv2.php?action=takeresolve", $('#reportform_' + reportid).serialize(), function(response) {
|
|
if (response) {
|
|
ErrorBox(reportid, response);
|
|
} else {
|
|
if ($('#from_delete' + reportid).size()) {
|
|
window.location.search = '?id=' + $('#from_delete' + reportid).val();
|
|
} else {
|
|
$('#report' + reportid).remove();
|
|
if ($('#dynamic').prop('checked')) {
|
|
NewReport(1);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function NewReport(q, view, id) {
|
|
var url = 'reportsv2.php?action=ajax_new_report&uniqurl=' + q;
|
|
if (view) {
|
|
url += '&view=' + view;
|
|
}
|
|
if (id) {
|
|
url += '&id=' + id;
|
|
}
|
|
$.get(url, function (response) {
|
|
if (response) {
|
|
var div = $(response);
|
|
var id = div.data("reportid");
|
|
if (!$('#report'+id).size()) {
|
|
$('#all_reports').append(div);
|
|
$('#no_reports').remove();
|
|
if ($('#type', div).size()) {
|
|
Load(id);
|
|
}
|
|
}
|
|
} else {
|
|
// No new reports at this time
|
|
if (!$('.report').size() && !$('#no_reports') == 0) {
|
|
$('#all_reports').append($('<div id="no_reports" class="box pad center"><strong>No new reports! \o/</strong></div>'));
|
|
}
|
|
}
|
|
if (--q > 0) {
|
|
// Recursion to avoid grabbing the same report multiple times
|
|
NewReport(q, view, id);
|
|
}
|
|
});
|
|
}
|
|
|
|
function AddMore(view, id) {
|
|
// Function will add the amount of reports in the input box unless that will take it over 50
|
|
var num = parseInt($('#repop_amount').val()) || 10;
|
|
var curCount = $('.report').size();
|
|
if (curCount < 50) {
|
|
NewReport(Math.min(num, 50 - curCount), view, id)
|
|
}
|
|
}
|
|
|
|
function SendPM(reportid) {
|
|
$.post('reportsv2.php?action=ajax_take_pm', $('#reportform_' + reportid).serialize(), function(response) {
|
|
$('#uploader_pm' + reportid).val(response);
|
|
});
|
|
}
|
|
|
|
function UpdateComment(reportid) {
|
|
$.post('reportsv2.php?action=ajax_update_comment', $('#reportform_' + reportid).serialize(), function(response) {
|
|
if (response) {
|
|
alert(response);
|
|
}
|
|
});
|
|
}
|
|
|
|
function GiveBack(reportid) {
|
|
if (reportid) {
|
|
$.get("reportsv2.php?action=ajax_giveback_report&id=" + reportid, function(response) {
|
|
if (response) {
|
|
alert(response);
|
|
}
|
|
});
|
|
$('#report' + reportid).remove();
|
|
} else {
|
|
$('#all_reports input[name="reportid"]').each(function() {
|
|
$.get("reportsv2.php?action=ajax_giveback_report&id=" + this.value, function(response) {
|
|
if (response) {
|
|
alert(response);
|
|
}
|
|
});
|
|
$('#report' + this.value).remove();
|
|
});
|
|
}
|
|
}
|
|
|
|
function ManualResolve(reportid) {
|
|
$('#resolve_type' + reportid).append('<option value="manual">Manual Resolve</option>').val('manual');
|
|
TakeResolve(reportid);
|
|
}
|
|
|
|
function Dismiss(reportid) {
|
|
$('#resolve_type' + reportid).append('<option value="dismiss">Invalid Report</option>').val('dismiss');
|
|
TakeResolve(reportid);
|
|
}
|
|
|
|
function ClearReport(reportid) {
|
|
$('#report' + reportid).remove();
|
|
}
|
|
|
|
function Grab(reportid) {
|
|
if (reportid) {
|
|
$.get("reportsv2.php?action=ajax_grab_report&id=" + reportid, function(response) {
|
|
if (response == '1') {
|
|
$('#grab' + reportid).disable();
|
|
} else {
|
|
alert('Grab failed for some reason :/');
|
|
}
|
|
});
|
|
} else {
|
|
$('#all_reports input[name="reportid"]').each(function() {
|
|
var reportid = this.value
|
|
$.get("reportsv2.php?action=ajax_grab_report&id=" + reportid, function(response) {
|
|
if (response == '1') {
|
|
$('#grab' + reportid).disable();
|
|
} else {
|
|
alert("One of those grabs failed, sorry I can't be more useful :P");
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
function MultiResolve() {
|
|
$('input[name="multi"]:checked').each(function() {
|
|
TakeResolve(this.id.substr(5))
|
|
});
|
|
}
|
|
|
|
function UpdateResolve(reportid) {
|
|
var newresolve = $('#resolve_type' + reportid).val();
|
|
var url = 'reportsv2.php?action=ajax_update_resolve&reportid=' + reportid
|
|
+ "&newresolve=" + newresolve
|
|
+ "&categoryid=" + $('#categoryid' + reportid).val();
|
|
$.get(url, function(response) {
|
|
$('#update_resolve' + reportid).disable();
|
|
});
|
|
}
|
|
|
|
|
|
function Switch(reportid, torrentid, otherid) {
|
|
// We want to switch positions of the reported torrent
|
|
// This entails invalidating the current report and creating a new with the correct preset.
|
|
Dismiss(reportid);
|
|
|
|
var report = {
|
|
auth: authkey,
|
|
torrentid: otherid,
|
|
type: $('#type' + reportid).val(),
|
|
otherid: torrentid
|
|
}
|
|
|
|
$.post('reportsv2.php?action=ajax_create_report', report, function(response) {
|
|
//Returns new report ID.
|
|
if (isNaN(response)) {
|
|
alert(response);
|
|
} else {
|
|
window.location = 'reportsv2.php?view=report&id=' + response;
|
|
}
|
|
}
|
|
);
|
|
}
|