cal.pub0.org/pages/api/schedules/[id]/edit.ts

39 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-03-30 12:17:55 +00:00
import type { NextApiRequest, NextApiResponse } from "next";
2022-03-30 12:17:55 +00:00
import prisma from "@calcom/prisma";
import { Schedule } from "@calcom/prisma/client";
import { schemaSchedule, withValidSchedule } from "@lib/validations/schedule";
2022-03-30 12:17:55 +00:00
import {
schemaQueryIdParseInt,
withValidQueryIdTransformParseInt,
} from "@lib/validations/shared/queryIdTransformParseInt";
type ResponseData = {
data?: Schedule;
message?: string;
error?: unknown;
};
export async function editSchedule(req: NextApiRequest, res: NextApiResponse<ResponseData>) {
const { query, body, method } = req;
const safeQuery = await schemaQueryIdParseInt.safeParse(query);
const safeBody = await schemaSchedule.safeParse(body);
if (method === "PATCH" && safeQuery.success && safeBody.success) {
2022-03-30 12:17:55 +00:00
const data = await prisma.schedule.update({
where: { id: safeQuery.data.id },
data: safeBody.data,
});
if (data) res.status(200).json({ data });
2022-03-30 12:17:55 +00:00
else
res
.status(404)
.json({ message: `Event type with ID ${safeQuery.data.id} not found and wasn't updated`, error });
// 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 schedules" });
}
export default withValidQueryIdTransformParseInt(withValidSchedule(editSchedule));