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
206 lines
5.7 KiB
TypeScript
206 lines
5.7 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 "./base/BaseTask";
|
|
import { Op } from "sequelize";
|
|
import { WhereOptions } from "sequelize";
|
|
import { sequelizeReadOnly } from "@server/storage/database";
|
|
|
|
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 }),
|
|
]);
|
|
|
|
let filePath: string | undefined;
|
|
|
|
try {
|
|
const where: WhereOptions<Collection> = {
|
|
teamId: user.teamId,
|
|
};
|
|
|
|
if (!fileOperation.options?.includePrivate) {
|
|
where.permission = {
|
|
[Op.ne]: null,
|
|
};
|
|
}
|
|
|
|
if (fileOperation.collectionId) {
|
|
where.id = fileOperation.collectionId;
|
|
} else {
|
|
where.archivedAt = {
|
|
[Op.eq]: null,
|
|
};
|
|
}
|
|
|
|
const collections = await Collection.scope(
|
|
"withDocumentStructure"
|
|
).findAll({ where });
|
|
|
|
if (!fileOperation.collectionId) {
|
|
const totalAttachmentsSize = await Attachment.getTotalSizeForTeam(
|
|
sequelizeReadOnly,
|
|
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,
|
|
},
|
|
{
|
|
hooks: false,
|
|
}
|
|
);
|
|
|
|
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,
|
|
};
|
|
}
|
|
}
|