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');
|
2017-12-23 22:35:00 +08:00
|
|
|
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 {
|
2017-12-16 10:14:10 +08:00
|
|
|
'hashes': await content_hash.getHashes(),
|
2018-01-30 06:41:59 +08:00
|
|
|
'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-20 11:04:51 +08:00
|
|
|
|
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-14 12:03:48 +08:00
|
|
|
|
2017-12-24 02:16:18 +08:00
|
|
|
log.info("Forcing full sync.");
|
|
|
|
|
2017-12-14 12:03:48 +08:00
|
|
|
// not awaiting for the job to finish (will probably take a long time)
|
|
|
|
sync.sync();
|
2018-03-31 02:27:41 +08:00
|
|
|
}
|
2017-12-14 12:03:48 +08:00
|
|
|
|
2018-03-31 02:27:41 +08:00
|
|
|
async function forceNoteSync(req) {
|
2017-12-31 10:44:26 +08:00
|
|
|
const noteId = req.params.noteId;
|
|
|
|
|
2018-03-31 02:27:41 +08:00
|
|
|
await sync_table.addNoteSync(noteId);
|
2017-12-31 10:44:26 +08:00
|
|
|
|
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);
|
|
|
|
}
|
2017-12-31 10:44:26 +08:00
|
|
|
|
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
|
|
|
}
|
2017-12-31 10:44:26 +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
|
|
|
}
|
2017-12-31 10:44:26 +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) {
|
2018-01-29 08:38:05 +08:00
|
|
|
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;
|
2018-01-30 06:41:59 +08:00
|
|
|
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;
|
2018-01-30 06:41:59 +08:00
|
|
|
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) {
|
2018-03-25 10:02:26 +08:00
|
|
|
const labelId = req.params.labelId;
|
2018-01-10 11:09:45 +08:00
|
|
|
|
2018-03-31 02:27:41 +08:00
|
|
|
return await sql.getRow("SELECT * FROM labels WHERE labelId = ?", [labelId]);
|
|
|
|
}
|
2018-01-10 11:09:45 +08:00
|
|
|
|
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) {
|
2017-11-30 09:47:01 +08:00
|
|
|
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) {
|
2018-03-26 08:52:38 +08:00
|
|
|
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) {
|
2018-03-25 10:02:26 +08:00
|
|
|
await syncUpdate.updateLabel(req.body.entity, req.body.sourceId);
|
2018-03-31 02:27:41 +08:00
|
|
|
}
|
2018-01-10 11:09:45 +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
|
|
|
|
};
|