mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 09:12:02 +10:00
49 lines
1.0 KiB
TypeScript
49 lines
1.0 KiB
TypeScript
import { DocumentSigningOrder, EnvelopeType, SigningStatus } from '@prisma/client';
|
|
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
export type GetIsRecipientTurnOptions = {
|
|
token: string;
|
|
};
|
|
|
|
export async function getIsRecipientsTurnToSign({ token }: GetIsRecipientTurnOptions) {
|
|
const envelope = await prisma.envelope.findFirstOrThrow({
|
|
where: {
|
|
type: EnvelopeType.DOCUMENT,
|
|
recipients: {
|
|
some: {
|
|
token,
|
|
},
|
|
},
|
|
},
|
|
include: {
|
|
documentMeta: true,
|
|
recipients: {
|
|
orderBy: {
|
|
signingOrder: 'asc',
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (envelope.documentMeta?.signingOrder !== DocumentSigningOrder.SEQUENTIAL) {
|
|
return true;
|
|
}
|
|
|
|
const { recipients } = envelope;
|
|
|
|
const currentRecipientIndex = recipients.findIndex((r) => r.token === token);
|
|
|
|
if (currentRecipientIndex === -1) {
|
|
return false;
|
|
}
|
|
|
|
for (let i = 0; i < currentRecipientIndex; i++) {
|
|
if (recipients[i].signingStatus !== SigningStatus.SIGNED) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|