summaryrefslogtreecommitdiffstats
path: root/application/controllers/SniController.php
blob: 21da41f296d5acca3fd3f238290738d8fd172d23 (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
<?php
// Icinga Web 2 X.509 Module | (c) 2018 Icinga GmbH | GPLv2

namespace Icinga\Module\X509\Controllers;

use Icinga\Exception\NotFoundError;
use Icinga\Module\X509\Forms\Config\SniConfigForm;
use Icinga\Module\X509\SniIniRepository;
use Icinga\Web\Controller;
use Icinga\Web\Url;

class SniController extends Controller
{
    /**
     * List all maps
     */
    public function indexAction()
    {
        $this->view->tabs = $this->Module()->getConfigTabs()->activate('sni');

        $repo = new SniIniRepository();

        $this->view->sni = $repo->select(array('ip'));
    }

    /**
     * Create a map
     */
    public function newAction()
    {
        $form = $this->prepareForm()->add();

        $form->handleRequest();

        $this->renderForm($form, $this->translate('New SNI Map'));
    }

    /**
     * Update a map
     */
    public function updateAction()
    {
        $form = $this->prepareForm()->edit($this->params->getRequired('ip'));

        try {
            $form->handleRequest();
        } catch (NotFoundError $_) {
            $this->httpNotFound($this->translate('IP not found'));
        }

        $this->renderForm($form, $this->translate('Update SNI Map'));
    }

    /**
     * Remove a map
     */
    public function removeAction()
    {
        $form = $this->prepareForm()->remove($this->params->getRequired('ip'));

        try {
            $form->handleRequest();
        } catch (NotFoundError $_) {
            $this->httpNotFound($this->translate('IP not found'));
        }

        $this->renderForm($form, $this->translate('Remove SNI Map'));
    }

    /**
     * Assert config permission and return a prepared RepositoryForm
     *
     * @return  SniConfigForm
     */
    protected function prepareForm()
    {
        $this->assertPermission('config/x509');

        return (new SniConfigForm())
            ->setRepository(new SniIniRepository())
            ->setRedirectUrl(Url::fromPath('x509/sni'));
    }
}