Notes/src/services/sync_options.ts

31 lines
1.2 KiB
TypeScript
Raw Normal View History

"use strict";
import optionService from "./options.js";
import config from "./config.js";
/*
* Primary configuration for sync is in the options (document), but we allow to override
* these settings in config file. The reason for that is to avoid a mistake of loading a live/production
* document with live sync settings in a dev/debug environment. Changes would then successfully propagate
* to live sync server.
*/
2024-02-17 20:24:32 +02:00
function get(name: string) {
2020-06-20 12:31:38 +02:00
return (config['Sync'] && config['Sync'][name]) || optionService.getOption(name);
}
export default {
// env variable is the easiest way to guarantee we won't overwrite prod data during development
// after copying prod document/data directory
getSyncServerHost: () => process.env.TRILIUM_SYNC_SERVER_HOST || get('syncServerHost'),
2020-06-20 12:31:38 +02:00
isSyncSetup: () => {
const syncServerHost = get('syncServerHost');
2018-12-22 09:54:09 +01:00
2023-06-30 11:18:34 +02:00
// special value "disabled" is here to support a use case where the document is configured with sync server,
2018-12-22 09:54:09 +01:00
// and we need to override it with config from config.ini
return !!syncServerHost && syncServerHost !== 'disabled';
},
2021-02-10 22:56:23 +01:00
getSyncTimeout: () => parseInt(get('syncServerTimeout')) || 120000,
2020-06-20 12:31:38 +02:00
getSyncProxy: () => get('syncProxy')
};