summaryrefslogtreecommitdiffstats
path: root/library/Director/Web/Tabs/InfraTabs.php
blob: 8a65c4ee007952d1a73df9534a580a7e2f5329c8 (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
<?php

namespace Icinga\Module\Director\Web\Tabs;

use Icinga\Authentication\Auth;
use gipfl\Translation\TranslationHelper;
use gipfl\IcingaWeb2\Widget\Tabs;

class InfraTabs extends Tabs
{
    use TranslationHelper;

    /** @var Auth */
    protected $auth;

    public function __construct(Auth $auth)
    {
        $this->auth = $auth;
        // We are not a BaseElement, not yet
        $this->assemble();
    }

    protected function assemble()
    {
        $auth = $this->auth;

        if ($auth->hasPermission('director/audit')) {
            $this->add('activitylog', [
                'label' => $this->translate('Activity Log'),
                'url'   => 'director/config/activities'
            ]);
        }

        if ($auth->hasPermission('director/deploy')) {
            $this->add('deploymentlog', [
                'label' => $this->translate('Deployments'),
                'url' => 'director/config/deployments'
            ]);
        }

        if ($auth->hasPermission('director/admin')) {
            $this->add('infrastructure', [
                'label'     => $this->translate('Infrastructure'),
                'url'       => 'director/dashboard',
                'urlParams' => ['name' => 'infrastructure']
            ]);
        }
    }
}