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

namespace Icinga\Module\Cube\ProvidedHook\Cube;

use Icinga\Module\Cube\Hook\IcingaDbActionsHook;
use Icinga\Module\Cube\IcingaDb\IcingaDbCube;
use Icinga\Module\Cube\IcingaDb\IcingaDbServiceStatusCube;
use ipl\Stdlib\Filter;
use ipl\Web\Url;

class IcingaDbActions extends IcingaDbActionsHook
{
    public function createActionLinks(IcingaDbCube $cube)
    {
        $type = 'host';
        if ($cube instanceof IcingaDbServiceStatusCube) {
            $type = 'service';
        }

        $filter = Filter::all();
        if ($cube->hasBaseFilter()) {
            $filter->add($cube->getBaseFilter());
        }

        foreach ($cube->getSlices() as $dimension => $slice) {
            $filter->add(Filter::equal($dimension, $slice));
        }

        $url = Url::fromPath('icingadb/' . $type . 's');
        $url->setFilter($filter);

        if ($type === 'host') {
            $this->addActionLink(
                $url,
                t('Show hosts status'),
                t('This shows all matching hosts and their current state in Icinga DB Web'),
                'server'
            );
        } else {
            $this->addActionLink(
                $url,
                t('Show services status'),
                t('This shows all matching hosts and their current state in Icinga DB Web'),
                'cog'
            );
        }
    }
}