mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import { ORGANISATION_MEMBER_ROLE_PERMISSIONS_MAP } from '@documenso/lib/constants/organisations';
|
|
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
|
import { stripe } from '@documenso/lib/server-only/stripe';
|
|
import { buildOrganisationWhereQuery } from '@documenso/lib/utils/organisations';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
export type GetSubscriptionOptions = {
|
|
userId: number;
|
|
organisationId: string;
|
|
};
|
|
|
|
export const getSubscription = async ({ organisationId, userId }: GetSubscriptionOptions) => {
|
|
const organisation = await prisma.organisation.findFirst({
|
|
where: buildOrganisationWhereQuery({
|
|
organisationId,
|
|
userId,
|
|
roles: ORGANISATION_MEMBER_ROLE_PERMISSIONS_MAP['MANAGE_ORGANISATION'],
|
|
}),
|
|
include: {
|
|
subscription: true,
|
|
},
|
|
});
|
|
|
|
if (!organisation) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, {
|
|
message: 'Organisation not found',
|
|
});
|
|
}
|
|
|
|
if (!organisation.subscription) {
|
|
return null;
|
|
}
|
|
|
|
const stripeSubscription = await stripe.subscriptions.retrieve(organisation.subscription.planId, {
|
|
expand: ['items.data.price.product'],
|
|
});
|
|
|
|
return {
|
|
organisationSubscription: organisation.subscription,
|
|
stripeSubscription,
|
|
};
|
|
};
|