mirror of
https://github.com/outline/outline.git
synced 2026-01-07 19:49:58 -06:00
* chore(server): use zod for validations * fix(server): use ctx.input for documents.list * fix(server): schema for documents.archived * fix(server): documents.deleted, documents.viewed & documents.drafts * fix(server): documents.info * fix(server): documents.export & documents.restore * fix(server): documents.search_titles & documents.search * fix(server): documents.templatize * fix(server): replace nullish() with optional() * fix(server): documents.update * fix(server): documents.move * fix(server): remaining * fix(server): add validation for snippet min and max words * fix(server): fix update types * fix(server): remove DocumentSchema * fix(server): collate duplicate schemas * fix: typos * fix: reviews * chore: Fixed case of Metrics import * fix: restructure /api * fix: loosen validation for id as it can be a slug too * Add test for query by slug Simplify import Co-authored-by: Tom Moor <tom.moor@gmail.com>
118 lines
2.4 KiB
TypeScript
118 lines
2.4 KiB
TypeScript
import { Transaction } from "sequelize";
|
|
import { Document, Event, User } from "@server/models";
|
|
|
|
export default async function documentCreator({
|
|
title = "",
|
|
text = "",
|
|
id,
|
|
publish,
|
|
collectionId,
|
|
parentDocumentId,
|
|
templateDocument,
|
|
importId,
|
|
createdAt,
|
|
// allows override for import
|
|
updatedAt,
|
|
template,
|
|
user,
|
|
editorVersion,
|
|
publishedAt,
|
|
source,
|
|
ip,
|
|
transaction,
|
|
}: {
|
|
id?: string;
|
|
title: string;
|
|
text: string;
|
|
publish?: boolean;
|
|
collectionId?: string;
|
|
parentDocumentId?: string;
|
|
importId?: string;
|
|
templateDocument?: Document | null;
|
|
publishedAt?: Date;
|
|
template?: boolean;
|
|
createdAt?: Date;
|
|
updatedAt?: Date;
|
|
user: User;
|
|
editorVersion?: string;
|
|
source?: "import";
|
|
ip?: string;
|
|
transaction: Transaction;
|
|
}): Promise<Document> {
|
|
const templateId = templateDocument ? templateDocument.id : undefined;
|
|
const document = await Document.create(
|
|
{
|
|
id,
|
|
parentDocumentId,
|
|
editorVersion,
|
|
collectionId,
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
createdAt,
|
|
updatedAt,
|
|
lastModifiedById: user.id,
|
|
createdById: user.id,
|
|
template,
|
|
templateId,
|
|
publishedAt,
|
|
importId,
|
|
title: templateDocument ? templateDocument.title : title,
|
|
text: templateDocument ? templateDocument.text : text,
|
|
},
|
|
{
|
|
transaction,
|
|
}
|
|
);
|
|
await Event.create(
|
|
{
|
|
name: "documents.create",
|
|
documentId: document.id,
|
|
collectionId: document.collectionId,
|
|
teamId: document.teamId,
|
|
actorId: user.id,
|
|
data: {
|
|
source,
|
|
title: document.title,
|
|
templateId,
|
|
},
|
|
ip,
|
|
},
|
|
{
|
|
transaction,
|
|
}
|
|
);
|
|
|
|
if (publish) {
|
|
await document.publish(user.id, { transaction });
|
|
await Event.create(
|
|
{
|
|
name: "documents.publish",
|
|
documentId: document.id,
|
|
collectionId: document.collectionId,
|
|
teamId: document.teamId,
|
|
actorId: user.id,
|
|
data: {
|
|
source,
|
|
title: document.title,
|
|
},
|
|
ip,
|
|
},
|
|
{
|
|
transaction,
|
|
}
|
|
);
|
|
}
|
|
|
|
// reload to get all of the data needed to present (user, collection etc)
|
|
// we need to specify publishedAt to bypass default scope that only returns
|
|
// published documents
|
|
return await Document.findOne({
|
|
where: {
|
|
id: document.id,
|
|
publishedAt: document.publishedAt,
|
|
},
|
|
rejectOnEmpty: true,
|
|
transaction,
|
|
});
|
|
}
|