import type { NextApiRequest, NextApiResponse } from "next"; import prisma from "@calcom/prisma"; import { withMiddleware } from "@lib/helpers/withMiddleware"; import { TeamResponse, TeamsResponse } from "@lib/types"; import { schemaTeamBodyParams, schemaTeamPublic, withValidTeam } from "@lib/validations/team"; /** * @swagger * /v1/teams: * get: * summary: Get all teams * tags: * - teams * responses: * 200: * description: OK * 401: * description: Authorization information is missing or invalid. * 404: * description: No teams were found * post: * summary: Creates a new team * tags: * - teams * responses: * 201: * description: OK, team created * model: Team * 400: * description: Bad request. Team body is invalid. * 401: * description: Authorization information is missing or invalid. */ async function createOrlistAllTeams(req: NextApiRequest, res: NextApiResponse) { const { method } = req; if (method === "GET") { const teams = await prisma.team.findMany(); const data = teams.map((team) => schemaTeamPublic.parse(team)); if (data) res.status(200).json({ data }); else (error: Error) => res.status(404).json({ message: "No Teams were found", error, }); } else if (method === "POST") { const safe = schemaTeamBodyParams.safeParse(req.body); if (!safe.success) throw new Error("Invalid request body"); const team = await prisma.team.create({ data: safe.data }); const data = schemaTeamPublic.parse(team); if (data) res.status(201).json({ data, message: "Team created successfully" }); else (error: Error) => res.status(400).json({ message: "Could not create new team", error, }); } else res.status(405).json({ message: `Method ${method} not allowed` }); } export default withMiddleware("HTTP_GET_OR_POST")(withValidTeam(createOrlistAllTeams));