163 lines
4.4 KiB
TypeScript
163 lines
4.4 KiB
TypeScript
import { buffer } from "micro";
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import { getErrorFromUnknown } from "pages/_error";
|
|
import Stripe from "stripe";
|
|
|
|
import stripe from "@ee/lib/stripe/server";
|
|
|
|
import { CalendarEvent } from "@lib/calendarClient";
|
|
import { HttpError } from "@lib/core/http/error";
|
|
import EventManager from "@lib/events/EventManager";
|
|
import prisma from "@lib/prisma";
|
|
|
|
export const config = {
|
|
api: {
|
|
bodyParser: false,
|
|
},
|
|
};
|
|
|
|
async function handlePaymentSuccess(event: Stripe.Event) {
|
|
const paymentIntent = event.data.object as Stripe.PaymentIntent;
|
|
const payment = await prisma.payment.update({
|
|
where: {
|
|
externalId: paymentIntent.id,
|
|
},
|
|
data: {
|
|
success: true,
|
|
booking: {
|
|
update: {
|
|
paid: true,
|
|
},
|
|
},
|
|
},
|
|
select: {
|
|
bookingId: true,
|
|
booking: {
|
|
select: {
|
|
title: true,
|
|
description: true,
|
|
startTime: true,
|
|
endTime: true,
|
|
confirmed: true,
|
|
attendees: true,
|
|
location: true,
|
|
userId: true,
|
|
id: true,
|
|
uid: true,
|
|
paid: true,
|
|
user: {
|
|
select: {
|
|
id: true,
|
|
credentials: true,
|
|
timeZone: true,
|
|
email: true,
|
|
name: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!payment) throw new Error("No payment found");
|
|
|
|
const { booking } = payment;
|
|
|
|
if (!booking) throw new Error("No booking found");
|
|
|
|
const { user } = booking;
|
|
|
|
if (!user) throw new Error("No user found");
|
|
|
|
const evt: CalendarEvent = {
|
|
type: booking.title,
|
|
title: booking.title,
|
|
description: booking.description || undefined,
|
|
startTime: booking.startTime.toISOString(),
|
|
endTime: booking.endTime.toISOString(),
|
|
organizer: { email: user.email!, name: user.name!, timeZone: user.timeZone },
|
|
attendees: booking.attendees,
|
|
};
|
|
if (booking.location) evt.location = booking.location;
|
|
|
|
if (booking.confirmed) {
|
|
const eventManager = new EventManager(user.credentials);
|
|
const scheduleResult = await eventManager.create(evt, booking.uid);
|
|
|
|
await prisma.booking.update({
|
|
where: {
|
|
id: payment.bookingId,
|
|
},
|
|
data: {
|
|
references: {
|
|
create: scheduleResult.referencesToCreate,
|
|
},
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
type WebhookHandler = (event: Stripe.Event) => Promise<void>;
|
|
|
|
const webhookHandlers: Record<string, WebhookHandler | undefined> = {
|
|
"payment_intent.succeeded": handlePaymentSuccess,
|
|
"customer.subscription.deleted": async (event) => {
|
|
const object = event.data.object as Stripe.Subscription;
|
|
|
|
const customerId = typeof object.customer === "string" ? object.customer : object.customer.id;
|
|
|
|
const customer = (await stripe.customers.retrieve(customerId)) as Stripe.Customer;
|
|
if (typeof customer.email !== "string") {
|
|
throw new Error(`Couldn't find customer email for ${customerId}`);
|
|
}
|
|
|
|
await prisma.user.update({
|
|
where: {
|
|
email: customer.email,
|
|
},
|
|
data: {
|
|
plan: "FREE",
|
|
},
|
|
});
|
|
},
|
|
};
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
try {
|
|
if (req.method !== "POST") {
|
|
throw new HttpError({ statusCode: 405, message: "Method Not Allowed" });
|
|
}
|
|
const sig = req.headers["stripe-signature"];
|
|
if (!sig) {
|
|
throw new HttpError({ statusCode: 400, message: "Missing stripe-signature" });
|
|
}
|
|
|
|
if (!process.env.STRIPE_WEBHOOK_SECRET) {
|
|
throw new HttpError({ statusCode: 500, message: "Missing process.env.STRIPE_WEBHOOK_SECRET" });
|
|
}
|
|
const requestBuffer = await buffer(req);
|
|
const payload = requestBuffer.toString();
|
|
// console.log("payload", payload);
|
|
|
|
const event = stripe.webhooks.constructEvent(payload, sig, process.env.STRIPE_WEBHOOK_SECRET);
|
|
|
|
const handler = webhookHandlers[event.type];
|
|
if (handler) {
|
|
await handler(event);
|
|
} else {
|
|
console.warn(`Unhandled Stripe Webhook event type ${event.type}`);
|
|
}
|
|
} catch (_err) {
|
|
const err = getErrorFromUnknown(_err);
|
|
console.error(`Webhook Error: ${err.message}`);
|
|
res.status(err.statusCode ?? 500).send({
|
|
message: err.message,
|
|
stack: process.env.NODE_ENV === "production" ? undefined : err.stack,
|
|
});
|
|
return;
|
|
}
|
|
|
|
// Return a response to acknowledge receipt of the event
|
|
res.json({ received: true });
|
|
}
|