blob: cde480740ce96f9b4f84dd5f0d6b152a4453e529 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<?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 ipl\Html\HtmlString;
use ipl\Web\Compat\CompatController;
use ipl\Web\Url;
use ipl\Web\Widget\ButtonLink;
class SniController extends CompatController
{
/**
* List all maps
*/
public function indexAction()
{
$this->getTabs()->add('jobs', [
'title' => $this->translate('Configure Jobs'),
'label' => $this->translate('Jobs'),
'url' => 'x509/jobs',
'baseTarget' => '_main'
]);
$this->addTitleTab($this->translate('SNI'));
$this->addControl(
(new ButtonLink($this->translate('New SNI Map'), Url::fromPath('x509/sni/new'), 'plus'))
->openInModal()
);
$this->controls->getAttributes()->add('class', 'default-layout');
$this->view->controls = $this->controls;
$repo = new SniIniRepository();
$this->view->sni = $repo->select(array('ip'));
}
/**
* Create a map
*/
public function newAction()
{
$this->addTitleTab($this->translate('New SNI Map'));
$form = $this->prepareForm()->add();
$form->handleRequest();
$this->addContent(new HtmlString($form->render()));
}
/**
* 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'));
}
}
|