trilium/src/routes/api/sync.js

210 lines
5.5 KiB
JavaScript
Raw Normal View History

2017-10-25 10:58:59 +08:00
"use strict";
2017-10-27 09:16:21 +08:00
const sync = require('../../services/sync');
2017-11-10 09:52:47 +08:00
const syncUpdate = require('../../services/sync_update');
const sync_table = require('../../services/sync_table');
2017-11-01 07:34:58 +08:00
const sql = require('../../services/sql');
2017-11-03 08:48:02 +08:00
const options = require('../../services/options');
2017-11-22 11:11:27 +08:00
const content_hash = require('../../services/content_hash');
2017-12-24 02:16:18 +08:00
const log = require('../../services/log');
2017-11-22 11:11:27 +08:00
2018-03-31 02:27:41 +08:00
async function checkSync() {
return {
'hashes': await content_hash.getHashes(),
'max_sync_id': await sql.getValue('SELECT MAX(id) FROM sync')
2018-03-31 02:27:41 +08:00
};
}
2017-10-25 10:58:59 +08:00
2018-03-31 02:27:41 +08:00
async function syncNow() {
return await sync.sync();
}
2017-10-29 23:22:41 +08:00
2018-03-31 02:27:41 +08:00
async function fillSyncRows() {
await sync_table.fillAllSyncRows();
2017-12-24 02:16:18 +08:00
log.info("Sync rows have been filled.");
2018-03-31 02:27:41 +08:00
}
2017-12-24 02:16:18 +08:00
2018-03-31 02:27:41 +08:00
async function forceFullSync() {
await options.setOption('last_synced_pull', 0);
await options.setOption('last_synced_push', 0);
2017-12-24 02:16:18 +08:00
log.info("Forcing full sync.");
// not awaiting for the job to finish (will probably take a long time)
sync.sync();
2018-03-31 02:27:41 +08:00
}
2018-03-31 02:27:41 +08:00
async function forceNoteSync(req) {
const noteId = req.params.noteId;
2018-03-31 02:27:41 +08:00
await sync_table.addNoteSync(noteId);
2018-03-31 02:27:41 +08:00
for (const branchId of await sql.getColumn("SELECT branchId FROM branches WHERE isDeleted = 0 AND noteId = ?", [noteId])) {
await sync_table.addBranchSync(branchId);
await sync_table.addRecentNoteSync(branchId);
}
2018-03-31 02:27:41 +08:00
for (const noteRevisionId of await sql.getColumn("SELECT noteRevisionId FROM note_revisions WHERE noteId = ?", [noteId])) {
2018-04-02 05:38:24 +08:00
await sync_table.addNoteRevisionSync(noteRevisionId);
2018-03-31 02:27:41 +08:00
}
log.info("Forcing note sync for " + noteId);
// not awaiting for the job to finish (will probably take a long time)
sync.sync();
2018-03-31 02:27:41 +08:00
}
2018-03-31 02:27:41 +08:00
async function getChanged() {
2017-11-01 07:34:58 +08:00
const lastSyncId = parseInt(req.query.lastSyncId);
2017-10-25 10:58:59 +08:00
2018-03-31 02:27:41 +08:00
return await sql.getRows("SELECT * FROM sync WHERE id > ?", [lastSyncId]);
}
2017-10-27 09:16:21 +08:00
2018-03-31 02:27:41 +08:00
async function getNote(req) {
2017-11-01 07:34:58 +08:00
const noteId = req.params.noteId;
2018-02-19 11:55:36 +08:00
const entity = await sql.getRow("SELECT * FROM notes WHERE noteId = ?", [noteId]);
sync.serializeNoteContentBuffer(entity);
2017-10-27 09:16:21 +08:00
2018-03-31 02:27:41 +08:00
return {
2018-02-19 11:55:36 +08:00
entity: entity
2018-03-31 02:27:41 +08:00
};
}
2017-10-26 10:39:21 +08:00
2018-03-31 02:27:41 +08:00
async function getBranch(req) {
2018-03-25 09:39:15 +08:00
const branchId = req.params.branchId;
2017-10-26 10:39:21 +08:00
2018-03-31 02:27:41 +08:00
return await sql.getRow("SELECT * FROM branches WHERE branchId = ?", [branchId]);
}
2017-11-01 07:34:58 +08:00
2018-03-31 02:27:41 +08:00
async function getNoteRevision(req) {
const noteRevisionId = req.params.noteRevisionId;
2017-11-01 07:34:58 +08:00
2018-03-31 02:27:41 +08:00
return await sql.getRow("SELECT * FROM note_revisions WHERE noteRevisionId = ?", [noteRevisionId]);
}
2017-10-27 09:16:21 +08:00
2018-03-31 02:27:41 +08:00
async function getOption(req) {
2018-01-29 08:30:14 +08:00
const name = req.params.name;
const opt = await sql.getRow("SELECT * FROM options WHERE name = ?", [name]);
2017-11-03 08:48:02 +08:00
2018-01-29 08:30:14 +08:00
if (!opt.isSynced) {
2018-03-31 02:27:41 +08:00
return [400, "This option can't be synced."];
2017-11-03 08:48:02 +08:00
}
else {
2018-03-31 02:27:41 +08:00
return opt;
2017-11-03 08:48:02 +08:00
}
2018-03-31 02:27:41 +08:00
}
2017-11-03 08:48:02 +08:00
2018-03-31 02:27:41 +08:00
async function getNoteReordering(req) {
2018-01-29 08:30:14 +08:00
const parentNoteId = req.params.parentNoteId;
2017-11-03 10:55:22 +08:00
2018-03-31 02:27:41 +08:00
return {
2018-01-29 08:30:14 +08:00
parentNoteId: parentNoteId,
2018-03-25 09:39:15 +08:00
ordering: await sql.getMap("SELECT branchId, notePosition FROM branches WHERE parentNoteId = ? AND isDeleted = 0", [parentNoteId])
2018-03-31 02:27:41 +08:00
};
}
2017-11-03 10:55:22 +08:00
2018-03-31 02:27:41 +08:00
async function getRecentNote(req) {
2018-03-25 09:39:15 +08:00
const branchId = req.params.branchId;
2017-11-05 12:16:02 +08:00
2018-03-31 02:27:41 +08:00
return await sql.getRow("SELECT * FROM recent_notes WHERE branchId = ?", [branchId]);
}
2017-11-05 12:16:02 +08:00
2018-03-31 02:27:41 +08:00
async function getImage(req) {
2018-01-07 04:56:00 +08:00
const imageId = req.params.imageId;
const entity = await sql.getRow("SELECT * FROM images WHERE imageId = ?", [imageId]);
2018-01-07 04:56:00 +08:00
if (entity && entity.data !== null) {
entity.data = entity.data.toString('base64');
}
2018-03-31 02:27:41 +08:00
return entity;
}
2018-01-07 04:56:00 +08:00
2018-03-31 02:27:41 +08:00
async function getNoteImage(req) {
2018-01-07 10:49:02 +08:00
const noteImageId = req.params.noteImageId;
2018-03-31 02:27:41 +08:00
return await sql.getRow("SELECT * FROM note_images WHERE noteImageId = ?", [noteImageId]);
}
2018-01-07 10:49:02 +08:00
2018-03-31 02:27:41 +08:00
async function getLabel(req) {
const labelId = req.params.labelId;
2018-03-31 02:27:41 +08:00
return await sql.getRow("SELECT * FROM labels WHERE labelId = ?", [labelId]);
}
2018-03-31 02:27:41 +08:00
async function getApiToken(req) {
2018-02-11 13:18:59 +08:00
const apiTokenId = req.params.apiTokenId;
2018-03-31 02:27:41 +08:00
return await sql.getRow("SELECT * FROM api_tokens WHERE apiTokenId = ?", [apiTokenId]);
}
2018-02-11 13:18:59 +08:00
2018-03-31 02:27:41 +08:00
async function updateNote(req) {
await syncUpdate.updateNote(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
2017-10-30 10:22:30 +08:00
2018-03-31 02:27:41 +08:00
async function updateBranch(req) {
2018-03-25 09:39:15 +08:00
await syncUpdate.updateBranch(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
2017-10-30 10:22:30 +08:00
2018-03-31 02:27:41 +08:00
async function updateNoteRevision(req) {
await syncUpdate.updateNoteRevision(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
2017-10-26 10:39:21 +08:00
2018-03-31 02:27:41 +08:00
async function updateNoteReordering(req) {
2017-11-10 09:52:47 +08:00
await syncUpdate.updateNoteReordering(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
2017-11-03 10:55:22 +08:00
2018-03-31 02:27:41 +08:00
async function updateOption(req) {
2017-11-10 09:52:47 +08:00
await syncUpdate.updateOptions(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
2017-11-03 08:48:02 +08:00
2018-03-31 02:27:41 +08:00
async function updateRecentNote(req) {
2017-11-10 09:52:47 +08:00
await syncUpdate.updateRecentNotes(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
2017-11-05 12:16:02 +08:00
2018-03-31 02:27:41 +08:00
async function updateImage(req) {
2018-01-07 04:56:00 +08:00
await syncUpdate.updateImage(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
2018-01-07 04:56:00 +08:00
2018-03-31 02:27:41 +08:00
async function updateNoteImage(req) {
2018-01-07 10:49:02 +08:00
await syncUpdate.updateNoteImage(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
2018-01-07 10:49:02 +08:00
2018-03-31 02:27:41 +08:00
async function updateLabel(req) {
await syncUpdate.updateLabel(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
2018-03-31 02:27:41 +08:00
async function updateApiToken(req) {
2018-02-11 13:18:59 +08:00
await syncUpdate.updateApiToken(req.body.entity, req.body.sourceId);
2018-03-31 02:27:41 +08:00
}
module.exports = {
checkSync,
syncNow,
fillSyncRows,
forceFullSync,
forceNoteSync,
getChanged,
getNote,
getBranch,
getImage,
getNoteImage,
getNoteReordering,
getNoteRevision,
getRecentNote,
getOption,
getLabel,
getApiToken,
updateNote,
updateBranch,
updateImage,
updateNoteImage,
updateNoteReordering,
updateNoteRevision,
updateRecentNote,
updateOption,
updateLabel,
updateApiToken
};