mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-28 04:36:06 -04:00
This was easy because only README.md and doc/01-About.md were redacted manually, everything else via: git ls-files -z |xargs -0 perl -pi -e 's/Icinga GmbH \| GPLv2/Icinga GmbH | GPLv2+/' This is legal because we have only merged PRs with label:cla/signed or made by Icinga staff: https://github.com/Icinga/icingadb-web/pulls?page=1&q=is%3Apr+is%3Aclosed+-label%3Acla%2Fsigned+-author%3Anilmerg This has no risk for us in people distributing their own version under GPLv3 only. After all, we won't take their patches anyway, unless they sign our CLA. This is the cleanest solution for having e.g. these in one address space: * Icinga Web, GPLv2+ * K8s Web, AGPLv3 * Thirdparty, some LGPLv3 and Apache-2.0 Apropos, K8s Web is even v3-licensed on purpose, to have a stronger protection against cloud ops.
108 lines
2.5 KiB
PHP
108 lines
2.5 KiB
PHP
<?php
|
|
|
|
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2+ */
|
|
|
|
namespace Icinga\Module\Icingadb\Command\Object;
|
|
|
|
/**
|
|
* Enable or disable a feature of an Icinga object, i.e. host or service
|
|
*/
|
|
class ToggleObjectFeatureCommand extends ObjectsCommand
|
|
{
|
|
/**
|
|
* Feature for enabling or disabling active checks of a host or service
|
|
*/
|
|
const FEATURE_ACTIVE_CHECKS = 'active_checks_enabled';
|
|
|
|
/**
|
|
* Feature for enabling or disabling passive checks of a host or service
|
|
*/
|
|
const FEATURE_PASSIVE_CHECKS = 'passive_checks_enabled';
|
|
|
|
/**
|
|
* Feature for enabling or disabling notifications for a host or service
|
|
*
|
|
* Notifications will be sent out only if notifications are enabled on a program-wide basis as well.
|
|
*/
|
|
const FEATURE_NOTIFICATIONS = 'notifications_enabled';
|
|
|
|
/**
|
|
* Feature for enabling or disabling event handler for a host or service
|
|
*/
|
|
const FEATURE_EVENT_HANDLER = 'event_handler_enabled';
|
|
|
|
/**
|
|
* Feature for enabling or disabling flap detection for a host or service.
|
|
*
|
|
* In order to enable flap detection flap detection must be enabled on a program-wide basis as well.
|
|
*/
|
|
const FEATURE_FLAP_DETECTION = 'flapping_enabled';
|
|
|
|
/**
|
|
* Feature that is to be enabled or disabled
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $feature;
|
|
|
|
/**
|
|
* Whether the feature should be enabled or disabled
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $enabled;
|
|
|
|
/**
|
|
* Set the feature that is to be enabled or disabled
|
|
*
|
|
* @param string $feature
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setFeature(string $feature): self
|
|
{
|
|
$this->feature = $feature;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the feature that is to be enabled or disabled
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getFeature(): string
|
|
{
|
|
if ($this->feature === null) {
|
|
throw new \LogicException(
|
|
'You are accessing an unset property. Please make sure to set it beforehand.'
|
|
);
|
|
}
|
|
|
|
return $this->feature;
|
|
}
|
|
|
|
/**
|
|
* Set whether the feature should be enabled or disabled
|
|
*
|
|
* @param bool $enabled
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setEnabled(bool $enabled = true): self
|
|
{
|
|
$this->enabled = $enabled;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get whether the feature should be enabled or disabled
|
|
*
|
|
* @return ?bool
|
|
*/
|
|
public function getEnabled()
|
|
{
|
|
return $this->enabled;
|
|
}
|
|
}
|