mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-10 18:39:22 +08:00
31 lines
1.2 KiB
TypeScript
31 lines
1.2 KiB
TypeScript
"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.
|
|
*/
|
|
|
|
function get(name: keyof typeof config.Sync) {
|
|
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: () => get("syncServerHost"),
|
|
isSyncSetup: () => {
|
|
const syncServerHost = get("syncServerHost");
|
|
|
|
// special value "disabled" is here to support a use case where the document is configured with sync server,
|
|
// and we need to override it with config from config.ini
|
|
return !!syncServerHost && syncServerHost !== "disabled";
|
|
},
|
|
getSyncTimeout: () => parseInt(get("syncServerTimeout")) || 120000,
|
|
getSyncProxy: () => get("syncProxy")
|
|
};
|