mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
This PR is handles the changes required to support envelopes. The new envelope editor/signing page will be hidden during release. The core changes here is to migrate the documents and templates model to a centralized envelopes model. Even though Documents and Templates are removed, from the user perspective they will still exist as we remap envelopes to documents and templates.
99 lines
2.5 KiB
TypeScript
99 lines
2.5 KiB
TypeScript
import { EnvelopeType } from '@prisma/client';
|
|
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { AppError, AppErrorCode } from '../../errors/app-error';
|
|
import type { EnvelopeIdOptions } from '../../utils/envelope';
|
|
import { mapSecondaryIdToTemplateId } from '../../utils/envelope';
|
|
import { getEnvelopeWhereInput } from '../envelope/get-envelope-by-id';
|
|
|
|
export type GetTemplateByIdOptions = {
|
|
id: EnvelopeIdOptions;
|
|
userId: number;
|
|
teamId: number;
|
|
};
|
|
|
|
export const getTemplateById = async ({ id, userId, teamId }: GetTemplateByIdOptions) => {
|
|
const { envelopeWhereInput } = await getEnvelopeWhereInput({
|
|
id,
|
|
type: EnvelopeType.TEMPLATE,
|
|
userId,
|
|
teamId,
|
|
});
|
|
|
|
const envelope = await prisma.envelope.findFirst({
|
|
where: envelopeWhereInput,
|
|
include: {
|
|
directLink: true,
|
|
documentMeta: true,
|
|
envelopeItems: {
|
|
select: {
|
|
id: true,
|
|
documentData: true,
|
|
},
|
|
},
|
|
recipients: true,
|
|
fields: true,
|
|
user: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
email: true,
|
|
},
|
|
},
|
|
folder: true,
|
|
},
|
|
});
|
|
|
|
if (!envelope) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, {
|
|
message: 'Template not found',
|
|
});
|
|
}
|
|
|
|
const firstTemplateDocumentData = envelope.envelopeItems[0].documentData;
|
|
|
|
if (!firstTemplateDocumentData) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, {
|
|
message: 'Template document data not found',
|
|
});
|
|
}
|
|
|
|
// eslint-disable-next-line unused-imports/no-unused-vars
|
|
const { envelopeItems, documentMeta, ...rest } = envelope;
|
|
|
|
const legacyTemplateId = mapSecondaryIdToTemplateId(envelope.secondaryId);
|
|
|
|
return {
|
|
...rest,
|
|
envelopeId: envelope.id,
|
|
type: envelope.templateType,
|
|
templateDocumentDataId: firstTemplateDocumentData.id,
|
|
templateDocumentData: {
|
|
...firstTemplateDocumentData,
|
|
envelopeItemId: envelope.envelopeItems[0].id,
|
|
},
|
|
templateMeta: {
|
|
...envelope.documentMeta,
|
|
templateId: legacyTemplateId,
|
|
},
|
|
fields: envelope.fields.map((field) => ({
|
|
...field,
|
|
documentId: null,
|
|
templateId: legacyTemplateId,
|
|
})),
|
|
recipients: envelope.recipients.map((recipient) => ({
|
|
...recipient,
|
|
documentId: null,
|
|
templateId: legacyTemplateId,
|
|
})),
|
|
directLink: envelope.directLink
|
|
? {
|
|
...envelope.directLink,
|
|
templateId: legacyTemplateId,
|
|
}
|
|
: null,
|
|
id: mapSecondaryIdToTemplateId(envelope.secondaryId),
|
|
};
|
|
};
|