* feat: Normalize logging * Remove scattered console.error + Sentry.captureException * Remove mention of debug * cleanup dev output * Edge cases, docs * Refactor: Move logger, metrics, sentry under 'logging' folder. Trying to reduce the amount of things under generic 'utils' * cleanup, last few console calls
68 lines
1.5 KiB
JavaScript
68 lines
1.5 KiB
JavaScript
// @flow
|
|
import { subDays } from "date-fns";
|
|
import Router from "koa-router";
|
|
import { documentPermanentDeleter } from "../../commands/documentPermanentDeleter";
|
|
import { AuthenticationError } from "../../errors";
|
|
import Logger from "../../logging/logger";
|
|
import { Document, FileOperation } from "../../models";
|
|
import { Op } from "../../sequelize";
|
|
|
|
const router = new Router();
|
|
|
|
router.post("utils.gc", async (ctx) => {
|
|
const { token, limit = 500 } = ctx.body;
|
|
|
|
if (process.env.UTILS_SECRET !== token) {
|
|
throw new AuthenticationError("Invalid secret token");
|
|
}
|
|
|
|
Logger.info(
|
|
"utils",
|
|
`Permanently destroying upto ${limit} documents older than 30 days…`
|
|
);
|
|
|
|
const documents = await Document.scope("withUnpublished").findAll({
|
|
attributes: ["id", "teamId", "text", "deletedAt"],
|
|
where: {
|
|
deletedAt: {
|
|
[Op.lt]: subDays(new Date(), 30),
|
|
},
|
|
},
|
|
paranoid: false,
|
|
limit,
|
|
});
|
|
|
|
const countDeletedDocument = await documentPermanentDeleter(documents);
|
|
|
|
Logger.info("utils", `Destroyed ${countDeletedDocument} documents`);
|
|
|
|
Logger.info(
|
|
"utils",
|
|
`Expiring all the collection export older than 30 days…`
|
|
);
|
|
|
|
const exports = await FileOperation.unscoped().findAll({
|
|
where: {
|
|
type: "export",
|
|
createdAt: {
|
|
[Op.lt]: subDays(new Date(), 30),
|
|
},
|
|
state: {
|
|
[Op.ne]: "expired",
|
|
},
|
|
},
|
|
});
|
|
|
|
await Promise.all(
|
|
exports.map(async (e) => {
|
|
await e.expire();
|
|
})
|
|
);
|
|
|
|
ctx.body = {
|
|
success: true,
|
|
};
|
|
});
|
|
|
|
export default router;
|