monitoring/commands: Add schedule host downtime command form

refs #6593
This commit is contained in:
Eric Lippmann 2014-09-16 18:48:07 +02:00
parent a2a645892d
commit 4d8b6dddf1
2 changed files with 112 additions and 14 deletions

View File

@ -0,0 +1,93 @@
<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Monitoring\Form\Command\Object;
use Icinga\Module\Monitoring\Command\Object\PropagateHostDowntimeCommand;
use Icinga\Module\Monitoring\Command\Object\ScheduleHostDowntimeCommand;
use Icinga\Module\Monitoring\Command\Object\ScheduleServiceDowntimeCommand;
use Icinga\Web\Notification;
use Icinga\Web\Request;
/**
* Form for scheduling host downtimes
*/
class ScheduleHostDowntimeCommandForm extends ScheduleServiceDowntimeCommandForm
{
/**
* (non-PHPDoc)
* @see \Icinga\Web\Form::createElements() For the method documentation.
*/
public function createElements(array $formData = array())
{
parent::createElements($formData);
$this->addElements(array(
array(
'checkbox',
'all_services',
array(
'label' => mt('monitoring', 'All Services'),
'value' => true,
'description' => mt(
'monitoring',
'Schedule downtime for all services on the hosts and the hosts themself.'
)
)
),
array(
'select',
'child_hosts',
array(
'label' => mt('monitoring', 'Child Hosts'),
'required' => true,
'multiOptions' => array(
0 => mt('monitoring', 'Do nothing with child hosts'),
1 => mt('monitoring', 'Schedule triggered downtime for all child hosts'),
2 => mt('monitoring', 'Schedule non-triggered downtime for all child hosts')
),
'description' => mt(
'monitoring',
'Define what should be done with the child hosts of the hosts.'
)
)
)
));
return $this;
}
/**
* (non-PHPDoc)
* @see \Icinga\Web\Form::onSuccess() For the method documentation.
*/
public function onSuccess(Request $request)
{
foreach ($this->objects as $object) {
/** @var \Icinga\Module\Monitoring\Object\Host $object */
$childHosts = (int) $this->getElement('child_hosts')->getValue();
$allServices = $this->getElement('all_services')->isChecked();
if ($childHosts === 0) {
$hostDowntime = new ScheduleHostDowntimeCommand();
if ($allServices === true) {
$hostDowntime->setForAllServices();
};
} else {
$hostDowntime = new PropagateHostDowntimeCommand();
if ($childHosts === 1) {
$hostDowntime->setTriggered();
}
if ($allServices === true) {
foreach ($object->services as $service) {
$serviceDowntime = new ScheduleServiceDowntimeCommand();
$serviceDowntime->setObject($service);
$this->scheduleDowntime($serviceDowntime, $request);
}
}
}
$hostDowntime->setObject($object);
$this->scheduleDowntime($hostDowntime, $request);
}
Notification::success(mt('monitoring', 'Scheduling host downtime..'));
return true;
}
}

View File

@ -176,17 +176,9 @@ class ScheduleServiceDowntimeCommandForm extends ObjectsCommandForm
return $this; return $this;
} }
/** public function scheduleDowntime(ScheduleServiceDowntimeCommand $downtime, Request $request)
* (non-PHPDoc)
* @see \Icinga\Web\Form::onSuccess() For the method documentation.
*/
public function onSuccess(Request $request)
{ {
foreach ($this->objects as $object) {
/** @var \Icinga\Module\Monitoring\Object\Service $object */
$downtime = new ScheduleServiceDowntimeCommand();
$downtime $downtime
->setObject($object)
->setComment($this->getElement('comment')->getValue()) ->setComment($this->getElement('comment')->getValue())
->setAuthor($request->getUser()->getUsername()) ->setAuthor($request->getUser()->getUsername())
->setStart($this->getElement('start')->getValue()->getTimestamp()) ->setStart($this->getElement('start')->getValue()->getTimestamp())
@ -200,6 +192,19 @@ class ScheduleServiceDowntimeCommandForm extends ObjectsCommandForm
} }
$this->getTransport($request)->send($downtime); $this->getTransport($request)->send($downtime);
} }
/**
* (non-PHPDoc)
* @see \Icinga\Web\Form::onSuccess() For the method documentation.
*/
public function onSuccess(Request $request)
{
foreach ($this->objects as $object) {
/** @var \Icinga\Module\Monitoring\Object\Service $object */
$downtime = new ScheduleServiceDowntimeCommand();
$downtime->setObject($object);
$this->scheduleDowntime($downtime, $request);
}
Notification::success(mt('monitoring', 'Scheduling service downtime..')); Notification::success(mt('monitoring', 'Scheduling service downtime..'));
return true; return true;
} }