summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/install.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2017-04-20 11:51:47 +0200
committerSimon Rettberg2017-04-20 11:51:47 +0200
commit391d831ec434d12e6ec825fe75f7950bd0da1004 (patch)
treef77aa23a892547feedac08d3c6a54ee0cd24e768 /modules-available/locationinfo/install.inc.php
parent[locationinfo] CourseBackend: Rename some methods to be more descriptive (diff)
downloadslx-admin-391d831ec434d12e6ec825fe75f7950bd0da1004.tar.gz
slx-admin-391d831ec434d12e6ec825fe75f7950bd0da1004.tar.xz
slx-admin-391d831ec434d12e6ec825fe75f7950bd0da1004.zip
[locationinfo] Rename tables to use module name as prefix; room -> location
Diffstat (limited to 'modules-available/locationinfo/install.inc.php')
-rw-r--r--modules-available/locationinfo/install.inc.php151
1 files changed, 11 insertions, 140 deletions
diff --git a/modules-available/locationinfo/install.inc.php b/modules-available/locationinfo/install.inc.php
index 659dec8f..9cab652a 100644
--- a/modules-available/locationinfo/install.inc.php
+++ b/modules-available/locationinfo/install.inc.php
@@ -3,159 +3,30 @@
$res = array();
// TODO: serverid NULL, constraint to serverlist on delete set NULL
-$res[] = tableCreate('location_info', '
- `locationid` INT(11) NOT NULL,
+$res[] = tableCreate('locationinfo_locationconfig', '
+ `locationid` INT(10) UNSIGNED NOT NULL,
`serverid` INT(11) NOT NULL,
- `serverroomid` VARCHAR(2000),
+ `serverlocationid` VARCHAR(150),
`hidden` BOOLEAN NOT NULL DEFAULT 0,
- `openingtime` VARCHAR(2000),
- `config` VARCHAR(2000),
- `calendar` VARCHAR(2000),
+ `openingtime` BLOB,
+ `config` BLOB,
+ `calendar` BLOB,
`lastcalendarupdate` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`locationid`)
');
// TODO: KEY `servername` (`servername`)
-$res[] = tableCreate('setting_location_info', '
- `serverid` int(10) NOT NULL AUTO_INCREMENT,
- `servername` VARCHAR(2000) NOT NULL,
- `serverurl` VARCHAR(2000) NOT NULL,
+$res[] = tableCreate('locationinfo_coursebackend', '
+ `serverid` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
+ `servername` VARCHAR(200) NOT NULL,
`servertype` VARCHAR(100) NOT NULL,
- `credentials` VARCHAR(2000),
- `error` VARCHAR(2000),
+ `credentials` BLOB,
+ `error` VARCHAR(1000),
PRIMARY KEY (`serverid`)
');
// Create response for browser
-if (!tableHasColumn('setting_location_info', 'credentials')) {
- $ret = Database::exec("ALTER TABLE `setting_location_info` ADD `credentials` VARCHAR(2000) AFTER `servertype`");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Adding column credentials failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (!tableHasColumn('setting_location_info', 'error')) {
- $ret = Database::exec("ALTER TABLE `setting_location_info` ADD `error` VARCHAR(2000) AFTER `credentials`");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Adding column error failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (tableHasColumn('setting_location_info', 'login')) {
- $ret = Database::exec("ALTER TABLE `setting_location_info` DROP COLUMN login");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Dropping column login failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (tableHasColumn('setting_location_info', 'passwd')) {
- $ret = Database::exec("ALTER TABLE `setting_location_info` DROP COLUMN passwd");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Dropping column passwd failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (tableHasColumn('location_info', 'serverroomid')) {
- $ret = Database::exec("ALTER TABLE `location_info` MODIFY serverroomid VARCHAR(2000)");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Updateing column serverroomid failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (tableHasColumn('location_info', 'openingtime')) {
- $ret = Database::exec("ALTER TABLE `location_info` MODIFY openingtime VARCHAR(2000)");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Updateing column openingtime failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (tableHasColumn('location_info', 'config')) {
- $ret = Database::exec("ALTER TABLE `location_info` MODIFY config VARCHAR(2000)");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Updateing column config failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (tableHasColumn('location_info', 'calendar')) {
- $ret = Database::exec("ALTER TABLE `location_info` MODIFY calendar VARCHAR(2000)");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Updateing column calendar failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (tableHasColumn('location_info', 'lastcalendarupdate')) {
- $ret = Database::exec("ALTER TABLE `location_info` MODIFY lastcalendarupdate INT(11) NOT NULL DEFAULT 0");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Updateing column lastcalendarupdate failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (tableExists('locationinfo')) {
- $ret = Database::exec("DROP TABLE `locationinfo`");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Droping table locationinfo failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (!tableHasColumn('location_info', 'config')) {
- $ret = Database::exec("ALTER TABLE `location_info` ADD `config` VARCHAR(2000) NOT NULL DEFAULT '' AFTER `openingtime`");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Adding config to location_info failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (!tableHasColumn('location_info', 'calendar')) {
- $ret = Database::exec("ALTER TABLE `location_info` ADD `calendar` VARCHAR(2000) NOT NULL DEFAULT '' AFTER `config`");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Adding calendar to location_info failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (!tableHasColumn('location_info', 'serverid')) {
- $ret = Database::exec("ALTER TABLE `location_info` ADD `serverid` INT(11) NOT NULL AFTER `locationid`");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Adding serverid to location_info failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (!tableHasColumn('location_info', 'serverroomid')) {
- $ret = Database::exec("ALTER TABLE `location_info` ADD `serverroomid` INT(11) NOT NULL AFTER `serverid`");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Adding serverroomid to location_info failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (!tableHasColumn('location_info', 'lastcalendarupdate')) {
- $ret = Database::exec("ALTER TABLE `location_info` ADD `lastcalendarupdate` INT(11) NOT NULL AFTER `calendar`");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Adding lastcalendarupdate to location_info failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
-if (!tableHasColumn('setting_location_info', 'servername')) {
- $ret = Database::exec("ALTER TABLE `setting_location_info` ADD `servername` VARCHAR(2000) NOT NULL AFTER `serverid`");
- if ($ret === false) {
- finalResponse(UPDATE_FAILED, 'Adding servername to setting_location_info failed: ' . Database::lastError());
- }
- $res[] = UPDATE_DONE;
-}
-
if (in_array(UPDATE_DONE, $res)) {
finalResponse(UPDATE_DONE, 'Tables created successfully');
}