mirror of
https://github.com/zadam/trilium.git
synced 2024-11-15 20:33:12 +08:00
27 lines
No EOL
762 B
JavaScript
27 lines
No EOL
762 B
JavaScript
"use strict";
|
|
|
|
const express = require('express');
|
|
const router = express.Router();
|
|
const sql = require('../../services/sql');
|
|
const auth = require('../../services/auth');
|
|
const wrap = require('express-promise-wrap').wrap;
|
|
|
|
router.get('', auth.checkApiAuth, wrap(async (req, res, next) => {
|
|
await deleteOld();
|
|
|
|
const result = await sql.getAll("SELECT * FROM event_log ORDER BY date_added DESC");
|
|
|
|
res.send(result);
|
|
}));
|
|
|
|
async function deleteOld() {
|
|
const cutoffId = await sql.getFirstValue("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; |