Files
formbricks/packages/lib/webhook/auth.ts
Dhruwang Jariwala f70cda6e11 refactor: removes old types (#1288)
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2023-10-20 12:03:16 +00:00

26 lines
878 B
TypeScript

import { validateInputs } from "../utils/validate";
import { hasUserEnvironmentAccess } from "../environment/auth";
import { getWebhook } from "./service";
import { unstable_cache } from "next/cache";
import { ZId } from "@formbricks/types/environment";
import { SERVICES_REVALIDATION_INTERVAL } from "../constants";
export const canUserAccessWebhook = async (userId: string, webhookId: string): Promise<boolean> =>
await unstable_cache(
async () => {
validateInputs([userId, ZId], [webhookId, ZId]);
const webhook = await getWebhook(webhookId);
if (!webhook) return false;
const hasAccessToEnvironment = await hasUserEnvironmentAccess(userId, webhook.environmentId);
if (!hasAccessToEnvironment) return false;
return true;
},
[`${userId}-${webhookId}`],
{
revalidate: SERVICES_REVALIDATION_INTERVAL,
}
)();