* perf: optimize payment app imports to avoid loading entire app store - Add PaymentServiceMap generation to app-store-cli build process - Generate payment.services.generated.ts with lazy imports for 6 payment services - Update handlePayment.ts, deletePayment.ts, handlePaymentRefund.ts to use PaymentServiceMap - Update getConnectedApps.ts and tRPC payment routers to use PaymentServiceMap - Follow same pattern as analytics optimization in PR #23372 - Reduces bundle size by avoiding import of 100+ apps when only payment functionality needed Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> * Update build.ts * fix: update payment service test mocking to work with PaymentServiceMap - Remove obsolete appStoreMock line from bookingScenario.ts since handlePayment now uses PaymentServiceMap - Update setupVitest.ts to import prismaMock from correct PrismockClient instance - Add PaymentServiceMap mock following PR #22450 pattern for calendar services - Ensure MockPaymentService uses consistent externalId across test files - Fix webhook handler to return 200 status by ensuring payment records are found correctly Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> * fix: revert prismaMock import to avoid interfering with other tests' vi.spyOn() calls - Remove global prismaMock import from setupVitest.ts that was causing 'is not a spy' errors - Update MockPaymentService to import prismaMock locally to maintain payment test functionality - Fixes organization and outOfOffice tests while preserving payment service optimization Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> * fix: remove E2E conditional check from payment services map generation - Payment services map now always includes all payment apps regardless of E2E environment - Ensures payment functionality is consistently available across all environments - Addresses CI failures caused by conditional payment service loading Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> * refactor: use direct PaymentService imports instead of .lib structure - Update app-store-cli to import directly from lib/PaymentService.ts files - Modify all payment handlers to access PaymentService directly - Update test mocks to match new direct import structure - Remove .lib property access pattern across payment system - Maintain backward compatibility while improving import efficiency Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> * fix: revert chargeCard booking.id parameter additions - Remove booking.id parameter from chargeCard calls in chargeCard.handler.ts and payments.tsx - Addresses GitHub feedback to investigate chargeCard signature changes in separate PR - Keeps all other direct PaymentService import refactor changes intact Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
93 lines
3.1 KiB
TypeScript
93 lines
3.1 KiB
TypeScript
import prismaMock from "../../../../../tests/libs/__mocks__/prisma";
|
|
|
|
import type { Payment, Prisma, PaymentOption, Booking } from "@prisma/client";
|
|
import "vitest-fetch-mock";
|
|
|
|
import { sendAwaitingPaymentEmailAndSMS } from "@calcom/emails";
|
|
import logger from "@calcom/lib/logger";
|
|
import type { CalendarEvent } from "@calcom/types/Calendar";
|
|
import type { IAbstractPaymentService } from "@calcom/types/PaymentService";
|
|
|
|
export function getMockPaymentService() {
|
|
function createPaymentLink(/*{ paymentUid, name, email, date }*/) {
|
|
return "http://mock-payment.example.com/";
|
|
}
|
|
const paymentUid = "MOCK_PAYMENT_UID";
|
|
const externalId = "mock_payment_external_id";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
class MockPaymentService implements IAbstractPaymentService {
|
|
// TODO: We shouldn't need to implement adding a row to Payment table but that's a requirement right now.
|
|
// We should actually delegate table creation to the core app. Here, only the payment app specific logic should come
|
|
async create(
|
|
payment: Pick<Prisma.PaymentUncheckedCreateInput, "amount" | "currency">,
|
|
bookingId: Booking["id"],
|
|
userId: Booking["userId"],
|
|
username: string | null,
|
|
bookerName: string | null,
|
|
bookerEmail: string,
|
|
paymentOption: PaymentOption
|
|
) {
|
|
const paymentCreateData = {
|
|
id: 1,
|
|
uid: paymentUid,
|
|
appId: null,
|
|
bookingId,
|
|
// booking Booking? @relation(fields: [bookingId], references: [id], onDelete: Cascade)
|
|
fee: 10,
|
|
success: false,
|
|
refunded: false,
|
|
data: {},
|
|
externalId,
|
|
paymentOption,
|
|
amount: payment.amount,
|
|
currency: payment.currency,
|
|
};
|
|
|
|
const paymentData = await prismaMock.payment.create({
|
|
data: paymentCreateData,
|
|
});
|
|
logger.silly("Created mock payment", JSON.stringify({ paymentData }));
|
|
|
|
const verifyPayment = await prismaMock.payment.findFirst({
|
|
where: { externalId: paymentCreateData.externalId },
|
|
});
|
|
logger.silly("Verified payment exists", JSON.stringify({ verifyPayment }));
|
|
|
|
return paymentData;
|
|
}
|
|
async afterPayment(
|
|
event: CalendarEvent,
|
|
booking: {
|
|
user: { email: string | null; name: string | null; timeZone: string } | null;
|
|
id: number;
|
|
startTime: { toISOString: () => string };
|
|
uid: string;
|
|
},
|
|
paymentData: Payment
|
|
): Promise<void> {
|
|
// TODO: App implementing PaymentService is supposed to send email by itself at the moment.
|
|
await sendAwaitingPaymentEmailAndSMS({
|
|
...event,
|
|
paymentInfo: {
|
|
link: createPaymentLink(/*{
|
|
paymentUid: paymentData.uid,
|
|
name: booking.user?.name,
|
|
email: booking.user?.email,
|
|
date: booking.startTime.toISOString(),
|
|
}*/),
|
|
paymentOption: paymentData.paymentOption || "ON_BOOKING",
|
|
amount: paymentData.amount,
|
|
currency: paymentData.currency,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
return {
|
|
paymentUid,
|
|
externalId,
|
|
MockPaymentService,
|
|
};
|
|
}
|