mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
28 lines
987 B
TypeScript
28 lines
987 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";
|
|
import { webhookCache } from "./cache";
|
|
|
|
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;
|
|
},
|
|
[`canUserAccessWebhook-${userId}-${webhookId}`],
|
|
{
|
|
tags: [webhookCache.tag.byId(webhookId)],
|
|
revalidate: SERVICES_REVALIDATION_INTERVAL,
|
|
}
|
|
)();
|