171 lines
7.1 KiB
TypeScript
171 lines
7.1 KiB
TypeScript
import type { Prisma } from "@prisma/client";
|
|
import type { z } from "zod";
|
|
|
|
import { getRequestedSlugError } from "@calcom/app-store/stripepayment/lib/team-billing";
|
|
import { purchaseTeamOrOrgSubscription } from "@calcom/features/ee/teams/lib/payments";
|
|
import { MINIMUM_NUMBER_OF_ORG_SEATS, WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { getMetadataHelpers } from "@calcom/lib/getMetadataHelpers";
|
|
import logger from "@calcom/lib/logger";
|
|
import { Redirect } from "@calcom/lib/redirect";
|
|
import prisma from "@calcom/prisma";
|
|
import { teamMetadataSchema } from "@calcom/prisma/zod-utils";
|
|
|
|
import billing from "..";
|
|
import { TeamBillingPublishResponseStatus, type TeamBilling, type TeamBillingInput } from "./team-billing";
|
|
|
|
const log = logger.getSubLogger({ prefix: ["TeamBilling"] });
|
|
|
|
const teamPaymentMetadataSchema = teamMetadataSchema.unwrap();
|
|
|
|
export class InternalTeamBilling implements TeamBilling {
|
|
private _team!: Omit<TeamBillingInput, "metadata"> & {
|
|
metadata: NonNullable<z.infer<typeof teamPaymentMetadataSchema>>;
|
|
};
|
|
constructor(team: TeamBillingInput) {
|
|
this.team = team;
|
|
}
|
|
set team(team: TeamBillingInput) {
|
|
const metadata = teamPaymentMetadataSchema.parse(team.metadata || {});
|
|
this._team = { ...team, metadata };
|
|
}
|
|
get team(): typeof this._team {
|
|
return this._team;
|
|
}
|
|
private async getOrgIfNeeded() {
|
|
if (!this.team.parentId) return;
|
|
const parentTeam = await prisma.team.findUniqueOrThrow({
|
|
where: { id: this.team.parentId },
|
|
select: { metadata: true, id: true, parentId: true, isOrganization: true },
|
|
});
|
|
this.team = parentTeam;
|
|
}
|
|
private logErrorFromUnknown(error: unknown) {
|
|
let message = "Unknown error on InternalTeamBilling.";
|
|
if (error instanceof Error) message = error.message;
|
|
log.error(message);
|
|
}
|
|
async cancel() {
|
|
try {
|
|
const { subscriptionId } = this.team.metadata;
|
|
log.info(`Cancelling subscription ${subscriptionId} for team ${this.team.id}`);
|
|
if (!subscriptionId) throw Error("missing subscriptionId");
|
|
await billing.handleSubscriptionCancel(subscriptionId);
|
|
await this.downgrade();
|
|
log.info(`Cancelled subscription ${subscriptionId} for team ${this.team.id}`);
|
|
} catch (error) {
|
|
this.logErrorFromUnknown(error);
|
|
}
|
|
}
|
|
// New teams are published on creation, this is for backwards compatibility
|
|
async publish() {
|
|
const { url } = await this.checkIfTeamPaymentRequired();
|
|
const teamId = this.team.id;
|
|
if (url) {
|
|
// TODO: We should probably hit the logic of this URL handled by the /upgrade API handler as it just generates the url to check the payment status and upgrade if needed
|
|
return { redirectUrl: url, status: TeamBillingPublishResponseStatus.REQUIRES_UPGRADE };
|
|
}
|
|
const requestedSlug = this.team.metadata?.requestedSlug || "";
|
|
// if payment needed, respond with checkout url
|
|
const membershipCount = await prisma.membership.count({ where: { teamId } });
|
|
const owner = await prisma.membership.findFirstOrThrow({
|
|
where: { teamId, role: "OWNER" },
|
|
select: {
|
|
userId: true,
|
|
},
|
|
});
|
|
|
|
try {
|
|
// TODO: extract this to new billing service
|
|
const checkoutSession = await purchaseTeamOrOrgSubscription({
|
|
teamId,
|
|
seatsUsed: membershipCount,
|
|
userId: owner.userId,
|
|
pricePerSeat: null,
|
|
});
|
|
|
|
if (checkoutSession.url) {
|
|
return {
|
|
redirectUrl: checkoutSession.url,
|
|
status: TeamBillingPublishResponseStatus.REQUIRES_PAYMENT,
|
|
};
|
|
}
|
|
|
|
const { mergeMetadata } = getMetadataHelpers(teamPaymentMetadataSchema, this.team.metadata);
|
|
const data: Prisma.TeamUpdateInput = {
|
|
metadata: mergeMetadata({ requestedSlug: undefined }),
|
|
};
|
|
if (requestedSlug) data.slug = requestedSlug;
|
|
await prisma.team.update({ where: { id: teamId }, data });
|
|
return { status: TeamBillingPublishResponseStatus.SUCCESS, redirectUrl: null };
|
|
} catch (error) {
|
|
if (error instanceof Redirect) throw error;
|
|
const { message } = getRequestedSlugError(error, requestedSlug);
|
|
throw Error(message);
|
|
}
|
|
}
|
|
async downgrade() {
|
|
try {
|
|
const { mergeMetadata } = getMetadataHelpers(teamPaymentMetadataSchema, this.team.metadata);
|
|
const metadata = mergeMetadata({
|
|
paymentId: undefined,
|
|
subscriptionId: undefined,
|
|
subscriptionItemId: undefined,
|
|
});
|
|
await prisma.team.update({ where: { id: this.team.id }, data: { metadata } });
|
|
log.info(`Downgraded team ${this.team.id}`);
|
|
} catch (error) {
|
|
this.logErrorFromUnknown(error);
|
|
}
|
|
}
|
|
async updateQuantity() {
|
|
try {
|
|
await this.getOrgIfNeeded();
|
|
const { url } = await this.checkIfTeamPaymentRequired();
|
|
/**
|
|
* If there's no pending checkout URL it means that this team has not been paid.
|
|
* We cannot update the subscription yet, this will be handled on publish/checkout.
|
|
**/
|
|
if (!url) return;
|
|
const { id: teamId, metadata, isOrganization } = this.team;
|
|
const { subscriptionId, subscriptionItemId, orgSeats } = metadata;
|
|
// Either it would be custom pricing where minimum number of seats are changed(available in orgSeats) or it would be default MINIMUM_NUMBER_OF_ORG_SEATS
|
|
// We can't go below this quantity for subscription
|
|
const orgMinimumSubscriptionQuantity = orgSeats || MINIMUM_NUMBER_OF_ORG_SEATS;
|
|
const membershipCount = await prisma.membership.count({ where: { teamId } });
|
|
if (isOrganization && membershipCount < orgMinimumSubscriptionQuantity) {
|
|
log.info(
|
|
`Org ${teamId} has less members than the min required ${orgMinimumSubscriptionQuantity}, skipping updating subscription.`
|
|
);
|
|
return;
|
|
}
|
|
if (!subscriptionId) throw Error("missing subscriptionId");
|
|
if (!subscriptionItemId) throw Error("missing subscriptionItemId");
|
|
await billing.handleSubscriptionUpdate({ subscriptionId, subscriptionItemId, membershipCount });
|
|
log.info(`Updated subscription ${subscriptionId} for team ${teamId} to ${membershipCount} seats.`);
|
|
} catch (error) {
|
|
this.logErrorFromUnknown(error);
|
|
}
|
|
}
|
|
/** Used to prevent double charges for the same team */
|
|
async checkIfTeamPaymentRequired() {
|
|
const { paymentId } = this.team.metadata || {};
|
|
/** If there's no paymentId, we need to pay this team */
|
|
if (!paymentId) return { url: null, paymentId: null, paymentRequired: true };
|
|
/** If there's a pending session but it isn't paid, we need to pay this team */
|
|
const checkoutSessionIsPaid = await billing.checkoutSessionIsPaid(paymentId);
|
|
if (!checkoutSessionIsPaid) return { url: null, paymentId, paymentRequired: true };
|
|
/** If the session is already paid we return the upgrade URL so team is updated. */
|
|
return {
|
|
url: `${WEBAPP_URL}/api/teams/${this.team.id}/upgrade?session_id=${paymentId}`,
|
|
paymentId,
|
|
paymentRequired: false,
|
|
};
|
|
}
|
|
/** Used to check if the current team plan is active */
|
|
async checkIfTeamHasActivePlan() {
|
|
const { subscriptionId } = this.team.metadata;
|
|
if (!subscriptionId) return false;
|
|
return await billing.checkIfTeamHasActivePlan(subscriptionId);
|
|
}
|
|
}
|