Fix up some deprecated config refs
This commit is contained in:
parent
eb4f933285
commit
dd2a6258d5
|
@ -175,10 +175,11 @@ function initialize(cb) {
|
||||||
async.series(
|
async.series(
|
||||||
[
|
[
|
||||||
function createMissingDirectories(callback) {
|
function createMissingDirectories(callback) {
|
||||||
async.each(Object.keys(conf.config.paths), function entry(pathKey, next) {
|
const Config = conf.get();
|
||||||
mkdirs(conf.config.paths[pathKey], function dirCreated(err) {
|
async.each(Object.keys(Config.paths), function entry(pathKey, next) {
|
||||||
|
mkdirs(Config.paths[pathKey], function dirCreated(err) {
|
||||||
if(err) {
|
if(err) {
|
||||||
console.error('Could not create path: ' + conf.config.paths[pathKey] + ': ' + err.toString());
|
console.error('Could not create path: ' + Config.paths[pathKey] + ': ' + err.toString());
|
||||||
}
|
}
|
||||||
return next(err);
|
return next(err);
|
||||||
});
|
});
|
||||||
|
|
|
@ -106,9 +106,7 @@ function mergeValidateAndFinalize(config, cb) {
|
||||||
return callback(null, mergedConfig);
|
return callback(null, mergedConfig);
|
||||||
},
|
},
|
||||||
function setIt(mergedConfig, callback) {
|
function setIt(mergedConfig, callback) {
|
||||||
// :TODO: .config property is to be deprecated once conversions are done
|
currentConfiguration = mergedConfig;
|
||||||
exports.config = currentConfiguration = mergedConfig;
|
|
||||||
|
|
||||||
exports.get = () => currentConfiguration;
|
exports.get = () => currentConfiguration;
|
||||||
return callback(null);
|
return callback(null);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const conf = require('./config.js');
|
const conf = require('./config');
|
||||||
|
|
||||||
// deps
|
// deps
|
||||||
const sqlite3 = require('sqlite3');
|
const sqlite3 = require('sqlite3');
|
||||||
|
@ -30,7 +30,8 @@ function getTransactionDatabase(db) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDatabasePath(name) {
|
function getDatabasePath(name) {
|
||||||
return paths.join(conf.config.paths.db, `${name}.sqlite3`);
|
const Config = conf.get();
|
||||||
|
return paths.join(Config.paths.db, `${name}.sqlite3`);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getModDatabasePath(moduleInfo, suffix) {
|
function getModDatabasePath(moduleInfo, suffix) {
|
||||||
|
@ -53,7 +54,8 @@ function getModDatabasePath(moduleInfo, suffix) {
|
||||||
(full.split('.').length > 1 && HOST_RE.test(full)),
|
(full.split('.').length > 1 && HOST_RE.test(full)),
|
||||||
'packageName must follow Reverse Domain Name Notation - https://en.wikipedia.org/wiki/Reverse_domain_name_notation');
|
'packageName must follow Reverse Domain Name Notation - https://en.wikipedia.org/wiki/Reverse_domain_name_notation');
|
||||||
|
|
||||||
return paths.join(conf.config.paths.modsDb, `${full}.sqlite3`);
|
const Config = conf.get();
|
||||||
|
return paths.join(Config.paths.modsDb, `${full}.sqlite3`);
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadDatabaseForMod(modInfo, cb) {
|
function loadDatabaseForMod(modInfo, cb) {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const conf = require('./config.js');
|
const Config = require('./config').get;
|
||||||
const logger = require('./logger.js');
|
const logger = require('./logger.js');
|
||||||
const ServerModule = require('./server_module.js').ServerModule;
|
const ServerModule = require('./server_module.js').ServerModule;
|
||||||
const clientConns = require('./client_connections.js');
|
const clientConns = require('./client_connections.js');
|
||||||
|
@ -28,7 +28,7 @@ module.exports = class LoginServerModule extends ServerModule {
|
||||||
//
|
//
|
||||||
// Choose initial theme before we have user context
|
// Choose initial theme before we have user context
|
||||||
//
|
//
|
||||||
const preLoginTheme = _.get(conf.config, 'theme.preLogin');
|
const preLoginTheme = _.get(Config(), 'theme.preLogin');
|
||||||
if('*' === preLoginTheme) {
|
if('*' === preLoginTheme) {
|
||||||
client.user.properties[UserProps.ThemeId] = theme.getRandomTheme() || '';
|
client.user.properties[UserProps.ThemeId] = theme.getRandomTheme() || '';
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -433,10 +433,10 @@ function getThemeArt(options, cb) {
|
||||||
const config = Config();
|
const config = Config();
|
||||||
if(!options.themeId && _.has(options, [ 'client', 'user', 'properties', UserProps.ThemeId ])) {
|
if(!options.themeId && _.has(options, [ 'client', 'user', 'properties', UserProps.ThemeId ])) {
|
||||||
options.themeId = options.client.user.properties[UserProps.ThemeId];
|
options.themeId = options.client.user.properties[UserProps.ThemeId];
|
||||||
} else {
|
|
||||||
options.themeId = config.theme.default;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
options.themeId = options.themeId || config.theme.default;
|
||||||
|
|
||||||
// :TODO: replace asAnsi stuff with something like retrieveAs = 'ansi' | 'pipe' | ...
|
// :TODO: replace asAnsi stuff with something like retrieveAs = 'ansi' | 'pipe' | ...
|
||||||
// :TODO: Some of these options should only be set if not provided!
|
// :TODO: Some of these options should only be set if not provided!
|
||||||
options.asAnsi = true; // always convert to ANSI
|
options.asAnsi = true; // always convert to ANSI
|
||||||
|
|
Loading…
Reference in New Issue