2013-08-16 16:24:12 +02:00
|
|
|
<?php
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
/**
|
|
|
|
* This file is part of Icinga 2 Web.
|
2013-08-21 11:02:53 +02:00
|
|
|
*
|
2013-08-16 16:24:12 +02:00
|
|
|
* Icinga 2 Web - Head for multiple monitoring backends.
|
|
|
|
* 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-08-16 16:24:12 +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>
|
|
|
|
*/
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
|
|
|
|
|
|
|
namespace Icinga\Form\Config\Authentication;
|
|
|
|
|
2013-08-21 11:02:53 +02:00
|
|
|
use \Zend_Config;
|
2013-08-16 16:24:12 +02:00
|
|
|
use \Icinga\Application\Config as IcingaConfig;
|
|
|
|
use \Icinga\Application\Icinga;
|
|
|
|
use \Icinga\Application\Logger;
|
|
|
|
use \Icinga\Application\DbAdapterFactory;
|
|
|
|
use \Icinga\Web\Form;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Form class for adding/modifying database authentication backends
|
|
|
|
*/
|
|
|
|
class DbBackendForm extends BaseBackendForm
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Return a list of all database resource ready to be used as the multiOptions
|
|
|
|
* attribute in a Zend_Form_Element_Select object
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function getDatabaseResources()
|
|
|
|
{
|
|
|
|
$backends = array();
|
|
|
|
foreach ($this->getResources() as $resname => $resource) {
|
|
|
|
if ($resource['type'] !== 'db') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$backends[$resname] = $resname;
|
|
|
|
}
|
|
|
|
return $backends;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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()
|
|
|
|
{
|
|
|
|
$name = $this->filterName($this->getBackendName());
|
|
|
|
|
|
|
|
$this->addElement(
|
|
|
|
'text',
|
|
|
|
'backend_' . $name . '_name',
|
|
|
|
array(
|
2013-08-21 11:02:53 +02:00
|
|
|
'required' => true,
|
|
|
|
'allowEmpty' => false,
|
|
|
|
'label' => 'Backend Name',
|
|
|
|
'helptext' => 'The name of this authentication provider',
|
|
|
|
'value' => $this->getBackendName()
|
2013-08-16 16:24:12 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->addElement(
|
|
|
|
'select',
|
|
|
|
'backend_' . $name . '_resource',
|
|
|
|
array(
|
2013-08-20 17:30:28 +02:00
|
|
|
'label' => 'Database Connection',
|
2013-08-16 16:24:12 +02:00
|
|
|
'required' => true,
|
|
|
|
'allowEmpty' => false,
|
2013-08-19 18:25:20 +02:00
|
|
|
'helptext' => 'The database connection to use for authenticating with this provider',
|
2013-08-16 16:24:12 +02:00
|
|
|
'value' => $this->getBackend()->get('resource'),
|
|
|
|
'multiOptions' => $this->getDatabaseResources()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2013-08-23 10:58:58 +02:00
|
|
|
$this->setSubmitLabel('{{SAVE_ICON}} 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()
|
|
|
|
{
|
|
|
|
$name = $this->getBackendName();
|
|
|
|
$prefix = 'backend_' . $this->filterName($name) . '_';
|
|
|
|
|
|
|
|
$section = $this->getValue($prefix . 'name');
|
|
|
|
$cfg = array(
|
2013-08-21 11:02:53 +02:00
|
|
|
'backend' => 'db',
|
|
|
|
'target' => 'user',
|
|
|
|
'resource' => $this->getValue($prefix . 'resource'),
|
2013-08-16 16:24:12 +02:00
|
|
|
);
|
|
|
|
return array(
|
|
|
|
$section => $cfg
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|