cal.pub0.org/pages/api/event-references/index.ts

85 lines
2.9 KiB
TypeScript
Raw Normal View History

2022-03-30 12:17:55 +00:00
import type { NextApiRequest, NextApiResponse } from "next";
2022-04-01 23:55:41 +00:00
import { withMiddleware } from "@lib/helpers/withMiddleware";
import { DailyEventReferenceResponse, DailyEventReferencesResponse } from "@lib/types";
import {
schemaDailyEventReferenceCreateBodyParams,
schemaDailyEventReferenceReadPublic,
} from "@lib/validations/event-reference";
2022-04-01 23:55:41 +00:00
async function createOrlistAllDailyEventReferences(
2022-06-06 16:17:10 +00:00
{ method, body, userId, prisma }: NextApiRequest,
res: NextApiResponse<DailyEventReferencesResponse | DailyEventReferenceResponse>
2022-04-01 23:55:41 +00:00
) {
2022-04-20 23:30:47 +00:00
const userBookings = await prisma.booking.findMany({ where: { userId } });
const userBookingIds = userBookings.map((booking) => booking.id);
if (method === "GET") {
2022-04-29 15:29:57 +00:00
/**
* @swagger
* /event-references:
* get:
* summary: Find all event reference
* operationId: listEventReferences
2022-04-29 15:29:57 +00:00
* tags:
* - event-references
* responses:
* 200:
* description: OK
* 401:
* description: Authorization information is missing or invalid.
* 404:
* description: No event references were found
2022-04-29 15:29:57 +00:00
*/
2022-04-20 23:30:47 +00:00
const data = await prisma.dailyEventReference.findMany({
where: { bookingId: { in: userBookingIds } },
});
const daily_event_references = data.map((dailyEventReference) =>
schemaDailyEventReferenceReadPublic.parse(dailyEventReference)
);
if (daily_event_references) res.status(200).json({ daily_event_references });
else
(error: Error) =>
res.status(404).json({
message: "No DailyEventReferences were found",
error,
});
} else if (method === "POST") {
2022-04-29 15:29:57 +00:00
/**
* @swagger
* /event-references:
* post:
* summary: Creates a new event reference
* operationId: addEventReference
2022-04-29 15:29:57 +00:00
* tags:
* - event-references
* responses:
* 201:
* description: OK, event reference created
2022-04-29 15:29:57 +00:00
* 400:
* description: Bad request. DailyEventReference body is invalid.
* 401:
* description: Authorization information is missing or invalid.
*/
const safe = schemaDailyEventReferenceCreateBodyParams.safeParse(body);
2022-05-17 17:33:18 +00:00
if (!safe.success) {
res.status(400).json({ message: "Invalid request body" });
return;
}
const data = await prisma.dailyEventReference.create({ data: safe.data });
const daily_event_reference = schemaDailyEventReferenceReadPublic.parse(data);
if (daily_event_reference)
res.status(201).json({ daily_event_reference, message: "DailyEventReference created successfully" });
else
(error: Error) =>
res.status(400).json({
message: "Could not create new event reference",
error,
});
} else res.status(405).json({ message: `Method ${method} not allowed` });
}
2022-04-01 23:55:41 +00:00
export default withMiddleware("HTTP_GET_OR_POST")(createOrlistAllDailyEventReferences);