2016-03-10 19:28:31 +01:00

162 lines
5.0 KiB
PHP

<?php
namespace Icinga\Module\Director\Forms;
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
class IcingaUserForm extends DirectorObjectForm
{
public function setup()
{
$this->addObjectTypeElement();
if (! $this->hasObjectType()) {
$this->groupObjectDefinition();
return;
}
if ($this->isTemplate()) {
$this->addElement('text', 'object_name', array(
'label' => $this->translate('User template name'),
'required' => true,
'description' => $this->translate('User for the Icinga host template you are going to create')
));
} else {
$this->addElement('text', 'object_name', array(
'label' => $this->translate('Username'),
'required' => true,
'description' => $this->translate('Username for the Icinga host you are going to create')
));
}
$this->addElement('text', 'email', array(
'label' => $this->translate('Email'),
'description' => $this->translate('The Email address of the user.')
));
$this->addElement('text', 'pager', array(
'label' => $this->translate('Pager'),
'description' => $this->translate('The pager address of the user.')
));
$this->addGroupsElement();
$this->addImportsElement();
$this->optionalBoolean(
'enable_notifications',
$this->translate('Send notifications'),
$this->translate('Whether to send notifications for this user')
);
$this->addDisabledElement();
$this->groupObjectDefinition();
$this->addEventFilterElements();
$this->setButtons();
}
protected function addGroupsElement()
{
$groups = $this->enumUsergroups();
if (empty($groups)) {
return $this;
}
$this->addElement('extensibleSet', 'groups', array(
'label' => $this->translate('Groups'),
'multiOptions' => $this->optionallyAddFromEnum($groups),
'positional' => false,
'description' => $this->translate(
'User groups that should be directly assigned to this user. Groups can be useful'
. ' for various reasons. You might prefer to send notifications to groups instead of'
. ' single users'
)
));
return $this;
}
protected function addEventFilterElements()
{
$this->addElement('extensibleSet', 'states', array(
'label' => $this->translate('States'),
'multiOptions' => $this->optionallyAddFromEnum($this->enumStates()),
'description' => $this->translate(
'The host/service states you want to get notifications for'
),
));
$this->addElement('extensibleSet', 'types', array(
'label' => $this->translate('Transition types'),
'multiOptions' => $this->optionallyAddFromEnum($this->enumTypes()),
'description' => $this->translate(
'The state transition types you want to get notifications for'
),
));
$elements = array(
'states',
'types',
);
$this->addDisplayGroup($elements, 'event_filters', array(
'decorators' => array(
'FormElements',
array('HtmlTag', array('tag' => 'dl')),
'Fieldset',
),
'order' =>70,
'legend' => $this->translate('State and transition type filters')
));
}
protected function enumStates()
{
$set = new \Icinga\Module\Director\IcingaConfig\StateFilterSet();
return $set->enumAllowedValues();
}
protected function enumTypes()
{
$set = new \Icinga\Module\Director\IcingaConfig\TypeFilterSet();
return $set->enumAllowedValues();
}
protected function groupObjectDefinition()
{
$elements = array(
'object_type',
'object_name',
'display_name',
'imports',
'groups',
'email',
'pager',
'enable_notifications',
'disabled',
);
$this->addDisplayGroup($elements, 'object_definition', array(
'decorators' => array(
'FormElements',
array('HtmlTag', array('tag' => 'dl')),
'Fieldset',
),
'order' => 20,
'legend' => $this->translate('User properties')
));
}
protected function enumUsergroups()
{
$db = $this->db->getDbAdapter();
$select = $db->select()->from(
'icinga_usergroup',
array(
'name' => 'object_name',
'display' => 'COALESCE(display_name, object_name)'
)
)->where('object_type = ?', 'object')->order('display');
return $db->fetchPairs($select);
}
}