* refactor: consolidate error handlers to use getServerErrorFromUnknown - Migrate server-only code to use getServerErrorFromUnknown for better error handling - Add JSDoc documentation to both getErrorFromUnknown and getServerErrorFromUnknown - Update webhook handlers, payment services, email service, and booking service - Keep getErrorFromUnknown for client-side and isomorphic code - Improve error message extraction by using err.cause?.stack instead of err.stack - Fix ESLint warnings: replace 'any' with 'unknown' types, fix hasOwnProperty usage Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * Update packages/app-store/paypal/api/webhook.ts Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * refactor --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
125 lines
3.7 KiB
TypeScript
125 lines
3.7 KiB
TypeScript
import { buffer } from "micro";
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import type Stripe from "stripe";
|
|
|
|
import stripe from "@calcom/features/ee/payments/server/stripe";
|
|
import { IS_PRODUCTION } from "@calcom/lib/constants";
|
|
import { HttpError as HttpCode } from "@calcom/lib/http-error";
|
|
import { getServerErrorFromUnknown } from "@calcom/lib/server/getServerErrorFromUnknown";
|
|
import { prisma } from "@calcom/prisma";
|
|
|
|
export const config = {
|
|
api: {
|
|
bodyParser: false,
|
|
},
|
|
};
|
|
|
|
// This file is a catch-all for any integration related subscription/paid app.
|
|
|
|
const handleSubscriptionUpdate = async (event: Stripe.Event) => {
|
|
const subscription = event.data.object as Stripe.Subscription;
|
|
if (!subscription.id) throw new HttpCode({ statusCode: 400, message: "Subscription ID not found" });
|
|
|
|
const app = await prisma.credential.findFirst({
|
|
where: {
|
|
subscriptionId: subscription.id,
|
|
},
|
|
});
|
|
|
|
if (!app) {
|
|
throw new HttpCode({
|
|
statusCode: 202,
|
|
message: `No credential found with subscription ID ${subscription.id}`,
|
|
});
|
|
}
|
|
|
|
await prisma.credential.update({
|
|
where: {
|
|
id: app.id,
|
|
},
|
|
data: {
|
|
paymentStatus: subscription.status,
|
|
},
|
|
});
|
|
};
|
|
|
|
const handleSubscriptionDeleted = async (event: Stripe.Event) => {
|
|
const subscription = event.data.object as Stripe.Subscription;
|
|
if (!subscription.id) throw new HttpCode({ statusCode: 400, message: "Subscription ID not found" });
|
|
|
|
const app = await prisma.credential.findFirst({
|
|
where: {
|
|
subscriptionId: subscription.id,
|
|
},
|
|
});
|
|
|
|
if (!app) {
|
|
throw new HttpCode({
|
|
statusCode: 202,
|
|
message: `No credential found with subscription ID ${subscription.id}`,
|
|
});
|
|
}
|
|
|
|
// should we delete the credential here rather than marking as inactive?
|
|
await prisma.credential.update({
|
|
where: {
|
|
id: app.id,
|
|
},
|
|
data: {
|
|
paymentStatus: "inactive",
|
|
billingCycleStart: null,
|
|
},
|
|
});
|
|
};
|
|
|
|
type WebhookHandler = (event: Stripe.Event) => Promise<void>;
|
|
|
|
const webhookHandlers: Record<string, WebhookHandler | undefined> = {
|
|
"customer.subscription.updated": handleSubscriptionUpdate,
|
|
"customer.subscription.deleted": handleSubscriptionDeleted,
|
|
};
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
try {
|
|
if (req.method !== "POST") {
|
|
throw new HttpCode({ statusCode: 405, message: "Method Not Allowed" });
|
|
}
|
|
const sig = req.headers["stripe-signature"];
|
|
if (!sig) {
|
|
throw new HttpCode({ statusCode: 400, message: "Missing stripe-signature" });
|
|
}
|
|
|
|
if (!process.env.STRIPE_WEBHOOK_SECRET_APPS) {
|
|
throw new HttpCode({ statusCode: 500, message: "Missing process.env.STRIPE_WEBHOOK_SECRET_APPS" });
|
|
}
|
|
const requestBuffer = await buffer(req);
|
|
const payload = requestBuffer.toString();
|
|
|
|
const event = stripe.webhooks.constructEvent(payload, sig, process.env.STRIPE_WEBHOOK_SECRET_APPS);
|
|
|
|
const handler = webhookHandlers[event.type];
|
|
if (handler) {
|
|
await handler(event);
|
|
} else {
|
|
/** Not really an error, just letting Stripe know that the webhook was received but unhandled */
|
|
throw new HttpCode({
|
|
statusCode: 202,
|
|
message: `Unhandled Stripe Webhook event type ${event.type}`,
|
|
});
|
|
}
|
|
} catch (_err) {
|
|
const err = getServerErrorFromUnknown(_err);
|
|
if (!err.message.includes("No credential found with subscription ID")) {
|
|
console.error(`Webhook Error: ${err.message}`);
|
|
}
|
|
res.status(err.statusCode).send({
|
|
message: err.message,
|
|
stack: IS_PRODUCTION ? undefined : err.cause?.stack,
|
|
});
|
|
return;
|
|
}
|
|
|
|
// Return a response to acknowledge receipt of the event
|
|
res.json({ received: true });
|
|
}
|