2021-10-28 22:52:39 +00:00
|
|
|
import { v4 } from "uuid";
|
2021-10-25 16:15:52 +00:00
|
|
|
import { z } from "zod";
|
|
|
|
|
|
|
|
import { getErrorFromUnknown } from "@lib/errors";
|
2021-10-28 22:52:39 +00:00
|
|
|
import { WEBHOOK_TRIGGER_EVENTS } from "@lib/webhooks/constants";
|
2021-11-22 11:37:07 +00:00
|
|
|
import sendPayload from "@lib/webhooks/sendPayload";
|
2021-10-25 16:15:52 +00:00
|
|
|
|
|
|
|
import { createProtectedRouter } from "@server/createRouter";
|
|
|
|
|
2021-10-28 22:52:39 +00:00
|
|
|
export const webhookRouter = createProtectedRouter()
|
|
|
|
.query("list", {
|
|
|
|
async resolve({ ctx }) {
|
|
|
|
return await ctx.prisma.webhook.findMany({
|
|
|
|
where: {
|
|
|
|
userId: ctx.user.id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.mutation("create", {
|
|
|
|
input: z.object({
|
|
|
|
subscriberUrl: z.string().url(),
|
|
|
|
eventTriggers: z.enum(WEBHOOK_TRIGGER_EVENTS).array(),
|
|
|
|
active: z.boolean(),
|
|
|
|
}),
|
|
|
|
async resolve({ ctx, input }) {
|
|
|
|
return await ctx.prisma.webhook.create({
|
|
|
|
data: {
|
|
|
|
id: v4(),
|
|
|
|
userId: ctx.user.id,
|
|
|
|
...input,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.mutation("edit", {
|
|
|
|
input: z.object({
|
|
|
|
id: z.string(),
|
|
|
|
subscriberUrl: z.string().url().optional(),
|
|
|
|
eventTriggers: z.enum(WEBHOOK_TRIGGER_EVENTS).array().optional(),
|
|
|
|
active: z.boolean().optional(),
|
2021-11-22 11:37:07 +00:00
|
|
|
payloadTemplate: z.string().nullable(),
|
2021-10-28 22:52:39 +00:00
|
|
|
}),
|
|
|
|
async resolve({ ctx, input }) {
|
|
|
|
const { id, ...data } = input;
|
|
|
|
const webhook = await ctx.prisma.webhook.findFirst({
|
|
|
|
where: {
|
|
|
|
userId: ctx.user.id,
|
|
|
|
id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (!webhook) {
|
|
|
|
// user does not own this webhook
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return await ctx.prisma.webhook.update({
|
|
|
|
where: {
|
|
|
|
id,
|
|
|
|
},
|
|
|
|
data,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.mutation("delete", {
|
|
|
|
input: z.object({
|
|
|
|
id: z.string(),
|
|
|
|
}),
|
|
|
|
async resolve({ ctx, input }) {
|
|
|
|
const { id } = input;
|
2021-10-29 14:13:51 +00:00
|
|
|
|
|
|
|
await ctx.prisma.user.update({
|
2021-10-28 22:52:39 +00:00
|
|
|
where: {
|
2021-10-29 14:13:51 +00:00
|
|
|
id: ctx.user.id,
|
2021-10-28 22:52:39 +00:00
|
|
|
},
|
2021-10-29 14:13:51 +00:00
|
|
|
data: {
|
|
|
|
webhooks: {
|
|
|
|
delete: {
|
|
|
|
id,
|
|
|
|
},
|
|
|
|
},
|
2021-10-25 16:15:52 +00:00
|
|
|
},
|
|
|
|
});
|
2021-10-29 14:13:51 +00:00
|
|
|
|
2021-10-25 16:15:52 +00:00
|
|
|
return {
|
2021-10-28 22:52:39 +00:00
|
|
|
id,
|
2021-10-25 16:15:52 +00:00
|
|
|
};
|
2021-10-28 22:52:39 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
.mutation("testTrigger", {
|
|
|
|
input: z.object({
|
|
|
|
url: z.string().url(),
|
|
|
|
type: z.string(),
|
2021-11-22 11:37:07 +00:00
|
|
|
payloadTemplate: z.string().optional().nullable(),
|
2021-10-28 22:52:39 +00:00
|
|
|
}),
|
|
|
|
async resolve({ input }) {
|
2021-11-22 11:37:07 +00:00
|
|
|
const { url, type, payloadTemplate } = input;
|
2021-10-28 22:52:39 +00:00
|
|
|
|
2021-11-22 11:37:07 +00:00
|
|
|
const data = {
|
|
|
|
type: "Test",
|
|
|
|
title: "Test trigger event",
|
|
|
|
description: "",
|
|
|
|
startTime: new Date().toISOString(),
|
|
|
|
endTime: new Date().toISOString(),
|
|
|
|
attendees: [
|
|
|
|
{
|
|
|
|
email: "jdoe@example.com",
|
|
|
|
name: "John Doe",
|
|
|
|
timeZone: "Europe/London",
|
2021-10-28 22:52:39 +00:00
|
|
|
},
|
2021-11-22 11:37:07 +00:00
|
|
|
],
|
|
|
|
organizer: {
|
|
|
|
name: "Cal",
|
|
|
|
email: "",
|
|
|
|
timeZone: "Europe/London",
|
2021-10-28 22:52:39 +00:00
|
|
|
},
|
2021-10-25 16:15:52 +00:00
|
|
|
};
|
2021-10-28 22:52:39 +00:00
|
|
|
|
|
|
|
try {
|
2021-11-22 11:37:07 +00:00
|
|
|
return await sendPayload(type, new Date().toISOString(), url, data, payloadTemplate);
|
2021-10-28 22:52:39 +00:00
|
|
|
} catch (_err) {
|
2021-11-22 11:37:07 +00:00
|
|
|
const error = getErrorFromUnknown(_err);
|
2021-10-28 22:52:39 +00:00
|
|
|
return {
|
2021-11-22 11:37:07 +00:00
|
|
|
ok: false,
|
2021-10-28 22:52:39 +00:00
|
|
|
status: 500,
|
2021-11-22 11:37:07 +00:00
|
|
|
message: error.message,
|
2021-10-28 22:52:39 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|