* refactor: replace Prisma.validator<Select>() with satisfies syntax
- Convert all Prisma.validator<Prisma.SomeSelect>()({...}) patterns to {...} satisfies Prisma.SomeSelect
- Update import { Prisma } to import type { Prisma } where only used for types
- Maintain existing functionality while modernizing TypeScript syntax
- Covers 89+ files across packages/prisma/selects, repository classes, tRPC handlers, and API modules
Co-Authored-By: alex@cal.com <me@alexvanandel.com>
* refactor: complete remaining Prisma.validator conversions
- Update test fixture files with satisfies syntax
- Apply lint-staged formatting fixes
- Complete refactoring of all remaining files
Co-Authored-By: alex@cal.com <me@alexvanandel.com>
* revert: remove unintended platform library update
- Revert yarn.lock changes that updated @calcom/platform-libraries from 0.0.236 to 0.0.239
- This was an unintended side effect of the refactoring process
- Keep only the intended Prisma.validator → satisfies syntax changes
Co-Authored-By: alex@cal.com <me@alexvanandel.com>
* fix: update ESLint plugin references to correct package name
- Change @calcom/eslint to @calcom/eslint-plugin-eslint in eslint-preset.js
- Resolves 'Failed to load plugin @calcom/eslint' error causing CI failures
Co-Authored-By: alex@cal.com <me@alexvanandel.com>
---------
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: alex@cal.com <me@alexvanandel.com>
75 lines
2.0 KiB
TypeScript
75 lines
2.0 KiB
TypeScript
import type { Prisma } from "@prisma/client";
|
|
import Stripe from "stripe";
|
|
|
|
import { HttpError } from "@calcom/lib/http-error";
|
|
import prisma from "@calcom/prisma";
|
|
|
|
export async function getStripeCustomerIdFromUserId(userId: number) {
|
|
// Get user
|
|
const user = await prisma.user.findUnique({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
select: {
|
|
email: true,
|
|
name: true,
|
|
metadata: true,
|
|
},
|
|
});
|
|
|
|
if (!user?.email) throw new HttpError({ statusCode: 404, message: "User email not found" });
|
|
|
|
const customerId = await getStripeCustomerId(user);
|
|
|
|
return customerId;
|
|
}
|
|
|
|
const userType = {
|
|
select: {
|
|
email: true,
|
|
metadata: true,
|
|
},
|
|
} satisfies Prisma.UserArgs;
|
|
|
|
export type UserType = Prisma.UserGetPayload<typeof userType>;
|
|
/** This will retrieve the customer ID from Stripe or create it if it doesn't exists yet. */
|
|
export async function getStripeCustomerId(user: UserType): Promise<string> {
|
|
let customerId: string | null = null;
|
|
|
|
if (user?.metadata && typeof user.metadata === "object" && "stripeCustomerId" in user.metadata) {
|
|
customerId = (user?.metadata as Prisma.JsonObject).stripeCustomerId as string;
|
|
} else {
|
|
/* We fallback to finding the customer by email (which is not optimal) */
|
|
const customersResponse = await stripe.customers.list({
|
|
email: user.email,
|
|
limit: 1,
|
|
});
|
|
if (customersResponse.data[0]?.id) {
|
|
customerId = customersResponse.data[0].id;
|
|
} else {
|
|
/* Creating customer on Stripe and saving it on prisma */
|
|
const customer = await stripe.customers.create({ email: user.email });
|
|
customerId = customer.id;
|
|
}
|
|
|
|
await prisma.user.update({
|
|
where: {
|
|
email: user.email,
|
|
},
|
|
data: {
|
|
metadata: {
|
|
...(user.metadata as Prisma.JsonObject),
|
|
stripeCustomerId: customerId,
|
|
},
|
|
},
|
|
});
|
|
}
|
|
|
|
return customerId;
|
|
}
|
|
|
|
const stripePrivateKey = process.env.STRIPE_PRIVATE_KEY || "";
|
|
export const stripe = new Stripe(stripePrivateKey, {
|
|
apiVersion: "2020-08-27",
|
|
});
|