28 lines
996 B
TypeScript
28 lines
996 B
TypeScript
|
import prisma from "@calcom/prisma";
|
||
|
|
||
|
import { Attendee } from "@calcom/prisma/client";
|
||
|
import type { NextApiRequest, NextApiResponse } from "next";
|
||
|
|
||
|
import { schemaQueryIdParseInt, withValidQueryIdTransformParseInt } from "@lib/validations/shared/queryIdTransformParseInt";
|
||
|
|
||
|
type ResponseData = {
|
||
|
data?: Attendee;
|
||
|
message?: string;
|
||
|
error?: unknown;
|
||
|
};
|
||
|
|
||
|
export async function attendee(req: NextApiRequest, res: NextApiResponse<ResponseData>) {
|
||
|
const { query, method } = req;
|
||
|
const safe = await schemaQueryIdParseInt.safeParse(query);
|
||
|
|
||
|
if (method === "GET" && safe.success) {
|
||
|
const attendee = await prisma.attendee.findUnique({ where: { id: safe.data.id } });
|
||
|
|
||
|
if (attendee) res.status(200).json({ data: attendee });
|
||
|
if (!attendee) res.status(404).json({ message: "Event type not found" });
|
||
|
// Reject any other HTTP method than POST
|
||
|
} else res.status(405).json({ message: "Only GET Method allowed" });
|
||
|
}
|
||
|
|
||
|
export default withValidQueryIdTransformParseInt(attendee);
|