adsb-receiver/build/portal/html/install/upgrade.php

227 wiersze
8.8 KiB
PHP
Czysty Zwykły widok Historia

2016-04-23 18:01:11 +00:00
<?php
/////////////////////////////////////////////////////////////////////////////////////
// ADS-B RECEIVER PORTAL //
// =============================================================================== //
// Copyright and Licensing Information: //
// //
// The MIT License (MIT) //
// //
// Copyright (c) 2015-2016 Joseph A. Prochazka //
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy //
// of this software and associated documentation files (the "Software"), to deal //
// in the Software without restriction, including without limitation the rights //
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell //
// copies of the Software, and to permit persons to whom the Software is //
// furnished to do so, subject to the following conditions: //
// //
// The above copyright notice and this permission notice shall be included in all //
// copies or substantial portions of the Software. //
// //
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR //
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, //
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE //
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER //
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, //
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE //
// SOFTWARE. //
/////////////////////////////////////////////////////////////////////////////////////
require_once('../classes/common.class.php');
require_once('../classes/settings.class.php');
$common = new common();
2016-04-27 23:50:37 +00:00
$settings = new settings();
2016-04-23 18:01:11 +00:00
2016-04-27 23:50:37 +00:00
// The most current stable release.
2016-09-13 00:30:37 +00:00
$thisVersion = "2.3.0";
2016-04-27 23:50:37 +00:00
// Begin the upgrade process if this release is newer than what is installed.
if ($common->getSetting("version") == $thisVersion) {
header ("Location: /");
}
2016-04-28 17:40:58 +00:00
$error = FALSE;
#errorMessage = "No error message returned.";
2016-05-10 18:37:14 +00:00
///////////////////////
// UPGRADE TO V2.0.1
///////////////////////
if ($common->getSetting("version") == "2.0.0") {
try {
// Change tables containing datetime data to datetime.
if ($settings::db_driver != "xml") {
2016-09-09 16:10:31 +00:00
// Alter MySQL tables.
2016-05-10 18:37:14 +00:00
if ($settings::db_driver != "mysql") {
$dbh = $common->pdoOpen();
$sql = "ALTER TABLE ".$settings::db_prefix."aircraft MODIFY firstSeen DATETIME NOT NULL";
$sth = $dbh->prepare($sql);
$sth->execute();
$sth = NULL;
$sql = "ALTER TABLE adsb_aircraft MODIFY lastSeen DATETIME NOT NULL";
$sth = $dbh->prepare($sql);
$sth->execute();
$sth = NULL;
$sql = "ALTER TABLE adsb_blogPosts MODIFY date DATETIME NOT NULL";
$sth = $dbh->prepare($sql);
$sth->execute();
$sth = NULL;
$sql = "ALTER TABLE adsb_flights MODIFY firstSeen DATETIME NOT NULL";
$sth = $dbh->prepare($sql);
$sth->execute();
$sth = NULL;
$sql = "ALTER TABLE adsb_flights MODIFY firstSeen DATETIME NOT NULL";
$sth = $dbh->prepare($sql);
$sth->execute();
$sth = NULL;
$sql = "ALTER TABLE adsb_positions MODIFY time DATETIME NOT NULL";
$sth = $dbh->prepare($sql);
$sth->execute();
$sth = NULL;
$dbh = NULL;
}
2016-04-28 18:08:58 +00:00
}
2016-04-28 17:40:58 +00:00
2016-05-10 18:37:14 +00:00
// Add timezone setting.
$common->addSetting("timeZone", date_default_timezone_get());
2016-04-28 18:08:58 +00:00
2016-05-10 18:37:14 +00:00
// update version and patch settings.
$common->updateSetting("version", "2.0.1");
$common->updateSetting("patch", "");
} catch(Exception $e) {
$error = TRUE;
$errorMessage = $e->getMessage();
2016-04-28 17:40:58 +00:00
}
2016-05-10 18:37:14 +00:00
}
2016-04-28 17:40:58 +00:00
2016-05-10 18:37:14 +00:00
///////////////////////
2016-05-17 17:18:55 +00:00
// UPGRADE TO V2.0.2
2016-05-10 18:37:14 +00:00
///////////////////////
if ($common->getSetting("version") == "2.0.1") {
try {
// Set proper permissions on the SQLite file.
if ($settings::db_driver == "sqlite") {
chmod($_SERVER['DOCUMENT_ROOT'].DIRECTORY_SEPARATOR."data".DIRECTORY_SEPARATOR."portal.sqlite", 0666);
}
2016-05-18 05:58:16 +00:00
$common->updateSetting("version", "2.0.2");
$common->updateSetting("patch", "");
} catch(Exception $e) {
$error = TRUE;
$errorMessage = $e->getMessage();
}
}
///////////////////////
// UPGRADE RO V2.0.3
///////////////////////
if ($common->getSetting("version") == "2.0.2") {
try {
2016-08-30 16:10:04 +00:00
$common->updateSetting("version", "2.0.3");
2016-05-10 18:37:14 +00:00
$common->updateSetting("patch", "");
} catch(Exception $e) {
$error = TRUE;
$errorMessage = $e->getMessage();
}
2016-04-23 18:01:11 +00:00
}
2016-04-27 23:50:37 +00:00
2016-05-17 17:18:55 +00:00
///////////////////////
// UPGRADE TO V2.1.0
///////////////////////
2016-08-19 18:53:25 +00:00
if ($common->getSetting("version") == "2.0.3") {
2016-05-17 17:18:55 +00:00
try {
2016-09-07 15:57:08 +00:00
// Add the positions.aircraft column if using "SQL" storage.
2016-05-17 17:18:55 +00:00
if ($settings::db_driver != "xml") {
if ($settings::db_driver == "sqlite") {
// In SQLite aircraft.flight should have been an INTEGER not TEXT column.
2016-09-09 16:10:31 +00:00
// Since SQLite does not fully support ALTER TABLE allowing the change to be done easily this change will be skipped.
2016-05-17 17:18:55 +00:00
// This change will be addressed in the future if a problem arises with this column not being specifed as an INTEGER.
}
if ($settings::db_driver == "mysql") {
2016-08-30 15:28:13 +00:00
// Added check to see if column already exists.
2016-05-17 17:18:55 +00:00
$dbh = $common->pdoOpen();
2016-09-15 18:27:34 +00:00
if (count($dbh->query("SHOW COLUMNS FROM `".$settings::db_prefix."positions` LIKE 'aircraft'")->fetchAll()) == 0) {
2016-08-30 15:28:13 +00:00
$sql = "ALTER TABLE ".$settings::db_prefix."positions ADD COLUMN aircraft BIGINT";
$sth = $dbh->prepare($sql);
$sth->execute();
$sth = NULL;
}
2016-05-17 17:18:55 +00:00
$dbh = NULL;
}
}
2016-08-30 16:10:04 +00:00
$common->updateSetting("version", "2.1.0");
$common->updateSetting("patch", "");
} catch(Exception $e) {
$error = TRUE;
$errorMessage = $e->getMessage();
}
}
///////////////////////
// UPGRADE TO V2.2.0
///////////////////////
if ($common->getSetting("version") == "2.1.0") {
try {
// Add new setting to allow displaying either the dump1090-mutability map and dump1090-fa map.
$common->addSetting('useDump1090FaMap', FALSE);
2016-08-30 16:10:04 +00:00
$common->updateSetting("version", "2.2.0");
2016-05-17 17:18:55 +00:00
$common->updateSetting("patch", "");
} catch(Exception $e) {
$error = TRUE;
$errorMessage = $e->getMessage();
}
}
2016-09-13 00:30:37 +00:00
///////////////////////
// UPGRADE TO V2.3.0
///////////////////////
if ($common->getSetting("version") == "2.2.0") {
try {
$common->updateSetting("version", "2.3.0");
$common->updateSetting("patch", "");
} catch(Exception $e) {
$error = TRUE;
$errorMessage = $e->getMessage();
}
}
2016-04-28 17:40:58 +00:00
require_once('../admin/includes/header.inc.php');
// Display the instalation wizard.
if (!$error) {
?>
<h1>ADS-B Receiver Portal Updated</h1>
<p>Your portal has been upgraded to v<?php echo $thisVersion; ?>.</p>
<?php
} else {
?>
<h1>Error Encountered Upgrading Your ADS-B Receiver Portal</h1>
<p>There was an error encountered when upgrading your portal to v<?php echo $thisVersion; ?>.</p>
<?php echo $errorMessage; ?>
<?php
}
require_once('../admin/includes/footer.inc.php');
2016-04-23 18:01:11 +00:00
?>