synclounge/config/index.js

63 lines
1.4 KiB
JavaScript
Raw Normal View History

const nconf = require('nconf');
2020-07-21 21:28:48 +00:00
const fs = require('fs');
const defaults = require('./defaults');
const omit = (keys, obj) => keys.reduce((a, e) => {
const { [e]: no, ...rest } = a;
return rest;
}, obj);
// Doesn't return the keys specified in the blockList
const get = (file, blockList = []) => {
// Clear out nconf memory in case another dependency used it before
nconf.reset();
2020-07-21 21:28:48 +00:00
nconf
.argv({
separator: '__',
parseValues: true,
})
.env({
separator: '__',
lowerCase: true,
parseValues: true,
whitelist: Object.keys(defaults).concat([
'autojoin__server',
'autojoin__room',
'autojoin__password',
'authentication__mechanism',
'authentication__type',
'authentication__authorized',
'custom_server__name',
'custom_server__location',
'custom_server__url',
'custom_server__image',
'default_slplayer_quality',
]),
})
.file({ file })
.defaults(defaults);
2020-07-21 21:28:48 +00:00
// Filter out the weird stuff
const {
type, $0: firstArg, _: command, modern, ...config
} = nconf.get();
// Remove blockList items
const filteredConfig = omit(blockList, config);
return filteredConfig;
};
2020-07-21 21:28:48 +00:00
// Saves the give config json to the specified file
const save = (config, file) => {
fs.writeFileSync(file, JSON.stringify(config));
2020-07-21 21:28:48 +00:00
};
module.exports = {
get,
save,
};