import { ZId } from "@formbricks/types/common"; import { cache } from "../cache"; import { hasUserEnvironmentAccess } from "../environment/auth"; import { validateInputs } from "../utils/validate"; import { webhookCache } from "./cache"; import { getWebhook } from "./service"; export const canUserAccessWebhook = async (userId: string, webhookId: string): Promise => cache( async () => { validateInputs([userId, ZId], [webhookId, ZId]); try { const webhook = await getWebhook(webhookId); if (!webhook) return false; const hasAccessToEnvironment = await hasUserEnvironmentAccess(userId, webhook.environmentId); if (!hasAccessToEnvironment) return false; return true; } catch (error) { throw error; } }, [`canUserAccessWebhook-${userId}-${webhookId}`], { tags: [webhookCache.tag.byId(webhookId)], } )();