wikijs-fork/server/core/config.js

107 lines
2.8 KiB
JavaScript
Raw Normal View History

2017-04-02 19:56:47 -04:00
const _ = require('lodash')
const chalk = require('chalk')
2017-05-14 21:20:40 -04:00
const cfgHelper = require('../helpers/config')
const fs = require('fs')
const path = require('path')
const yaml = require('js-yaml')
/* global WIKI */
2017-07-29 17:33:08 -04: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 17:33:08 -04:00
}
2018-08-28 00:23:05 -04:00
if (process.env.dockerdev) {
2019-02-09 19:10:34 -05:00
confPaths.config = path.join(WIKI.ROOTPATH, `dev/docker-${process.env.DEVDB}/config.yml`)
2018-08-28 00:23:05 -04:00
}
process.stdout.write(chalk.blue(`Loading configuration from ${confPaths.config}... `))
2017-07-29 17:33:08 -04:00
let appconfig = {}
let appdata = {}
try {
appconfig = yaml.safeLoad(
cfgHelper.parseConfigValue(
fs.readFileSync(confPaths.config, 'utf8')
)
2017-05-13 14:44:04 -04:00
)
2017-07-29 17:33:08 -04: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 17:33:08 -04:00
process.exit(1)
}
2017-04-02 19:56:47 -04:00
2017-07-29 17:33:08 -04:00
// Merge with defaults
2017-04-02 19:56:47 -04:00
2017-07-29 17:33:08 -04:00
appconfig = _.defaultsDeep(appconfig, appdata.defaults.config)
2017-04-02 19:56:47 -04:00
2017-07-29 17:33:08 -04:00
if (appconfig.port < 1) {
appconfig.port = process.env.PORT || 80
}
2017-04-18 20:31:07 -04:00
2019-01-13 15:37:45 -05:00
const packageInfo = require(path.join(WIKI.ROOTPATH, 'package.json'))
WIKI.config = appconfig
WIKI.data = appdata
2019-01-13 15:37:45 -05:00
WIKI.version = packageInfo.version
WIKI.releaseDate = packageInfo.releaseDate
2017-07-29 17:33:08 -04:00
},
/**
* Load config from DB
*/
2018-05-28 14:46:55 -04:00
async loadFromDb() {
let conf = await WIKI.models.settings.getConfig()
2018-05-28 14:46:55 -04:00
if (conf) {
WIKI.config = _.defaultsDeep(conf, WIKI.config)
2017-12-16 23:41:16 -05:00
} else {
2018-05-28 14:46:55 -04:00
WIKI.logger.warn('DB Configuration is empty or incomplete. Switching to Setup mode...')
WIKI.config.setup = true
2017-12-16 23:41:16 -05:00
}
},
/**
* Save config to DB
*
2018-05-28 14:46:55 -04:00
* @param {Array} keys Array of keys to save
2017-12-16 23:41:16 -05:00
* @returns Promise
*/
2018-05-28 14:46:55 -04:00
async saveToDb(keys) {
2017-12-16 23:41:16 -05:00
try {
2018-05-28 14:46:55 -04: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 14:46:55 -04:00
if (affectedRows === 0 && value) {
await WIKI.models.settings.query().insert({ key, value })
2018-05-28 14:46:55 -04:00
}
2017-07-29 17:33:08 -04:00
}
2017-12-16 23:41:16 -05:00
} catch (err) {
WIKI.logger.error(`Failed to save configuration to DB: ${err.message}`)
2017-12-16 23:41:16 -05:00
return false
}
return true
2019-02-23 18:22:25 -05:00
},
/**
* Apply Dev Flags
*/
async applyFlags() {
WIKI.models.knex.client.config.debug = WIKI.config.flags.sqllog
2017-04-02 19:56:47 -04:00
}
}