* add more methods to billingService * update profile handler * stripe customer handler * verify email * move imports + move generic methods to billing service * move to strip ebilling service class * push changes to mocks * fix enum * fix typo * correctly update customer metadata * fix userId type to number * fix types on billing services * fix type errors due to return methods differing * fix return types
72 lines
1.7 KiB
TypeScript
72 lines
1.7 KiB
TypeScript
import { StripeBillingService } from "@calcom/features/ee/billing/stripe-billling-service";
|
|
import { prisma } from "@calcom/prisma";
|
|
import { userMetadata } from "@calcom/prisma/zod-utils";
|
|
import type { TrpcSessionUser } from "@calcom/trpc/server/types";
|
|
|
|
import { TRPCError } from "@trpc/server";
|
|
|
|
type StripeCustomerOptions = {
|
|
ctx: {
|
|
user: NonNullable<TrpcSessionUser>;
|
|
};
|
|
};
|
|
|
|
export const stripeCustomerHandler = async ({ ctx }: StripeCustomerOptions) => {
|
|
const {
|
|
user: { id: userId },
|
|
} = ctx;
|
|
|
|
const billingService = new StripeBillingService();
|
|
|
|
const user = await prisma.user.findUnique({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
select: {
|
|
email: true,
|
|
metadata: true,
|
|
},
|
|
});
|
|
|
|
if (!user) {
|
|
throw new TRPCError({ code: "INTERNAL_SERVER_ERROR", message: "User not found" });
|
|
}
|
|
|
|
const metadata = userMetadata.parse(user.metadata);
|
|
let stripeCustomerId = metadata?.stripeCustomerId;
|
|
if (!stripeCustomerId) {
|
|
// Create stripe customer
|
|
const customer = await billingService.createCustomer({
|
|
email: user.email,
|
|
metadata: {
|
|
userId: userId.toString(),
|
|
},
|
|
});
|
|
await prisma.user.update({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
data: {
|
|
metadata: {
|
|
...metadata,
|
|
stripeCustomerId: customer.stripeCustomerId,
|
|
},
|
|
},
|
|
});
|
|
stripeCustomerId = customer.stripeCustomerId;
|
|
}
|
|
|
|
// Fetch stripe customer
|
|
const customer = await billingService.getCustomer(stripeCustomerId);
|
|
if (customer.deleted) {
|
|
throw new TRPCError({ code: "BAD_REQUEST", message: "No stripe customer found" });
|
|
}
|
|
|
|
const username = customer?.metadata?.username || null;
|
|
|
|
return {
|
|
isPremium: !!metadata?.isPremium,
|
|
username,
|
|
};
|
|
};
|