40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import { v4 } from "uuid";
|
|
|
|
import findValidApiKey from "@calcom/ee/lib/api/findValidApiKey";
|
|
import prisma from "@calcom/prisma";
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const apiKey = req.query.apiKey as string;
|
|
|
|
if (!apiKey) {
|
|
return res.status(401).json({ message: "No API key provided" });
|
|
}
|
|
|
|
const validKey = await findValidApiKey(apiKey, "zapier");
|
|
|
|
if (!validKey) {
|
|
return res.status(401).json({ message: "API key not valid" });
|
|
}
|
|
|
|
const { subscriberUrl, triggerEvent } = req.body;
|
|
|
|
if (req.method === "POST") {
|
|
try {
|
|
const createSubscription = await prisma.webhook.create({
|
|
data: {
|
|
id: v4(),
|
|
userId: validKey.userId,
|
|
eventTriggers: [triggerEvent],
|
|
subscriberUrl,
|
|
active: true,
|
|
appId: "zapier",
|
|
},
|
|
});
|
|
res.status(200).json(createSubscription);
|
|
} catch (error) {
|
|
return res.status(500).json({ message: "Could not create subscription." });
|
|
}
|
|
}
|
|
}
|