blob: 95fb47b2443a8c3dfe40590bebe94d5f5eaa6703 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<?php
/* Copyright (C) 2017 Icinga Development Team <info@icinga.com> */
namespace Icinga\Module\Toplevelview;
use Icinga\Application\Icinga;
use Icinga\Exception\ConfigurationError;
use Icinga\Exception\IcingaException;
use Icinga\Module\Monitoring\Backend\MonitoringBackend;
use Icinga\Cli\Command as IcingaCommand;
class Command extends IcingaCommand
{
/** @var MonitoringBackend */
protected $monitoringBackend;
public function init()
{
parent::init();
if (! extension_loaded('yaml')) {
throw new ConfigurationError('You need the PHP extension "yaml" in order to use TopLevelView');
}
}
/**
* Retrieves the Icinga MonitoringBackend
*
* @param string|null $name
*
* @return MonitoringBackend
* @throws IcingaException When monitoring is not enabled
*/
protected function monitoringBackend($name = null)
{
if ($this->monitoringBackend === null) {
if (! Icinga::app()->getModuleManager()->hasEnabled('monitoring')) {
throw new IcingaException('The module "monitoring" must be enabled and configured!');
}
$this->monitoringBackend = MonitoringBackend::instance($name);
}
return $this->monitoringBackend;
}
}
|