85 lines
2.4 KiB
PHP
85 lines
2.4 KiB
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2021 Icinga GmbH | GPLv2+ */
|
|
|
|
namespace Icinga\Controllers;
|
|
|
|
use Icinga\Common\Database;
|
|
use Icinga\Web\Notification;
|
|
use Icinga\Web\RememberMe;
|
|
use Icinga\Web\RememberMeUserList;
|
|
use Icinga\Web\RememberMeUserDevicesList;
|
|
use ipl\Web\Compat\CompatController;
|
|
use ipl\Web\Url;
|
|
|
|
/**
|
|
* ManageUserDevicesController
|
|
*
|
|
* you need 'application/sessions' permission to use this controller
|
|
*/
|
|
class ManageUserDevicesController extends CompatController
|
|
{
|
|
use Database;
|
|
|
|
public function init()
|
|
{
|
|
$this->assertPermission('application/sessions');
|
|
}
|
|
|
|
public function indexAction()
|
|
{
|
|
$this->getTabs()
|
|
->add(
|
|
'manage-user-devices',
|
|
array(
|
|
'title' => $this->translate('List of users who stay logged in'),
|
|
'label' => $this->translate('Users'),
|
|
'url' => 'manage-user-devices',
|
|
'data-base-target' => '_self'
|
|
)
|
|
)->activate('manage-user-devices');
|
|
|
|
$usersList = (new RememberMeUserList())
|
|
->setUsers(RememberMe::getAllUser())
|
|
->setUrl('manage-user-devices/devices');
|
|
|
|
$this->addContent($usersList);
|
|
|
|
if (! $this->hasDb()) {
|
|
Notification::warning(
|
|
$this->translate("Users can't stay logged in without a database configuration backend")
|
|
);
|
|
}
|
|
}
|
|
|
|
public function devicesAction()
|
|
{
|
|
$this->getTabs()
|
|
->add(
|
|
'manage-devices',
|
|
array(
|
|
'title' => $this->translate('List of devices'),
|
|
'label' => $this->translate('Devices'),
|
|
'url' => 'manage-user-devices/devices'
|
|
)
|
|
)->activate('manage-devices');
|
|
|
|
$name = $this->params->getRequired('name');
|
|
$data = (new RememberMeUserDevicesList())
|
|
->setDevicesList(RememberMe::getAllByUsername($name))
|
|
->setUsername($name)
|
|
->setUrl('manage-user-devices/delete');
|
|
|
|
$this->addContent($data);
|
|
}
|
|
|
|
public function deleteAction()
|
|
{
|
|
(new RememberMe())->remove($this->params->getRequired('fingerprint'));
|
|
|
|
$this->redirectNow(
|
|
Url::fromPath('manage-user-devices/devices')
|
|
->addParams(['name' => $this->params->getRequired('name')])
|
|
);
|
|
}
|
|
}
|