Files
outline/server/queues/tasks/CleanupOAuthAuthorizationCodeTask.ts
T
Tom Moor 42959d66db chore: Add cron task partitioning (#10736)
* wip

* Implementation complete

* tidying

* test

* Address feedback

* Remove duplicative retry logic from UpdateDocumentsPopularityScoreTask.
Now that we're split across many runs this is not neccessary

* Refactor to subclass, config to instance

* Refactor BaseTask to named export

* fix: Missing partition

* tsc

* Feedback
2025-11-27 16:57:52 +01:00

37 lines
928 B
TypeScript

import { subMonths } from "date-fns";
import { Op } from "sequelize";
import Logger from "@server/logging/Logger";
import { OAuthAuthorizationCode } from "@server/models";
import { TaskPriority } from "./base/BaseTask";
import { CronTask, TaskInterval } from "./base/CronTask";
export default class CleanupOAuthAuthorizationCodeTask extends CronTask {
public async perform() {
Logger.info(
"task",
`Deleting OAuth authorization codes older than one month…`
);
const count = await OAuthAuthorizationCode.destroy({
where: {
expiresAt: {
[Op.lt]: subMonths(new Date(), 1),
},
},
});
Logger.info("task", `${count} expired OAuth authorization codes deleted.`);
}
public get cron() {
return {
interval: TaskInterval.Day,
};
}
public get options() {
return {
attempts: 1,
priority: TaskPriority.Background,
};
}
}