mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-01 03:06:32 +02:00
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
import { NextApiRequest, NextApiResponse } from "next";
|
|
import { sendEmailTemplate } from "utils/api-utils";
|
|
import { nanoid } from "utils/nanoid";
|
|
|
|
import { CreatePollPayload } from "../../../api-client/create-poll";
|
|
import { prisma } from "../../../db";
|
|
import absoluteUrl from "../../../utils/absolute-url";
|
|
|
|
export default async function handler(
|
|
req: NextApiRequest,
|
|
res: NextApiResponse,
|
|
) {
|
|
switch (req.method) {
|
|
case "POST": {
|
|
const adminUrlId = await nanoid();
|
|
const payload: CreatePollPayload = req.body;
|
|
const poll = await prisma.poll.create({
|
|
data: {
|
|
urlId: await nanoid(),
|
|
verificationCode: await nanoid(),
|
|
title: payload.title,
|
|
type: payload.type,
|
|
timeZone: payload.timeZone,
|
|
location: payload.location,
|
|
description: payload.description,
|
|
authorName: payload.user.name,
|
|
demo: payload.demo,
|
|
user: {
|
|
connectOrCreate: {
|
|
where: {
|
|
email: payload.user.email,
|
|
},
|
|
create: {
|
|
id: await nanoid(),
|
|
...payload.user,
|
|
},
|
|
},
|
|
},
|
|
options: {
|
|
createMany: {
|
|
data: payload.options.map((value) => ({
|
|
value,
|
|
})),
|
|
},
|
|
},
|
|
links: {
|
|
createMany: {
|
|
data: [
|
|
{
|
|
urlId: adminUrlId,
|
|
role: "admin",
|
|
},
|
|
{
|
|
urlId: await nanoid(),
|
|
role: "participant",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const homePageUrl = absoluteUrl(req).origin;
|
|
const pollUrl = `${homePageUrl}/admin/${adminUrlId}`;
|
|
const verifyEmailUrl = `${pollUrl}?code=${poll.verificationCode}`;
|
|
|
|
try {
|
|
await sendEmailTemplate({
|
|
templateName: "new-poll",
|
|
to: payload.user.email,
|
|
subject: `Rallly: ${poll.title} - Verify your email address`,
|
|
templateVars: {
|
|
title: poll.title,
|
|
name: payload.user.name,
|
|
pollUrl,
|
|
verifyEmailUrl,
|
|
homePageUrl,
|
|
supportEmail: process.env.SUPPORT_EMAIL,
|
|
},
|
|
});
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
|
|
return res.json({ urlId: adminUrlId, authorName: poll.authorName });
|
|
}
|
|
default:
|
|
return res.status(405).end();
|
|
}
|
|
}
|