40 lines
1.0 KiB
PHP
40 lines
1.0 KiB
PHP
|
<?php
|
||
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||
|
|
||
|
namespace Icinga\Controllers;
|
||
|
|
||
|
use Icinga\Application\Icinga;
|
||
|
use Icinga\Web\Controller;
|
||
|
use Icinga\Web\Session;
|
||
|
|
||
|
/**
|
||
|
* @TODO(el): https://dev.icinga.org/issues/10646
|
||
|
*/
|
||
|
class ApplicationStateController extends Controller
|
||
|
{
|
||
|
public function indexAction()
|
||
|
{
|
||
|
if (isset($_COOKIE['icingaweb2-session'])) {
|
||
|
$last = (int) $_COOKIE['icingaweb2-session'];
|
||
|
} else {
|
||
|
$last = 0;
|
||
|
}
|
||
|
$now = time();
|
||
|
if ($last + 60 < $now) {
|
||
|
Session::getSession()->refreshId();
|
||
|
$params = session_get_cookie_params();
|
||
|
setcookie(
|
||
|
'icingaweb2-session',
|
||
|
$now,
|
||
|
null,
|
||
|
$params['path'],
|
||
|
$params['domain'],
|
||
|
$params['secure'],
|
||
|
$params['httponly']
|
||
|
);
|
||
|
$_COOKIE['icingaweb2-session'] = $now;
|
||
|
}
|
||
|
Icinga::app()->getResponse()->setHeader('X-Icinga-Container', 'ignore', true);
|
||
|
}
|
||
|
}
|