mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 12:32:34 +10:00
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
import { createCustomer } from '@documenso/ee/server-only/stripe/create-customer';
|
|
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { adminProcedure } from '../trpc';
|
|
import {
|
|
ZCreateStripeCustomerRequestSchema,
|
|
ZCreateStripeCustomerResponseSchema,
|
|
} from './create-stripe-customer.types';
|
|
|
|
export const createStripeCustomerRoute = adminProcedure
|
|
.input(ZCreateStripeCustomerRequestSchema)
|
|
.output(ZCreateStripeCustomerResponseSchema)
|
|
.mutation(async ({ input, ctx }) => {
|
|
const { organisationId } = input;
|
|
|
|
ctx.logger.info({
|
|
input: {
|
|
organisationId,
|
|
},
|
|
});
|
|
|
|
const organisation = await prisma.organisation.findUnique({
|
|
where: {
|
|
id: organisationId,
|
|
},
|
|
include: {
|
|
owner: {
|
|
select: {
|
|
email: true,
|
|
name: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!organisation) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND);
|
|
}
|
|
|
|
await prisma.$transaction(async (tx) => {
|
|
const stripeCustomer = await createCustomer({
|
|
name: organisation.name,
|
|
email: organisation.owner.email,
|
|
});
|
|
|
|
await tx.organisation.update({
|
|
where: {
|
|
id: organisationId,
|
|
},
|
|
data: {
|
|
customerId: stripeCustomer.id,
|
|
},
|
|
});
|
|
});
|
|
});
|