wikijs-fork/server/core/config.js

137 lines
3.7 KiB
JavaScript
Raw Normal View History

2017-04-02 23:56:47 +00:00
const _ = require('lodash')
const chalk = require('chalk')
2017-05-15 01:20:40 +00:00
const cfgHelper = require('../helpers/config')
const fs = require('fs')
const path = require('path')
const yaml = require('js-yaml')
/* global WIKI */
2017-07-29 21:33:08 +00:00
module.exports = {
/**
* Load root config from disk
*/
init() {
let confPaths = {
config: path.join(WIKI.ROOTPATH, 'config.yml'),
data: path.join(WIKI.SERVERPATH, 'app/data.yml'),
dataRegex: path.join(WIKI.SERVERPATH, 'app/regex.js')
2017-07-29 21:33:08 +00:00
}
2018-08-28 04:23:05 +00:00
if (process.env.dockerdev) {
confPaths.config = path.join(WIKI.ROOTPATH, `dev/containers/config.yml`)
2018-08-28 04:23:05 +00:00
}
2019-09-22 20:43:47 +00:00
if (process.env.CONFIG_FILE) {
confPaths.config = path.resolve(WIKI.ROOTPATH, process.env.CONFIG_FILE)
}
process.stdout.write(chalk.blue(`Loading configuration from ${confPaths.config}... `))
2017-07-29 21:33:08 +00:00
let appconfig = {}
let appdata = {}
try {
appconfig = yaml.safeLoad(
cfgHelper.parseConfigValue(
fs.readFileSync(confPaths.config, 'utf8')
)
2017-05-13 18:44:04 +00:00
)
2017-07-29 21:33:08 +00:00
appdata = yaml.safeLoad(fs.readFileSync(confPaths.data, 'utf8'))
appdata.regex = require(confPaths.dataRegex)
console.info(chalk.green.bold(`OK`))
} catch (err) {
console.error(chalk.red.bold(`FAILED`))
console.error(err.message)
console.error(chalk.red.bold(`>>> Unable to read configuration file! Did you create the config.yml file?`))
2017-07-29 21:33:08 +00:00
process.exit(1)
}
2017-04-02 23:56:47 +00:00
2017-07-29 21:33:08 +00:00
// Merge with defaults
2017-04-02 23:56:47 +00:00
2017-07-29 21:33:08 +00:00
appconfig = _.defaultsDeep(appconfig, appdata.defaults.config)
2017-04-02 23:56:47 +00:00
2019-06-02 01:38:21 +00:00
if (appconfig.port < 1 || process.env.HEROKU) {
2017-07-29 21:33:08 +00:00
appconfig.port = process.env.PORT || 80
}
2017-04-19 00:31:07 +00:00
2019-01-13 20:37:45 +00:00
const packageInfo = require(path.join(WIKI.ROOTPATH, 'package.json'))
2019-09-21 05:10:45 +00:00
// Load DB Password from Docker Secret File
if (process.env.DB_PASS_FILE) {
console.info(chalk.blue(`DB_PASS_FILE is defined. Will use secret from file.`))
2019-09-21 05:10:45 +00:00
try {
appconfig.db.pass = fs.readFileSync(process.env.DB_PASS_FILE, 'utf8').trim()
2019-09-21 05:10:45 +00:00
} catch (err) {
console.error(chalk.red.bold(`>>> Failed to read Docker Secret File using path defined in DB_PASS_FILE env variable!`))
console.error(err.message)
process.exit(1)
}
}
WIKI.config = appconfig
WIKI.data = appdata
2019-01-13 20:37:45 +00:00
WIKI.version = packageInfo.version
WIKI.releaseDate = packageInfo.releaseDate
WIKI.devMode = (packageInfo.dev === true)
2017-07-29 21:33:08 +00:00
},
/**
* Load config from DB
*/
2018-05-28 18:46:55 +00:00
async loadFromDb() {
let conf = await WIKI.models.settings.getConfig()
2018-05-28 18:46:55 +00:00
if (conf) {
WIKI.config = _.defaultsDeep(conf, WIKI.config)
2017-12-17 04:41:16 +00:00
} else {
2018-05-28 18:46:55 +00:00
WIKI.logger.warn('DB Configuration is empty or incomplete. Switching to Setup mode...')
WIKI.config.setup = true
2017-12-17 04:41:16 +00:00
}
},
/**
* Save config to DB
*
2018-05-28 18:46:55 +00:00
* @param {Array} keys Array of keys to save
2017-12-17 04:41:16 +00:00
* @returns Promise
*/
2020-04-20 00:26:26 +00:00
async saveToDb(keys, propagate = true) {
2017-12-17 04:41:16 +00:00
try {
2018-05-28 18:46:55 +00:00
for (let key of keys) {
let value = _.get(WIKI.config, key, null)
if (!_.isPlainObject(value)) {
value = { v: value }
}
let affectedRows = await WIKI.models.settings.query().patch({ value }).where('key', key)
2018-05-28 18:46:55 +00:00
if (affectedRows === 0 && value) {
await WIKI.models.settings.query().insert({ key, value })
2018-05-28 18:46:55 +00:00
}
2017-07-29 21:33:08 +00:00
}
2020-04-20 00:26:26 +00:00
if (propagate) {
WIKI.events.outbound.emit('reloadConfig')
}
2017-12-17 04:41:16 +00:00
} catch (err) {
WIKI.logger.error(`Failed to save configuration to DB: ${err.message}`)
2017-12-17 04:41:16 +00:00
return false
}
return true
2019-02-23 23:22:25 +00:00
},
/**
* Apply Dev Flags
*/
async applyFlags() {
WIKI.models.knex.client.config.debug = WIKI.config.flags.sqllog
2020-04-20 00:26:26 +00:00
},
/**
* Subscribe to HA propagation events
*/
subscribeToEvents() {
WIKI.events.inbound.on('reloadConfig', async () => {
await WIKI.configSvc.loadFromDb()
await WIKI.configSvc.applyFlags()
})
2017-04-02 23:56:47 +00:00
}
}