mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-30 19:04:10 +01:00 
			
		
		
		
	Since Icinga 2.11.0 the schedule-downtime API supports the all_services parameter. So far we've always sent a separate request for scheduling service downtimes. As of Icinga 2.13.0, these service downtimes are automatically removed when the host downtimes are removed. Of course, this doesn't work if we don't use the all_services parameter but send a separate request. With this commit we set this parameter if the transport is API and Icinga is equal to or greater than 2.11.0. In addition, if child_options and all_services were previously set, a request was sent per host and service. This is now also only a single request if an API command transport is requested or only API command transports are configured.
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2021 Icinga GmbH | GPLv2+ */
 | |
| 
 | |
| namespace Icinga\Module\Monitoring\Command\Object;
 | |
| 
 | |
| /**
 | |
|  * Schedule host downtime command for API command transport and Icinga >= 2.11.0 that
 | |
|  * sends all_services and child_options in a single request
 | |
|  */
 | |
| class ApiScheduleHostDowntimeCommand extends ScheduleHostDowntimeCommand
 | |
| {
 | |
|     /** @var int Whether no, triggered, or non-triggered child downtimes should be scheduled */
 | |
|     protected $childOptions;
 | |
| 
 | |
|     protected $forAllServicesNative = true;
 | |
| 
 | |
|     /**
 | |
|      * Get child options, i.e. whether no, triggered, or non-triggered child downtimes should be scheduled
 | |
|      *
 | |
|      * @return int
 | |
|      */
 | |
|     public function getChildOptions()
 | |
|     {
 | |
|         return $this->childOptions;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Set child options, i.e. whether no, triggered, or non-triggered child downtimes should be scheduled
 | |
|      *
 | |
|      * @param int $childOptions
 | |
|      *
 | |
|      * @return $this
 | |
|      */
 | |
|     public function setChildOptions($childOptions)
 | |
|     {
 | |
|         $this->childOptions = $childOptions;
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| }
 |