2022-03-30 12:17:55 +00:00
|
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
2022-03-26 21:29:30 +00:00
|
|
|
|
2022-03-30 12:17:55 +00:00
|
|
|
import prisma from "@calcom/prisma";
|
2022-03-26 21:29:30 +00:00
|
|
|
|
2022-04-01 21:03:03 +00:00
|
|
|
import { withMiddleware } from "@lib/helpers/withMiddleware";
|
2022-04-11 10:03:15 +00:00
|
|
|
import { BookingResponse, BookingsResponse } from "@lib/types";
|
2022-04-27 17:25:36 +00:00
|
|
|
import { schemaBookingCreateBodyParams, schemaBookingReadPublic } from "@lib/validations/booking";
|
2022-03-26 21:29:30 +00:00
|
|
|
|
2022-04-01 21:03:03 +00:00
|
|
|
/**
|
|
|
|
* @swagger
|
2022-04-26 19:56:59 +00:00
|
|
|
* /bookings:
|
2022-04-01 21:03:03 +00:00
|
|
|
* get:
|
2022-04-27 17:25:36 +00:00
|
|
|
* summary: Find all bookings
|
2022-04-01 21:03:03 +00:00
|
|
|
* tags:
|
|
|
|
* - bookings
|
|
|
|
* responses:
|
|
|
|
* 200:
|
|
|
|
* description: OK
|
|
|
|
* 401:
|
|
|
|
* description: Authorization information is missing or invalid.
|
|
|
|
* 404:
|
|
|
|
* description: No bookings were found
|
2022-04-11 10:03:15 +00:00
|
|
|
* post:
|
|
|
|
* summary: Creates a new booking
|
|
|
|
* tags:
|
|
|
|
* - bookings
|
|
|
|
* responses:
|
|
|
|
* 201:
|
|
|
|
* description: OK, booking created
|
|
|
|
* 400:
|
|
|
|
* description: Bad request. Booking body is invalid.
|
|
|
|
* 401:
|
|
|
|
* description: Authorization information is missing or invalid.
|
2022-04-01 21:03:03 +00:00
|
|
|
*/
|
2022-04-11 10:03:15 +00:00
|
|
|
async function createOrlistAllBookings(
|
|
|
|
req: NextApiRequest,
|
|
|
|
res: NextApiResponse<BookingsResponse | BookingResponse>
|
|
|
|
) {
|
|
|
|
const { method } = req;
|
2022-04-22 01:36:33 +00:00
|
|
|
const userId = req.userId;
|
2022-04-11 13:10:16 +00:00
|
|
|
|
2022-04-11 10:03:15 +00:00
|
|
|
if (method === "GET") {
|
2022-04-11 14:47:01 +00:00
|
|
|
const data = await prisma.booking.findMany({ where: { userId } });
|
2022-04-27 17:25:36 +00:00
|
|
|
const bookings = data.map((booking) => schemaBookingReadPublic.parse(booking));
|
2022-04-11 10:03:15 +00:00
|
|
|
if (bookings) res.status(200).json({ bookings });
|
|
|
|
else
|
|
|
|
(error: Error) =>
|
|
|
|
res.status(404).json({
|
|
|
|
message: "No Bookings were found",
|
|
|
|
error,
|
|
|
|
});
|
|
|
|
} else if (method === "POST") {
|
2022-04-27 17:25:36 +00:00
|
|
|
const safe = schemaBookingCreateBodyParams.safeParse(req.body);
|
2022-04-11 10:03:15 +00:00
|
|
|
if (!safe.success) throw new Error("Invalid request body");
|
|
|
|
|
2022-04-11 14:47:01 +00:00
|
|
|
const data = await prisma.booking.create({ data: { ...safe.data, userId } });
|
2022-04-27 17:25:36 +00:00
|
|
|
const booking = schemaBookingReadPublic.parse(data);
|
2022-04-01 21:03:03 +00:00
|
|
|
|
2022-04-11 10:03:15 +00:00
|
|
|
if (booking) res.status(201).json({ booking, message: "Booking created successfully" });
|
|
|
|
else
|
|
|
|
(error: Error) =>
|
|
|
|
res.status(400).json({
|
|
|
|
message: "Could not create new booking",
|
|
|
|
error,
|
|
|
|
});
|
|
|
|
} else res.status(405).json({ message: `Method ${method} not allowed` });
|
2022-03-26 21:29:30 +00:00
|
|
|
}
|
2022-04-01 21:03:03 +00:00
|
|
|
|
2022-04-11 10:03:15 +00:00
|
|
|
export default withMiddleware("HTTP_GET_OR_POST")(createOrlistAllBookings);
|