2013-06-14 13:51:44 +02:00
|
|
|
<?php
|
|
|
|
// @codingStandardsIgnoreStart
|
|
|
|
// {{{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-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-03-03 17:21:17 +01:00
|
|
|
use Icinga\Exception\NotReadableError;
|
|
|
|
use Icinga\Exception\ConfigurationError;
|
|
|
|
use Icinga\User;
|
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-01-23 16:03:47 +01:00
|
|
|
$this->view->title = 'Icinga Web Login';
|
2013-06-24 18:46:45 +02:00
|
|
|
try {
|
2014-01-23 16:03:47 +01:00
|
|
|
$redirectUrl = $this->_request->getParam('redirect', 'index?_render=body');
|
2013-11-20 12:01:40 +01:00
|
|
|
$auth = AuthManager::getInstance();
|
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
|
|
|
}
|
2013-08-02 16:35:16 +02:00
|
|
|
if ($this->view->form->isSubmittedAndValid()) {
|
2014-03-03 17:21:17 +01:00
|
|
|
$user = new User(
|
|
|
|
$this->view->form->getValue('username')
|
2014-01-23 16:03:47 +01:00
|
|
|
);
|
2014-03-03 17:21:17 +01:00
|
|
|
try {
|
|
|
|
$config = Config::app('authentication');
|
|
|
|
} catch (NotReadableError $e) {
|
2014-03-03 19:03:39 +01:00
|
|
|
Logger::error(
|
2014-03-03 17:21:17 +01:00
|
|
|
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 contact your Icinga Web administrator'
|
|
|
|
);
|
2013-06-24 18:46:45 +02:00
|
|
|
}
|
2014-03-03 17:21:17 +01:00
|
|
|
$backendsWithError = 0;
|
|
|
|
// TODO(el): Currently the user is only notified about authentication backend problems when all backends
|
|
|
|
// have errors. It may be the case that the authentication backend which provides the user has errors
|
|
|
|
// but other authentication backends work. In that scenario the user is presented an error message
|
|
|
|
// saying "Incorrect username or password". We must inform the user that not all authentication methods
|
|
|
|
// are available.
|
|
|
|
$backendsTried = 0;
|
|
|
|
$chain = new AuthChain($config);
|
|
|
|
foreach ($chain as $backend) {
|
|
|
|
++$backendsTried;
|
|
|
|
try {
|
|
|
|
if ($backend->authenticate($user, $this->view->form->getValue('password'))) {
|
|
|
|
$auth->setAuthenticated($user);
|
|
|
|
$this->redirectNow($redirectUrl);
|
|
|
|
}
|
|
|
|
} catch (Exception $e) {
|
2014-03-03 19:03:39 +01:00
|
|
|
Logger::error(
|
2014-03-03 17:21:17 +01:00
|
|
|
new Exception(
|
|
|
|
'Cannot authenticate against backend "' . $backend->getName() . '".'
|
|
|
|
. ' An exception was thrown:', 0, $e
|
|
|
|
)
|
|
|
|
);
|
|
|
|
++$backendsWithError;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($backendsWithError === $backendsTried) {
|
|
|
|
throw new ConfigurationError(
|
|
|
|
'No authentication methods available. It seems that all set up authentication methods have'
|
|
|
|
. ' errors. Please contact your Icinga Web administrator'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$this->view->form->getElement('password')->addError(t('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
|
|
|
}
|
|
|
|
}
|
2013-08-02 16:35:16 +02:00
|
|
|
// @codingStandardsIgnoreEnd
|