2022-03-30 12:17:55 +00:00
|
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
2022-03-26 23:58:22 +00:00
|
|
|
|
2022-03-30 12:17:55 +00:00
|
|
|
import prisma from "@calcom/prisma";
|
2022-03-26 23:58:22 +00:00
|
|
|
import { Attendee } from "@calcom/prisma/client";
|
|
|
|
|
|
|
|
import { schemaAttendee, withValidAttendee } from "@lib/validations/attendee";
|
2022-03-30 12:17:55 +00:00
|
|
|
import {
|
|
|
|
schemaQueryIdParseInt,
|
|
|
|
withValidQueryIdTransformParseInt,
|
|
|
|
} from "@lib/validations/shared/queryIdTransformParseInt";
|
2022-03-26 23:58:22 +00:00
|
|
|
|
|
|
|
type ResponseData = {
|
|
|
|
data?: Attendee;
|
|
|
|
message?: string;
|
|
|
|
error?: unknown;
|
|
|
|
};
|
|
|
|
|
|
|
|
export async function editAttendee(req: NextApiRequest, res: NextApiResponse<ResponseData>) {
|
|
|
|
const { query, body, method } = req;
|
|
|
|
const safeQuery = await schemaQueryIdParseInt.safeParse(query);
|
|
|
|
const safeBody = await schemaAttendee.safeParse(body);
|
|
|
|
|
|
|
|
if (method === "PATCH" && safeQuery.success && safeBody.success) {
|
2022-03-30 12:17:55 +00:00
|
|
|
await prisma.attendee
|
|
|
|
.update({
|
|
|
|
where: { id: safeQuery.data.id },
|
|
|
|
data: safeBody.data,
|
|
|
|
})
|
|
|
|
.then((attendee) => {
|
|
|
|
res.status(200).json({ data: attendee });
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
res
|
|
|
|
.status(404)
|
|
|
|
.json({ message: `Event type with ID ${safeQuery.data.id} not found and wasn't updated`, error });
|
|
|
|
});
|
2022-03-26 23:58:22 +00:00
|
|
|
// Reject any other HTTP method than POST
|
2022-03-30 12:17:55 +00:00
|
|
|
} else res.status(405).json({ message: "Only PATCH Method allowed for updating attendees" });
|
2022-03-26 23:58:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default withValidQueryIdTransformParseInt(withValidAttendee(editAttendee));
|