mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
92 lines
2.6 KiB
JavaScript
92 lines
2.6 KiB
JavaScript
"use strict";
|
|
|
|
const express = require('express');
|
|
const router = express.Router();
|
|
const auth = require('../../services/auth');
|
|
const sql = require('../../services/sql');
|
|
const notes = require('../../services/notes');
|
|
const utils = require('../../services/utils');
|
|
const protected_session = require('../../services/protected_session');
|
|
const tree = require('../../services/tree');
|
|
const sync_table = require('../../services/sync_table');
|
|
const wrap = require('express-promise-wrap').wrap;
|
|
|
|
async function getNote(req) {
|
|
const noteId = req.params.noteId;
|
|
|
|
const note = await sql.getRow("SELECT * FROM notes WHERE noteId = ?", [noteId]);
|
|
|
|
if (!note) {
|
|
return [404, "Note " + noteId + " has not been found."];
|
|
}
|
|
|
|
protected_session.decryptNote(req, note);
|
|
|
|
if (note.type === 'file') {
|
|
// no need to transfer (potentially large) file payload for this request
|
|
note.content = null;
|
|
}
|
|
|
|
return note;
|
|
}
|
|
|
|
async function createNote(req) {
|
|
const sourceId = req.headers.source_id;
|
|
const parentNoteId = req.params.parentNoteId;
|
|
const newNote = req.body;
|
|
|
|
const { noteId, branchId, note } = await notes.createNewNote(parentNoteId, newNote, req, sourceId);
|
|
|
|
return {
|
|
'noteId': noteId,
|
|
'branchId': branchId,
|
|
'note': note
|
|
};
|
|
}
|
|
|
|
async function updateNote(req) {
|
|
const note = req.body;
|
|
const noteId = req.params.noteId;
|
|
const sourceId = req.headers.source_id;
|
|
const dataKey = protected_session.getDataKey(req);
|
|
|
|
await notes.updateNote(noteId, note, dataKey, sourceId);
|
|
}
|
|
|
|
async function sortNotes(req) {
|
|
const noteId = req.params.noteId;
|
|
const sourceId = req.headers.source_id;
|
|
const dataKey = protected_session.getDataKey(req);
|
|
|
|
await tree.sortNotesAlphabetically(noteId, dataKey, sourceId);
|
|
}
|
|
|
|
async function protectBranch(req) {
|
|
const noteId = req.params.noteId;
|
|
const isProtected = !!parseInt(req.params.isProtected);
|
|
const dataKey = protected_session.getDataKey(req);
|
|
const sourceId = req.headers.source_id;
|
|
|
|
await notes.protectNoteRecursively(noteId, dataKey, isProtected, sourceId);
|
|
}
|
|
|
|
async function setNoteTypeMime(req) {
|
|
const noteId = req.params[0];
|
|
const type = req.params[1];
|
|
const mime = req.params[2];
|
|
const sourceId = req.headers.source_id;
|
|
|
|
await sql.execute("UPDATE notes SET type = ?, mime = ?, dateModified = ? WHERE noteId = ?",
|
|
[type, mime, utils.nowDate(), noteId]);
|
|
|
|
await sync_table.addNoteSync(noteId, sourceId);
|
|
}
|
|
|
|
module.exports = {
|
|
getNote,
|
|
updateNote,
|
|
createNote,
|
|
sortNotes,
|
|
protectBranch,
|
|
setNoteTypeMime
|
|
}; |