42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import prisma from "@calcom/prisma";
|
|
import { DestinationCalendar } from "@calcom/prisma/client";
|
|
|
|
import {
|
|
schemaDestinationCalendar,
|
|
withValidDestinationCalendar,
|
|
} from "@lib/validations/destination-calendar";
|
|
import {
|
|
schemaQueryIdParseInt,
|
|
withValidQueryIdTransformParseInt,
|
|
} from "@lib/validations/shared/queryIdTransformParseInt";
|
|
|
|
type ResponseData = {
|
|
data?: DestinationCalendar;
|
|
message?: string;
|
|
error?: unknown;
|
|
};
|
|
|
|
export async function editDestinationCalendar(req: NextApiRequest, res: NextApiResponse<ResponseData>) {
|
|
const { query, body, method } = req;
|
|
const safeQuery = await schemaQueryIdParseInt.safeParse(query);
|
|
const safeBody = await schemaDestinationCalendar.safeParse(body);
|
|
|
|
if (method === "PATCH" && safeQuery.success && safeBody.success) {
|
|
const data = await prisma.destinationCalendar.update({
|
|
where: { id: safeQuery.data.id },
|
|
data: safeBody.data,
|
|
});
|
|
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 });
|
|
|
|
// Reject any other HTTP method than POST
|
|
} else res.status(405).json({ message: "Only PATCH Method allowed for updating destinationCalendars" });
|
|
}
|
|
|
|
export default withValidQueryIdTransformParseInt(withValidDestinationCalendar(editDestinationCalendar));
|