50 lines
1.6 KiB
TypeScript
50 lines
1.6 KiB
TypeScript
import { hash } from "bcryptjs";
|
|
import cache from "memory-cache";
|
|
import { NextMiddleware } from "next-api-middleware";
|
|
|
|
import { PRISMA_CLIENT_CACHING_TIME } from "@calcom/api/lib/constants";
|
|
import { prismaAdmin } from "@calcom/console/modules/common/utils/prisma";
|
|
import { asStringOrUndefined } from "@calcom/lib/asStringOrNull";
|
|
import { prisma, customPrisma } from "@calcom/prisma";
|
|
|
|
// This replaces the prisma client for the cusotm one if the key is valid
|
|
export const customPrismaClient: NextMiddleware = async (req, res, next) => {
|
|
const {
|
|
query: { key },
|
|
}: { query: { key?: string } } = req;
|
|
// If no custom api Id is provided, attach to request the regular cal.com prisma client.
|
|
if (!key) {
|
|
req.prisma = prisma;
|
|
await next();
|
|
} else {
|
|
const id = asStringOrUndefined(key);
|
|
|
|
// If we have a key, we check if it is valid.
|
|
const deployment = await prismaAdmin.deployment.findUnique({
|
|
where: { key },
|
|
});
|
|
if (!deployment) {
|
|
res.status(400).json({ error: "Invalid custom credentials id" });
|
|
return;
|
|
}
|
|
const credentials = deployment.databaseUrl;
|
|
if (!credentials) {
|
|
res.status(400).json({ error: "no databaseUrl set up at your instance yet" });
|
|
return;
|
|
}
|
|
const hashedUrl = await hash(credentials, 12);
|
|
|
|
const cachedPrisma = cache.get(hashedUrl);
|
|
|
|
if (!cachedPrisma) {
|
|
cache.put(
|
|
hashedUrl,
|
|
customPrisma({ datasources: { db: { url: credentials } } }),
|
|
PRISMA_CLIENT_CACHING_TIME // Cache the prisma client for 24 hours
|
|
);
|
|
}
|
|
req.prisma = cachedPrisma;
|
|
}
|
|
await next();
|
|
};
|