Files
documenso/apps/web/pages/api/documents/[id]/send.ts
2023-01-30 17:33:03 +01:00

62 lines
1.6 KiB
TypeScript

import {
defaultHandler,
defaultResponder,
getUserFromToken,
} from "@documenso/lib/server";
import prisma from "@documenso/prisma";
import { NextApiRequest, NextApiResponse } from "next";
import { sendSignedMail, sendSigningRequest } from "@documenso/lib/mail";
import { SendStatus } from "@prisma/client";
async function postHandler(req: NextApiRequest, res: NextApiResponse) {
const user = await getUserFromToken(req, res);
const { id: documentId } = req.query;
if (!user) return;
if (!documentId) {
res.status(400).send("Missing parameter documentId.");
return;
}
const document = await prisma.document.findFirstOrThrow({
where: {
id: +documentId,
},
include: {
User: {
select: {
name: true,
email: true,
},
},
Recipient: true,
},
});
if (!document)
res.status(404).end(`No document with id ${documentId} found.`);
// todo handle sending to single recipient even though more exist
const recipients = prisma.recipient.findMany({
where: {
documentId: +documentId,
// sendStatus: SendStatus.NOT_SENT, // TODO REDO AFTER DEBUG
},
});
// todo check if recipient has an account and show them in their inbox or something
(await recipients).forEach(async (recipient) => {
await sendSigningRequest(recipient, document);
await sendSignedMail(recipient, document);
});
// todo way better error handling
return res.status(200).end();
}
export default defaultHandler({
POST: Promise.resolve({ default: defaultResponder(postHandler) }),
});