* Much better DB init
This commit is contained in:
parent
2423a00d05
commit
3af5b9a213
|
@ -117,8 +117,7 @@ function initialize(cb) {
|
||||||
callback(null);
|
callback(null);
|
||||||
},
|
},
|
||||||
function initDatabases(callback) {
|
function initDatabases(callback) {
|
||||||
database.initializeDatabases();
|
database.initializeDatabases(callback);
|
||||||
callback(null);
|
|
||||||
},
|
},
|
||||||
function initSystemProperties(callback) {
|
function initSystemProperties(callback) {
|
||||||
require('./system_property.js').loadSystemProperties(callback);
|
require('./system_property.js').loadSystemProperties(callback);
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var conf = require('./config.js');
|
var conf = require('./config.js');
|
||||||
|
|
||||||
var sqlite3 = require('sqlite3');
|
var sqlite3 = require('sqlite3');
|
||||||
var paths = require('path');
|
var paths = require('path');
|
||||||
|
var async = require('async');
|
||||||
|
|
||||||
// database handles
|
// database handles
|
||||||
var dbs = {};
|
var dbs = {};
|
||||||
|
@ -16,22 +18,50 @@ function getDatabasePath(name) {
|
||||||
return paths.join(conf.config.paths.db, name + '.sqlite3');
|
return paths.join(conf.config.paths.db, name + '.sqlite3');
|
||||||
}
|
}
|
||||||
|
|
||||||
function initializeDatabases() {
|
function initializeDatabases(cb) {
|
||||||
// :TODO: this will need to change if more DB's are added ... why?
|
// :TODO: this will need to change if more DB's are added ... why?
|
||||||
dbs.user = new sqlite3.Database(getDatabasePath('user'));
|
async.series(
|
||||||
dbs.message = new sqlite3.Database(getDatabasePath('message'));
|
[
|
||||||
dbs.system = new sqlite3.Database(getDatabasePath('system'));
|
function systemDb(callback) {
|
||||||
|
dbs.system = new sqlite3.Database(getDatabasePath('system'), function dbCreated(err) {
|
||||||
dbs.user.serialize(function serialized() {
|
if(err) {
|
||||||
createSystemTables();
|
callback(err);
|
||||||
createUserTables();
|
} else {
|
||||||
createInitialUserValues();
|
dbs.system.serialize(function serialized() {
|
||||||
});
|
createSystemTables();
|
||||||
|
});
|
||||||
dbs.message.serialize(function serialized() {
|
callback(null);
|
||||||
createMessageBaseTables();
|
}
|
||||||
createInitialMessageValues();
|
});
|
||||||
});
|
},
|
||||||
|
function userDb(callback) {
|
||||||
|
dbs.user = new sqlite3.Database(getDatabasePath('user'), function dbCreated(err) {
|
||||||
|
if(err) {
|
||||||
|
callback(err);
|
||||||
|
} else {
|
||||||
|
dbs.user.serialize(function serialized() {
|
||||||
|
createInitialUserValues();
|
||||||
|
});
|
||||||
|
callback(null);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
function messageDb(callback) {
|
||||||
|
dbs.message = new sqlite3.Database(getDatabasePath('message'), function dbCreated(err) {
|
||||||
|
if(err) {
|
||||||
|
callback(err);
|
||||||
|
} else {
|
||||||
|
dbs.message.serialize(function serialized() {
|
||||||
|
createMessageBaseTables();
|
||||||
|
createInitialMessageValues();
|
||||||
|
});
|
||||||
|
callback(null);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
],
|
||||||
|
cb
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function createSystemTables() {
|
function createSystemTables() {
|
||||||
|
|
Loading…
Reference in New Issue