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";
|
|
|
|
|
|
|
|
import { schemaUser, withValidUser } from "@lib/validations/user";
|
2022-03-29 01:23:22 +00:00
|
|
|
import { withMiddleware } from "@lib/helpers/withMiddleware";
|
2022-03-26 23:58:22 +00:00
|
|
|
import { schemaQueryIdParseInt, withValidQueryIdTransformParseInt } from "@lib/validations/shared/queryIdTransformParseInt";
|
2022-03-25 22:26:22 +00:00
|
|
|
|
|
|
|
type ResponseData = {
|
|
|
|
data?: User;
|
|
|
|
message?: string;
|
|
|
|
error?: unknown;
|
|
|
|
};
|
|
|
|
|
|
|
|
export async function editUser(req: NextApiRequest, res: NextApiResponse<ResponseData>) {
|
|
|
|
const { query, body, method } = req;
|
2022-03-26 23:58:22 +00:00
|
|
|
const safeQuery = await schemaQueryIdParseInt.safeParse(query);
|
2022-03-25 22:26:22 +00:00
|
|
|
const safeBody = await schemaUser.safeParse(body);
|
|
|
|
|
2022-03-28 22:27:14 +00:00
|
|
|
if (method === "PATCH" && safeQuery.success && safeBody.success) {
|
|
|
|
const data = await prisma.user.update({
|
2022-03-25 22:26:22 +00:00
|
|
|
where: { id: safeQuery.data.id },
|
|
|
|
data: safeBody.data,
|
2022-03-28 22:27:14 +00:00
|
|
|
})
|
|
|
|
if (data) res.status(200).json({ data });
|
|
|
|
else res.status(404).json({ message: `Event type with ID ${safeQuery.data.id} not found and wasn't updated`, error })
|
|
|
|
|
2022-03-25 22:26: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 PATCH Method allowed for updating users" });
|
2022-03-25 22:26:22 +00:00
|
|
|
}
|
|
|
|
|
2022-03-29 01:23:22 +00:00
|
|
|
export default withMiddleware("addRequestId")(withValidQueryIdTransformParseInt(withValidUser(editUser)));
|