summaryrefslogtreecommitdiffstats
path: root/library/Director/ProvidedHook/Monitoring/ServiceActions.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/Director/ProvidedHook/Monitoring/ServiceActions.php87
1 files changed, 87 insertions, 0 deletions
diff --git a/library/Director/ProvidedHook/Monitoring/ServiceActions.php b/library/Director/ProvidedHook/Monitoring/ServiceActions.php
new file mode 100644
index 0000000..b2e303a
--- /dev/null
+++ b/library/Director/ProvidedHook/Monitoring/ServiceActions.php
@@ -0,0 +1,87 @@
+<?php
+
+namespace Icinga\Module\Director\ProvidedHook\Monitoring;
+
+use Exception;
+use Icinga\Application\Config;
+use Icinga\Authentication\Auth;
+use Icinga\Module\Director\Db;
+use Icinga\Module\Director\Monitoring;
+use Icinga\Module\Director\Objects\IcingaHost;
+use Icinga\Module\Director\Util;
+use Icinga\Module\Monitoring\Hook\ServiceActionsHook;
+use Icinga\Module\Monitoring\Object\Service;
+use Icinga\Web\Url;
+
+class ServiceActions extends ServiceActionsHook
+{
+ public function getActionsForService(Service $service)
+ {
+ try {
+ return $this->getThem($service);
+ } catch (Exception $e) {
+ return [];
+ }
+ }
+
+ /**
+ * @param Service $service
+ * @return array
+ * @throws \Icinga\Exception\ProgrammingError
+ */
+ protected function getThem(Service $service)
+ {
+ $actions = [];
+ $db = $this->db();
+ if (! $db) {
+ return [];
+ }
+
+ $hostname = $service->host_name;
+ $serviceName = $service->service_description;
+ if (Util::hasPermission('director/inspect')) {
+ $actions[mt('director', 'Inspect')] = Url::fromPath('director/inspect/object', [
+ 'type' => 'service',
+ 'plural' => 'services',
+ 'name' => sprintf(
+ '%s!%s',
+ $hostname,
+ $serviceName
+ )
+ ]);
+ }
+
+ $title = null;
+ if (Util::hasPermission('director/hosts')) {
+ $title = mt('director', 'Modify');
+ } elseif (Util::hasPermission('director/monitoring/services')) {
+ $monitoring = new Monitoring();
+ if ($monitoring->isAvailable()
+ && $monitoring->authCanEditService(Auth::getInstance(), $hostname, $serviceName)
+ ) {
+ $title = mt('director', 'Modify');
+ }
+ } elseif (Util::hasPermission('director/monitoring/services-ro')) {
+ $title = mt('director', 'Configuration');
+ }
+
+ if ($title && IcingaHost::exists($hostname, $db)) {
+ $actions[$title] = Url::fromPath('director/host/findservice', [
+ 'name' => $hostname,
+ 'service' => $serviceName
+ ]);
+ }
+
+ return $actions;
+ }
+
+ protected function db()
+ {
+ $resourceName = Config::module('director')->get('db', 'resource');
+ if (! $resourceName) {
+ return false;
+ }
+
+ return Db::fromResourceName($resourceName);
+ }
+}