Notes/src/services/options.js

80 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-06-20 12:31:38 +02:00
function getOption(name) {
const option = require('./repository').getOption(name);
2017-11-02 20:48:02 -04:00
if (!option) {
2019-11-01 23:05:33 +01:00
throw new Error(`Option ${name} doesn't exist`);
2017-11-02 20:48:02 -04:00
}
return option.value;
2017-11-02 20:48:02 -04:00
}
/**
* @return {Promise<number>}
*/
2020-06-20 12:31:38 +02:00
function getOptionInt(name) {
const val = getOption(name);
const intVal = parseInt(val);
if (isNaN(intVal)) {
throw new Error(`Could not parse "${val}" into integer for option "${name}"`);
}
return intVal;
}
/**
* @return {Promise<boolean>}
*/
2020-06-20 12:31:38 +02:00
function getOptionBool(name) {
const val = getOption(name);
if (!['true', 'false'].includes(val)) {
throw new Error(`Could not parse "${val}" into boolean for option "${name}"`);
}
return val === 'true';
}
2020-06-20 12:31:38 +02:00
function setOption(name, value) {
const option = require('./repository').getOption(name);
if (option) {
option.value = value;
2020-06-20 12:31:38 +02:00
option.save();
}
else {
2020-06-20 12:31:38 +02:00
createOption(name, value, false);
}
}
2020-06-20 12:31:38 +02:00
function createOption(name, value, isSynced) {
// to avoid circular dependency, need to find better solution
const Option = require('../entities/option');
2020-06-20 12:31:38 +02:00
new Option({
2018-01-28 19:30:14 -05:00
name: name,
value: value,
isSynced: isSynced
}).save();
2017-11-02 20:48:02 -04:00
}
2020-06-20 12:31:38 +02:00
function getOptions() {
return require('./repository').getEntities("SELECT * FROM options ORDER BY name");
2018-09-06 11:54:04 +02:00
}
2020-06-20 12:31:38 +02:00
function getOptionsMap() {
return require('./sql').getMap("SELECT name, value FROM options ORDER BY name");
2018-09-06 11:54:04 +02:00
}
2017-11-02 20:48:02 -04:00
module.exports = {
getOption,
getOptionInt,
getOptionBool,
2017-11-02 20:48:02 -04:00
setOption,
2018-09-06 11:54:04 +02:00
createOption,
getOptions,
getOptionsMap
2020-06-20 12:31:38 +02:00
};