mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 11:56:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			646 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			646 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
const express = require('express');
 | 
						|
const router = express.Router();
 | 
						|
const sql = require('../../services/sql');
 | 
						|
 | 
						|
router.get('', async (req, res, next) => {
 | 
						|
    await deleteOld();
 | 
						|
 | 
						|
    const result = await sql.getResults("SELECT * FROM event_log ORDER BY date_added DESC");
 | 
						|
 | 
						|
    res.send(result);
 | 
						|
});
 | 
						|
 | 
						|
async function deleteOld() {
 | 
						|
    const cutoffId = await sql.getSingleValue("SELECT id FROM event_log ORDER BY id DESC LIMIT 1000, 1");
 | 
						|
 | 
						|
    if (cutoffId) {
 | 
						|
        await sql.doInTransaction(async () => {
 | 
						|
            await sql.execute("DELETE FROM event_log WHERE id < ?", [cutoffId]);
 | 
						|
        });
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = router; |