icingaweb2-module-director/library/Director/ProvidedHook/Monitoring/HostActions.php

60 lines
1.5 KiB
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\ProvidedHook\Monitoring;
use Exception;
use Icinga\Application\Config;
use Icinga\Module\Director\Db;
use Icinga\Module\Director\Objects\IcingaHost;
use Icinga\Module\Director\Util;
use Icinga\Module\Monitoring\Hook\HostActionsHook;
use Icinga\Module\Monitoring\Object\Host;
use Icinga\Web\Url;
class HostActions extends HostActionsHook
{
public function getActionsForHost(Host $host)
{
try {
return $this->getThem($host);
} catch (Exception $e) {
return array();
}
}
protected function getThem(Host $host)
{
$actions = array();
$db = $this->db();
if (! $db) {
return $actions;
}
$hostname = $host->host_name;
if (Util::hasPermission('director/inspect')) {
$actions['Inspect'] = Url::fromPath(
'director/inspect/object',
array('type' => 'host', 'plural' => 'hosts', 'name' => $hostname)
);
}
if (IcingaHost::exists($hostname, $db)) {
$actions['Modify'] = Url::fromPath(
'director/host/edit',
array('name' => $hostname)
);
}
return $actions;
}
protected function db()
{
$resourceName = Config::module('director')->get('db', 'resource');
if (! $resourceName) {
return false;
}
return Db::fromResourceName($resourceName);
}
}