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";
|
|
|
|
import { CredentialsResponse } from "@lib/types";
|
|
|
|
import { schemaCredentialPublic } from "@lib/validations/credential";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @swagger
|
|
|
|
* /api/credentials:
|
|
|
|
* get:
|
|
|
|
* summary: Get all credentials
|
|
|
|
* tags:
|
|
|
|
* - credentials
|
|
|
|
* responses:
|
|
|
|
* 200:
|
|
|
|
* description: OK
|
|
|
|
* 401:
|
|
|
|
* description: Authorization information is missing or invalid.
|
|
|
|
* 404:
|
|
|
|
* description: No credentials were found
|
|
|
|
*/
|
|
|
|
async function allCredentials(_: NextApiRequest, res: NextApiResponse<CredentialsResponse>) {
|
|
|
|
const credentials = await prisma.credential.findMany();
|
|
|
|
const data = credentials.map((credential) => schemaCredentialPublic.parse(credential));
|
2022-03-28 22:27:14 +00:00
|
|
|
|
|
|
|
if (data) res.status(200).json({ data });
|
2022-04-01 21:03:03 +00:00
|
|
|
else
|
|
|
|
(error: Error) =>
|
|
|
|
res.status(404).json({
|
|
|
|
message: "No Credentials were found",
|
|
|
|
error,
|
|
|
|
});
|
2022-03-28 22:27:14 +00:00
|
|
|
}
|
2022-04-01 21:03:03 +00:00
|
|
|
|
|
|
|
export default withMiddleware("HTTP_GET")(allCredentials);
|