2013-06-14 13:51:44 +02:00
|
|
|
<?php
|
2014-04-28 14:03:52 +02:00
|
|
|
// @codeCoverageIgnoreStart
|
2013-06-14 13:51:44 +02:00
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
2013-06-28 16:47:30 +02:00
|
|
|
/**
|
2013-10-23 15:10:33 +02:00
|
|
|
* This file is part of Icinga Web 2.
|
|
|
|
*
|
|
|
|
* Icinga Web 2 - Head for multiple monitoring backends.
|
2013-06-28 16:47:30 +02:00
|
|
|
* Copyright (C) 2013 Icinga Development Team
|
2013-08-16 14:56:23 +02:00
|
|
|
*
|
2013-06-28 16:47:30 +02:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2013-08-16 14:56:23 +02:00
|
|
|
*
|
2013-06-28 16:47:30 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2013-08-16 14:56:23 +02:00
|
|
|
*
|
2013-06-28 16:47:30 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2013-08-16 14:56:23 +02:00
|
|
|
*
|
2013-10-23 15:10:33 +02:00
|
|
|
* @copyright 2013 Icinga Development Team <info@icinga.org>
|
|
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2
|
|
|
|
* @author Icinga Development Team <info@icinga.org>
|
|
|
|
*
|
2013-06-28 16:47:30 +02:00
|
|
|
*/
|
2013-06-14 13:51:44 +02:00
|
|
|
// {{{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\Authentication\Manager as AuthManager;
|
|
|
|
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()
|
|
|
|
{
|
2013-07-15 14:32:18 +02:00
|
|
|
$this->view->form = new LoginForm();
|
2013-07-12 16:10:56 +02:00
|
|
|
$this->view->form->setRequest($this->_request);
|
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-03-06 12:07:24 +01:00
|
|
|
$redirectUrl = Url::fromPath($this->_request->getParam('redirect', 'dashboard'));
|
2014-03-28 14:45:03 +01:00
|
|
|
|
2014-03-06 12:07:24 +01:00
|
|
|
if ($this->_request->isXmlHttpRequest()) {
|
|
|
|
$redirectUrl->setParam('_render', 'layout');
|
|
|
|
}
|
2014-03-28 14:45:03 +01:00
|
|
|
|
2013-11-20 12:01:40 +01:00
|
|
|
$auth = AuthManager::getInstance();
|
2014-06-03 17:59:22 +02:00
|
|
|
|
2013-06-24 18:46:45 +02:00
|
|
|
if ($auth->isAuthenticated()) {
|
2014-01-23 16:03:47 +01:00
|
|
|
$this->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) {
|
|
|
|
Logger::error(
|
|
|
|
new Exception('Cannot load authentication configuration. An exception was thrown:', 0, $e)
|
|
|
|
);
|
|
|
|
throw new ConfigurationError(
|
|
|
|
'No authentication methods available. It seems that none authentication method has been set'
|
|
|
|
. ' up. Please check the system log or Icinga Web 2 log for more information'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$chain = new AuthChain($config);
|
|
|
|
|
|
|
|
|
|
|
|
if ($this->getRequest()->isGet()) {
|
2014-06-11 15:04:15 +02:00
|
|
|
$user = new User('');
|
2014-06-03 17:59:22 +02:00
|
|
|
foreach ($chain as $backend) {
|
|
|
|
if ($backend instanceof AutoLoginBackend) {
|
2014-06-11 15:04:15 +02:00
|
|
|
$authenticated = $backend->authenticate($user);
|
2014-06-03 17:59:22 +02:00
|
|
|
if ($authenticated === true) {
|
|
|
|
$auth->setAuthenticated($user);
|
|
|
|
$this->redirectNow($redirectUrl);
|
|
|
|
}
|
|
|
|
}
|
2013-06-24 18:46:45 +02:00
|
|
|
}
|
2014-06-03 17:59:22 +02:00
|
|
|
} elseif ($this->view->form->isSubmittedAndValid()) {
|
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-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);
|
|
|
|
$this->redirectNow($redirectUrl);
|
2014-03-03 17:21:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($backendsWithError === $backendsTried) {
|
|
|
|
throw new ConfigurationError(
|
2014-06-02 15:47:21 +02:00
|
|
|
$this->translate(
|
|
|
|
'No authentication methods available. It seems that all set up authentication methods have'
|
|
|
|
. ' errors. Please check the system log or Icinga Web 2 log for more information'
|
|
|
|
)
|
2014-03-03 17:21:17 +01:00
|
|
|
);
|
|
|
|
}
|
2014-06-02 15:47:21 +02:00
|
|
|
if ($backendsWithError) {
|
|
|
|
$this->view->form->addNote(
|
|
|
|
$this->translate(
|
|
|
|
'Note that not all authentication backends are available for authentication because they'
|
|
|
|
. ' have errors. Please check the system log or Icinga Web 2 log for more information'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$this->view->form->getElement('password')->addError($this->translate('Incorrect username or password'));
|
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()
|
|
|
|
{
|
2013-11-20 12:01:40 +01:00
|
|
|
$auth = AuthManager::getInstance();
|
2013-06-24 18:46:45 +02:00
|
|
|
$auth->removeAuthorization();
|
2014-02-26 17:36:20 +01:00
|
|
|
|
|
|
|
if ($auth->isAuthenticatedFromRemoteUser()) {
|
|
|
|
$this->_helper->layout->setLayout('login');
|
|
|
|
$this->_response->setHttpResponseCode(401);
|
|
|
|
} else {
|
|
|
|
$this->_helper->layout->setLayout('inline');
|
|
|
|
$this->redirectToLogin();
|
|
|
|
}
|
2013-06-14 13:51:44 +02:00
|
|
|
}
|
|
|
|
}
|
2014-04-28 14:03:52 +02:00
|
|
|
// @codeCoverageIgnoreEnd
|