mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
ebe2ecf524
* Add migrations and seeds * Fix spacing validation issues * Fix linting * Update tabs to spaces * Update daily and install process * Make build-base.php use the new migrations if empty or at dbschema 1000. Seed 1000 into the database. Temp fix for the route table index length (this table basically isn't used...) * Fix typo in seed. Hard code legacy schema checks to version 1000 (999 would have worked as is) * Port association table no longer exists * Make database validate again * DB schema, remove as many DB::statement as possible * update migrations add librenms cli entry point (artisan) update validate to check laravel migrations * remove statements from users migration * Fix up daily.sh and the 1000 migration * Update migrations to current state Take advantage of environment variables to set DB credentials. * Fix style issues * Update schema * fix test db collation * Fix migration table definition * update db migrations * Update migrations * Update stats callback. Just count the total migrations applied. * Update 1000.sql. * update migrations * remove the graph type seeder, it is no longer needed * update docs * fix whitespace * remove extra schema * update tests * fix sort * add message * dbSchema should actually be 1000 * add character set to db create * Fix some artisan issues * Update schema
116 lines
3.6 KiB
PHP
116 lines
3.6 KiB
PHP
<?php
|
|
/**
|
|
* update.php
|
|
*
|
|
* Database update script
|
|
*
|
|
* 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Copyright (C) 2006-2012, Observium Developers - http://www.observium.org
|
|
*
|
|
* @package LibreNMS
|
|
* @link http://librenms.org
|
|
* @copyright 2017-2018 Tony Murray
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
*/
|
|
|
|
use Artisan;
|
|
use LibreNMS\Config;
|
|
use LibreNMS\Exceptions\DatabaseConnectException;
|
|
use LibreNMS\Exceptions\LockException;
|
|
use LibreNMS\Util\FileLock;
|
|
use LibreNMS\Util\MemcacheLock;
|
|
|
|
if (!isset($init_modules) && php_sapi_name() == 'cli') {
|
|
// Not called from within discovery, let's load up the necessary stuff.
|
|
$init_modules = ['laravel'];
|
|
require realpath(__DIR__ . '/../..') . '/includes/init.php';
|
|
}
|
|
|
|
$return = 0;
|
|
|
|
try {
|
|
if (isset($skip_schema_lock) && !$skip_schema_lock) {
|
|
if (Config::get('distributed_poller')) {
|
|
$schemaLock = MemcacheLock::lock('schema', 30, 86000);
|
|
} else {
|
|
$schemaLock = FileLock::lock('schema', 30);
|
|
}
|
|
}
|
|
|
|
$db_rev = get_db_schema();
|
|
|
|
$migrate_opts = ['--force' => true, '--ansi' => true];
|
|
|
|
if ($db_rev === 0) {
|
|
$migrate_opts['--seed'] = true;
|
|
$return = Artisan::call('migrate', $migrate_opts);
|
|
echo Artisan::output();
|
|
} elseif ($db_rev == 1000) {
|
|
$return = Artisan::call('migrate', $migrate_opts);
|
|
echo Artisan::output();
|
|
} else {
|
|
// legacy update
|
|
d_echo("DB Schema update started....\n");
|
|
|
|
// Set Database Character set and Collation
|
|
dbQuery('ALTER DATABASE CHARACTER SET utf8 COLLATE utf8_unicode_ci;');
|
|
|
|
echo "-- Updating database schema\n";
|
|
foreach (get_schema_list() as $file_rev => $file) {
|
|
if ($file_rev > $db_rev) {
|
|
printf('%03d -> %03d ...', $db_rev, $file_rev);
|
|
|
|
$err = 0;
|
|
if (($data = file_get_contents($file)) !== false) {
|
|
foreach (explode("\n", $data) as $line) {
|
|
if (trim($line)) {
|
|
d_echo("$line \n");
|
|
|
|
if ($line[0] != '#') {
|
|
if (!dbQuery($line)) {
|
|
$return = 2;
|
|
$err++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
echo " done ($err errors).\n";
|
|
} else {
|
|
echo " Could not open file! $file\n";
|
|
$return = 1;
|
|
}//end if
|
|
|
|
if ($db_rev == 0) {
|
|
dbInsert(['version' => $file_rev], 'dbSchema');
|
|
} else {
|
|
dbUpdate(['version' => $file_rev], 'dbSchema');
|
|
}
|
|
$db_rev = $file_rev;
|
|
}//end if
|
|
}//end foreach
|
|
|
|
echo "-- Done\n";
|
|
// end legacy update
|
|
}
|
|
|
|
if (isset($schemaLock)) {
|
|
$schemaLock->release();
|
|
}
|
|
} catch (LockException $e) {
|
|
echo $e->getMessage() . PHP_EOL;
|
|
$return = 1;
|
|
}
|