156 lines
4.5 KiB
TypeScript
156 lines
4.5 KiB
TypeScript
import fs from "fs";
|
|
import truncate from "lodash/truncate";
|
|
import { FileOperationState, NotificationEventType } from "@shared/types";
|
|
import ExportFailureEmail from "@server/emails/templates/ExportFailureEmail";
|
|
import ExportSuccessEmail from "@server/emails/templates/ExportSuccessEmail";
|
|
import Logger from "@server/logging/Logger";
|
|
import { Collection, Event, FileOperation, Team, User } from "@server/models";
|
|
import fileOperationPresenter from "@server/presenters/fileOperation";
|
|
import { uploadToS3 } from "@server/utils/s3";
|
|
import BaseTask, { TaskPriority } from "./BaseTask";
|
|
|
|
type Props = {
|
|
fileOperationId: string;
|
|
};
|
|
|
|
export default abstract class ExportTask extends BaseTask<Props> {
|
|
/**
|
|
* Transforms the data to be exported, uploads, and notifies user.
|
|
*
|
|
* @param props The props
|
|
*/
|
|
public async perform({ fileOperationId }: Props) {
|
|
Logger.info("task", `ExportTask fetching data for ${fileOperationId}`);
|
|
const fileOperation = await FileOperation.findByPk(fileOperationId, {
|
|
rejectOnEmpty: true,
|
|
});
|
|
|
|
const [team, user] = await Promise.all([
|
|
Team.findByPk(fileOperation.teamId, { rejectOnEmpty: true }),
|
|
User.findByPk(fileOperation.userId, { rejectOnEmpty: true }),
|
|
]);
|
|
|
|
const collectionIds = fileOperation.collectionId
|
|
? [fileOperation.collectionId]
|
|
: await user.collectionIds();
|
|
|
|
const collections = await Collection.findAll({
|
|
where: {
|
|
id: collectionIds,
|
|
},
|
|
});
|
|
|
|
let filePath: string | undefined;
|
|
|
|
try {
|
|
Logger.info("task", `ExportTask processing data for ${fileOperationId}`, {
|
|
includeAttachments: fileOperation.includeAttachments,
|
|
});
|
|
|
|
await this.updateFileOperation(fileOperation, {
|
|
state: FileOperationState.Creating,
|
|
});
|
|
|
|
filePath = await this.export(collections, fileOperation);
|
|
|
|
Logger.info("task", `ExportTask uploading data for ${fileOperationId}`);
|
|
|
|
await this.updateFileOperation(fileOperation, {
|
|
state: FileOperationState.Uploading,
|
|
});
|
|
|
|
const stat = await fs.promises.stat(filePath);
|
|
const url = await uploadToS3({
|
|
body: fs.createReadStream(filePath),
|
|
contentLength: stat.size,
|
|
contentType: "application/zip",
|
|
key: fileOperation.key,
|
|
acl: "private",
|
|
});
|
|
|
|
await this.updateFileOperation(fileOperation, {
|
|
size: stat.size,
|
|
state: FileOperationState.Complete,
|
|
url,
|
|
});
|
|
|
|
if (user.subscribedToEventType(NotificationEventType.ExportCompleted)) {
|
|
await new ExportSuccessEmail({
|
|
to: user.email,
|
|
userId: user.id,
|
|
id: fileOperation.id,
|
|
teamUrl: team.url,
|
|
teamId: team.id,
|
|
}).schedule();
|
|
}
|
|
} catch (error) {
|
|
await this.updateFileOperation(fileOperation, {
|
|
state: FileOperationState.Error,
|
|
error,
|
|
});
|
|
if (user.subscribedToEventType(NotificationEventType.ExportCompleted)) {
|
|
await new ExportFailureEmail({
|
|
to: user.email,
|
|
userId: user.id,
|
|
teamUrl: team.url,
|
|
teamId: team.id,
|
|
}).schedule();
|
|
}
|
|
throw error;
|
|
} finally {
|
|
if (filePath) {
|
|
void fs.promises.unlink(filePath).catch((error) => {
|
|
Logger.error(`Failed to delete temporary file ${filePath}`, error);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Transform the data in all of the passed collections into a single Buffer.
|
|
*
|
|
* @param collections The collections to export
|
|
* @returns A promise that resolves to a temporary file path
|
|
*/
|
|
protected abstract export(
|
|
collections: Collection[],
|
|
fileOperation: FileOperation
|
|
): Promise<string>;
|
|
|
|
/**
|
|
* Update the state of the underlying FileOperation in the database and send
|
|
* an event to the client.
|
|
*
|
|
* @param fileOperation The FileOperation to update
|
|
*/
|
|
private async updateFileOperation(
|
|
fileOperation: FileOperation,
|
|
options: Partial<FileOperation> & { error?: Error }
|
|
) {
|
|
await fileOperation.update({
|
|
...options,
|
|
error: options.error
|
|
? truncate(options.error.message, { length: 255 })
|
|
: undefined,
|
|
});
|
|
|
|
await Event.schedule({
|
|
name: "fileOperations.update",
|
|
modelId: fileOperation.id,
|
|
teamId: fileOperation.teamId,
|
|
actorId: fileOperation.userId,
|
|
data: fileOperationPresenter(fileOperation),
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Job options such as priority and retry strategy, as defined by Bull.
|
|
*/
|
|
public get options() {
|
|
return {
|
|
priority: TaskPriority.Background,
|
|
attempts: 1,
|
|
};
|
|
}
|
|
}
|