-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhook.php
125 lines (112 loc) · 5.37 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
<?php
/**
* ---------------------------------------------------------------------
* ITSM-NG
* Copyright (C) 2022 ITSM-NG and contributors.
*
* https://www.itsm-ng.org
*
* based on GLPI - Gestionnaire Libre de Parc Informatique
* Copyright (C) 2003-2014 by the INDEPNET Development Team.
*
* ---------------------------------------------------------------------
*
* LICENSE
*
* This file is part of ITSM-NG.
*
* ITSM-NG 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.
*
* ITSM-NG 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 ITSM-NG. If not, see <http://www.gnu.org/licenses/>.
* ---------------------------------------------------------------------
*/
function plugin_looztick_install() {
global $DB;
//get default values for fields
if (!$DB->tableExists("glpi_plugin_looztick_config")) {
$createQuery = <<<SQL
CREATE TABLE glpi_plugin_looztick_config (
id int(11) NOT NULL AUTO_INCREMENT,
api_key varchar(255) COLLATE utf8_unicode_ci NOT NULL,
firstname varchar(255) COLLATE utf8_unicode_ci NOT NULL,
lastname varchar(255) COLLATE utf8_unicode_ci NOT NULL,
mobile varchar(255) COLLATE utf8_unicode_ci NOT NULL,
friendmobile varchar(255) COLLATE utf8_unicode_ci NOT NULL,
countrycode varchar(255) COLLATE utf8_unicode_ci NOT NULL,
email varchar(255) COLLATE utf8_unicode_ci NOT NULL,
comment LONGTEXT COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
SQL;
$insertQuery = <<<SQL
INSERT INTO glpi_plugin_looztick_config (id, api_key) VALUES (1, '');
SQL;
$DB->queryOrDie($createQuery, $DB->error());
$DB->queryOrDie($insertQuery, $DB->error());
}
if (!$DB->tableExists("glpi_plugin_looztick_loozticks")) {
$createQuery = <<<SQL
CREATE TABLE glpi_plugin_looztick_loozticks (
id varchar(255) COLLATE utf8_unicode_ci NOT NULL,
item varchar(255) COLLATE utf8_unicode_ci NOT NULL,
activated tinyint(1) COLLATE utf8_unicode_ci NOT NULL,
firstname varchar(255) COLLATE utf8_unicode_ci NOT NULL,
lastname varchar(255) COLLATE utf8_unicode_ci NOT NULL,
mobile varchar(255) COLLATE utf8_unicode_ci NOT NULL,
friendmobile varchar(255) COLLATE utf8_unicode_ci NOT NULL,
countrycode varchar(255) COLLATE utf8_unicode_ci NOT NULL,
email varchar(255) COLLATE utf8_unicode_ci NOT NULL,
comment LONGTEXT COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
SQL;
$DB->queryOrDie($createQuery, $DB->error());
for ($i = 2; $i <= 9; $i++) {
$DB->query("REPLACE INTO glpi_displaypreferences VALUES
(NULL, 'PluginLooztickLooztick', $i, ".($i-1).", 0)");
}
}
if (!$DB->tableExists("glpi_plugin_looztick_profiles")) {
$query2 = "CREATE TABLE `glpi_plugin_looztick_profiles` (
`id` int(11) NOT NULL default '0',
`right` char(1) collate utf8_unicode_ci default NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci";
$DB->queryOrDie($query2, $DB->error());
include_once(GLPI_ROOT . "/plugins/looztick/inc/profile.class.php");
PluginLooztickProfile::createAdminAccess($_SESSION['glpiactiveprofile']['id']);
foreach (PluginLooztickProfile::getRightsGeneral() as $right) {
PluginLooztickProfile::addDefaultProfileInfos($_SESSION['glpiactiveprofile']['id'], [$right['field'] => $right['default']]);
}
} else $DB->queryOrDie("ALTER TABLE `glpi_plugin_looztick_profiles` ENGINE = InnoDB", $DB->error());
return true;
}
function plugin_looztick_uninstall() {
global $DB;
// Drop tables
if($DB->tableExists('glpi_plugin_looztick_config')) {
$DB->queryOrDie("DROP TABLE `glpi_plugin_looztick_config`",$DB->error());
}
if($DB->tableExists('glpi_plugin_looztick_profiles')) {
$DB->queryOrDie("DROP TABLE `glpi_plugin_looztick_profiles`",$DB->error());
}
if($DB->tableExists('glpi_plugin_looztick_loozticks')) {
$DB->queryOrDie("DROP TABLE `glpi_plugin_looztick_loozticks`",$DB->error());
$DB->queryOrDie("DELETE FROM `glpi_displaypreferences` WHERE `itemtype` = 'PluginLooztickLooztick'",$DB->error());
}
foreach (PluginLooztickProfile::getRightsGeneral() as $right) {
$query = "DELETE FROM `glpi_profilerights` WHERE `name` = '" . $right['field'] . "'";
$DB->query($query);
if (isset($_SESSION['glpiactiveprofile'][$right['field']])) unset($_SESSION['glpiactiveprofile'][$right['field']]);
}
return true;
}