mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.0 KiB
118 lines
3.0 KiB
var cur_url = window.location.href.split('/').pop();
|
|
cur_url = cur_url.split('?');
|
|
function ajaxActionServers(action, id) {
|
|
var bad_ans = 'Bad config, check please';
|
|
$.ajax( {
|
|
url: "options.py",
|
|
data: {
|
|
action_hap: action,
|
|
serv: id,
|
|
token: $('#token').val()
|
|
},
|
|
success: function( data ) {
|
|
data = data.replace(/\s+/g,' ');
|
|
if( data == 'Bad config, check please ' ) {
|
|
alert(data);
|
|
} else {
|
|
setTimeout(showOverview, 2000)
|
|
}
|
|
},
|
|
error: function(){
|
|
alert(w.data_error);
|
|
}
|
|
} );
|
|
}
|
|
function ajaxActionWafServers(action, id) {
|
|
var bad_ans = 'Bad config, check please';
|
|
$.ajax( {
|
|
url: "options.py",
|
|
data: {
|
|
action_waf: action,
|
|
serv: id,
|
|
token: $('#token').val()
|
|
},
|
|
success: function( data ) {
|
|
data = data.replace(/\s+/g,' ');
|
|
if( data == 'Bad config, check please ' ) {
|
|
alert(data);
|
|
} else {
|
|
setTimeout(showOverviewWaf, 2000)
|
|
}
|
|
},
|
|
error: function(){
|
|
alert(w.data_error);
|
|
}
|
|
} );
|
|
}
|
|
$( function() {
|
|
$('.start').click(function() {
|
|
var id = $(this).attr('id');
|
|
confirmAjaxAction("start", "hap", id);
|
|
});
|
|
$('.stop').click(function() {
|
|
var id = $(this).attr('id');
|
|
confirmAjaxAction("stop", "hap", id);
|
|
});
|
|
$('.restart').click(function() {
|
|
var id = $(this).attr('id');
|
|
confirmAjaxAction("restart", "hap", id);
|
|
});
|
|
$('.start-waf').click(function() {
|
|
var id = $(this).attr('id');
|
|
confirmAjaxAction("start", "waf", id);
|
|
});
|
|
$('.stop-waf').click(function() {
|
|
var id = $(this).attr('id');
|
|
confirmAjaxAction("stop", "waf", id);
|
|
});
|
|
$('.restart-waf').click(function() {
|
|
var id = $(this).attr('id');
|
|
confirmAjaxAction("restart", "waf", id);
|
|
});
|
|
$( "#show-all-users" ).click( function() {
|
|
if($( "#show-all-users" ).text() == "Show all") {
|
|
$( ".show-users" ).show("fast");
|
|
$( "#show-all-users" ).text("Hide");
|
|
$( "#show-all-users" ).attr("title", "Hide all users");
|
|
} else {
|
|
$( ".show-users" ).hide("fast");
|
|
$( "#show-all-users" ).attr("title", "Show all users");
|
|
$( "#show-all-users" ).text("Show all");
|
|
}
|
|
});
|
|
if (cur_url[0] == "overview.py" || cur_url[0] == "waf.py" || cur_url[0] == "metrics.py") {
|
|
$('#secIntervals').css('display', 'none');
|
|
}
|
|
$('#apply_close').click( function() {
|
|
$("#apply").css('display', 'none');
|
|
Cookies.remove('restart', { path: '' });
|
|
});
|
|
});
|
|
function confirmAjaxAction(action, service, id) {
|
|
$( "#dialog-confirm" ).dialog({
|
|
resizable: false,
|
|
height: "auto",
|
|
width: 400,
|
|
modal: true,
|
|
title: "Are you sure you want "+ action + " " + id + "?",
|
|
buttons: {
|
|
"Sure": function() {
|
|
$( this ).dialog( "close" );
|
|
if(service == "hap") {
|
|
ajaxActionServers(action, id);
|
|
if(action == "restart") {
|
|
if(Cookies.get('restart')) {
|
|
Cookies.remove('restart', { path: '' });
|
|
$("#apply").css('display', 'none');
|
|
}
|
|
}
|
|
} else if (service == "waf") {
|
|
ajaxActionWafServers(action, id)
|
|
}
|
|
},
|
|
Cancel: function() {
|
|
$( this ).dialog( "close" );
|
|
}
|
|
}
|
|
});
|
|
} |