trilium/src/services/setup.js

100 lines
2.7 KiB
JavaScript
Raw Normal View History

const syncService = require('./sync');
const log = require('./log');
const sqlInit = require('./sql_init');
2018-07-25 15:46:57 +08:00
const repository = require('./repository');
const optionService = require('./options');
2018-09-11 15:35:29 +08:00
const syncOptions = require('./sync_options');
const request = require('./request');
2018-09-11 16:01:40 +08:00
async function hasSyncServerSchemaAndSeed() {
const response = await requestToSyncServer('GET', '/api/setup/status');
2018-09-11 16:01:40 +08:00
return response.schemaExists;
}
function triggerSync() {
log.info("Triggering sync.");
// it's ok to not wait for it here
syncService.sync().then(async res => {
if (res.success) {
await sqlInit.dbInitialized();
}
});
}
2018-09-11 16:01:40 +08:00
async function sendSeedToSyncServer() {
log.info("Initiating sync to server");
await requestToSyncServer('POST', '/api/setup/sync-seed', {
options: await getSyncSeedOptions()
});
// this is completely new sync, need to reset counters. If this would not be new sync,
// the previous request would have failed.
await optionService.setOption('lastSyncedPush', 0);
await optionService.setOption('lastSyncedPull', 0);
}
async function requestToSyncServer(method, path, body = null) {
return await request.exec({
method,
url: await syncOptions.getSyncServerHost() + path,
body,
proxy: await syncOptions.getSyncProxy(),
timeout: await syncOptions.getSyncTimeout()
});
}
2018-07-25 14:30:41 +08:00
async function setupSyncFromSyncServer(syncServerHost, syncProxy, username, password) {
if (await sqlInit.isDbInitialized()) {
return {
result: 'failure',
error: 'DB is already initialized.'
};
}
try {
log.info("Getting document options from sync server.");
// response is expected to contain documentId and documentSecret options
const options = await request.exec({
method: 'get',
url: syncServerHost + '/api/setup/sync-seed',
auth: {
'user': username,
'pass': password
},
proxy: syncProxy
});
2018-07-25 14:30:41 +08:00
await sqlInit.createDatabaseForSync(options, syncServerHost, syncProxy);
triggerSync();
return { result: 'success' };
}
catch (e) {
log.error("Sync failed: " + e.message);
return {
result: 'failure',
error: e.message
};
}
}
2018-07-25 15:46:57 +08:00
async function getSyncSeedOptions() {
return [
await repository.getOption('documentId'),
await repository.getOption('documentSecret')
];
}
module.exports = {
2018-09-11 16:01:40 +08:00
hasSyncServerSchemaAndSeed,
triggerSync,
2018-09-11 16:01:40 +08:00
sendSeedToSyncServer,
setupSyncFromSyncServer,
getSyncSeedOptions
};