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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Model;
use ipl\Orm\Behavior\Binary;
use ipl\Orm\Behaviors;
use ipl\Orm\Model;
use ipl\Orm\Relations;
use Traversable;
class CustomvarFlat extends Model
{
public function getTableName()
{
return 'customvar_flat';
}
public function getKeyName()
{
return 'id';
}
public function getColumns()
{
return [
'environment_id',
'customvar_id',
'flatname_checksum',
'flatname',
'flatvalue'
];
}
public function createBehaviors(Behaviors $behaviors)
{
$behaviors->add(new Binary([
'id',
'environment_id',
'customvar_id',
'flatname_checksum'
]));
}
public function createRelations(Relations $relations)
{
$relations->belongsTo('environment', Environment::class);
$relations->belongsTo('customvar', Customvar::class);
$relations->belongsToMany('checkcommand', Checkcommand::class)
->through(CheckcommandCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('eventcommand', Eventcommand::class)
->through(EventcommandCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('host', Host::class)
->through(HostCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('hostgroup', Hostgroup::class)
->through(HostgroupCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('notification', Notification::class)
->through(NotificationCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('notificationcommand', Notificationcommand::class)
->through(NotificationcommandCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('service', Service::class)
->through(ServiceCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('servicegroup', Servicegroup::class)
->through(ServicegroupCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('timeperiod', Timeperiod::class)
->through(TimeperiodCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('user', User::class)
->through(UserCustomvar::class)
->setCandidateKey('customvar_id');
$relations->belongsToMany('usergroup', Usergroup::class)
->through(UsergroupCustomvar::class)
->setCandidateKey('customvar_id');
}
/**
* Restore flattened custom variables to their previous structure
*
* @param Traversable $flattenedVars
*
* @return array
*/
public function unFlattenVars(Traversable $flattenedVars): array
{
$registerValue = function (&$data, $path, $value) use (&$registerValue) {
$step = array_shift($path);
$pos = null;
if (preg_match('/\[(\d+)]$/', $step, $m)) {
$step = substr($step, 0, -strlen($m[0]));
array_unshift($path, $m[1]);
}
if (! empty($path)) {
if (! isset($data[$step])) {
$data[$step] = [];
}
$registerValue($data[$step], $path, $value);
} else {
$data[$step] = $value;
}
};
$vars = [];
foreach ($flattenedVars as $var) {
$path = explode('.', $var->flatname);
$registerValue($vars, $path, $var->flatvalue);
}
return $vars;
}
}
|