icingaweb2-module-director/application/forms/IcingaHostForm.php

173 lines
5.9 KiB
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Forms;
2015-07-28 17:37:05 +02:00
use Icinga\Module\Director\Objects\DirectorDatafield;
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
class IcingaHostForm extends DirectorObjectForm
{
public function setup()
{
2016-02-17 21:58:28 +01:00
$this->addObjectTypeElement();
if (! $this->hasObjectType()) {
return $this->groupMainProperties();
}
2016-02-17 21:58:28 +01:00
2015-07-30 11:33:08 +02:00
$this->addElement('text', 'object_name', array(
'label' => $this->translate('Hostname'),
'required' => true,
2016-03-05 16:17:04 +01:00
'description' => $this->translate(
'Icinga object name for this host. This is usually a fully qualified host name'
. ' but it could basically be any kind of string. To make things easier for your'
. ' users we strongly suggest to use meaningful names for templates. E.g. "generic-host"'
. ' is ugly, "Standard Linux Server" is easier to understand'
)
));
2016-03-22 02:02:25 +01:00
if ($this->isNew() && $this->isObject() && $this->allowsExperimental()) {
$this->addBoolean('create_live', array(
'label' => $this->translate('Create immediately'),
'ignore' => true,
), 'n');
}
$this->addGroupsElement()
->addImportsElement()
->addDisplayNameElement()
->addAddressElements()
->addDisabledElement()
->groupMainProperties()
->addZoneElement();
2015-12-17 19:27:01 +01:00
$this->addBoolean('has_agent', array(
'label' => $this->translate('Icinga2 Agent'),
'description' => $this->translate(
'Whether this host has the Icinga 2 Agent installed'
),
'class' => 'autosubmit',
));
if ($this->getSentOrResolvedObjectValue('has_agent') === 'y') {
2015-12-17 19:27:01 +01:00
$this->addBoolean('master_should_connect', array(
'label' => $this->translate('Establish connection'),
'description' => $this->translate(
'Whether the parent (master) node should actively try to connect to this agent'
),
'required' => true
));
$this->addBoolean('accept_config', array(
'label' => $this->translate('Accepts config'),
'description' => $this->translate('Whether the agent is configured to accept config'),
'required' => true
));
}
2016-03-05 16:17:04 +01:00
$elements = array(
'zone_id',
'has_agent',
'master_should_connect',
'accept_config',
);
$this->addDisplayGroup($elements, 'clustering', array(
'decorators' => array(
'FormElements',
array('HtmlTag', array('tag' => 'dl')),
'Fieldset',
),
'order' => 80,
'legend' => $this->translate('Icinga Agent and zone settings')
2016-03-05 16:17:04 +01:00
));
$this->addCheckCommandElements()
->addCheckExecutionElements()
->setButtons();
2015-07-28 17:37:05 +02:00
}
2016-03-05 16:17:04 +01:00
2016-03-22 02:02:25 +01:00
protected function beforeSuccessfulRedirect()
{
if ($this->allowsExperimental() && $this->getSentValue('create_live') === 'y') {
$host = $this->getObject();
if ($this->api()->createObjectAtRuntime($host)) {
$this->api()->checkHostNow($host->object_name);
}
}
}
protected function addGroupsElement()
{
$groups = $this->enumHostgroups();
if (empty($groups)) {
return $this;
}
$this->addElement('extensibleSet', 'groups', array(
'label' => $this->translate('Groups'),
'multiOptions' => $this->optionallyAddFromEnum($groups),
'positional' => false,
'description' => $this->translate(
'Hostgroups that should be directly assigned to this node. Hostgroups can be useful'
. ' for various reasons. You might assign service checks based on assigned hostgroup.'
. ' They are also often used as an instrument to enforce restricted views in Icinga Web 2.'
. ' Hostgroups can be directly assigned to single hosts or to host templates. You might'
. ' also want to consider assigning hostgroups using apply rules'
)
));
return $this;
}
protected function addAddressElements()
{
if ($this->isTemplate()) {
return $this;
}
$this->addElement('text', 'address', array(
'label' => $this->translate('Host address'),
'description' => $this->translate(
'Host address. Usually an IPv4 address, but may be any kind of address'
. ' your check plugin is able to deal with'
)
));
$this->addElement('text', 'address6', array(
'label' => $this->translate('IPv6 address'),
'description' => $this->translate('Usually your hosts main IPv6 address')
));
return $this;
}
protected function addDisplayNameElement()
{
if ($this->isTemplate()) {
return $this;
}
$this->addElement('text', 'display_name', array(
'label' => $this->translate('Display name'),
'description' => $this->translate(
'Alternative name for this host. Might be a host alias or and kind'
. ' of string helping your users to identify this host'
)
));
return $this;
}
2016-03-05 16:17:04 +01:00
protected function enumHostgroups()
{
$db = $this->db->getDbAdapter();
$select = $db->select()->from(
'icinga_hostgroup',
array(
'name' => 'object_name',
'display' => 'COALESCE(display_name, object_name)'
)
)->where('object_type = ?', 'object')->order('display');
return $db->fetchPairs($select);
}
}