blob: ddfc85103f03af7ce28dbf3fe7c507e7e92ca661 (
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
|
<?php
namespace Icinga\Module\Businessprocess\Web\Form;
use Icinga\Application\Config;
use Icinga\Application\Icinga;
use Icinga\Authentication\Auth;
use Icinga\Module\Businessprocess\Storage\LegacyStorage;
use Icinga\Module\Businessprocess\BpConfig;
abstract class BpConfigBaseForm extends QuickForm
{
/** @var LegacyStorage */
protected $storage;
/** @var BpConfig */
protected $config;
protected function listAvailableBackends()
{
$keys = [];
$moduleManager = Icinga::app()->getModuleManager();
if ($moduleManager->hasEnabled('monitoring')) {
$keys = array_keys(Config::module('monitoring', 'backends')->toArray());
$keys = array_combine($keys, $keys);
}
return $keys;
}
public function setStorage(LegacyStorage $storage)
{
$this->storage = $storage;
return $this;
}
public function setProcessConfig(BpConfig $config)
{
$this->config = $config;
return $this;
}
protected function prepareMetadata(BpConfig $config)
{
$meta = $config->getMetadata();
$auth = Auth::getInstance();
$meta->set('Owner', $auth->getUser()->getUsername());
if ($auth->hasPermission('businessprocess/showall')) {
return true;
}
$prefixes = $auth->getRestrictions('businessprocess/prefix');
if (! empty($prefixes) && ! $meta->nameIsPrefixedWithOneOf($prefixes)) {
if (count($prefixes) === 1) {
$this->getElement('name')->addError(sprintf(
$this->translate('Please prefix the name with "%s"'),
current($prefixes)
));
} else {
$this->getElement('name')->addError(sprintf(
$this->translate('Please prefix the name with one of "%s"'),
implode('", "', $prefixes)
));
}
return false;
}
return true;
}
}
|