summaryrefslogtreecommitdiffstats
path: root/library/Icingadb/Command/Object/GetObjectCommand.php
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:36:40 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:36:40 +0000
commita0901c4b7f2db488cb4fb3be2dd921a0308f4659 (patch)
treefafb393cf330a60df129ff10d0059eb7b14052a7 /library/Icingadb/Command/Object/GetObjectCommand.php
parentInitial commit. (diff)
downloadicingadb-web-a0901c4b7f2db488cb4fb3be2dd921a0308f4659.tar.xz
icingadb-web-a0901c4b7f2db488cb4fb3be2dd921a0308f4659.zip
Adding upstream version 1.0.2.upstream/1.0.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'library/Icingadb/Command/Object/GetObjectCommand.php')
-rw-r--r--library/Icingadb/Command/Object/GetObjectCommand.php71
1 files changed, 71 insertions, 0 deletions
diff --git a/library/Icingadb/Command/Object/GetObjectCommand.php b/library/Icingadb/Command/Object/GetObjectCommand.php
new file mode 100644
index 0000000..372a555
--- /dev/null
+++ b/library/Icingadb/Command/Object/GetObjectCommand.php
@@ -0,0 +1,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;
+ }
+}