* factory and statergie * chore: use correct method of DI * feat: add onchagne * add logic to HWM stat * add webhook resolver methods to each statergy * move seat tracking + webhooks over to own statergy * Move to factory base approach * move logic to correct class * rename create -> createByTeamId * fix: remove debug `true ||` overrides from IS_STRIPE_ENABLED and IS_TEAM_BILLING_ENABLED Remove accidentally committed debug overrides that short-circuited IS_STRIPE_ENABLED and IS_TEAM_BILLING_ENABLED to always be true, bypassing Stripe credential checks. This would break self-hosted instances without Stripe configured. Identified by cubic (https://cubic.dev) Co-Authored-By: unknown <> * feat: active user billing * add tests * UI side for users on active billing * use correct period of stripe sub * feat: claude feedback * fix: skip Stripe sync for canceled/expired subscriptions to prevent repeated API calls Co-Authored-By: unknown <> * feat: feedback * feat: only render when active users mode is set * fix type error * fix: constants + feature flags * fix: default to null in tests * chore: use seats in test * fix: use node:crypto protocol for Node.js builtin imports Co-Authored-By: sean@cal.com <Sean@brydon.io> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
100 lines
3.4 KiB
TypeScript
100 lines
3.4 KiB
TypeScript
import { getActiveUserBillingService } from "@calcom/features/ee/billing/active-user/di/ActiveUserBillingService.container";
|
|
import { BillingPeriodService } from "@calcom/features/ee/billing/service/billingPeriod/BillingPeriodService";
|
|
import { MembershipRepository } from "@calcom/features/membership/repositories/MembershipRepository";
|
|
import { PermissionCheckService } from "@calcom/features/pbac/services/permission-check.service";
|
|
import { TeamService } from "@calcom/features/ee/teams/services/teamService";
|
|
import { IS_TEAM_BILLING_ENABLED } from "@calcom/lib/constants";
|
|
import logger from "@calcom/lib/logger";
|
|
import { MembershipRole } from "@calcom/prisma/enums";
|
|
import { TRPCError } from "@trpc/server";
|
|
|
|
import type { TrpcSessionUser } from "../../../types";
|
|
import type { TGetActiveUserBreakdownInputSchema } from "./getActiveUserBreakdown.schema";
|
|
|
|
const log = logger.getSubLogger({ prefix: ["getActiveUserBreakdown"] });
|
|
|
|
type GetActiveUserBreakdownOptions = {
|
|
ctx: {
|
|
user: NonNullable<TrpcSessionUser>;
|
|
};
|
|
input: TGetActiveUserBreakdownInputSchema;
|
|
};
|
|
|
|
export const getActiveUserBreakdownHandler = async ({ ctx, input }: GetActiveUserBreakdownOptions) => {
|
|
if (!IS_TEAM_BILLING_ENABLED) {
|
|
return null;
|
|
}
|
|
|
|
const { teamId } = input;
|
|
|
|
const membershipRepository = new MembershipRepository();
|
|
const membership = await membershipRepository.findUniqueByUserIdAndTeamId({
|
|
userId: ctx.user.id,
|
|
teamId,
|
|
});
|
|
|
|
if (!membership || !membership.accepted) {
|
|
throw new TRPCError({
|
|
code: "FORBIDDEN",
|
|
message: "You are not a member of this team",
|
|
});
|
|
}
|
|
|
|
const team = await TeamService.fetchTeamOrThrow(teamId);
|
|
const permissionService = new PermissionCheckService();
|
|
const hasManageBillingPermission = await permissionService.checkPermission({
|
|
userId: ctx.user.id,
|
|
teamId,
|
|
permission: team.isOrganization ? "organization.manageBilling" : "team.manageBilling",
|
|
fallbackRoles: [MembershipRole.ADMIN, MembershipRole.OWNER],
|
|
});
|
|
|
|
if (!hasManageBillingPermission) {
|
|
throw new TRPCError({
|
|
code: "FORBIDDEN",
|
|
message: "Only team owners and admins can view active user breakdown",
|
|
});
|
|
}
|
|
|
|
try {
|
|
const billingPeriodService = new BillingPeriodService();
|
|
const billingInfo = await billingPeriodService.getOrCreateBillingPeriodInfo(teamId);
|
|
|
|
if (billingInfo.billingMode !== "ACTIVE_USERS") {
|
|
return null;
|
|
}
|
|
|
|
if (!billingInfo.subscriptionStart || !billingInfo.subscriptionEnd) {
|
|
return null;
|
|
}
|
|
|
|
const activeUserBillingService = getActiveUserBillingService();
|
|
const breakdown = await activeUserBillingService.getActiveUsersForOrg(
|
|
teamId,
|
|
billingInfo.subscriptionStart,
|
|
billingInfo.subscriptionEnd
|
|
);
|
|
|
|
return {
|
|
activeUsers: breakdown.activeUsers,
|
|
totalMembers: breakdown.totalMembers,
|
|
activeHosts: breakdown.activeHosts,
|
|
activeAttendees: breakdown.activeAttendees,
|
|
periodStart: billingInfo.subscriptionStart.toISOString(),
|
|
periodEnd: billingInfo.subscriptionEnd.toISOString(),
|
|
pricePerSeat: billingInfo.pricePerSeat,
|
|
};
|
|
} catch (error) {
|
|
if (error instanceof TRPCError) {
|
|
throw error;
|
|
}
|
|
log.error("Error getting active user breakdown", error);
|
|
throw new TRPCError({
|
|
code: "INTERNAL_SERVER_ERROR",
|
|
message: "Failed to get active user breakdown",
|
|
});
|
|
}
|
|
};
|
|
|
|
export default getActiveUserBreakdownHandler;
|