forked from pluginsGLPI/fields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.php
372 lines (327 loc) · 13.7 KB
/
setup.php
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<?php
/**
* -------------------------------------------------------------------------
* Fields plugin for GLPI
* -------------------------------------------------------------------------
*
* LICENSE
*
* This file is part of Fields.
*
* Fields is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Fields is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Fields. If not, see <http://www.gnu.org/licenses/>.
* -------------------------------------------------------------------------
* @copyright Copyright (C) 2013-2023 by Fields plugin team.
* @license GPLv2 https://www.gnu.org/licenses/gpl-2.0.html
* @link https://github.com/pluginsGLPI/fields
* -------------------------------------------------------------------------
*/
define('PLUGIN_FIELDS_VERSION', '1.21.8');
// Minimal GLPI version, inclusive
define("PLUGIN_FIELDS_MIN_GLPI", "10.0.0");
// Maximum GLPI version, exclusive
define("PLUGIN_FIELDS_MAX_GLPI", "10.0.99");
if (!defined("PLUGINFIELDS_DIR")) {
define("PLUGINFIELDS_DIR", Plugin::getPhpDir("fields"));
}
if (!defined("PLUGINFIELDS_WEB_DIR")) {
define("PLUGINFIELDS_WEB_DIR", Plugin::getWebDir("fields"));
}
if (!defined("PLUGINFIELDS_DOC_DIR")) {
define("PLUGINFIELDS_DOC_DIR", GLPI_PLUGIN_DOC_DIR . "/fields");
}
if (!file_exists(PLUGINFIELDS_DOC_DIR)) {
mkdir(PLUGINFIELDS_DOC_DIR);
}
if (!defined("PLUGINFIELDS_CLASS_PATH")) {
define("PLUGINFIELDS_CLASS_PATH", PLUGINFIELDS_DOC_DIR . "/inc");
}
if (!file_exists(PLUGINFIELDS_CLASS_PATH)) {
mkdir(PLUGINFIELDS_CLASS_PATH);
}
if (!defined("PLUGINFIELDS_FRONT_PATH")) {
define("PLUGINFIELDS_FRONT_PATH", PLUGINFIELDS_DOC_DIR . "/front");
}
if (!file_exists(PLUGINFIELDS_FRONT_PATH)) {
mkdir(PLUGINFIELDS_FRONT_PATH);
}
use Symfony\Component\Yaml\Yaml;
/**
* Init hooks of the plugin.
* REQUIRED
*
* @return void
*/
function plugin_init_fields()
{
/** @var array $PLUGIN_HOOKS */
global $PLUGIN_HOOKS;
$PLUGIN_HOOKS['csrf_compliant']['fields'] = true;
// manage autoload of plugin custom classes
include_once(PLUGINFIELDS_DIR . "/inc/autoload.php");
// manage autoload of vendor classes
include_once(PLUGINFIELDS_DIR . "/vendor/autoload.php");
$pluginfields_autoloader = new PluginFieldsAutoloader([PLUGINFIELDS_CLASS_PATH]);
$pluginfields_autoloader->register();
if (Session::getLoginUserID() && Plugin::isPluginActive('fields')) {
// Init hook about itemtype(s) for plugin fields
if (!isset($PLUGIN_HOOKS['plugin_fields'])) {
$PLUGIN_HOOKS['plugin_fields'] = [];
}
// When a Category is changed during ticket creation
if (
!empty($_POST)
&& isset($_POST['_plugin_fields_type'])
&& $_SERVER['REQUEST_URI'] ?? '' == Ticket::getFormURL()
) {
foreach ($_POST as $key => $value) {
if (!is_array($value)) {
$_SESSION['plugin']['fields']['values_sent'][$key] = $value;
}
}
}
if (Plugin::isPluginActive('fusioninventory')) {
$PLUGIN_HOOKS['fusioninventory_inventory']['fields']
= ['PluginFieldsInventory', 'updateInventory'];
}
// complete rule engine
$PLUGIN_HOOKS['use_rules']['fields'] = ['PluginFusioninventoryTaskpostactionRule'];
$PLUGIN_HOOKS['rule_matched']['fields'] = 'plugin_fields_rule_matched';
if (isset($_SESSION['glpiactiveentities'])) {
// add link in plugin page
$PLUGIN_HOOKS['config_page']['fields'] = 'front/container.php';
// add entry to configuration menu
$PLUGIN_HOOKS["menu_toadd"]['fields'] = ['config' => 'PluginFieldsMenu'];
// add tabs to itemtypes
$itemtypes = array_unique(PluginFieldsContainer::getEntries());
if (count($itemtypes) > 0) {
Plugin::registerClass(
'PluginFieldsContainer',
['addtabon' => $itemtypes]
);
}
//include js and css
$debug = (isset($_SESSION['glpi_use_mode'])
&& $_SESSION['glpi_use_mode'] == Session::DEBUG_MODE ? true : false);
if (!$debug && file_exists(__DIR__ . '/css/fields.min.css')) {
$PLUGIN_HOOKS['add_css']['fields'][] = 'css/fields.min.css';
} else {
$PLUGIN_HOOKS['add_css']['fields'][] = 'css/fields.css';
}
// Add/delete profiles to automaticaly to container
$PLUGIN_HOOKS['item_add']['fields']['Profile'] = ["PluginFieldsProfile", "addNewProfile"];
$PLUGIN_HOOKS['pre_item_purge']['fields']['Profile'] = ["PluginFieldsProfile", "deleteProfile"];
//load drag and drop javascript library on Package Interface
$PLUGIN_HOOKS['add_javascript']['fields'][] = "lib/redips-drag-min.js";
if (!$debug && file_exists(__DIR__ . '/js/drag-field-row.min.js')) {
$PLUGIN_HOOKS['add_javascript']['fields'][] = 'js/drag-field-row.min.js';
} else {
$PLUGIN_HOOKS['add_javascript']['fields'][] = 'js/drag-field-row.js';
}
}
// Add Fields to Datainjection
if (Plugin::isPluginActive('datainjection')) {
$PLUGIN_HOOKS['plugin_datainjection_populate']['fields'] = "plugin_datainjection_populate_fields";
}
//Retrieve dom container
$itemtypes = PluginFieldsContainer::getUsedItemtypes();
if ($itemtypes !== false) {
foreach ($itemtypes as $itemtype) {
$PLUGIN_HOOKS['pre_item_update']['fields'][$itemtype] = [
"PluginFieldsContainer",
"preItemUpdate"
];
$PLUGIN_HOOKS['pre_item_add']['fields'][$itemtype] = [
"PluginFieldsContainer",
"preItem"
];
$PLUGIN_HOOKS['item_add']['fields'][$itemtype] = [
"PluginFieldsContainer",
"postItemAdd"
];
$PLUGIN_HOOKS['pre_item_purge'] ['fields'][$itemtype] = [
"PluginFieldsContainer",
"preItemPurge"
];
}
}
// Display fields in any existing tab
$PLUGIN_HOOKS['post_item_form']['fields'] = [
'PluginFieldsField',
'showForTab'
];
}
}
/**
* Get the name and the version of the plugin
* REQUIRED
*
* @return array
*/
function plugin_version_fields()
{
return [
'name' => __("Additional fields", "fields"),
'version' => PLUGIN_FIELDS_VERSION,
'author' => 'Teclib\', Olivier Moron',
'homepage' => 'https://github.com/pluginsGLPI/fields',
'license' => 'GPLv2+',
'requirements' => [
'glpi' => [
'min' => PLUGIN_FIELDS_MIN_GLPI,
'max' => PLUGIN_FIELDS_MAX_GLPI,
'dev' => true, //Required to allow 9.2-dev
]
]
];
}
/**
* Check pre-requisites before install
* OPTIONNAL, but recommanded
*
* @return boolean
*/
function plugin_fields_check_prerequisites()
{
if (!is_readable(__DIR__ . '/vendor/autoload.php') || !is_file(__DIR__ . '/vendor/autoload.php')) {
echo "Run composer install --no-dev in the plugin directory<br>";
return false;
}
return true;
}
/**
* Check all stored containers files (classes & front) are present, or create they if needed
*
* @return void
*/
function plugin_fields_checkFiles()
{
/** @var DBmysql $DB */
global $DB;
// Clean all existing files
array_map('unlink', glob(PLUGINFIELDS_DOC_DIR . '/*/*'));
// Regenerate containers
if ($DB->tableExists(PluginFieldsContainer::getTable())) {
$container_obj = new PluginFieldsContainer();
$containers = $container_obj->find();
foreach ($containers as $container) {
PluginFieldsContainer::create($container);
}
}
// Regenerate dropdowns
if ($DB->tableExists(PluginFieldsField::getTable())) {
$fields_obj = new PluginFieldsField();
$fields = $fields_obj->find(['type' => 'dropdown']);
foreach ($fields as $field) {
PluginFieldsDropdown::create($field);
}
}
}
function plugin_fields_exportBlockAsYaml($container_id = null)
{
/** @var DBmysql $DB */
global $DB;
$yaml_conf = [
'container' => [],
];
if (
isset($_SESSION['glpiactiveentities'])
&& Session::getLoginUserID()
&& Plugin::isPluginActive('fields')
) {
if ($DB->tableExists(PluginFieldsContainer::getTable())) {
$where = [];
$where["is_active"] = true;
if ($container_id != null) {
$where["id"] = $container_id;
}
$container_obj = new PluginFieldsContainer();
$containers = $container_obj->find($where);
foreach ($containers as $container) {
$itemtypes = (strlen($container['itemtypes']) > 0)
? json_decode($container['itemtypes'], true)
: [];
foreach ($itemtypes as $itemtype) {
$fields_obj = new PluginFieldsField();
// to get translation
$container["itemtype"] = PluginFieldsContainer::getType();
$yaml_conf['container'][$container['id'] . "-" . $itemtype] = [
"id" => (int) $container['id'],
"name" => PluginFieldsLabelTranslation::getLabelFor($container),
"itemtype" => $itemtype,
"type" => $container['type'],
"subtype" => $container['subtype'],
"fields" => [],
];
$fields = $fields_obj->find(["plugin_fields_containers_id" => $container['id'],
"is_active" => true,
"is_readonly" => false
]);
if (count($fields)) {
foreach ($fields as $field) {
$tmp_field = [];
$tmp_field['id'] = (int) $field['id'];
//to get translation
$field["itemtype"] = PluginFieldsField::getType();
$tmp_field['label'] = PluginFieldsLabelTranslation::getLabelFor($field);
$tmp_field['xml_node'] = strtoupper($field['name']);
$tmp_field['type'] = $field['type'];
$tmp_field['ranking'] = $field['ranking'];
$tmp_field['default_value'] = $field['default_value'];
$tmp_field['mandatory'] = $field['mandatory'];
$tmp_field['possible_value'] = "";
switch ($field['type']) {
case 'dropdown':
$obj = new $itemtype();
$obj->getEmpty();
$dropdown_itemtype = PluginFieldsDropdown::getClassname($field['name']);
$tmp_field['xml_node'] = strtoupper(getForeignKeyFieldForItemType($dropdown_itemtype));
$dropdown_obj = new $dropdown_itemtype();
$dropdown_datas = $dropdown_obj->find();
$datas = [];
foreach ($dropdown_datas as $value) {
$items = [];
$items['id'] = (int)$value['id'];
$items['value'] = $value['name'];
$datas[] = $items;
}
$tmp_field['possible_value'] = $datas;
break;
case 'yesno':
$datas = [];
$datas["0"]['id'] = 0;
$datas["0"]['value'] = __('No');
$datas["1"]['id'] = 1;
$datas["1"]['value'] = __('Yes');
$tmp_field['possible_value'] = $datas;
break;
case 'dropdownuser':
$datas = Dropdown::getDropdownUsers(['is_active' => 1,'is_deleted' => 0], false);
$tmp_field['possible_value'] = $datas['results'];
break;
}
$yaml_conf['container'][$container['id'] . "-" . $itemtype]["fields"][] = $tmp_field;
}
}
}
}
}
}
if (count($yaml_conf)) {
$dump = Yaml::dump($yaml_conf, 10);
$filename = GLPI_TMP_DIR . "/fields_conf.yaml";
file_put_contents($filename, $dump);
return true;
}
return false;
}