trilium/services/options.js

75 lines
2.3 KiB
JavaScript
Raw Normal View History

2017-11-03 08:48:02 +08:00
const sql = require('./sql');
const utils = require('./utils');
const sync_table = require('./sync_table');
2017-12-04 11:29:23 +08:00
const app_info = require('./app_info');
2017-11-03 08:48:02 +08:00
2018-01-29 08:30:14 +08:00
async function getOptionOrNull(name) {
return await sql.getFirstOrNull("SELECT value FROM options WHERE name = ?", [name]);
2018-01-12 12:54:17 +08:00
}
2018-01-29 08:30:14 +08:00
async function getOption(name) {
const row = await getOptionOrNull(name);
2017-11-03 08:48:02 +08:00
if (!row) {
2018-01-29 08:30:14 +08:00
throw new Error("Option " + name + " doesn't exist");
2017-11-03 08:48:02 +08:00
}
2018-01-29 08:30:14 +08:00
return row['value'];
2017-11-03 08:48:02 +08:00
}
2018-01-29 08:30:14 +08:00
async function setOption(name, value, sourceId = null) {
const opt = await sql.getFirst("SELECT * FROM options WHERE name = ?", [name]);
if (!opt) {
2018-01-29 08:30:14 +08:00
throw new Error(`Option ${name} doesn't exist`);
}
2018-01-29 08:30:14 +08:00
if (opt.isSynced) {
await sync_table.addOptionsSync(name, sourceId);
2017-11-03 08:48:02 +08:00
}
2018-01-29 08:30:14 +08:00
await sql.execute("UPDATE options SET value = ?, dateModified = ? WHERE name = ?",
[value, utils.nowDate(), name]);
}
2018-01-29 08:30:14 +08:00
async function createOption(name, value, isSynced, sourceId = null) {
await sql.insert("options", {
2018-01-29 08:30:14 +08:00
name: name,
value: value,
isSynced: isSynced,
dateModified: utils.nowDate()
2017-12-04 11:29:23 +08:00
});
if (isSynced) {
2018-01-29 08:30:14 +08:00
await sync_table.addOptionsSync(name, sourceId);
}
2017-11-03 08:48:02 +08:00
}
async function initOptions(startNotePath) {
await createOption('document_id', utils.randomSecureToken(16), false);
await createOption('document_secret', utils.randomSecureToken(16), false);
await createOption('username', '', true);
await createOption('password_verification_hash', '', true);
await createOption('password_verification_salt', '', true);
await createOption('password_derived_key_salt', '', true);
await createOption('encrypted_data_key', '', true);
await createOption('encrypted_data_key_iv', '', true);
2018-01-29 08:30:14 +08:00
await createOption('start_notePath', startNotePath, false);
await createOption('protected_session_timeout', 600, true);
await createOption('history_snapshot_time_interval', 600, true);
await createOption('last_backup_date', utils.nowDate(), false);
await createOption('db_version', app_info.db_version, false);
await createOption('last_synced_pull', app_info.db_version, false);
await createOption('last_synced_push', 0, false);
2017-12-04 11:29:23 +08:00
}
2017-11-03 08:48:02 +08:00
module.exports = {
getOption,
2018-01-12 12:54:17 +08:00
getOptionOrNull,
2017-11-03 08:48:02 +08:00
setOption,
2018-01-12 12:54:17 +08:00
initOptions,
createOption
2017-11-03 08:48:02 +08:00
};