summaryrefslogtreecommitdiffstats
path: root/library/Cube/ProvidedHook/Cube/MonitoringActions.php
blob: ae65c670abac019164e2bcfc943ae8c8d498c381 (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
<?php

// Icinga Web 2 Cube Module | (c) 2016 Icinga GmbH | GPLv2

namespace Icinga\Module\Cube\ProvidedHook\Cube;

use Icinga\Module\Cube\Hook\ActionsHook;
use Icinga\Module\Cube\Cube;
use Icinga\Module\Cube\Ido\IdoHostStatusCube;
use Icinga\Module\Cube\Ido\IdoServiceStatusCube;
use Icinga\Web\View;

/**
 * MonitoringActionLinks
 *
 * An action link hook implementation linking to matching hosts/services in the
 * monitoring module
 */
class MonitoringActions extends ActionsHook
{
    public function prepareActionLinks(Cube $cube, View $view)
    {
        if ($cube instanceof IdoHostStatusCube) {
            $vars = [];
            foreach ($cube->getSlices() as $key => $val) {
                $vars['_host_' . $key] = $val;
            }

            $url = 'monitoring/list/hosts';

            $this->addActionLink(
                $this->makeUrl($url, $vars),
                $view->translate('Show hosts status'),
                $view->translate('This shows all matching hosts and their current state in the monitoring module'),
                'host'
            );
        } elseif ($cube instanceof IdoServiceStatusCube) {
            $vars = [];
            foreach ($cube->getSlices() as $key => $val) {
                $vars['_service_' . $key] = $val;
            }

            $url = 'monitoring/list/services';

            $this->addActionLink(
                $this->makeUrl($url, $vars),
                $view->translate('Show services status'),
                $view->translate('This shows all matching services and their current state in the monitoring module'),
                'host'
            );
        }
    }
}