59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import express, { Router } from "express";
|
|
import { Webhook } from "svix";
|
|
|
|
export const autumnWebhookRouter: Router = express.Router();
|
|
|
|
const verifyAutumnWebhook = async (req: any, res: any) => {
|
|
const wh = new Webhook(process.env.AUTUMN_WEBHOOK_SECRET!);
|
|
|
|
const headers = req.headers;
|
|
const payload = req.body;
|
|
|
|
const svix_id = headers["svix-id"];
|
|
const svix_timestamp = headers["svix-timestamp"];
|
|
const svix_signature = headers["svix-signature"];
|
|
|
|
if (!svix_id || !svix_timestamp || !svix_signature) {
|
|
res.status(400).json({
|
|
success: false,
|
|
message: "Error: Missing svix headers",
|
|
});
|
|
return;
|
|
}
|
|
|
|
let evt: any;
|
|
try {
|
|
evt = wh.verify(payload, {
|
|
"svix-id": svix_id as string,
|
|
"svix-timestamp": svix_timestamp as string,
|
|
"svix-signature": svix_signature as string,
|
|
});
|
|
} catch (err) {
|
|
console.log("Error: Could not verify webhook");
|
|
res.status(400).json({
|
|
success: false,
|
|
message: "Error: Could not verify webhook",
|
|
});
|
|
return;
|
|
}
|
|
|
|
return evt;
|
|
};
|
|
|
|
autumnWebhookRouter.post(
|
|
"",
|
|
express.raw({ type: "application/json" }),
|
|
async (req, res) => {
|
|
const evt = await verifyAutumnWebhook(req, res);
|
|
console.log("Received webhook from autumn");
|
|
const { type, data } = evt;
|
|
console.log("Type", type, "Scenario:", data?.scenario);
|
|
// console.log("Data", data);
|
|
// console.log("JSON", JSON.stringify(evt, null, 2));
|
|
res.status(200).json({
|
|
success: true,
|
|
message: "Webhook received",
|
|
});
|
|
},
|
|
);
|