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
|
<?php
// Icinga Web 2 X.509 Module | (c) 2018 Icinga GmbH | GPLv2
namespace Icinga\Module\X509\Forms\Config;
use Icinga\Data\Filter\Filter;
use Icinga\Forms\RepositoryForm;
/**
* Create, update and delete jobs
*/
class JobConfigForm extends RepositoryForm
{
protected function createInsertElements(array $formData)
{
$this->addElements([
[
'text',
'name',
[
'description' => $this->translate('Job name'),
'label' => $this->translate('Name'),
'required' => true
]
],
[
'textarea',
'cidrs',
[
'description' => $this->translate('Comma-separated list of CIDR addresses to scan'),
'label' => $this->translate('CIDRs'),
'required' => true
]
],
[
'textarea',
'ports',
[
'description' => $this->translate('Comma-separated list of ports to scan'),
'label' => $this->translate('Ports'),
'required' => true
]
],
[
'text',
'schedule',
[
'description' => $this->translate('Job cron Schedule'),
'label' => $this->translate('Schedule')
]
],
]);
$this->setTitle($this->translate('Create a New Job'));
$this->setSubmitLabel($this->translate('Create'));
}
protected function createUpdateElements(array $formData)
{
$this->createInsertElements($formData);
$this->setTitle(sprintf($this->translate('Edit job %s'), $this->getIdentifier()));
$this->setSubmitLabel($this->translate('Save'));
}
protected function createDeleteElements(array $formData)
{
$this->setTitle(sprintf($this->translate('Remove job %s?'), $this->getIdentifier()));
$this->setSubmitLabel($this->translate('Yes'));
}
protected function createFilter()
{
return Filter::where('name', $this->getIdentifier());
}
protected function getInsertMessage($success)
{
return $success
? $this->translate('Job created')
: $this->translate('Failed to create job');
}
protected function getUpdateMessage($success)
{
return $success
? $this->translate('Job updated')
: $this->translate('Failed to update job');
}
protected function getDeleteMessage($success)
{
return $success
? $this->translate('Job removed')
: $this->translate('Failed to remove job');
}
}
|