icingaweb2-module-businessp.../application/forms/ProcessForm.php

350 lines
11 KiB
PHP
Raw Normal View History

2014-11-30 06:22:11 -05:00
<?php
2014-11-30 09:56:58 -05:00
namespace Icinga\Module\Businessprocess\Forms;
2014-11-30 06:22:11 -05:00
2014-11-30 09:56:58 -05:00
use Icinga\Module\Businessprocess\BpNode;
use Icinga\Module\Businessprocess\BusinessProcess;
use Icinga\Module\Businessprocess\Modification\ProcessChanges;
use Icinga\Module\Businessprocess\Web\Form\QuickForm;
use Icinga\Module\Monitoring\Backend\MonitoringBackend;
use Icinga\Web\Notification;
use Icinga\Web\Session\SessionNamespace;
2014-11-30 06:22:11 -05:00
class ProcessForm extends QuickForm
2014-11-30 06:22:11 -05:00
{
/** @var MonitoringBackend */
2014-11-30 06:22:11 -05:00
protected $backend;
/** @var BusinessProcess */
protected $bp;
2014-11-30 06:22:11 -05:00
/** @var BpNode */
2014-11-30 06:22:11 -05:00
protected $node;
protected $objectList = array();
protected $processList = array();
/** @var SessionNamespace */
2015-03-03 04:50:19 -05:00
protected $session;
2014-11-30 06:22:11 -05:00
public function setup()
{
$this->addElement('text', 'name', array(
2015-03-16 04:08:00 -04:00
'label' => $this->translate('Name'),
2014-11-30 06:22:11 -05:00
'required' => true,
2015-03-16 04:08:00 -04:00
'description' => $this->translate(
'This is the unique identifier of this process'
),
));
$this->addElement('text', 'alias', array(
'label' => $this->translate('Title'),
'description' => $this->translate(
'Usually this title will be shown for this node. Equals name'
. ' if not given'
2015-03-16 04:08:00 -04:00
),
2014-11-30 06:22:11 -05:00
));
$this->addElement('select', 'operator', array(
'label' => $this->translate('Operator'),
'required' => true,
'multiOptions' => array(
2015-03-03 04:50:19 -05:00
'&' => $this->translate('AND'),
'|' => $this->translate('OR'),
'!' => $this->translate('NOT'),
2015-03-16 04:08:00 -04:00
'1' => $this->translate('MIN 1'),
'2' => $this->translate('MIN 2'),
'3' => $this->translate('MIN 3'),
'4' => $this->translate('MIN 4'),
'5' => $this->translate('MIN 5'),
'6' => $this->translate('MIN 6'),
'7' => $this->translate('MIN 7'),
'8' => $this->translate('MIN 8'),
'9' => $this->translate('MIN 9'),
)
));
$this->addElement('select', 'display', array(
'label' => $this->translate('Visualization'),
'required' => true,
'description' => $this->translate(
'Where to show this process'
),
'multiOptions' => array(
'1' => $this->translate('Toplevel Process'),
'0' => $this->translate('Subprocess only'),
2014-11-30 06:22:11 -05:00
)
));
2015-03-16 04:08:00 -04:00
$this->addElement('text', 'url', array(
'label' => $this->translate('Info URL'),
'description' => $this->translate(
'URL pointing to more information about this node'
)
2014-11-30 06:22:11 -05:00
));
2015-03-16 04:08:00 -04:00
2016-12-09 08:49:39 -05:00
$this->addElement('select', 'object_type', array(
'label' => $this->translate('Add children'),
'required' => $this->node === null || ! $this->node->hasChildren(),
'ignore' => true,
'class' => 'autosubmit',
'multiOptions' => $this->optionalEnum(
array(
'hosts' => $this->translate('Host'),
'service' => $this->translate('Service'),
'process' => $this->translate('Another process'),
'include' => $this->translate('External process'),
)
)
));
switch ($this->getSentValue('object_type')) {
case 'hosts':
$this->addHostsElement();
break;
case 'service':
$this->addHostElement();
if ($host = $this->getSentValue('host')) {
$this->addServicesElement($host);
}
break;
case 'process':
$this->addProcessesElement();
break;
}
2014-11-30 06:22:11 -05:00
}
2016-12-09 08:49:39 -05:00
protected function addHostsElement()
2014-11-30 06:22:11 -05:00
{
2016-12-09 08:49:39 -05:00
$this->addElement('multiselect', 'children', array(
'label' => $this->translate('Hosts'),
'required' => true,
'size' => 14,
'style' => 'width: 25em',
'multiOptions' => $this->enumHostList(),
'description' => $this->translate(
'Hosts that should be part of this business process node'
)
));
2014-11-30 06:22:11 -05:00
}
2016-12-09 08:49:39 -05:00
protected function addHostElement()
2014-11-30 06:22:11 -05:00
{
2016-12-09 08:49:39 -05:00
$this->addElement('select', 'host', array(
'label' => $this->translate('Host'),
'required' => true,
'ignore' => true,
'class' => 'autosubmit',
'multiOptions' => $this->optionalEnum($this->enumHostList()),
));
}
protected function addServicesElement($host)
{
$this->addElement('multiselect', 'children', array(
'label' => $this->translate('Services'),
'required' => true,
'size' => 14,
'style' => 'width: 25em',
'multiOptions' => $this->enumServiceList($host),
'description' => $this->translate(
'Services that should be part of this business process node'
)
));
}
protected function addProcessesElement()
{
$this->addElement('multiselect', 'children', array(
'label' => $this->translate('Process nodes'),
'required' => true,
'size' => 14,
'style' => 'width: 25em',
'multiOptions' => $this->enumProcesses(),
'description' => $this->translate(
'Other processes that should be part of this business process node'
)
));
}
2014-11-30 06:22:11 -05:00
2016-12-09 08:49:39 -05:00
/**
* @param MonitoringBackend $backend
* @return $this
*/
public function setBackend(MonitoringBackend $backend)
{
$this->backend = $backend;
return $this;
2014-11-30 06:22:11 -05:00
}
2016-12-09 08:49:39 -05:00
/**
* @param BusinessProcess $process
* @return $this
*/
public function setProcess(BusinessProcess $process)
2014-11-30 06:22:11 -05:00
{
2016-12-09 08:49:39 -05:00
$this->bp = $process;
2015-02-06 19:25:37 -05:00
$this->setBackend($process->getBackend());
2014-11-30 06:22:11 -05:00
return $this;
}
2016-12-09 08:49:39 -05:00
/**
* @param BpNode $node
* @return $this
*/
public function setNode(BpNode $node)
2014-11-30 06:22:11 -05:00
{
$this->node = $node;
2016-12-09 08:49:39 -05:00
return $this;
}
2014-11-30 06:22:11 -05:00
2016-12-09 08:49:39 -05:00
/**
* @param SessionNamespace $session
* @return $this
*/
public function setSession(SessionNamespace $session)
{
$this->session = $session;
2014-11-30 06:22:11 -05:00
return $this;
}
2016-12-09 08:49:39 -05:00
protected function enumHostList()
{
$names = $this->backend->select()->from('hostStatus', array(
'hostname' => 'host_name',
))->order('host_name')->getQuery()->fetchColumn();
// fetchPairs doesn't seem to work when using the same column with
// different aliases twice
return array_combine((array) $names, (array) $names);
}
protected function enumServiceList($host)
{
$query = $this->backend->select()->from(
'serviceStatus',
array('service' => 'service_description')
)->where('host_name', $host);
$query->order('service_description');
$names = $query->getQuery()->fetchColumn();
$services = array();
foreach ($names as $name) {
$services[$host . ';' . $name] = $name;
}
return $services;
}
protected function enumProcesses()
{
$list = array();
foreach ($this->bp->getNodes() as $node) {
if ($node instanceof BpNode) {
// TODO: Blacklist parents
$list[(string) $node] = (string) $node; // display name?
}
}
natsort($list);
return $list;
}
2014-11-30 06:22:11 -05:00
protected function fetchObjectList()
{
$this->objectList = array();
$hosts = $this->backend->select()->from('hostStatus', array(
'hostname' => 'host_name',
'in_downtime' => 'host_in_downtime',
'ack' => 'host_acknowledged',
'state' => 'host_state'
))->order('host_name')->getQuery()->fetchAll();
$services = $this->backend->select()->from('serviceStatus', array(
'hostname' => 'host_name',
'service' => 'service_description',
'in_downtime' => 'service_in_downtime',
'ack' => 'service_acknowledged',
'state' => 'service_state'
))->order('host_name')->order('service_description')->getQuery()->fetchAll();
foreach ($hosts as $host) {
$this->objectList[$host->hostname] = array(
$host->hostname . ';Hoststatus' => 'Host Status'
);
}
foreach ($services as $service) {
$this->objectList[$service->hostname][
$service->hostname . ';' . $service->service
] = $service->service;
}
return $this;
}
public function onSuccess()
{
2016-12-09 08:49:39 -05:00
$changes = ProcessChanges::construct($this->bp, $this->session);
2015-03-16 04:08:00 -04:00
$modifications = array();
$children = $this->getValue('children');
$alias = $this->getValue('alias');
$operator = $this->getValue('operator');
$display = $this->getValue('display');
$url = $this->getValue('url');
if (empty($url)) {
$url = null;
}
if (empty($alias)) {
$alias = null;
}
ksort($children);
// TODO: rename
if ($node = $this->node) {
if ($display !== $node->getDisplay()) {
$modifications['display'] = $display;
}
if ($operator !== $node->getOperator()) {
$modifications['operator'] = $operator;
}
if ($children !== $node->getChildNames()) {
$modifications['childNames'] = $children;
}
if ($url !== $node->getInfoUrl()) {
$modifications['infoUrl'] = $url;
}
if ($alias !== $node->getAlias()) {
$modifications['alias'] = $alias;
}
} else {
$modifications = array(
'display' => $display,
'operator' => $operator,
'childNames' => $children,
'infoUrl' => $url,
'alias' => $alias,
);
}
if (! empty($modifications)) {
if ($this->node === null) {
$changes->createNode($this->getValue('name'), $modifications);
} else {
$changes->modifyNode($this->node, $modifications);
}
Notification::success(
sprintf(
'Process %s has been modified',
2016-12-09 08:49:39 -05:00
$this->bp->getName()
2015-03-16 04:08:00 -04:00
)
);
}
2014-11-30 06:22:11 -05:00
}
}