mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
42959d66db
* 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
36 lines
797 B
TypeScript
36 lines
797 B
TypeScript
import { Attachment, Team } from "@server/models";
|
|
import { BaseTask, TaskPriority } from "./base/BaseTask";
|
|
import { sequelizeReadOnly } from "@server/storage/database";
|
|
|
|
type Props = {
|
|
/** The teamId to operate on */
|
|
teamId: string;
|
|
};
|
|
|
|
/**
|
|
* A task that updates the team stats.
|
|
*/
|
|
export default class UpdateTeamAttachmentsSizeTask extends BaseTask<Props> {
|
|
public async perform({ teamId }: Props) {
|
|
const sizeInBytes = await Attachment.getTotalSizeForTeam(
|
|
sequelizeReadOnly,
|
|
teamId
|
|
);
|
|
if (!sizeInBytes) {
|
|
return;
|
|
}
|
|
|
|
await Team.update(
|
|
{ approximateTotalAttachmentsSize: sizeInBytes },
|
|
{ where: { id: teamId } }
|
|
);
|
|
}
|
|
|
|
public get options() {
|
|
return {
|
|
attempts: 1,
|
|
priority: TaskPriority.Background,
|
|
};
|
|
}
|
|
}
|