forked from armadito/armadito-glpi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hook.php
161 lines (127 loc) · 4.41 KB
/
hook.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
<?php
/**
Copyright (C) 2010-2016 by the FusionInventory Development Team.
Copyright (C) 2016 Teclib'
This file is part of Armadito Plugin for GLPI.
Armadito Plugin for GLPI is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Armadito Plugin for GLPI 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Armadito Plugin for GLPI. If not, see <http://www.gnu.org/licenses/>.
**/
include_once("inc/toolbox.class.php");
function setDefaultDisplayPreferences( $classes)
{
$query = "INSERT INTO `glpi_displaypreferences` (`id`, `itemtype`, `num`, `rank`,
`users_id`) VALUES ";
foreach ( $classes as $class => $rounds ){
$query .= getDefaultDisplayPreferences($class, $rounds);
}
$query = rtrim($query, ",");
if (!PluginArmaditoToolbox::ExecQuery($query)) {
die();
}
}
function getDefaultDisplayPreferences( $class, $rounds )
{
$prefs = "";
for ($i = 1; $i <= $rounds; $i++) {
$prefs .= "(NULL, '".$class."', '" . $i . "', '" . $i . "', '0'),";
}
return $prefs;
}
function cleanDefaultDisplayPreferences($class)
{
$query = "DELETE FROM `glpi_displaypreferences`
WHERE `itemtype`='".$class."'";
PluginArmaditoToolbox::ExecQuery($query);
}
function cleanAllDisplayPreferences( $classes )
{
foreach ( $classes as $class => $rounds ){
cleanDefaultDisplayPreferences($class);
}
}
function getCurrentPluginVersion()
{
global $DB;
if (!TableExists("glpi_plugin_armadito_configs")) {
return "0";
}
$query = "SELECT value FROM glpi_plugin_armadito_configs WHERE `type`='version'";
$ret = $DB->query($query);
if (!$ret) {
return "-1";
}
$data = array();
if ($DB->numrows($ret) > 0) {
$data = $DB->fetch_assoc($ret);
return $data['value'];
}
return "-1";
}
function updateOrInstall()
{
$version_detected = getCurrentPluginVersion();
if (isset($version_detected) &&
(defined('FORCE_UPGRADE') || ($version_detected != PLUGIN_ARMADITO_VERSION && $version_detected != '0')))
{
require_once(GLPI_ROOT . "/plugins/armadito/install/update.php");
pluginArmaditoUpdate($version_detected, PLUGIN_ARMADITO_VERSION, 'Migration');
}
else if ((isset($version_detected)) && ($version_detected == PLUGIN_ARMADITO_VERSION))
{
//Same version : Nothing to do
}
else
{
require_once(GLPI_ROOT . "/plugins/armadito/install/install.php");
pluginArmaditoInstall(PLUGIN_ARMADITO_VERSION, 'Migration');
}
}
function plugin_armadito_install()
{
ini_set("max_execution_time", "0");
updateOrInstall();
// erase user display preferences and set default instead
$classes = array( 'PluginArmaditoAgent' => 10,
'PluginArmaditoJob' => 10,
'PluginArmaditoState' => 10,
'PluginArmaditoAlert' => 15,
'PluginArmaditoScan' => 10,
'PluginArmaditoScanConfig' => 10,
'PluginArmaditoStateDetail' => 10,
'PluginArmaditoAVConfig' => 10,
'PluginArmaditoScheduler' => 10,
'PluginArmaditoAntivirus' => 10,
'PluginArmaditoEnrollmentKey' => 10
);
cleanAllDisplayPreferences($classes);
setDefaultDisplayPreferences($classes);
return true;
}
function plugin_armadito_uninstall()
{
require_once(GLPI_ROOT . "/plugins/armadito/inc/setup.class.php");
require_once(GLPI_ROOT . "/plugins/armadito/inc/profile.class.php");
return PluginArmaditoSetup::uninstall();
}
/**
* Add massive actions to GLPI itemtypes
*/
function plugin_armadito_MassiveActions($type)
{
$sep = MassiveAction::CLASS_ACTION_SEPARATOR;
$ma = array();
if($type == "Computer" && Session::haveRight('plugin_armadito_jobs', UPDATE)) {
$ma["PluginArmaditoAgent".$sep."newscan"]
= __('Armadito - New Scan', 'armadito');
}
return $ma;
}
?>