mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-02 19:36:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
const express = require('express');
 | 
						|
const router = express.Router();
 | 
						|
const sql = require('../../services/sql');
 | 
						|
const auth = require('../../services/auth');
 | 
						|
const data_encryption = require('../../services/data_encryption');
 | 
						|
const protected_session = require('../../services/protected_session');
 | 
						|
const sync_table = require('../../services/sync_table');
 | 
						|
 | 
						|
router.get('/:noteId', auth.checkApiAuth, async (req, res, next) => {
 | 
						|
    const noteId = req.params.noteId;
 | 
						|
    const history = await sql.getResults("SELECT * FROM notes_history WHERE note_id = ? order by date_modified_to desc", [noteId]);
 | 
						|
 | 
						|
    const dataKey = protected_session.getDataKey(req);
 | 
						|
 | 
						|
    for (const hist of history) {
 | 
						|
        if (hist.is_protected) {
 | 
						|
            hist.note_title = data_encryption.decryptString(dataKey, data_encryption.noteTitleIv(hist.note_history_id), hist.note_title);
 | 
						|
            hist.note_text = data_encryption.decryptString(dataKey, data_encryption.noteTextIv(hist.note_history_id), hist.note_text);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    res.send(history);
 | 
						|
});
 | 
						|
 | 
						|
router.put('', auth.checkApiAuth, async (req, res, next) => {
 | 
						|
    const sourceId = req.headers.source_id;
 | 
						|
 | 
						|
    await sql.doInTransaction(async () => {
 | 
						|
        await sql.replace("notes_history", req.body);
 | 
						|
 | 
						|
        await sync_table.addNoteHistorySync(req.body.note_history_id, sourceId);
 | 
						|
    });
 | 
						|
 | 
						|
    res.send();
 | 
						|
});
 | 
						|
 | 
						|
module.exports = router; |