2013-08-16 16:24:12 +02:00
|
|
|
<?php
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
/**
|
2013-10-23 15:10:33 +02:00
|
|
|
* This file is part of Icinga Web 2.
|
2013-08-21 11:02:53 +02:00
|
|
|
*
|
2013-10-23 15:10:33 +02:00
|
|
|
* Icinga Web 2 - Head for multiple monitoring backends.
|
2013-08-16 16:24:12 +02:00
|
|
|
* Copyright (C) 2013 Icinga Development Team
|
2013-08-21 11:02:53 +02:00
|
|
|
*
|
2013-08-16 16:24:12 +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-21 11:02:53 +02:00
|
|
|
*
|
2013-08-16 16:24:12 +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-21 11:02:53 +02:00
|
|
|
*
|
2013-08-16 16:24:12 +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-21 11:02:53 +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-08-16 16:24:12 +02:00
|
|
|
*/
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
|
|
|
namespace Icinga\Form\Config\Authentication;
|
|
|
|
|
2014-04-16 11:50:58 +02:00
|
|
|
use \Exception;
|
2013-08-30 16:28:13 +02:00
|
|
|
use \Zend_Config;
|
2014-04-16 11:50:58 +02:00
|
|
|
use Icinga\Data\ResourceFactory;
|
|
|
|
use Icinga\Authentication\UserBackend;
|
2013-08-16 16:24:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form class for adding/modifying database authentication backends
|
|
|
|
*/
|
|
|
|
class DbBackendForm extends BaseBackendForm
|
|
|
|
{
|
|
|
|
/**
|
2014-04-16 11:50:58 +02:00
|
|
|
* Return content of the resources.ini or previously set resources
|
2013-08-16 16:24:12 +02:00
|
|
|
*
|
2014-04-16 11:50:58 +02:00
|
|
|
* @return array
|
2013-08-16 16:24:12 +02:00
|
|
|
*/
|
2014-04-16 11:50:58 +02:00
|
|
|
public function getResources()
|
2013-08-16 16:24:12 +02:00
|
|
|
{
|
2014-04-16 11:50:58 +02:00
|
|
|
if ($this->resources === null) {
|
|
|
|
$res = ResourceFactory::getResourceConfigs('db')->toArray();
|
|
|
|
|
|
|
|
foreach (array_keys($res) as $key) {
|
|
|
|
$res[$key] = $key;
|
2013-08-16 16:24:12 +02:00
|
|
|
}
|
2014-04-16 11:50:58 +02:00
|
|
|
|
|
|
|
return $res;
|
|
|
|
} else {
|
|
|
|
return $this->resources;
|
2013-08-16 16:24:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-08-21 11:02:53 +02:00
|
|
|
* Create this form and add all required elements
|
|
|
|
*
|
|
|
|
* @see Form::create()
|
|
|
|
*/
|
2013-08-16 16:24:12 +02:00
|
|
|
public function create()
|
|
|
|
{
|
2013-08-28 10:12:27 +02:00
|
|
|
$this->setName('form_modify_backend');
|
2013-08-16 16:24:12 +02:00
|
|
|
$name = $this->filterName($this->getBackendName());
|
|
|
|
|
|
|
|
$this->addElement(
|
|
|
|
'text',
|
|
|
|
'backend_' . $name . '_name',
|
|
|
|
array(
|
2013-08-21 11:02:53 +02:00
|
|
|
'required' => true,
|
2014-04-16 11:50:58 +02:00
|
|
|
'allowEmpty' => false,
|
|
|
|
'label' => t('Backend Name'),
|
|
|
|
'helptext' => t('The name of this authentication provider'),
|
2013-08-21 11:02:53 +02:00
|
|
|
'value' => $this->getBackendName()
|
2013-08-16 16:24:12 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->addElement(
|
|
|
|
'select',
|
|
|
|
'backend_' . $name . '_resource',
|
|
|
|
array(
|
2014-04-16 11:50:58 +02:00
|
|
|
'required' => true,
|
|
|
|
'allowEmpty' => false,
|
|
|
|
'label' => t('Database Connection'),
|
|
|
|
'helptext' => t('The database connection to use for authenticating with this provider'),
|
|
|
|
'value' => $this->getBackend()->get('resource'),
|
|
|
|
'multiOptions' => $this->getResources()
|
2013-08-16 16:24:12 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2013-10-23 12:25:51 +02:00
|
|
|
$this->addElement(
|
|
|
|
'button',
|
|
|
|
'btn_submit',
|
|
|
|
array(
|
|
|
|
'type' => 'submit',
|
|
|
|
'value' => '1',
|
|
|
|
'escape' => false,
|
|
|
|
'class' => 'btn btn-cta btn-wide',
|
|
|
|
'label' => '<i class="icinga-icon-save"></i> Save Backend'
|
|
|
|
)
|
|
|
|
);
|
2013-08-16 16:24:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the datatbase authentication backend configuration for this form
|
|
|
|
*
|
2013-08-21 11:02:53 +02:00
|
|
|
* @return array
|
|
|
|
*
|
|
|
|
* @see BaseBackendForm::getConfig()
|
2013-08-16 16:24:12 +02:00
|
|
|
*/
|
|
|
|
public function getConfig()
|
|
|
|
{
|
2014-04-16 11:50:58 +02:00
|
|
|
$prefix = 'backend_' . $this->filterName($this->getBackendName()) . '_';
|
2013-08-16 16:24:12 +02:00
|
|
|
$section = $this->getValue($prefix . 'name');
|
|
|
|
$cfg = array(
|
2014-04-16 11:50:58 +02:00
|
|
|
'backend' => 'db',
|
|
|
|
'resource' => $this->getValue($prefix . 'resource'),
|
2013-08-16 16:24:12 +02:00
|
|
|
);
|
2014-04-16 11:50:58 +02:00
|
|
|
|
|
|
|
return array($section => $cfg);
|
2013-08-16 16:24:12 +02:00
|
|
|
}
|
2013-08-26 16:56:23 +02:00
|
|
|
|
2013-08-27 14:37:22 +02:00
|
|
|
/**
|
|
|
|
* Validate the current configuration by creating a backend and requesting the user count
|
|
|
|
*
|
2014-04-16 11:50:58 +02:00
|
|
|
* @return bool Whether validation succeeded or not
|
|
|
|
*
|
2013-08-27 14:37:22 +02:00
|
|
|
* @see BaseBackendForm::isValidAuthenticationBackend
|
|
|
|
*/
|
|
|
|
public function isValidAuthenticationBackend()
|
2013-08-26 16:56:23 +02:00
|
|
|
{
|
2013-08-26 17:23:31 +02:00
|
|
|
try {
|
2014-04-16 11:50:58 +02:00
|
|
|
$cfg = $this->getConfig();
|
|
|
|
$backendName = key($cfg);
|
|
|
|
$testConn = UserBackend::create($backendName, new Zend_Config($cfg[$backendName]));
|
|
|
|
|
|
|
|
if ($testConn->count() === 0) {
|
|
|
|
$this->addErrorMessage(t('No users found under the specified database backend'));
|
2013-08-26 17:23:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-16 11:50:58 +02:00
|
|
|
} catch (Exception $e) {
|
|
|
|
$this->addErrorMessage(sprintf(t('Using the specified backend failed: %s'), $e->getMessage()));
|
2013-08-26 17:23:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-16 11:50:58 +02:00
|
|
|
|
2013-08-26 16:56:23 +02:00
|
|
|
return true;
|
|
|
|
}
|
2013-08-16 16:24:12 +02:00
|
|
|
}
|