mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +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.
62 lines
1.4 KiB
TypeScript
62 lines
1.4 KiB
TypeScript
import type { EnvelopeType } from '@prisma/client';
|
|
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { AppError, AppErrorCode } from '../../errors/app-error';
|
|
import { mapFieldToLegacyField } from '../../utils/fields';
|
|
import { buildTeamWhereQuery } from '../../utils/teams';
|
|
import { getEnvelopeWhereInput } from '../envelope/get-envelope-by-id';
|
|
|
|
export type GetFieldByIdOptions = {
|
|
userId: number;
|
|
teamId: number;
|
|
fieldId: number;
|
|
envelopeType: EnvelopeType;
|
|
};
|
|
|
|
export const getFieldById = async ({
|
|
userId,
|
|
teamId,
|
|
fieldId,
|
|
envelopeType,
|
|
}: GetFieldByIdOptions) => {
|
|
const field = await prisma.field.findFirst({
|
|
where: {
|
|
id: fieldId,
|
|
envelope: {
|
|
type: envelopeType,
|
|
team: buildTeamWhereQuery({ teamId, userId }),
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!field) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, {
|
|
message: 'Field not found',
|
|
});
|
|
}
|
|
|
|
const { envelopeWhereInput } = await getEnvelopeWhereInput({
|
|
id: {
|
|
type: 'envelopeId',
|
|
id: field.envelopeId,
|
|
},
|
|
type: envelopeType,
|
|
userId,
|
|
teamId,
|
|
});
|
|
|
|
// Additional validation to check visibility.
|
|
const envelope = await prisma.envelope.findUnique({
|
|
where: envelopeWhereInput,
|
|
});
|
|
|
|
if (!envelope) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, {
|
|
message: 'Field not found',
|
|
});
|
|
}
|
|
|
|
return mapFieldToLegacyField(field, envelope);
|
|
};
|