make verifyApiKey not apply in docs

pull/9078/head
Agusti Fernandez Pardo 2022-04-15 16:46:50 +02:00
parent babfc6d7cf
commit 09d8b48ccc
1 changed files with 2 additions and 1 deletions

View File

@ -13,11 +13,12 @@ const today = new Date();
// This verifies the API key and sets the user if it is valid.
export const verifyApiKey: NextMiddleware = async (req, res, next) => {
const pathIsDocs = req.url?.startsWith("/docs");
if (pathIsDocs) await next()
if (!req.query.apiKey) res.status(401).json({ message: "No API key provided" });
const strippedApiKey = `${req.query.apiKey}`.replace(process.env.API_KEY_PREFIX || "cal_", "");
const hashedKey = hashAPIKey(strippedApiKey);
await prisma.apiKey
.findUnique({ where: { hashedKey } })
.then(async (apiKey) => {