35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
|
import type { Prisma } from "@prisma/client";
|
||
|
import type { NextApiRequest } from "next";
|
||
|
|
||
|
import { HttpError } from "@calcom/lib/http-error";
|
||
|
import { defaultResponder } from "@calcom/lib/server";
|
||
|
|
||
|
import { schemaAttendeeReadPublic } from "@lib/validations/attendee";
|
||
|
|
||
|
/**
|
||
|
* @swagger
|
||
|
* /attendees:
|
||
|
* get:
|
||
|
* operationId: listAttendees
|
||
|
* summary: Find all attendees
|
||
|
* tags:
|
||
|
* - attendees
|
||
|
* responses:
|
||
|
* 200:
|
||
|
* description: OK
|
||
|
* 401:
|
||
|
* description: Authorization information is missing or invalid.
|
||
|
* 404:
|
||
|
* description: No attendees were found
|
||
|
*/
|
||
|
async function handler(req: NextApiRequest) {
|
||
|
const { userId, isAdmin, prisma } = req;
|
||
|
const args: Prisma.AttendeeFindManyArgs = isAdmin ? {} : { where: { booking: { userId } } };
|
||
|
const data = await prisma.attendee.findMany(args);
|
||
|
const attendees = data.map((attendee) => schemaAttendeeReadPublic.parse(attendee));
|
||
|
if (!attendees) throw new HttpError({ statusCode: 404, message: "No attendees were found" });
|
||
|
return { attendees };
|
||
|
}
|
||
|
|
||
|
export default defaultResponder(handler);
|