-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
72 lines (57 loc) · 1.7 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* Load app configurations.
*
* Since it may be loaded directly from the renderer process,
* without passing through a transpiler, this file must use ES5.
*/
const fs = require('fs');
const path = require('path');
const defaultsDeep = require('lodash.defaultsdeep');
const sqlectron = require('sqlectron-core');
let config;
const cryptoSecret = 'j[F6Y6NoWT}+YG|4c|-<89:ByJ83-9Aj?O8>$Zk/[WFk_~gFbg7<wm+*V|A{xQZ,';
exports.get = function getConfiguration(cleanCache) {
if (config && !cleanCache) {
return config;
}
const args = (process.argv || []);
const argsConfig = {
devMode: args.indexOf('--dev') !== -1,
};
if (args.indexOf('--version') !== -1 || args.indexOf('-v') !== -1) {
argsConfig.printVersion = true;
}
const basePath = path.resolve(__dirname, '..', '..');
const packageConfig = readJSON(path.resolve(basePath, 'package.json'));
sqlectron.config.prepareSync(cryptoSecret);
const appConfig = sqlectron.config.getSync();
const configPath = sqlectron.config.path();
// use NODE_ENV for renderer process
// but if that is not defined then use --dev arg
const isDev = process.env.NODE_ENV !== 'production' || argsConfig.devMode;
const defaultConfig = {
path: configPath,
log: {
console: isDev,
file: false,
level: appConfig.level || (process.env.DEBUG ? 'debug' : 'error'),
path: configPath.replace('.json', '.log'),
},
};
const cryptoConfig = {
crypto: {
secret: cryptoSecret,
},
};
config = defaultsDeep(
cryptoConfig,
appConfig,
packageConfig,
argsConfig,
defaultConfig
);
return config;
};
function readJSON(filePath) {
return JSON.parse(fs.readFileSync(filePath, 'utf8'));
}