From cb1c12794ff17220ee8b63081773a94f461977e8 Mon Sep 17 00:00:00 2001
From: Alex Morask <144709477+amorask-bitwarden@users.noreply.github.com>
Date: Thu, 6 Mar 2025 13:44:10 -0500
Subject: [PATCH] Derive item add on status from price metadata (#5389)
---
src/Core/Models/Business/SubscriptionInfo.cs | 7 +++++--
src/Core/Utilities/StaticStore.cs | 17 -----------------
2 files changed, 5 insertions(+), 19 deletions(-)
diff --git a/src/Core/Models/Business/SubscriptionInfo.cs b/src/Core/Models/Business/SubscriptionInfo.cs
index c9c3b31c7f..78a995fb94 100644
--- a/src/Core/Models/Business/SubscriptionInfo.cs
+++ b/src/Core/Models/Business/SubscriptionInfo.cs
@@ -73,8 +73,11 @@ public class SubscriptionInfo
Name = item.Plan.Nickname;
Amount = item.Plan.Amount.GetValueOrDefault() / 100M;
Interval = item.Plan.Interval;
- AddonSubscriptionItem =
- Utilities.StaticStore.IsAddonSubscriptionItem(item.Plan.Id);
+
+ if (item.Metadata != null)
+ {
+ AddonSubscriptionItem = item.Metadata.TryGetValue("isAddOn", out var value) && bool.Parse(value);
+ }
}
Quantity = (int)item.Quantity;
diff --git a/src/Core/Utilities/StaticStore.cs b/src/Core/Utilities/StaticStore.cs
index 24e9ccd7bd..1cae361e29 100644
--- a/src/Core/Utilities/StaticStore.cs
+++ b/src/Core/Utilities/StaticStore.cs
@@ -158,21 +158,4 @@ public static class StaticStore
public static SponsoredPlan GetSponsoredPlan(PlanSponsorshipType planSponsorshipType) =>
SponsoredPlans.FirstOrDefault(p => p.PlanSponsorshipType == planSponsorshipType);
-
- ///
- /// Determines if the stripe plan id is an addon item by checking if the provided stripe plan id
- /// matches either the or
- /// in any .
- ///
- ///
- ///
- /// True if the stripePlanId is a addon product, false otherwise
- ///
- public static bool IsAddonSubscriptionItem(string stripePlanId)
- {
- // TODO: PRICING -> https://bitwarden.atlassian.net/browse/PM-16844
- return Plans.Any(p =>
- p.PasswordManager.StripeStoragePlanId == stripePlanId ||
- (p.SecretsManager?.StripeServiceAccountPlanId == stripePlanId));
- }
}