2018-09-06 17:54:04 +08:00
|
|
|
const utils = require('./utils');
|
|
|
|
|
2018-01-29 08:30:14 +08:00
|
|
|
async function getOption(name) {
|
2018-07-21 14:55:24 +08:00
|
|
|
const option = await require('./repository').getOption(name);
|
2017-11-03 08:48:02 +08:00
|
|
|
|
2018-05-22 12:22:43 +08:00
|
|
|
if (!option) {
|
2019-11-02 06:05:33 +08:00
|
|
|
throw new Error(`Option ${name} doesn't exist`);
|
2017-11-03 08:48:02 +08:00
|
|
|
}
|
|
|
|
|
2018-05-22 12:22:43 +08:00
|
|
|
return option.value;
|
2017-11-03 08:48:02 +08:00
|
|
|
}
|
|
|
|
|
2018-03-31 07:41:54 +08:00
|
|
|
async function setOption(name, value) {
|
2018-07-21 14:55:24 +08:00
|
|
|
const option = await require('./repository').getOption(name);
|
2018-01-12 11:45:25 +08:00
|
|
|
|
2018-05-22 12:22:43 +08:00
|
|
|
if (!option) {
|
2018-01-29 08:30:14 +08:00
|
|
|
throw new Error(`Option ${name} doesn't exist`);
|
2018-01-12 11:45:25 +08:00
|
|
|
}
|
|
|
|
|
2018-05-22 12:22:43 +08:00
|
|
|
option.value = value;
|
|
|
|
|
|
|
|
await option.save();
|
2018-01-12 11:45:25 +08:00
|
|
|
}
|
|
|
|
|
2018-03-31 07:41:54 +08:00
|
|
|
async function createOption(name, value, isSynced) {
|
2018-06-11 03:49:22 +08:00
|
|
|
// to avoid circular dependency, need to find better solution
|
|
|
|
const Option = require('../entities/option');
|
|
|
|
|
2018-05-22 12:22:43 +08:00
|
|
|
await new Option({
|
2018-01-29 08:30:14 +08:00
|
|
|
name: name,
|
|
|
|
value: value,
|
2018-05-22 12:22:43 +08:00
|
|
|
isSynced: isSynced
|
|
|
|
}).save();
|
2017-11-03 08:48:02 +08:00
|
|
|
}
|
|
|
|
|
2018-09-06 17:54:04 +08:00
|
|
|
async function getOptions(allowedOptions) {
|
|
|
|
let options = await require('./repository').getEntities("SELECT * FROM options ORDER BY name");
|
|
|
|
|
|
|
|
if (allowedOptions) {
|
|
|
|
options = options.filter(opt => allowedOptions.includes(opt.name));
|
|
|
|
}
|
|
|
|
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getOptionsMap(allowedOptions) {
|
|
|
|
const options = await getOptions(allowedOptions);
|
|
|
|
|
|
|
|
return utils.toObject(options, opt => [opt.name, opt.value]);
|
|
|
|
}
|
|
|
|
|
2017-11-03 08:48:02 +08:00
|
|
|
module.exports = {
|
|
|
|
getOption,
|
|
|
|
setOption,
|
2018-09-06 17:54:04 +08:00
|
|
|
createOption,
|
|
|
|
getOptions,
|
|
|
|
getOptionsMap
|
2017-11-03 08:48:02 +08:00
|
|
|
};
|