2013-06-14 13:51:44 +02:00
|
|
|
<?php
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
|
|
|
# namespace Icinga\Application\Controllers;
|
|
|
|
|
2014-06-03 17:59:22 +02:00
|
|
|
use Icinga\Authentication\Backend\AutoLoginBackend;
|
2014-01-23 16:03:47 +01:00
|
|
|
use Icinga\Web\Controller\ActionController;
|
|
|
|
use Icinga\Form\Authentication\LoginForm;
|
2014-03-03 17:21:17 +01:00
|
|
|
use Icinga\Authentication\AuthChain;
|
|
|
|
use Icinga\Application\Config;
|
2014-03-04 13:45:22 +01:00
|
|
|
use Icinga\Logger\Logger;
|
2014-06-02 15:47:21 +02:00
|
|
|
use Icinga\Exception\AuthenticationException;
|
2014-03-03 17:21:17 +01:00
|
|
|
use Icinga\Exception\NotReadableError;
|
|
|
|
use Icinga\Exception\ConfigurationError;
|
|
|
|
use Icinga\User;
|
2014-03-06 12:07:24 +01:00
|
|
|
use Icinga\Web\Url;
|
2013-07-12 16:10:56 +02:00
|
|
|
|
2013-06-14 13:51:44 +02:00
|
|
|
/**
|
2013-08-16 14:56:23 +02:00
|
|
|
* Application wide controller for authentication
|
2013-06-14 13:51:44 +02:00
|
|
|
*/
|
|
|
|
class AuthenticationController extends ActionController
|
|
|
|
{
|
|
|
|
/**
|
2014-01-23 16:03:47 +01:00
|
|
|
* This controller does not require authentication
|
2013-08-16 14:56:23 +02:00
|
|
|
*
|
2013-06-14 13:51:44 +02:00
|
|
|
* @var bool
|
|
|
|
*/
|
2013-08-30 15:50:49 +02:00
|
|
|
protected $requiresAuthentication = false;
|
2013-06-14 13:51:44 +02:00
|
|
|
|
|
|
|
/**
|
2013-08-16 14:56:23 +02:00
|
|
|
* Log into the application
|
2013-06-14 13:51:44 +02:00
|
|
|
*/
|
|
|
|
public function loginAction()
|
|
|
|
{
|
2014-06-22 20:08:55 +02:00
|
|
|
$auth = $this->Auth();
|
2014-08-19 10:14:46 +02:00
|
|
|
$this->view->form = $form = new LoginForm();
|
2014-05-27 23:47:13 +02:00
|
|
|
$this->view->title = $this->translate('Icingaweb Login');
|
2014-03-28 14:45:03 +01:00
|
|
|
|
2013-06-24 18:46:45 +02:00
|
|
|
try {
|
2014-08-19 10:14:46 +02:00
|
|
|
$redirectUrl = $this->view->form->getValue('redirect');
|
|
|
|
if ($redirectUrl) {
|
|
|
|
$redirectUrl = Url::fromPath($redirectUrl);
|
|
|
|
} else {
|
|
|
|
$redirectUrl = Url::fromPath('dashboard');
|
|
|
|
}
|
2014-06-03 17:59:22 +02:00
|
|
|
|
2013-06-24 18:46:45 +02:00
|
|
|
if ($auth->isAuthenticated()) {
|
2014-06-22 20:06:45 +02:00
|
|
|
$this->rerenderLayout()->redirectNow($redirectUrl);
|
2013-06-24 18:46:45 +02:00
|
|
|
}
|
2014-03-28 14:45:03 +01:00
|
|
|
|
2014-06-03 17:59:22 +02:00
|
|
|
try {
|
|
|
|
$config = Config::app('authentication');
|
|
|
|
} catch (NotReadableError $e) {
|
|
|
|
throw new ConfigurationError(
|
2014-08-20 13:13:50 +02:00
|
|
|
$this->translate('Could not read your authentiction.ini, no authentication methods are available.'),
|
|
|
|
0,
|
|
|
|
$e
|
2014-06-03 17:59:22 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$chain = new AuthChain($config);
|
2014-07-18 10:23:04 +02:00
|
|
|
$request = $this->getRequest();
|
|
|
|
if ($request->isPost() && $this->view->form->isValid($request->getPost())) {
|
2014-06-02 14:04:45 +02:00
|
|
|
$user = new User($this->view->form->getValue('username'));
|
|
|
|
$password = $this->view->form->getValue('password');
|
2014-03-03 17:21:17 +01:00
|
|
|
$backendsTried = 0;
|
2014-03-28 14:45:03 +01:00
|
|
|
$backendsWithError = 0;
|
2014-06-03 17:59:22 +02:00
|
|
|
|
2014-08-19 10:14:46 +02:00
|
|
|
$redirectUrl = $form->getValue('redirect');
|
|
|
|
|
|
|
|
if ($redirectUrl) {
|
|
|
|
$redirectUrl = Url::fromPath($redirectUrl);
|
|
|
|
} else {
|
|
|
|
$redirectUrl = Url::fromPath('dashboard');
|
|
|
|
}
|
|
|
|
|
2014-03-03 17:21:17 +01:00
|
|
|
foreach ($chain as $backend) {
|
2014-06-03 17:59:22 +02:00
|
|
|
if ($backend instanceof AutoLoginBackend) {
|
|
|
|
continue;
|
|
|
|
}
|
2014-06-06 09:33:29 +02:00
|
|
|
++$backendsTried;
|
2014-06-02 15:47:21 +02:00
|
|
|
try {
|
|
|
|
$authenticated = $backend->authenticate($user, $password);
|
|
|
|
} catch (AuthenticationException $e) {
|
|
|
|
Logger::error($e);
|
|
|
|
++$backendsWithError;
|
|
|
|
continue;
|
|
|
|
}
|
2014-03-28 14:45:03 +01:00
|
|
|
if ($authenticated === true) {
|
|
|
|
$auth->setAuthenticated($user);
|
2014-06-22 20:06:45 +02:00
|
|
|
$this->rerenderLayout()->redirectNow($redirectUrl);
|
2014-03-03 17:21:17 +01:00
|
|
|
}
|
|
|
|
}
|
2014-07-09 12:53:25 +02:00
|
|
|
if ($backendsTried === 0) {
|
|
|
|
throw new ConfigurationError(
|
2014-08-19 18:55:58 +02:00
|
|
|
$this->translate(
|
|
|
|
'No authentication methods available. Did you create'
|
|
|
|
. ' authentication.ini when installing Icinga Web 2?'
|
|
|
|
)
|
2014-07-09 12:53:25 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($backendsTried === $backendsWithError) {
|
2014-03-03 17:21:17 +01:00
|
|
|
throw new ConfigurationError(
|
2014-06-02 15:47:21 +02:00
|
|
|
$this->translate(
|
2014-08-19 18:55:58 +02:00
|
|
|
'All configured authentication methods failed.'
|
|
|
|
. ' Please check the system log or Icinga Web 2 log for more information.'
|
2014-06-02 15:47:21 +02:00
|
|
|
)
|
2014-03-03 17:21:17 +01:00
|
|
|
);
|
|
|
|
}
|
2014-06-02 15:47:21 +02:00
|
|
|
if ($backendsWithError) {
|
2014-07-10 11:15:46 +02:00
|
|
|
$this->view->form->getElement('username')->addError(
|
2014-06-02 15:47:21 +02:00
|
|
|
$this->translate(
|
2014-08-19 18:55:58 +02:00
|
|
|
'Please note that not all authentication methods where available.'
|
|
|
|
. ' Check the system log or Icinga Web 2 log for more information.'
|
2014-06-02 15:47:21 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$this->view->form->getElement('password')->addError($this->translate('Incorrect username or password'));
|
2014-07-18 10:23:04 +02:00
|
|
|
} elseif ($request->isGet()) {
|
2014-07-10 11:15:46 +02:00
|
|
|
$user = new User('');
|
|
|
|
foreach ($chain as $backend) {
|
|
|
|
if ($backend instanceof AutoLoginBackend) {
|
|
|
|
$authenticated = $backend->authenticate($user);
|
|
|
|
if ($authenticated === true) {
|
|
|
|
$auth->setAuthenticated($user);
|
|
|
|
$this->rerenderLayout()->redirectNow($redirectUrl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-24 18:46:45 +02:00
|
|
|
}
|
2014-02-12 13:57:17 +01:00
|
|
|
} catch (Exception $e) {
|
|
|
|
$this->view->errorInfo = $e->getMessage();
|
2013-06-24 18:46:45 +02:00
|
|
|
}
|
2013-06-14 13:51:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-08-16 14:56:23 +02:00
|
|
|
* Log out the current user
|
2013-06-14 13:51:44 +02:00
|
|
|
*/
|
|
|
|
public function logoutAction()
|
|
|
|
{
|
2014-06-22 20:08:55 +02:00
|
|
|
$auth = $this->Auth();
|
2014-07-30 12:35:55 +02:00
|
|
|
$isRemoteUser = $auth->getUser()->isRemoteUser();
|
2013-06-24 18:46:45 +02:00
|
|
|
$auth->removeAuthorization();
|
2014-02-26 17:36:20 +01:00
|
|
|
|
2014-07-30 12:35:55 +02:00
|
|
|
if ($isRemoteUser === true) {
|
2014-02-26 17:36:20 +01:00
|
|
|
$this->_helper->layout->setLayout('login');
|
|
|
|
$this->_response->setHttpResponseCode(401);
|
|
|
|
} else {
|
2014-06-22 20:06:45 +02:00
|
|
|
$this->rerenderLayout()->redirectToLogin();
|
2014-02-26 17:36:20 +01:00
|
|
|
}
|
2013-06-14 13:51:44 +02:00
|
|
|
}
|
|
|
|
}
|