mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Remove expired attachments every hour and on shutdown
Summary: Call ActiveDoc.removeUnusedAttachments every hour using setInterval, and in ActiveDoc.shutdown (which also clears said interval). Unrelated: small fix to my webhooks code which was creating a redis client on shutdown just to quit it. Test Plan: Tweaked DocApi test to remove expired attachments by force-reloading the doc, so that it removes them during shutdown. Extracted a new testing endpoint /verifyFiles to support this test (previously running that code only happened with `/removeUnused?verifyfiles=1`). Tested the setInterval part manually. Reviewers: paulfitz, dsagal Reviewed By: paulfitz Subscribers: dsagal Differential Revision: https://phab.getgrist.com/D3387
This commit is contained in:
@@ -241,13 +241,21 @@ export class DocWorkerApi {
|
||||
const verifyFiles = isAffirmative(req.query.verifyfiles);
|
||||
await activeDoc.removeUnusedAttachments(expiredOnly);
|
||||
if (verifyFiles) {
|
||||
assert.deepStrictEqual(
|
||||
await activeDoc.docStorage.all(`SELECT DISTINCT fileIdent AS ident FROM _grist_Attachments ORDER BY ident`),
|
||||
await activeDoc.docStorage.all(`SELECT ident FROM _gristsys_Files ORDER BY ident`),
|
||||
);
|
||||
await verifyAttachmentFiles(activeDoc);
|
||||
}
|
||||
res.json(null);
|
||||
}));
|
||||
this._app.post('/api/docs/:docId/attachments/verifyFiles', isOwner, withDoc(async (activeDoc, req, res) => {
|
||||
await verifyAttachmentFiles(activeDoc);
|
||||
res.json(null);
|
||||
}));
|
||||
|
||||
async function verifyAttachmentFiles(activeDoc: ActiveDoc) {
|
||||
assert.deepStrictEqual(
|
||||
await activeDoc.docStorage.all(`SELECT DISTINCT fileIdent AS ident FROM _grist_Attachments ORDER BY ident`),
|
||||
await activeDoc.docStorage.all(`SELECT ident FROM _gristsys_Files ORDER BY ident`),
|
||||
);
|
||||
}
|
||||
|
||||
// Adds records given in a column oriented format,
|
||||
// returns an array of row IDs
|
||||
|
||||
Reference in New Issue
Block a user