icingaweb2-module-director/library/Director/Integration/MonitoringModule/Monitoring.php

235 lines
6.6 KiB
PHP

<?php
namespace Icinga\Module\Director\Integration\MonitoringModule;
use Exception;
use Icinga\Application\Icinga;
use Icinga\Authentication\Auth;
use Icinga\Data\Filter\Filter;
use Icinga\Exception\ConfigurationError;
use Icinga\Module\Director\Auth\MonitoringRestriction;
use Icinga\Module\Director\Auth\Permission;
use Icinga\Module\Director\Auth\Restriction;
use Icinga\Module\Director\Objects\IcingaHost;
use Icinga\Module\Monitoring\Backend\MonitoringBackend;
class Monitoring
{
/** @var ?MonitoringBackend */
protected $backend;
/** @var Auth */
protected $auth;
public function __construct(Auth $auth)
{
$this->auth = $auth;
$this->initializeMonitoringBackend();
}
public function isAvailable(): bool
{
return $this->backend !== null;
}
public function hasHost(IcingaHost $host): bool
{
return $this->hasHostByName($host->getObjectName());
}
public function hasHostByName($hostname): bool
{
if (! $this->isAvailable()) {
return false;
}
try {
return $this->selectHost($hostname)->fetchOne() === $hostname;
} catch (Exception $_) {
return false;
}
}
public function hasServiceByName($hostname, $service): bool
{
if (! $this->isAvailable()) {
return false;
}
try {
return $this->rowIsService($this->selectService($hostname, $service)->fetchRow(), $hostname, $service);
} catch (Exception $_) {
return false;
}
}
public function canModifyService(IcingaHost $host, $service): bool
{
return $this->canModifyServiceByName($host->getObjectName(), $service);
}
public function canModifyServiceByName($hostname, $service): bool
{
if (! $this->isAvailable() || $hostname === null || $service === null) {
return false;
}
if ($this->auth->hasPermission(Permission::MONITORING_SERVICES)) {
$restriction = null;
foreach ($this->auth->getRestrictions(Restriction::MONITORING_RW_OBJECT_FILTER) as $restriction) {
if ($this->hasServiceWithFilter($hostname, $service, Filter::fromQueryString($restriction))) {
return true;
}
}
if ($restriction === null) {
return $this->hasServiceByName($hostname, $service);
}
}
return false;
}
public function canModifyHost(IcingaHost $host): bool
{
return $this->canModifyHostByName($host->getObjectName());
}
public function canModifyHostByName($hostname): bool
{
if ($this->isAvailable() && $this->auth->hasPermission(Permission::MONITORING_HOSTS)) {
$restriction = null;
foreach ($this->auth->getRestrictions(Restriction::MONITORING_RW_OBJECT_FILTER) as $restriction) {
if ($this->hasHostWithFilter($hostname, Filter::fromQueryString($restriction))) {
return true;
}
}
if ($restriction === null) {
return $this->hasHostByName($hostname);
}
}
return false;
}
protected function hasHostWithFilter($hostname, Filter $filter): bool
{
try {
return $this->selectHost($hostname)->applyFilter($filter)->fetchOne() === $hostname;
} catch (Exception $e) {
return false;
}
}
public function hasServiceWithFilter($hostname, $service, Filter $filter): bool
{
try {
return $this->rowIsService(
$this->selectService($hostname, $service)->applyFilter($filter)->fetchRow(),
$hostname,
$service
);
} catch (Exception $e) {
return false;
}
}
public function getHostState($hostname)
{
$hostStates = [
'0' => 'up',
'1' => 'down',
'2' => 'unreachable',
'99' => 'pending',
];
$query = $this->selectHostStatus($hostname, [
'hostname' => 'host_name',
'state' => 'host_state',
'problem' => 'host_problem',
'acknowledged' => 'host_acknowledged',
'in_downtime' => 'host_in_downtime',
])->where('host_name', $hostname);
$res = $query->fetchRow();
if ($res === false) {
$res = (object) [
'hostname' => $hostname,
'state' => '99',
'problem' => '0',
'acknowledged' => '0',
'in_downtime' => '0',
];
}
$res->state = $hostStates[$res->state];
return $res;
}
protected function selectHost($hostname)
{
return $this->selectHostStatus($hostname, [
'hostname' => 'host_name',
]);
}
protected function selectHostStatus($hostname, $columns)
{
return $this->restrictQuery(
$this->backend
->select()
->from('hostStatus', $columns)
->where('host_name', $hostname)
);
}
protected function selectService($hostname, $service)
{
return $this->selectServiceStatus($hostname, $service, [
'hostname' => 'host_name',
'service' => 'service_description',
]);
}
protected function selectServiceStatus($hostname, $service, $columns)
{
return $this->restrictQuery(
$this->backend
->select()
->from('serviceStatus', $columns)
->where('host_name', $hostname)
->where('service_description', $service)
);
}
protected function restrictQuery($query)
{
$query->applyFilter(MonitoringRestriction::getObjectsFilter($this->auth));
return $query;
}
protected function rowIsService($row, $hostname, $service): bool
{
return (array) $row === [
'hostname' => $hostname,
'service' => $service,
];
}
protected function initializeMonitoringBackend()
{
$app = Icinga::app();
$modules = $app->getModuleManager();
if (!$modules->hasLoaded('monitoring') && $app->isCli()) {
$modules->loadEnabledModules();
}
if ($modules->hasLoaded('monitoring')) {
try {
$this->backend = MonitoringBackend::instance();
} catch (ConfigurationError $e) {
$this->backend = null;
}
}
}
}