mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 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) => {
 | |
|     await sql.doInTransaction(async db => {
 | |
|         await sql.replace(db, "notes_history", req.body);
 | |
| 
 | |
|         await sync_table.addNoteHistorySync(db, req.body.note_history_id);
 | |
|     });
 | |
| 
 | |
|     res.send();
 | |
| });
 | |
| 
 | |
| module.exports = router; |