2022-03-25 22:26:22 +00:00
|
|
|
import prisma from "@calcom/prisma";
|
|
|
|
|
|
|
|
import { User } from "@calcom/prisma/client";
|
|
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
|
2022-03-26 23:58:22 +00:00
|
|
|
import { schemaQueryIdParseInt, withValidQueryIdTransformParseInt } from "@lib/validations/shared/queryIdTransformParseInt";
|
2022-03-29 01:23:22 +00:00
|
|
|
import { withMiddleware } from "@lib/helpers/withMiddleware";
|
2022-03-25 22:26:22 +00:00
|
|
|
|
|
|
|
type ResponseData = {
|
|
|
|
data?: User;
|
|
|
|
message?: string;
|
|
|
|
error?: unknown;
|
|
|
|
};
|
|
|
|
|
|
|
|
export async function user(req: NextApiRequest, res: NextApiResponse<ResponseData>) {
|
|
|
|
const { query, method } = req;
|
2022-03-26 23:58:22 +00:00
|
|
|
const safe = await schemaQueryIdParseInt.safeParse(query);
|
|
|
|
if (method === "GET" && safe.success) {
|
2022-03-28 22:27:14 +00:00
|
|
|
const data = await prisma.user.findUnique({ where: { id: safe.data.id } });
|
2022-03-25 22:26:22 +00:00
|
|
|
|
2022-03-28 22:27:14 +00:00
|
|
|
if (data) res.status(200).json({ data });
|
|
|
|
if (!data) res.status(404).json({ message: "Event type not found" });
|
2022-03-26 23:58:22 +00:00
|
|
|
// Reject any other HTTP method than POST
|
2022-03-28 22:27:14 +00:00
|
|
|
} else res.status(405).json({ message: "Only GET Method allowed" });
|
2022-03-25 22:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-29 01:23:22 +00:00
|
|
|
export default withMiddleware("addRequestId")(withValidQueryIdTransformParseInt(user));
|