// ReSharper disable SwitchExpressionHandlesSomeKnownEnumValuesWithExceptionInDefault #nullable enable using Bit.Core.AdminConsole.Entities.Provider; using Bit.Core.AdminConsole.Enums.Provider; using Bit.Core.Billing; using Bit.Core.Billing.Enums; using Stripe; namespace Bit.Commercial.Core.Billing; public static class ProviderPriceAdapter { public static class MSP { public static class Active { public const string Enterprise = "provider-portal-enterprise-monthly-2025"; public const string Teams = "provider-portal-teams-monthly-2025"; } public static class Legacy { public const string Enterprise = "password-manager-provider-portal-enterprise-monthly-2024"; public const string Teams = "password-manager-provider-portal-teams-monthly-2024"; public static readonly List List = [Enterprise, Teams]; } } public static class BusinessUnit { public static class Active { public const string Annually = "business-unit-portal-enterprise-annually-2025"; public const string Monthly = "business-unit-portal-enterprise-monthly-2025"; } public static class Legacy { public const string Annually = "password-manager-provider-portal-enterprise-annually-2024"; public const string Monthly = "password-manager-provider-portal-enterprise-monthly-2024"; public static readonly List List = [Annually, Monthly]; } } /// /// Uses the 's and to determine /// whether the is on active or legacy pricing and then returns a Stripe price ID for the provided /// based on that determination. /// /// The provider to get the Stripe price ID for. /// The provider's subscription. /// The plan type correlating to the desired Stripe price ID. /// A Stripe ID. /// Thrown when the provider's type is not or . /// Thrown when the provided does not relate to a Stripe price ID. public static string GetPriceId( Provider provider, Subscription subscription, PlanType planType) { var priceIds = subscription.Items.Select(item => item.Price.Id); var invalidPlanType = new BillingException(message: $"PlanType {planType} does not have an associated provider price in Stripe"); return provider.Type switch { ProviderType.Msp => MSP.Legacy.List.Intersect(priceIds).Any() ? planType switch { PlanType.TeamsMonthly => MSP.Legacy.Teams, PlanType.EnterpriseMonthly => MSP.Legacy.Enterprise, _ => throw invalidPlanType } : planType switch { PlanType.TeamsMonthly => MSP.Active.Teams, PlanType.EnterpriseMonthly => MSP.Active.Enterprise, _ => throw invalidPlanType }, ProviderType.MultiOrganizationEnterprise => BusinessUnit.Legacy.List.Intersect(priceIds).Any() ? planType switch { PlanType.EnterpriseAnnually => BusinessUnit.Legacy.Annually, PlanType.EnterpriseMonthly => BusinessUnit.Legacy.Monthly, _ => throw invalidPlanType } : planType switch { PlanType.EnterpriseAnnually => BusinessUnit.Active.Annually, PlanType.EnterpriseMonthly => BusinessUnit.Active.Monthly, _ => throw invalidPlanType }, _ => throw new BillingException( $"ProviderType {provider.Type} does not have any associated provider price IDs") }; } /// /// Uses the 's to return the active Stripe price ID for the provided /// . /// /// The provider to get the Stripe price ID for. /// The plan type correlating to the desired Stripe price ID. /// A Stripe ID. /// Thrown when the provider's type is not or . /// Thrown when the provided does not relate to a Stripe price ID. public static string GetActivePriceId( Provider provider, PlanType planType) { var invalidPlanType = new BillingException(message: $"PlanType {planType} does not have an associated provider price in Stripe"); return provider.Type switch { ProviderType.Msp => planType switch { PlanType.TeamsMonthly => MSP.Active.Teams, PlanType.EnterpriseMonthly => MSP.Active.Enterprise, _ => throw invalidPlanType }, ProviderType.MultiOrganizationEnterprise => planType switch { PlanType.EnterpriseAnnually => BusinessUnit.Active.Annually, PlanType.EnterpriseMonthly => BusinessUnit.Active.Monthly, _ => throw invalidPlanType }, _ => throw new BillingException( $"ProviderType {provider.Type} does not have any associated provider price IDs") }; } }