* Add payment option to schema * Add payment option to Stripe zod * Set payment option on event type * Create manual payment intent in Stripe * Set payment option from Stripe app * Add payment option to DB * Pass React.ReactNode to checkbox * Create uncaptured payment intent * WIP * Capture card in setup intent * Show charge card option * Charge card from booking page * Bug fixes * Clean up * Clean up app card * Add no-show fee messaging on booking page * Send payment email on payment & add price * Fix messaging * Create no show fee charged email * Send charge fee collected email * Disable submit on card failure * Clean up * Serverside prevent charging card again if already charged * Only confirm booking if paid for * Type fixes * More type fixes * More type fixes * Type fix * Type fixes * UI changes * Payment component rework * Update apps/web/public/static/locales/en/common.json Co-authored-by: Alex van Andel <me@alexvanandel.com> * Update apps/web/public/static/locales/en/common.json Co-authored-by: Alex van Andel <me@alexvanandel.com> * Update apps/web/components/dialog/ChargeCardDialog.tsx Co-authored-by: Alex van Andel <me@alexvanandel.com> * Update packages/trpc/server/routers/viewer/payments.tsx Co-authored-by: Alex van Andel <me@alexvanandel.com> * Revert GTM config * Adjust payment option dropdown * Show alert when seats are set * Small bug fixes * Create collect card method * clean up * Prevent seats & charge no-show fee to be enabled together * Do not charge no-show fee on unconfirmed bookings * Add check to collect card method * Webhook send request emails * Fix some dark mode colours * Change awaiting payment language * Type fixes * Set height of Select and TextField both to 38px to fix alignment * Fix message seats & payment error message * Type fix --------- Co-authored-by: Alex van Andel <me@alexvanandel.com>
74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
import type { AppCategories, Prisma } from "@prisma/client";
|
|
|
|
import appStore from "@calcom/app-store";
|
|
import type { EventTypeAppsList } from "@calcom/app-store/utils";
|
|
import type { EventTypeModel } from "@calcom/prisma/zod";
|
|
import type { CalendarEvent } from "@calcom/types/Calendar";
|
|
|
|
const handlePayment = async (
|
|
evt: CalendarEvent,
|
|
selectedEventType: Pick<Zod.infer<typeof EventTypeModel>, "metadata">,
|
|
paymentAppCredentials: {
|
|
key: Prisma.JsonValue;
|
|
appId: EventTypeAppsList;
|
|
app: {
|
|
dirName: string;
|
|
categories: AppCategories[];
|
|
} | null;
|
|
},
|
|
booking: {
|
|
user: { email: string | null; name: string | null; timeZone: string } | null;
|
|
id: number;
|
|
startTime: { toISOString: () => string };
|
|
uid: string;
|
|
},
|
|
bookerEmail: string
|
|
) => {
|
|
const paymentApp = await appStore[paymentAppCredentials?.app?.dirName as keyof typeof appStore];
|
|
if (!(paymentApp && "lib" in paymentApp && "PaymentService" in paymentApp.lib)) {
|
|
console.warn(`payment App service of type ${paymentApp} is not implemented`);
|
|
return null;
|
|
}
|
|
const PaymentService = paymentApp.lib.PaymentService;
|
|
const paymentInstance = new PaymentService(paymentAppCredentials);
|
|
|
|
const paymentOption =
|
|
selectedEventType?.metadata?.apps?.[paymentAppCredentials.appId].paymentOption || "ON_BOOKING";
|
|
|
|
let paymentData;
|
|
if (paymentOption === "HOLD") {
|
|
paymentData = await paymentInstance.collectCard(
|
|
{
|
|
amount: selectedEventType?.metadata?.apps?.[paymentAppCredentials.appId].price,
|
|
currency: selectedEventType?.metadata?.apps?.[paymentAppCredentials.appId].currency,
|
|
},
|
|
booking.id,
|
|
bookerEmail,
|
|
paymentOption
|
|
);
|
|
} else {
|
|
paymentData = await paymentInstance.create(
|
|
{
|
|
amount: selectedEventType?.metadata?.apps?.[paymentAppCredentials.appId].price,
|
|
currency: selectedEventType?.metadata?.apps?.[paymentAppCredentials.appId].currency,
|
|
},
|
|
booking.id,
|
|
bookerEmail,
|
|
paymentOption
|
|
);
|
|
}
|
|
|
|
if (!paymentData) {
|
|
console.error("Payment data is null");
|
|
throw new Error("Payment data is null");
|
|
}
|
|
try {
|
|
await paymentInstance.afterPayment(evt, booking, paymentData);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
return paymentData;
|
|
};
|
|
|
|
export { handlePayment };
|