* Allow setting permission of collections during import closes #6767 * Remove unused column
186 lines
5.3 KiB
TypeScript
186 lines
5.3 KiB
TypeScript
import fs from "fs-extra";
|
|
import truncate from "lodash/truncate";
|
|
import { FileOperationState, NotificationEventType } from "@shared/types";
|
|
import { bytesToHumanReadable } from "@shared/utils/files";
|
|
import ExportFailureEmail from "@server/emails/templates/ExportFailureEmail";
|
|
import ExportSuccessEmail from "@server/emails/templates/ExportSuccessEmail";
|
|
import env from "@server/env";
|
|
import { ValidationError } from "@server/errors";
|
|
import Logger from "@server/logging/Logger";
|
|
import {
|
|
Attachment,
|
|
Collection,
|
|
Event,
|
|
FileOperation,
|
|
Team,
|
|
User,
|
|
} from "@server/models";
|
|
import fileOperationPresenter from "@server/presenters/fileOperation";
|
|
import FileStorage from "@server/storage/files";
|
|
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 {
|
|
if (!fileOperation.collectionId) {
|
|
const totalAttachmentsSize = await Attachment.getTotalSizeForTeam(
|
|
user.teamId
|
|
);
|
|
|
|
if (
|
|
fileOperation.options?.includeAttachments &&
|
|
env.MAXIMUM_EXPORT_SIZE &&
|
|
totalAttachmentsSize > env.MAXIMUM_EXPORT_SIZE
|
|
) {
|
|
throw ValidationError(
|
|
`${bytesToHumanReadable(
|
|
totalAttachmentsSize
|
|
)} of attachments in workspace is larger than maximum export size of ${bytesToHumanReadable(
|
|
env.MAXIMUM_EXPORT_SIZE
|
|
)}.`
|
|
);
|
|
}
|
|
}
|
|
|
|
Logger.info("task", `ExportTask processing data for ${fileOperationId}`, {
|
|
options: fileOperation.options,
|
|
});
|
|
|
|
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.stat(filePath);
|
|
const url = await FileStorage.store({
|
|
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.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,
|
|
};
|
|
}
|
|
}
|