diff --git a/src/Core/Services/IPaymentService.cs b/src/Core/Services/IPaymentService.cs index d0eda14c50..dbf3c20b4c 100644 --- a/src/Core/Services/IPaymentService.cs +++ b/src/Core/Services/IPaymentService.cs @@ -16,7 +16,8 @@ namespace Bit.Core.Services Task PurchasePremiumAsync(User user, PaymentMethodType paymentMethodType, string paymentToken, short additionalStorageGb); Task AdjustStorageAsync(IStorableSubscriber storableSubscriber, int additionalStorage, string storagePlanId); - Task CancelSubscriptionAsync(ISubscriber subscriber, bool endOfPeriod = false); + Task CancelSubscriptionAsync(ISubscriber subscriber, bool endOfPeriod = false, + bool skipInAppPurchaseCheck = false); Task ReinstateSubscriptionAsync(ISubscriber subscriber); Task UpdatePaymentMethodAsync(ISubscriber subscriber, PaymentMethodType paymentMethodType, string paymentToken, bool allowInAppPurchases = false); diff --git a/src/Core/Services/IUserService.cs b/src/Core/Services/IUserService.cs index b4486b6564..00368acec7 100644 --- a/src/Core/Services/IUserService.cs +++ b/src/Core/Services/IUserService.cs @@ -49,7 +49,7 @@ namespace Bit.Core.Services Task UpdateLicenseAsync(User user, UserLicense license); Task AdjustStorageAsync(User user, short storageAdjustmentGb); Task ReplacePaymentMethodAsync(User user, string paymentToken, PaymentMethodType paymentMethodType); - Task CancelPremiumAsync(User user, bool? endOfPeriod = null); + Task CancelPremiumAsync(User user, bool? endOfPeriod = null, bool accountDelete = false); Task ReinstatePremiumAsync(User user); Task EnablePremiumAsync(Guid userId, DateTime? expirationDate); Task EnablePremiumAsync(User user, DateTime? expirationDate); diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index d1a26e24f1..b44d374454 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -1049,7 +1049,8 @@ namespace Bit.Core.Services return new Tuple(invoiceNow, paymentIntentClientSecret); } - public async Task CancelSubscriptionAsync(ISubscriber subscriber, bool endOfPeriod = false) + public async Task CancelSubscriptionAsync(ISubscriber subscriber, bool endOfPeriod = false, + bool skipInAppPurchaseCheck = false) { if(subscriber == null) { @@ -1061,7 +1062,7 @@ namespace Bit.Core.Services throw new GatewayException("No subscription."); } - if(!string.IsNullOrWhiteSpace(subscriber.GatewayCustomerId)) + if(!string.IsNullOrWhiteSpace(subscriber.GatewayCustomerId) && !skipInAppPurchaseCheck) { var customerService = new CustomerService(); var customer = await customerService.GetAsync(subscriber.GatewayCustomerId); diff --git a/src/Core/Services/Implementations/UserService.cs b/src/Core/Services/Implementations/UserService.cs index 40a213abf3..96bb17d966 100644 --- a/src/Core/Services/Implementations/UserService.cs +++ b/src/Core/Services/Implementations/UserService.cs @@ -210,7 +210,7 @@ namespace Bit.Core.Services { try { - await CancelPremiumAsync(user); + await CancelPremiumAsync(user, null, true); } catch(GatewayException) { } } @@ -835,7 +835,7 @@ namespace Bit.Core.Services } } - public async Task CancelPremiumAsync(User user, bool? endOfPeriod = null) + public async Task CancelPremiumAsync(User user, bool? endOfPeriod = null, bool accountDelete = false) { var eop = endOfPeriod.GetValueOrDefault(true); if(!endOfPeriod.HasValue && user.PremiumExpirationDate.HasValue && @@ -843,7 +843,7 @@ namespace Bit.Core.Services { eop = false; } - await _paymentService.CancelSubscriptionAsync(user, eop); + await _paymentService.CancelSubscriptionAsync(user, eop, accountDelete); } public async Task ReinstatePremiumAsync(User user)