mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
parent
c5c7b40133
commit
23fcd39503
@ -6,20 +6,14 @@
|
|||||||
use Icinga\Application\Config;
|
use Icinga\Application\Config;
|
||||||
use Icinga\Application\Icinga;
|
use Icinga\Application\Icinga;
|
||||||
use Icinga\Application\Logger;
|
use Icinga\Application\Logger;
|
||||||
use Icinga\Authentication\AuthChain;
|
|
||||||
use Icinga\Authentication\User\ExternalBackend;
|
|
||||||
use Icinga\Exception\AuthenticationException;
|
|
||||||
use Icinga\Exception\ConfigurationError;
|
|
||||||
use Icinga\Exception\NotReadableError;
|
|
||||||
use Icinga\Forms\Authentication\LoginForm;
|
use Icinga\Forms\Authentication\LoginForm;
|
||||||
use Icinga\User;
|
use Icinga\Web\Controller;
|
||||||
use Icinga\Web\Controller\ActionController;
|
|
||||||
use Icinga\Web\Url;
|
use Icinga\Web\Url;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Application wide controller for authentication
|
* Application wide controller for authentication
|
||||||
*/
|
*/
|
||||||
class AuthenticationController extends ActionController
|
class AuthenticationController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* This controller does not require authentication
|
* This controller does not require authentication
|
||||||
@ -34,118 +28,19 @@ class AuthenticationController extends ActionController
|
|||||||
public function loginAction()
|
public function loginAction()
|
||||||
{
|
{
|
||||||
$icinga = Icinga::app();
|
$icinga = Icinga::app();
|
||||||
if ($icinga->setupTokenExists() && $icinga->requiresSetup()) {
|
if (($requiresSetup = $icinga->requiresSetup()) && $icinga->setupTokenExists()) {
|
||||||
$this->redirectNow(Url::fromPath('setup'));
|
$this->redirectNow(Url::fromPath('setup'));
|
||||||
}
|
}
|
||||||
|
$form = new LoginForm();
|
||||||
$triedOnlyExternalAuth = null;
|
if ($this->Auth()->isAuthenticated()) {
|
||||||
$auth = $this->Auth();
|
$this->redirectNow($form->getRedirectUrl());
|
||||||
$this->view->form = $form = new LoginForm();
|
|
||||||
$this->view->title = $this->translate('Icingaweb Login');
|
|
||||||
|
|
||||||
try {
|
|
||||||
$redirectUrl = $this->view->form->getValue('redirect');
|
|
||||||
if ($redirectUrl) {
|
|
||||||
$redirectUrl = Url::fromPath($redirectUrl);
|
|
||||||
} else {
|
|
||||||
$redirectUrl = Url::fromPath('dashboard');
|
|
||||||
}
|
}
|
||||||
|
if (! $requiresSetup) {
|
||||||
if ($auth->isAuthenticated()) {
|
$form->handleRequest();
|
||||||
$this->rerenderLayout()->redirectNow($redirectUrl);
|
|
||||||
}
|
}
|
||||||
|
$this->view->form = $form;
|
||||||
try {
|
$this->view->title = $this->translate('Icinga Web 2 Login');
|
||||||
$config = Config::app('authentication');
|
$this->view->requiresSetup = $requiresSetup;
|
||||||
} catch (NotReadableError $e) {
|
|
||||||
throw new ConfigurationError(
|
|
||||||
$this->translate('Could not read your authentication.ini, no authentication methods are available.'),
|
|
||||||
0,
|
|
||||||
$e
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$chain = new AuthChain($config);
|
|
||||||
$request = $this->getRequest();
|
|
||||||
if ($request->isPost() && $this->view->form->isValid($request->getPost())) {
|
|
||||||
$user = new User($this->view->form->getValue('username'));
|
|
||||||
$password = $this->view->form->getValue('password');
|
|
||||||
$backendsTried = 0;
|
|
||||||
$backendsWithError = 0;
|
|
||||||
|
|
||||||
$redirectUrl = $form->getValue('redirect');
|
|
||||||
|
|
||||||
if ($redirectUrl) {
|
|
||||||
$redirectUrl = Url::fromPath($redirectUrl);
|
|
||||||
} else {
|
|
||||||
$redirectUrl = Url::fromPath('dashboard');
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($chain as $backend) {
|
|
||||||
if ($backend instanceof ExternalBackend) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
++$backendsTried;
|
|
||||||
try {
|
|
||||||
$authenticated = $backend->authenticate($user, $password);
|
|
||||||
} catch (AuthenticationException $e) {
|
|
||||||
Logger::error($e);
|
|
||||||
++$backendsWithError;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if ($authenticated === true) {
|
|
||||||
$auth->setAuthenticated($user);
|
|
||||||
$this->rerenderLayout()->redirectNow($redirectUrl);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($backendsTried === 0) {
|
|
||||||
$this->view->form->addError(
|
|
||||||
$this->translate(
|
|
||||||
'No authentication methods available. Did you create'
|
|
||||||
. ' authentication.ini when setting up Icinga Web 2?'
|
|
||||||
)
|
|
||||||
);
|
|
||||||
} else if ($backendsTried === $backendsWithError) {
|
|
||||||
$this->view->form->addError(
|
|
||||||
$this->translate(
|
|
||||||
'All configured authentication methods failed.'
|
|
||||||
. ' Please check the system log or Icinga Web 2 log for more information.'
|
|
||||||
)
|
|
||||||
);
|
|
||||||
} elseif ($backendsWithError) {
|
|
||||||
$this->view->form->addError(
|
|
||||||
$this->translate(
|
|
||||||
'Please note that not all authentication methods were available.'
|
|
||||||
. ' Check the system log or Icinga Web 2 log for more information.'
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if ($backendsTried > 0 && $backendsTried !== $backendsWithError) {
|
|
||||||
$this->view->form->getElement('password')->addError($this->translate('Incorrect username or password'));
|
|
||||||
}
|
|
||||||
} elseif ($request->isGet()) {
|
|
||||||
$user = new User('');
|
|
||||||
foreach ($chain as $backend) {
|
|
||||||
$triedOnlyExternalAuth = $triedOnlyExternalAuth === null;
|
|
||||||
if ($backend instanceof ExternalBackend) {
|
|
||||||
$authenticated = $backend->authenticate($user);
|
|
||||||
if ($authenticated === true) {
|
|
||||||
$auth->setAuthenticated($user);
|
|
||||||
$this->rerenderLayout()->redirectNow(
|
|
||||||
Url::fromPath(Url::fromRequest()->getParam('redirect', 'dashboard'))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$triedOnlyExternalAuth = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (Exception $e) {
|
|
||||||
$this->view->form->addError($e->getMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->view->requiresExternalAuth = $triedOnlyExternalAuth && ! $auth->isAuthenticated();
|
|
||||||
$this->view->requiresSetup = Icinga::app()->requiresSetup();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -160,7 +55,7 @@ class AuthenticationController extends ActionController
|
|||||||
$isRemoteUser = $auth->getUser()->isRemoteUser();
|
$isRemoteUser = $auth->getUser()->isRemoteUser();
|
||||||
$auth->removeAuthorization();
|
$auth->removeAuthorization();
|
||||||
if ($isRemoteUser === true) {
|
if ($isRemoteUser === true) {
|
||||||
$this->_response->setHttpResponseCode(401);
|
$this->getResponse()->setHttpResponseCode(401);
|
||||||
} else {
|
} else {
|
||||||
$this->redirectToLogin();
|
$this->redirectToLogin();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user