mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-20 23:00:16 -05:00
254 lines
8 KiB
PHP
254 lines
8 KiB
PHP
<?php
|
|
|
|
namespace Icinga\Module\Businessprocess\Forms;
|
|
|
|
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;
|
|
|
|
class ProcessForm extends QuickForm
|
|
{
|
|
/** @var MonitoringBackend */
|
|
protected $backend;
|
|
|
|
/** @var BusinessProcess */
|
|
protected $bp;
|
|
|
|
/** @var BpNode */
|
|
protected $node;
|
|
|
|
protected $objectList = array();
|
|
|
|
protected $processList = array();
|
|
|
|
/** @var SessionNamespace */
|
|
protected $session;
|
|
|
|
public function setup()
|
|
{
|
|
$this->addElement('text', 'name', array(
|
|
'label' => $this->translate('Name'),
|
|
'required' => true,
|
|
'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'
|
|
),
|
|
));
|
|
|
|
$this->addElement('select', 'operator', array(
|
|
'label' => $this->translate('Operator'),
|
|
'required' => true,
|
|
'multiOptions' => array(
|
|
'&' => $this->translate('AND'),
|
|
'|' => $this->translate('OR'),
|
|
'!' => $this->translate('NOT'),
|
|
'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'),
|
|
)
|
|
));
|
|
|
|
$this->addElement('multiselect', 'children', array(
|
|
'label' => $this->translate('Process components'),
|
|
'required' => true,
|
|
'size' => 14,
|
|
'style' => 'width: 25em;',
|
|
'description' => $this->translate(
|
|
'Hosts, services or other processes that should be part of this'
|
|
. ' business process'
|
|
)
|
|
));
|
|
|
|
$this->addElement('text', 'url', array(
|
|
'label' => $this->translate('Info URL'),
|
|
'description' => $this->translate(
|
|
'URL pointing to more information about this node'
|
|
)
|
|
));
|
|
|
|
$this->addElement('submit', $this->translate('Store'));
|
|
}
|
|
|
|
public function setBackend($backend)
|
|
{
|
|
$this->backend = $backend;
|
|
$this->fetchObjectList();
|
|
$this->fillAvailableChildren();
|
|
return $this;
|
|
}
|
|
|
|
protected function fillAvailableChildren()
|
|
{
|
|
if (empty($this->processList)) {
|
|
$children = $this->objectList;
|
|
} else {
|
|
$children = array(
|
|
$this->translate('Other Business Processes') => $this->processList
|
|
) + $this->objectList;
|
|
}
|
|
|
|
$this->getElement('children')->setMultiOptions($children);
|
|
}
|
|
|
|
public function setProcess($process)
|
|
{
|
|
$this->process = $process;
|
|
$this->setBackend($process->getBackend());
|
|
$this->processList = array();
|
|
foreach ($process->getNodes() as $node) {
|
|
if ($node instanceof BpNode) {
|
|
// TODO: Blacklist parents
|
|
$this->processList[(string) $node] = (string) $node; // display name?
|
|
}
|
|
}
|
|
natsort($this->processList);
|
|
$this->fillAvailableChildren();
|
|
return $this;
|
|
}
|
|
|
|
public function setNode(Node $node)
|
|
{
|
|
$this->node = $node;
|
|
|
|
$this->setDefaults(array(
|
|
'name' => (string) $node,
|
|
'alias' => $node->hasAlias() ? $node->getAlias() : '',
|
|
'display' => $node->getDisplay(),
|
|
'operator' => $node->getOperator(),
|
|
'url' => $node->getInfoUrl(),
|
|
'children' => array_keys($node->getChildren())
|
|
));
|
|
$this->getElement('name')->setAttrib('readonly', true);
|
|
return $this;
|
|
}
|
|
|
|
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 setSession($session)
|
|
{
|
|
$this->session = $session;
|
|
return $this;
|
|
}
|
|
|
|
public function onSuccess()
|
|
{
|
|
$changes = ProcessChanges::construct($this->process, $this->session);
|
|
|
|
$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',
|
|
$this->process->getName()
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|