From 9b3d9f4488a8761b452336a650b1528e6513aa9d Mon Sep 17 00:00:00 2001 From: cyprain-okeke <108260115+cyprain-okeke@users.noreply.github.com> Date: Tue, 11 Apr 2023 17:09:38 +0100 Subject: [PATCH] [PM 202] Activate Organization when Stripe Subscription is Activated (#2820) * Enable an org if the subscription is updated to active * Remove expiration date update when activating Org * improving readability of the code change * Remove unnecessary directive * Resolving a pr comment * Refactoring the code to check to vale before assign * resolve the lint issue --- src/Billing/Controllers/StripeController.cs | 36 +++++++++++++++------ 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/src/Billing/Controllers/StripeController.cs b/src/Billing/Controllers/StripeController.cs index 436a6e3f3f..f6ecb2ad12 100644 --- a/src/Billing/Controllers/StripeController.cs +++ b/src/Billing/Controllers/StripeController.cs @@ -115,41 +115,57 @@ public class StripeController : Controller { var subscription = await GetSubscriptionAsync(parsedEvent, true); var ids = GetIdsFromMetaData(subscription.Metadata); - + var organizationId = ids.Item1 ?? Guid.Empty; + var userId = ids.Item2 ?? Guid.Empty; var subCanceled = subDeleted && subscription.Status == "canceled"; var subUnpaid = subUpdated && subscription.Status == "unpaid"; + var subActive = subUpdated && subscription.Status == "active"; var subIncompleteExpired = subUpdated && subscription.Status == "incomplete_expired"; if (subCanceled || subUnpaid || subIncompleteExpired) { // org - if (ids.Item1.HasValue) + if (organizationId != null && organizationId != Guid.Empty) { - await _organizationService.DisableAsync(ids.Item1.Value, subscription.CurrentPeriodEnd); + await _organizationService.DisableAsync(organizationId, subscription.CurrentPeriodEnd); } // user - else if (ids.Item2.HasValue) + else if (userId != null && userId != Guid.Empty) { - await _userService.DisablePremiumAsync(ids.Item2.Value, subscription.CurrentPeriodEnd); + await _userService.DisablePremiumAsync(userId, subscription.CurrentPeriodEnd); + } + } + + if (subActive) + { + + if (organizationId != null && organizationId != Guid.Empty) + { + await _organizationService.EnableAsync(organizationId); + } + else if (userId != null && userId != Guid.Empty) + { + await _userService.EnablePremiumAsync(userId, + subscription.CurrentPeriodEnd); } } if (subUpdated) { // org - if (ids.Item1.HasValue) + if (organizationId != null && organizationId != Guid.Empty) { - await _organizationService.UpdateExpirationDateAsync(ids.Item1.Value, + await _organizationService.UpdateExpirationDateAsync(organizationId, subscription.CurrentPeriodEnd); if (IsSponsoredSubscription(subscription)) { - await _organizationSponsorshipRenewCommand.UpdateExpirationDateAsync(ids.Item1.Value, subscription.CurrentPeriodEnd); + await _organizationSponsorshipRenewCommand.UpdateExpirationDateAsync(organizationId, subscription.CurrentPeriodEnd); } } // user - else if (ids.Item2.HasValue) + else if (userId != null && userId != Guid.Empty) { - await _userService.UpdatePremiumExpirationAsync(ids.Item2.Value, + await _userService.UpdatePremiumExpirationAsync(userId, subscription.CurrentPeriodEnd); } }