mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import { jobs } from '../../../jobs/client';
|
|
import { verify } from '../../crypto/verify';
|
|
import { getAllWebhooksByEventTrigger } from '../get-all-webhooks-by-event-trigger';
|
|
import { ZTriggerWebhookBodySchema } from './schema';
|
|
|
|
export type HandlerTriggerWebhooksResponse =
|
|
| {
|
|
success: true;
|
|
message: string;
|
|
}
|
|
| {
|
|
success: false;
|
|
error: string;
|
|
};
|
|
|
|
export const handlerTriggerWebhooks = async (req: Request) => {
|
|
const signature = req.headers.get('x-webhook-signature');
|
|
|
|
if (typeof signature !== 'string') {
|
|
console.log('Missing signature');
|
|
return Response.json({ success: false, error: 'Missing signature' }, { status: 400 });
|
|
}
|
|
|
|
const body = await req.json();
|
|
|
|
const valid = verify(body, signature);
|
|
|
|
if (!valid) {
|
|
console.log('Invalid signature');
|
|
return Response.json({ success: false, error: 'Invalid signature' }, { status: 400 });
|
|
}
|
|
|
|
const result = ZTriggerWebhookBodySchema.safeParse(body);
|
|
|
|
if (!result.success) {
|
|
console.log('Invalid request body');
|
|
return Response.json({ success: false, error: 'Invalid request body' }, { status: 400 });
|
|
}
|
|
|
|
const { event, data, userId, teamId } = result.data;
|
|
|
|
const allWebhooks = await getAllWebhooksByEventTrigger({ event, userId, teamId });
|
|
|
|
await Promise.allSettled(
|
|
allWebhooks.map(async (webhook) => {
|
|
await jobs.triggerJob({
|
|
name: 'internal.execute-webhook',
|
|
payload: {
|
|
event,
|
|
webhookId: webhook.id,
|
|
data,
|
|
},
|
|
});
|
|
}),
|
|
);
|
|
|
|
return Response.json(
|
|
{ success: true, message: 'Webhooks queued for execution' },
|
|
{ status: 200 },
|
|
);
|
|
};
|