blob: 372a555b30c76b5792be31e00faff014107ea353 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<?php
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Command\Object;
use Icinga\Module\Icingadb\Model\Host;
use Icinga\Module\Icingadb\Model\Service;
use LogicException;
class GetObjectCommand extends ObjectCommand
{
/** @var array */
protected $attributes;
/**
* Get the object name used in the Icinga 2 API
*
* @return string
*/
public function getObjectName(): string
{
switch (true) {
case $this->object instanceof Service:
return $this->object->host->name . '!' . $this->object->name;
default:
return $this->object->name;
}
}
/**
* Get the sub-route of the endpoint for this object
*
* @return string
*/
public function getObjectPluralType(): string
{
switch (true) {
case $this->object instanceof Host:
return 'hosts';
case $this->object instanceof Service:
return 'services';
default:
throw new LogicException(sprintf('Invalid object type %s provided', get_class($this->object)));
}
}
/**
* Get the attributes to query
*
* @return ?array
*/
public function getAttributes()
{
return $this->attributes;
}
/**
* Set the attributes to query
*
* @param array $attributes
*
* @return $this
*/
public function setAttributes(array $attributes): self
{
$this->attributes = $attributes;
return $this;
}
}
|