wikijs-fork/server/libs/config.js

64 lines
1.5 KiB
JavaScript
Raw Normal View History

2017-04-02 19:56:47 -04:00
'use strict'
const fs = require('fs')
const yaml = require('js-yaml')
const _ = require('lodash')
const path = require('path')
2017-05-14 21:20:40 -04:00
const cfgHelper = require('../helpers/config')
2017-04-02 19:56:47 -04:00
/**
* Load Application Configuration
*
* @param {Object} confPaths Path to the configuration files
* @return {Object} Application Configuration
*/
module.exports = (confPaths) => {
confPaths = _.defaults(confPaths, {
config: path.join(ROOTPATH, 'config.yml'),
data: path.join(SERVERPATH, 'app/data.yml'),
dataRegex: path.join(SERVERPATH, 'app/regex.js')
2017-04-02 19:56:47 -04:00
})
let appconfig = {}
let appdata = {}
try {
2017-05-13 14:44:04 -04:00
appconfig = yaml.safeLoad(
2017-05-14 21:20:40 -04:00
cfgHelper.parseConfigValue(
fs.readFileSync(confPaths.config, 'utf8')
2017-05-13 14:44:04 -04:00
)
)
2017-04-02 19:56:47 -04:00
appdata = yaml.safeLoad(fs.readFileSync(confPaths.data, 'utf8'))
2017-04-14 14:15:11 -04:00
appdata.regex = require(confPaths.dataRegex)
2017-04-02 19:56:47 -04:00
} catch (ex) {
console.error(ex)
2017-04-02 19:56:47 -04:00
process.exit(1)
}
// Merge with defaults
appconfig = _.defaultsDeep(appconfig, appdata.defaults.config)
// Check port
2017-04-18 20:31:07 -04:00
if (appconfig.port < 1) {
appconfig.port = process.env.PORT || 80
}
2017-04-02 19:56:47 -04:00
// List authentication strategies
appconfig.authStrategies = {
list: _.filter(appconfig.auth, ['enabled', true]),
socialEnabled: (_.chain(appconfig.auth).omit('local').filter(['enabled', true]).value().length > 0)
}
if (appconfig.authStrategies.list.length < 1) {
console.error(new Error('You must enable at least 1 authentication strategy!'))
process.exit(1)
2017-04-02 19:56:47 -04:00
}
return {
config: appconfig,
data: appdata
}
}