2022-03-30 12:17:55 +00:00
|
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
2022-03-28 22:27:14 +00:00
|
|
|
|
2022-03-30 12:17:55 +00:00
|
|
|
import prisma from "@calcom/prisma";
|
2022-03-28 22:27:14 +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 { BookingReferenceResponse, BookingReferencesResponse } from "@lib/types";
|
|
|
|
import {
|
2022-04-26 20:48:15 +00:00
|
|
|
schemaBookingCreateBodyParams,
|
|
|
|
schemaBookingReferenceReadPublic,
|
2022-04-11 10:03:15 +00:00
|
|
|
} from "@lib/validations/booking-reference";
|
2022-04-01 21:03:03 +00:00
|
|
|
|
2022-04-11 10:03:15 +00:00
|
|
|
async function createOrlistAllBookingReferences(
|
2022-04-29 00:30:59 +00:00
|
|
|
{ method, userId }: NextApiRequest,
|
2022-04-11 10:03:15 +00:00
|
|
|
res: NextApiResponse<BookingReferencesResponse | BookingReferenceResponse>
|
|
|
|
) {
|
2022-04-11 13:42:50 +00:00
|
|
|
const userWithBookings = await prisma.user.findUnique({
|
|
|
|
where: { id: userId },
|
|
|
|
include: { bookings: true },
|
|
|
|
});
|
|
|
|
if (!userWithBookings) throw new Error("User not found");
|
|
|
|
const userBookingIds = userWithBookings.bookings.map((booking: any) => booking.id).flat();
|
2022-04-11 10:03:15 +00:00
|
|
|
if (method === "GET") {
|
2022-04-29 00:30:59 +00:00
|
|
|
/**
|
|
|
|
* @swagger
|
|
|
|
* /booking-references:
|
|
|
|
* get:
|
|
|
|
* summary: Find all booking references
|
|
|
|
* tags:
|
|
|
|
* - booking-references
|
|
|
|
* responses:
|
|
|
|
* 200:
|
|
|
|
* description: OK
|
|
|
|
* 401:
|
|
|
|
* description: Authorization information is missing or invalid.
|
|
|
|
* 404:
|
|
|
|
* description: No booking references were found
|
|
|
|
*/
|
2022-04-11 13:42:50 +00:00
|
|
|
const data = await prisma.bookingReference.findMany({ where: { id: { in: userBookingIds } } });
|
2022-04-11 10:03:15 +00:00
|
|
|
const booking_references = data.map((bookingReference) =>
|
2022-04-26 20:48:15 +00:00
|
|
|
schemaBookingReferenceReadPublic.parse(bookingReference)
|
2022-04-11 10:03:15 +00:00
|
|
|
);
|
|
|
|
if (booking_references) res.status(200).json({ booking_references });
|
|
|
|
else
|
|
|
|
(error: Error) =>
|
|
|
|
res.status(404).json({
|
|
|
|
message: "No BookingReferences were found",
|
|
|
|
error,
|
|
|
|
});
|
|
|
|
} else if (method === "POST") {
|
2022-04-29 00:30:59 +00:00
|
|
|
/**
|
|
|
|
* @swagger
|
|
|
|
* /booking-references:
|
|
|
|
* post:
|
|
|
|
* summary: Creates a new booking reference
|
|
|
|
* tags:
|
|
|
|
* - booking-references
|
|
|
|
* responses:
|
|
|
|
* 201:
|
|
|
|
* description: OK, booking reference created
|
|
|
|
* 400:
|
|
|
|
* description: Bad request. BookingReference body is invalid.
|
|
|
|
* 401:
|
|
|
|
* description: Authorization information is missing or invalid.
|
|
|
|
*/
|
2022-04-26 20:48:15 +00:00
|
|
|
const safe = schemaBookingCreateBodyParams.safeParse(req.body);
|
2022-04-13 00:12:16 +00:00
|
|
|
if (!safe.success) {
|
|
|
|
throw new Error("Invalid request body");
|
|
|
|
}
|
2022-04-11 10:03:15 +00:00
|
|
|
|
2022-04-13 16:53:44 +00:00
|
|
|
// const booking_reference = schemaBookingReferencePublic.parse(data);
|
2022-04-22 01:36:33 +00:00
|
|
|
const userId = req.userId;
|
2022-04-13 00:12:16 +00:00
|
|
|
const userWithBookings = await prisma.user.findUnique({
|
|
|
|
where: { id: userId },
|
|
|
|
include: { bookings: true },
|
|
|
|
});
|
|
|
|
if (!userWithBookings) {
|
|
|
|
throw new Error("User not found");
|
|
|
|
}
|
|
|
|
const userBookingIds = userWithBookings.bookings.map((booking: any) => booking.id).flat();
|
2022-04-23 00:17:06 +00:00
|
|
|
if (!userBookingIds.includes(safe.data.bookingId)) res.status(401).json({ message: "Unauthorized" });
|
|
|
|
else {
|
2022-04-13 16:53:44 +00:00
|
|
|
const booking_reference = await prisma.bookingReference.create({
|
|
|
|
data: { ...safe.data },
|
|
|
|
});
|
|
|
|
if (booking_reference) {
|
2022-04-13 00:12:16 +00:00
|
|
|
res.status(201).json({
|
|
|
|
booking_reference,
|
|
|
|
message: "BookingReference created successfully",
|
2022-04-11 10:03:15 +00:00
|
|
|
});
|
2022-04-13 00:12:16 +00:00
|
|
|
} else {
|
|
|
|
(error: Error) =>
|
|
|
|
res.status(400).json({
|
|
|
|
message: "Could not create new booking reference",
|
|
|
|
error,
|
|
|
|
});
|
|
|
|
}
|
2022-04-23 00:17:06 +00:00
|
|
|
}
|
2022-04-11 10:03:15 +00:00
|
|
|
} else res.status(405).json({ message: `Method ${method} not allowed` });
|
2022-03-28 22:27:14 +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")(createOrlistAllBookingReferences);
|