summaryrefslogtreecommitdiffstats
path: root/library/Director/ProvidedHook/Icingadb/HostActions.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/Director/ProvidedHook/Icingadb/HostActions.php')
-rw-r--r--library/Director/ProvidedHook/Icingadb/HostActions.php78
1 files changed, 78 insertions, 0 deletions
diff --git a/library/Director/ProvidedHook/Icingadb/HostActions.php b/library/Director/ProvidedHook/Icingadb/HostActions.php
new file mode 100644
index 0000000..d7332ea
--- /dev/null
+++ b/library/Director/ProvidedHook/Icingadb/HostActions.php
@@ -0,0 +1,78 @@
+<?php
+
+namespace Icinga\Module\Director\ProvidedHook\Icingadb;
+
+use Exception;
+use Icinga\Application\Config;
+use Icinga\Module\Director\Auth\Permission;
+use Icinga\Module\Director\Db;
+use Icinga\Module\Director\Integration\Icingadb\IcingadbBackend;
+use Icinga\Module\Director\Objects\IcingaHost;
+use Icinga\Module\Director\Util;
+use Icinga\Module\Icingadb\Hook\HostActionsHook;
+use Icinga\Module\Icingadb\Model\Host;
+use ipl\Web\Url;
+use ipl\Web\Widget\Link;
+
+class HostActions extends HostActionsHook
+{
+ public function getActionsForObject(Host $host): array
+ {
+ try {
+ return $this->getThem($host);
+ } catch (Exception $e) {
+ return [];
+ }
+ }
+
+ protected function getThem(Host $host): array
+ {
+ $actions = [];
+ $db = $this->db();
+ if (! $db) {
+ return $actions;
+ }
+ $hostname = $host->name;
+ if (Util::hasPermission(Permission::INSPECT)) {
+ $actions[] = new Link(
+ mt('director', 'Inspect'),
+ Url::fromPath(
+ 'director/inspect/object',
+ ['type' => 'host', 'plural' => 'hosts', 'name' => $hostname]
+ )
+ );
+ }
+
+ $allowEdit = false;
+ if (Util::hasPermission(Permission::HOSTS) && IcingaHost::exists($hostname, $db)) {
+ $allowEdit = true;
+ }
+ if (Util::hasPermission(Permission::ICINGADB_HOSTS)) {
+ if ((new IcingadbBackend())->canModifyHost($hostname)) {
+ $allowEdit = IcingaHost::exists($hostname, $db);
+ }
+ }
+
+ if ($allowEdit) {
+ $label = mt('director', 'Modify');
+ $actions[] = new Link(
+ $label,
+ Url::fromPath('director/host/edit', [
+ 'name' => $hostname
+ ])
+ );
+ }
+
+ return $actions;
+ }
+
+ protected function db()
+ {
+ $resourceName = Config::module('director')->get('db', 'resource');
+ if (! $resourceName) {
+ return false;
+ }
+
+ return Db::fromResourceName($resourceName);
+ }
+}