50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import dayjs from "dayjs";
|
|
import utc from "dayjs/plugin/utc";
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import short from "short-uuid";
|
|
import { v5 as uuidv5 } from "uuid";
|
|
|
|
import { getSession } from "@lib/auth";
|
|
import prisma from "@lib/prisma";
|
|
|
|
dayjs.extend(utc);
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const session = await getSession({ req });
|
|
|
|
if (!session?.user?.id) {
|
|
res.status(401).json({ message: "Not authenticated" });
|
|
return;
|
|
}
|
|
|
|
// List webhooks
|
|
if (req.method === "GET") {
|
|
const webhooks = await prisma.webhook.findMany({
|
|
where: {
|
|
userId: session.user.id,
|
|
},
|
|
});
|
|
|
|
return res.status(200).json({ webhooks: webhooks });
|
|
}
|
|
|
|
if (req.method === "POST") {
|
|
const translator = short();
|
|
const seed = `${req.body.subscriberUrl}:${dayjs(new Date()).utc().format()}`;
|
|
const uid = translator.fromUUID(uuidv5(seed, uuidv5.URL));
|
|
|
|
await prisma.webhook.create({
|
|
data: {
|
|
id: uid,
|
|
userId: session.user.id,
|
|
subscriberUrl: req.body.subscriberUrl,
|
|
eventTriggers: req.body.eventTriggers,
|
|
},
|
|
});
|
|
|
|
return res.status(201).json({ message: "Webhook created" });
|
|
}
|
|
|
|
res.status(404).json({ message: "Webhook not found" });
|
|
}
|