You've already forked haproxy-wi
mirror of
https://github.com/roxy-wi/roxy-wi.git
synced 2025-12-18 12:04:07 +08:00
The error handling has been refactored in the Roxywi overview and routes files to raise and return more comprehensive exceptions. Unnecessary commented out JSON parsing code in the service installation file has been removed for better code clarity. Aside from these, various minor grammar and formatting fixes have been made to the README.md to improve readability.
175 lines
7.0 KiB
JavaScript
175 lines
7.0 KiB
JavaScript
$( function() {
|
||
$("#nettools_nslookup_record_type").selectmenu({
|
||
width: 175
|
||
});
|
||
$("#nettools_telnet_form").on("click", ":submit", function (e) {
|
||
$('#ajax-nettools').html('');
|
||
let frm = $('#nettools_telnet_form');
|
||
if ($('#nettools_telnet_server_from option:selected').val() == '------') {
|
||
toastr.warning('Choose a server From');
|
||
return false;
|
||
}
|
||
if ($('#nettools_telnet_server_to').val() == '') {
|
||
toastr.warning('Choose a server To');
|
||
return false;
|
||
}
|
||
if ($('#nettools_telnet_port_to').val() == '') {
|
||
toastr.warning('Enter a port To');
|
||
return false;
|
||
}
|
||
$.ajax({
|
||
url: frm.attr('action'),
|
||
data: frm.serialize(),
|
||
type: frm.attr('method'),
|
||
success: function (data) {
|
||
data = data.replace('\n', "<br>");
|
||
if (data.indexOf('error: ') != '-1' || data.indexOf('Fatal') != '-1' || data.indexOf('Error(s)') != '-1') {
|
||
$('#ajax-nettools').html('<div class="ping_pre">' + data + '</div>');
|
||
} else if (data.indexOf('warning: ') != '-1') {
|
||
toastr.clear();
|
||
toastr.warning(data)
|
||
} else {
|
||
toastr.clear();
|
||
if (data.indexOf('') != '-1') {
|
||
$('#ajax-nettools').html('<div class="ping_pre"><b>Connection has been successful</b></div>');
|
||
} else {
|
||
$('#ajax-nettools').html('<div class="ping_pre"><b>Connection has been successful</b>:<br /><br />' + data + '</div>');
|
||
}
|
||
}
|
||
}
|
||
});
|
||
event.preventDefault();
|
||
});
|
||
$("#nettools_nslookup_form").on("click", ":submit", function (e) {
|
||
$('#ajax-nettools').html('');
|
||
let frm = $('#nettools_nslookup_form');
|
||
if ($('#nettools_nslookup_server_from option:selected').val() == '------') {
|
||
toastr.warning('Choose a server From');
|
||
return false;
|
||
}
|
||
if ($('#nettools_nslookup_name').val() == '') {
|
||
toastr.warning('Enter a DNS name');
|
||
return false;
|
||
}
|
||
$.ajax({
|
||
url: frm.attr('action'),
|
||
data: frm.serialize(),
|
||
type: frm.attr('method'),
|
||
success: function (data) {
|
||
data = data.replace('\n', "<br>");
|
||
if (data.indexOf('error: ') != '-1' || data.indexOf('Fatal') != '-1' || data.indexOf('Error(s)') != '-1') {
|
||
toastr.clear();
|
||
toastr.error(data);
|
||
} else if (data.indexOf('warning: ') != '-1') {
|
||
toastr.clear();
|
||
toastr.warning(data)
|
||
} else {
|
||
toastr.clear();
|
||
$('#ajax-nettools').html('<div class="ping_pre">' + data + '</div>');
|
||
}
|
||
}
|
||
});
|
||
event.preventDefault();
|
||
});
|
||
$("#nettools_icmp_form").on("click", ":submit", function (e) {
|
||
$('#ajax-nettools').html('');
|
||
let frm = $('#nettools_icmp_form');
|
||
if ($('#nettools_icmp_server_from option:selected').val() == '------') {
|
||
toastr.warning('Choose a server From');
|
||
return false;
|
||
}
|
||
if ($('#nettools_icmp_server_to').val() == '') {
|
||
toastr.warning('Enter a server To');
|
||
return false;
|
||
}
|
||
$.ajax({
|
||
url: frm.attr('action'),
|
||
data: frm.serialize() + "&nettools_action=" + $(this).val(),
|
||
type: frm.attr('method'),
|
||
xhrFields: {
|
||
onprogress: function (e) {
|
||
console.log(e.currentTarget.responseText);
|
||
$('#ajax-nettools').html(e.currentTarget.responseText);
|
||
}
|
||
},
|
||
dataType: 'text',
|
||
success: function (data) {
|
||
data = data.replace('\n', "<br>");
|
||
if (data.indexOf('error: ') != '-1' || data.indexOf('Fatal') != '-1' || data.indexOf('Error(s)') != '-1') {
|
||
toastr.clear();
|
||
toastr.error(data);
|
||
} else if (data.indexOf('warning: ') != '-1') {
|
||
toastr.clear();
|
||
toastr.warning(data)
|
||
} else {
|
||
toastr.clear();
|
||
}
|
||
}
|
||
});
|
||
event.preventDefault();
|
||
});
|
||
$("#nettools_portscanner_form").on("click", ":submit", function (e) {
|
||
$('#ajax-nettools').html('');
|
||
if ($('#nettools_portscanner_server').val() == '') {
|
||
toastr.warning('Enter an address');
|
||
return false;
|
||
}
|
||
$.ajax({
|
||
url: "/app/portscanner/scan/" + $('#nettools_portscanner_server').val(),
|
||
success: function (data) {
|
||
data = data.replace(/\s+/g, ' ');
|
||
if (data.indexOf('danger') != '-1' || data.indexOf('unique') != '-1' || data.indexOf('error:') != '-1') {
|
||
toastr.error(data);
|
||
} else {
|
||
toastr.clear();
|
||
$("#show_scans_ports_body").html(data);
|
||
$("#show_scans_ports").dialog({
|
||
resizable: false,
|
||
height: "auto",
|
||
width: 360,
|
||
modal: true,
|
||
title: "{{lang.words.opened|title()}} {{lang.words.ports}}",
|
||
buttons: [{
|
||
text: close_word,
|
||
click: function () {
|
||
$(this).dialog("close");
|
||
$("#show_scans_ports_body").html('');
|
||
}
|
||
}]
|
||
});
|
||
}
|
||
}
|
||
});
|
||
event.preventDefault();
|
||
});
|
||
$("#nettools_whois_form").on("click", ":submit", function (e) {
|
||
$('#ajax-nettools').html('');
|
||
let frm = $('#nettools_whois_form');
|
||
if ($('#nettools_whois_name').val() == '') {
|
||
toastr.warning('Enter a Domain name');
|
||
return false;
|
||
}
|
||
$.ajax({
|
||
url: frm.attr('action'),
|
||
data: frm.serialize() + "&nettools_action=" + $(this).val(),
|
||
type: frm.attr('method'),
|
||
dataType: 'text',
|
||
success: function (data) {
|
||
data = data.replaceAll('"', '');
|
||
if (data.indexOf('error: ') != '-1' || data.indexOf('Fatal') != '-1' || data.indexOf('Error(s)') != '-1') {
|
||
toastr.clear();
|
||
toastr.error(data);
|
||
} else if (data.indexOf('warning: ') != '-1') {
|
||
toastr.clear();
|
||
toastr.warning(data)
|
||
} else {
|
||
toastr.clear();
|
||
console.log(data)
|
||
$('#ajax-nettools').html('<div class="ping_pre">' + data + '</div>');
|
||
}
|
||
}
|
||
});
|
||
event.preventDefault();
|
||
});
|
||
});
|