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
|
'use strict'
const config = require('config')
const mkdirp = require('mkdirp')
const path = require('path')
const checker = {
checkConfig: checkConfig,
createDirectoriesIfNotExist: createDirectoriesIfNotExist
}
// Check the config files
function checkConfig () {
const required = [ 'listen.port',
'webserver.https', 'webserver.host', 'webserver.port',
'database.host', 'database.port', 'database.suffix',
'storage.certs', 'storage.uploads', 'storage.logs',
'network.friends' ]
const miss = []
for (const key of required) {
if (!config.has(key)) {
miss.push(key)
}
}
return miss
}
// Create directories for the storage if it doesn't exist
function createDirectoriesIfNotExist () {
const storages = config.get('storage')
for (const key of Object.keys(storages)) {
const dir = storages[key]
try {
mkdirp.sync(path.join(__dirname, '..', '..', dir))
} catch (error) {
throw new Error('Cannot create ' + path + ':' + error)
}
}
}
// ---------------------------------------------------------------------------
module.exports = checker
|