39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import prisma from "@calcom/prisma";
|
|
import { ApiKey } from "@calcom/prisma/client";
|
|
|
|
import { withMiddleware } from "@lib/helpers/withMiddleware";
|
|
import { schemaApiKeyBodyParams, withValidApiKey } from "@lib/validations/api-key";
|
|
import { schemaQueryIdAsString, withValidQueryIdString } from "@lib/validations/shared/queryIdString";
|
|
|
|
type ResponseData = {
|
|
data?: ApiKey;
|
|
message?: string;
|
|
error?: unknown;
|
|
};
|
|
|
|
export async function editApiKey(req: NextApiRequest, res: NextApiResponse<ResponseData>) {
|
|
const { query, body } = req;
|
|
const safeQuery = await schemaQueryIdAsString.safeParse(query);
|
|
const safeBody = await schemaApiKeyBodyParams.safeParse(body);
|
|
|
|
if (safeQuery.success && safeBody.success) {
|
|
const data = await prisma.apiKey.update({
|
|
where: { id: safeQuery.data.id },
|
|
data: safeBody.data,
|
|
});
|
|
if (data) res.status(200).json({ data });
|
|
else
|
|
(error: unknown) =>
|
|
res
|
|
.status(404)
|
|
.json({ message: `Event type with ID ${safeQuery.data.id} not found and wasn't updated`, error });
|
|
}
|
|
}
|
|
|
|
export default withMiddleware(
|
|
"HTTP_PATCH",
|
|
"addRequestId"
|
|
)(withValidQueryIdString(withValidApiKey(editApiKey)));
|