177 lines
4.5 KiB
PHP
Raw Normal View History

<?php
2014-01-13 17:43:58 +00:00
// MYSQL Check - FIXME
// 1 UNKNOWN
2015-07-13 20:10:26 +02:00
/*
* Observium Network Management and Monitoring System
* Copyright (C) 2006-2012, Observium Developers - http://www.observium.org
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
* See COPYING for more details.
*/
2015-07-13 20:10:26 +02:00
if (!isset($debug)) {
// Not called from within discovery, let's load up the necessary stuff.
include 'includes/defaults.inc.php';
include 'config.php';
include 'includes/definitions.inc.php';
include 'includes/functions.php';
$options = getopt('d');
if (isset($options['d'])) {
$debug = true;
}
else {
$debug = false;
}
}
$insert = 0;
2015-07-13 20:10:26 +02:00
if ($db_rev = @dbFetchCell('SELECT version FROM `dbSchema` ORDER BY version DESC LIMIT 1')) {
}
else {
$db_rev = 0;
$insert = 1;
}
2015-07-13 20:10:26 +02:00
// For transition from old system
if ($old_rev = @dbFetchCell('SELECT revision FROM `dbSchema`')) {
echo "-- Transitioning from old revision-based schema to database version system\n";
$db_rev = 6;
2015-07-13 20:10:26 +02:00
if ($old_rev <= 1000) {
$db_rev = 1;
}
2015-07-13 20:10:26 +02:00
if ($old_rev <= 1435) {
$db_rev = 2;
}
if ($old_rev <= 2245) {
$db_rev = 3;
}
if ($old_rev <= 2804) {
$db_rev = 4;
}
if ($old_rev <= 2827) {
$db_rev = 5;
}
$insert = 1;
}//end if
$updating = 0;
2015-07-13 20:10:26 +02:00
$include_dir_regexp = '/\.sql$/';
2015-07-13 20:10:26 +02:00
if ($handle = opendir($config['install_dir'].'/sql-schema')) {
while (false !== ($file = readdir($handle))) {
if (filetype($config['install_dir'].'/sql-schema/'.$file) == 'file' && preg_match($include_dir_regexp, $file)) {
$filelist[] = $file;
}
}
2015-07-13 20:10:26 +02:00
closedir($handle);
}
asort($filelist);
2015-08-26 08:44:15 +01:00
$tmp = explode('.', max($filelist), 2);
if ($tmp[0] <= $db_rev) {
2015-07-22 08:31:51 -04:00
if ($debug) {
echo "DB Schema already up to date.\n";
}
2015-07-22 08:48:33 -04:00
return;
2015-07-22 08:31:51 -04:00
}
$limit = 150; //magic marker far enough in the future
2015-07-13 20:10:26 +02:00
foreach ($filelist as $file) {
list($filename,$extension) = explode('.', $file, 2);
if ($filename > $db_rev) {
if (isset($_SESSION['stage']) ) {
$limit++;
if ( time()-$_SESSION['last'] > 45 ) {
$_SESSION['offset'] = $limit;
$GLOBALS['refresh'] = '<b>Updating, please wait..</b><sub>'.date('r').'</sub><script>window.location.href = "install.php?offset='.$limit.'";</script>';
return;
}
}
2015-07-13 20:10:26 +02:00
if (!$updating) {
echo "-- Updating database schema\n";
}
echo sprintf('%03d', $db_rev).' -> '.sprintf('%03d', $filename).' ...';
$err = 0;
if ($fd = @fopen($config['install_dir'].'/sql-schema/'.$file, 'r')) {
$data = fread($fd, 4096);
while (!feof($fd)) {
$data .= fread($fd, 4096);
}
foreach (explode("\n", $data) as $line) {
if (trim($line)) {
d_echo("$line \n");
2015-07-13 20:10:26 +02:00
if ($line[0] != '#') {
2015-08-08 19:27:18 +00:00
if ($config['db']['extension'] == 'mysqli') {
2015-08-12 19:55:37 +00:00
$update = mysqli_query($database_link, $line);
2015-08-08 19:27:18 +00:00
}
else {
2015-08-12 19:55:37 +00:00
$update = mysql_query($line);
2015-08-08 19:27:18 +00:00
}
2015-07-13 20:10:26 +02:00
if (!$update) {
$err++;
if ($debug) {
2015-08-08 19:27:18 +00:00
if ($config['db']['extension'] == 'mysqli') {
echo mysqli_error($database_link)."\n";
}
else {
2015-08-08 19:27:18 +00:00
echo mysql_error()."\n";
}
2015-07-13 20:10:26 +02:00
}
}
}
}
}
2015-07-13 20:10:26 +02:00
if ($db_rev < 5) {
echo " done.\n";
}
else {
echo " done ($err errors).\n";
}
}
2015-07-13 20:10:26 +02:00
else {
echo " Could not open file!\n";
}//end if
$updating++;
$db_rev = $filename;
if ($insert) {
dbInsert(array('version' => $db_rev), 'dbSchema');
}
else {
dbUpdate(array('version' => $db_rev), 'dbSchema');
}
2015-07-13 20:10:26 +02:00
}//end if
}//end foreach
if ($updating) {
echo "-- Done\n";
2015-09-01 23:38:10 +01:00
if( isset($_SESSION['stage']) ) {
$_SESSION['build-ok'] = true;
}
}