Don't fire application-state requests if not authenticated

fixes #10749
This commit is contained in:
Eric Lippmann 2015-12-16 12:55:41 +01:00
parent 4f562280ba
commit f5dac49330
2 changed files with 4 additions and 3 deletions

View File

@ -20,7 +20,7 @@ class ApplicationStateController extends Controller
$last = 0;
}
$now = time();
if ($last + 60 < $now) {
if ($last + 600 < $now) {
Session::getSession()->write();
$params = session_get_cookie_params();
setcookie(

View File

@ -16,8 +16,9 @@
ApplicationState.prototype = new Icinga.EventListener();
ApplicationState.prototype.onRendered = function(e) {
var _this = e.data.self;
if (! $('#application-state').length) {
if (! $('#application-state').length && ! $('#login').length && ! $('#guest-error').length) {
var _this = e.data.self;
$('#layout').append(
'<div id="application-state" class="container" style="display: none" data-icinga-url="'
+ _this.icinga.loader.baseUrl