mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 04:16:17 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
const express = require('express');
 | 
						|
const router = express.Router();
 | 
						|
const sql = require('../../services/sql');
 | 
						|
const utils = require('../../services/utils');
 | 
						|
const sync_table = require('../../services/sync_table');
 | 
						|
const auth = require('../../services/auth');
 | 
						|
const log = require('../../services/log');
 | 
						|
 | 
						|
router.post('/cleanup-soft-deleted-items', auth.checkApiAuth, async (req, res, next) => {
 | 
						|
    await sql.doInTransaction(async () => {
 | 
						|
        const noteIdsToDelete = await sql.getFirstColumn("SELECT note_id FROM notes WHERE is_deleted = 1");
 | 
						|
        const noteIdsSql = noteIdsToDelete
 | 
						|
            .map(noteId => "'" + utils.sanitizeSql(noteId) + "'")
 | 
						|
            .join(', ');
 | 
						|
 | 
						|
        await sql.execute(`DELETE FROM event_log WHERE note_id IN (${noteIdsSql})`);
 | 
						|
 | 
						|
        await sql.execute(`DELETE FROM notes_history WHERE note_id IN (${noteIdsSql})`);
 | 
						|
 | 
						|
        await sql.execute("DELETE FROM notes_tree WHERE is_deleted = 1");
 | 
						|
 | 
						|
        await sql.execute("DELETE FROM notes WHERE is_deleted = 1");
 | 
						|
 | 
						|
        await sql.execute("DELETE FROM recent_notes");
 | 
						|
 | 
						|
        await sync_table.cleanupSyncRowsForMissingEntities("notes", "note_id");
 | 
						|
        await sync_table.cleanupSyncRowsForMissingEntities("notes_tree", "note_tree_id");
 | 
						|
        await sync_table.cleanupSyncRowsForMissingEntities("notes_history", "note_history_id");
 | 
						|
        await sync_table.cleanupSyncRowsForMissingEntities("recent_notes", "note_tree_id");
 | 
						|
 | 
						|
        log.info("Following notes has been completely cleaned from database: " + noteIdsSql);
 | 
						|
    });
 | 
						|
 | 
						|
    res.send({});
 | 
						|
});
 | 
						|
 | 
						|
router.post('/vacuum-database', auth.checkApiAuth, async (req, res, next) => {
 | 
						|
    await sql.execute("VACUUM");
 | 
						|
 | 
						|
    log.info("Database has been vacuumed.");
 | 
						|
 | 
						|
    res.send({});
 | 
						|
});
 | 
						|
 | 
						|
module.exports = router; |