blob: 5ea2e9bd8ab0850bf7782196df324b0e229039e6 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<?php
namespace Icinga\Module\Director\Web\Tabs;
use gipfl\Translation\TranslationHelper;
use gipfl\IcingaWeb2\Widget\Tabs;
use Icinga\Authentication\Auth;
use Icinga\Module\Director\Web\Widget\Daemon\BackgroundDaemonState;
use Icinga\Module\Director\Db;
use Icinga\Module\Director\Health;
use Icinga\Module\Director\Web\Widget\HealthCheckPluginOutput;
class MainTabs extends Tabs
{
use TranslationHelper;
protected $auth;
protected $dbResourceName;
public function __construct(Auth $auth, $dbResourceName)
{
$this->auth = $auth;
$this->dbResourceName = $dbResourceName;
$this->add('main', [
'label' => $this->translate('Overview'),
'url' => 'director'
]);
if ($this->auth->hasPermission('director/admin')) {
$this->add('health', [
'label' => $this->translate('Health'),
'url' => 'director/health'
])->add('daemon', [
'label' => $this->translate('Daemon'),
'url' => 'director/daemon'
]);
}
}
public function render()
{
if ($this->auth->hasPermission('director/admin')) {
if ($this->getActiveName() !== 'health') {
$state = $this->getHealthState();
if ($state->isProblem()) {
$this->get('health')->setTagParams([
'class' => 'state-' . strtolower($state->getName())
]);
}
}
if ($this->getActiveName() !== 'daemon') {
try {
$daemon = new BackgroundDaemonState(Db::fromResourceName($this->dbResourceName));
if ($daemon->isRunning()) {
$state = 'ok';
} else {
$state = 'critical';
}
} catch (\Exception $e) {
$state = 'unknown';
}
if ($state !== 'ok') {
$this->get('daemon')->setTagParams([
'class' => 'state-' . $state
]);
}
}
}
return parent::render();
}
/**
* @return \Icinga\Module\Director\CheckPlugin\PluginState
*/
protected function getHealthState()
{
$health = new Health();
$health->setDbResourceName($this->dbResourceName);
$output = new HealthCheckPluginOutput($health);
return $output->getState();
}
}
|