mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-23 13:54:26 +02:00
monitoring/commands: Add schedule host downtime command form
refs #6593
This commit is contained in:
parent
a2a645892d
commit
4d8b6dddf1
@ -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;
|
||||||
|
}
|
||||||
|
}
|
@ -176,6 +176,23 @@ class ScheduleServiceDowntimeCommandForm extends ObjectsCommandForm
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function scheduleDowntime(ScheduleServiceDowntimeCommand $downtime, Request $request)
|
||||||
|
{
|
||||||
|
$downtime
|
||||||
|
->setComment($this->getElement('comment')->getValue())
|
||||||
|
->setAuthor($request->getUser()->getUsername())
|
||||||
|
->setStart($this->getElement('start')->getValue()->getTimestamp())
|
||||||
|
->setEnd($this->getElement('end')->getValue()->getTimestamp());
|
||||||
|
if ($this->getElement('type')->getValue() === self::FLEXIBLE) {
|
||||||
|
$downtime->setFixed(false);
|
||||||
|
$downtime->setDuration(
|
||||||
|
(float) $this->getElement('hours')->getValue() * 3600
|
||||||
|
+ (float) $this->getElement('minutes')->getValue() * 60
|
||||||
|
);
|
||||||
|
}
|
||||||
|
$this->getTransport($request)->send($downtime);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (non-PHPDoc)
|
* (non-PHPDoc)
|
||||||
* @see \Icinga\Web\Form::onSuccess() For the method documentation.
|
* @see \Icinga\Web\Form::onSuccess() For the method documentation.
|
||||||
@ -185,20 +202,8 @@ class ScheduleServiceDowntimeCommandForm extends ObjectsCommandForm
|
|||||||
foreach ($this->objects as $object) {
|
foreach ($this->objects as $object) {
|
||||||
/** @var \Icinga\Module\Monitoring\Object\Service $object */
|
/** @var \Icinga\Module\Monitoring\Object\Service $object */
|
||||||
$downtime = new ScheduleServiceDowntimeCommand();
|
$downtime = new ScheduleServiceDowntimeCommand();
|
||||||
$downtime
|
$downtime->setObject($object);
|
||||||
->setObject($object)
|
$this->scheduleDowntime($downtime, $request);
|
||||||
->setComment($this->getElement('comment')->getValue())
|
|
||||||
->setAuthor($request->getUser()->getUsername())
|
|
||||||
->setStart($this->getElement('start')->getValue()->getTimestamp())
|
|
||||||
->setEnd($this->getElement('end')->getValue()->getTimestamp());
|
|
||||||
if ($this->getElement('type')->getValue() === self::FLEXIBLE) {
|
|
||||||
$downtime->setFixed(false);
|
|
||||||
$downtime->setDuration(
|
|
||||||
(float) $this->getElement('hours')->getValue() * 3600
|
|
||||||
+ (float) $this->getElement('minutes')->getValue() * 60
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$this->getTransport($request)->send($downtime);
|
|
||||||
}
|
}
|
||||||
Notification::success(mt('monitoring', 'Scheduling service downtime..'));
|
Notification::success(mt('monitoring', 'Scheduling service downtime..'));
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user