mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[PM-11730] Remove feature flag: AC-2476-deprecate-stripe-sources-api (#5201)
* Removed feature flag * Run dotnet format * Fix integration tests
This commit is contained in:
parent
99a1dbbe02
commit
f140c7f6c1
@ -2,7 +2,6 @@
|
|||||||
using Bit.Api.AdminConsole.Models.Request.Organizations;
|
using Bit.Api.AdminConsole.Models.Request.Organizations;
|
||||||
using Bit.Api.Billing.Models.Requests;
|
using Bit.Api.Billing.Models.Requests;
|
||||||
using Bit.Api.Billing.Models.Responses;
|
using Bit.Api.Billing.Models.Responses;
|
||||||
using Bit.Core;
|
|
||||||
using Bit.Core.Billing.Models.Sales;
|
using Bit.Core.Billing.Models.Sales;
|
||||||
using Bit.Core.Billing.Services;
|
using Bit.Core.Billing.Services;
|
||||||
using Bit.Core.Context;
|
using Bit.Core.Context;
|
||||||
@ -139,11 +138,6 @@ public class OrganizationBillingController(
|
|||||||
[HttpGet("payment-method")]
|
[HttpGet("payment-method")]
|
||||||
public async Task<IResult> GetPaymentMethodAsync([FromRoute] Guid organizationId)
|
public async Task<IResult> GetPaymentMethodAsync([FromRoute] Guid organizationId)
|
||||||
{
|
{
|
||||||
if (!featureService.IsEnabled(FeatureFlagKeys.AC2476_DeprecateStripeSourcesAPI))
|
|
||||||
{
|
|
||||||
return Error.NotFound();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!await currentContext.EditPaymentMethods(organizationId))
|
if (!await currentContext.EditPaymentMethods(organizationId))
|
||||||
{
|
{
|
||||||
return Error.Unauthorized();
|
return Error.Unauthorized();
|
||||||
@ -168,11 +162,6 @@ public class OrganizationBillingController(
|
|||||||
[FromRoute] Guid organizationId,
|
[FromRoute] Guid organizationId,
|
||||||
[FromBody] UpdatePaymentMethodRequestBody requestBody)
|
[FromBody] UpdatePaymentMethodRequestBody requestBody)
|
||||||
{
|
{
|
||||||
if (!featureService.IsEnabled(FeatureFlagKeys.AC2476_DeprecateStripeSourcesAPI))
|
|
||||||
{
|
|
||||||
return Error.NotFound();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!await currentContext.EditPaymentMethods(organizationId))
|
if (!await currentContext.EditPaymentMethods(organizationId))
|
||||||
{
|
{
|
||||||
return Error.Unauthorized();
|
return Error.Unauthorized();
|
||||||
@ -199,11 +188,6 @@ public class OrganizationBillingController(
|
|||||||
[FromRoute] Guid organizationId,
|
[FromRoute] Guid organizationId,
|
||||||
[FromBody] VerifyBankAccountRequestBody requestBody)
|
[FromBody] VerifyBankAccountRequestBody requestBody)
|
||||||
{
|
{
|
||||||
if (!featureService.IsEnabled(FeatureFlagKeys.AC2476_DeprecateStripeSourcesAPI))
|
|
||||||
{
|
|
||||||
return Error.NotFound();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!await currentContext.EditPaymentMethods(organizationId))
|
if (!await currentContext.EditPaymentMethods(organizationId))
|
||||||
{
|
{
|
||||||
return Error.Unauthorized();
|
return Error.Unauthorized();
|
||||||
@ -229,11 +213,6 @@ public class OrganizationBillingController(
|
|||||||
[HttpGet("tax-information")]
|
[HttpGet("tax-information")]
|
||||||
public async Task<IResult> GetTaxInformationAsync([FromRoute] Guid organizationId)
|
public async Task<IResult> GetTaxInformationAsync([FromRoute] Guid organizationId)
|
||||||
{
|
{
|
||||||
if (!featureService.IsEnabled(FeatureFlagKeys.AC2476_DeprecateStripeSourcesAPI))
|
|
||||||
{
|
|
||||||
return Error.NotFound();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!await currentContext.EditPaymentMethods(organizationId))
|
if (!await currentContext.EditPaymentMethods(organizationId))
|
||||||
{
|
{
|
||||||
return Error.Unauthorized();
|
return Error.Unauthorized();
|
||||||
@ -258,11 +237,6 @@ public class OrganizationBillingController(
|
|||||||
[FromRoute] Guid organizationId,
|
[FromRoute] Guid organizationId,
|
||||||
[FromBody] TaxInformationRequestBody requestBody)
|
[FromBody] TaxInformationRequestBody requestBody)
|
||||||
{
|
{
|
||||||
if (!featureService.IsEnabled(FeatureFlagKeys.AC2476_DeprecateStripeSourcesAPI))
|
|
||||||
{
|
|
||||||
return Error.NotFound();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!await currentContext.EditPaymentMethods(organizationId))
|
if (!await currentContext.EditPaymentMethods(organizationId))
|
||||||
{
|
{
|
||||||
return Error.Unauthorized();
|
return Error.Unauthorized();
|
||||||
@ -292,11 +266,6 @@ public class OrganizationBillingController(
|
|||||||
throw new UnauthorizedAccessException();
|
throw new UnauthorizedAccessException();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!featureService.IsEnabled(FeatureFlagKeys.AC2476_DeprecateStripeSourcesAPI))
|
|
||||||
{
|
|
||||||
return Error.NotFound();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!await currentContext.EditPaymentMethods(organizationId))
|
if (!await currentContext.EditPaymentMethods(organizationId))
|
||||||
{
|
{
|
||||||
return Error.Unauthorized();
|
return Error.Unauthorized();
|
||||||
|
@ -125,28 +125,8 @@ public class CloudOrganizationSignUpCommand(
|
|||||||
}
|
}
|
||||||
else if (plan.Type != PlanType.Free)
|
else if (plan.Type != PlanType.Free)
|
||||||
{
|
{
|
||||||
if (featureService.IsEnabled(FeatureFlagKeys.AC2476_DeprecateStripeSourcesAPI))
|
var sale = OrganizationSale.From(organization, signup);
|
||||||
{
|
await organizationBillingService.Finalize(sale);
|
||||||
var sale = OrganizationSale.From(organization, signup);
|
|
||||||
await organizationBillingService.Finalize(sale);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (signup.PaymentMethodType != null)
|
|
||||||
{
|
|
||||||
await paymentService.PurchaseOrganizationAsync(organization, signup.PaymentMethodType.Value,
|
|
||||||
signup.PaymentToken, plan, signup.AdditionalStorageGb, signup.AdditionalSeats,
|
|
||||||
signup.PremiumAccessAddon, signup.TaxInfo, signup.IsFromProvider, signup.AdditionalSmSeats.GetValueOrDefault(),
|
|
||||||
signup.AdditionalServiceAccounts.GetValueOrDefault(), signup.IsFromSecretsManagerTrial);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
await paymentService.PurchaseOrganizationNoPaymentMethod(organization, plan, signup.AdditionalSeats,
|
|
||||||
signup.PremiumAccessAddon, signup.AdditionalSmSeats.GetValueOrDefault(),
|
|
||||||
signup.AdditionalServiceAccounts.GetValueOrDefault(), signup.IsFromSecretsManagerTrial);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var ownerId = signup.IsFromProvider ? default : signup.Owner.Id;
|
var ownerId = signup.IsFromProvider ? default : signup.Owner.Id;
|
||||||
|
@ -137,7 +137,6 @@ public static class FeatureFlagKeys
|
|||||||
public const string NotificationBarAddLoginImprovements = "notification-bar-add-login-improvements";
|
public const string NotificationBarAddLoginImprovements = "notification-bar-add-login-improvements";
|
||||||
public const string BlockBrowserInjectionsByDomain = "block-browser-injections-by-domain";
|
public const string BlockBrowserInjectionsByDomain = "block-browser-injections-by-domain";
|
||||||
public const string NotificationRefresh = "notification-refresh";
|
public const string NotificationRefresh = "notification-refresh";
|
||||||
public const string AC2476_DeprecateStripeSourcesAPI = "AC-2476-deprecate-stripe-sources-api";
|
|
||||||
public const string PersistPopupView = "persist-popup-view";
|
public const string PersistPopupView = "persist-popup-view";
|
||||||
public const string CipherKeyEncryption = "cipher-key-encryption";
|
public const string CipherKeyEncryption = "cipher-key-encryption";
|
||||||
public const string EnableNewCardCombinedExpiryAutofill = "enable-new-card-combined-expiry-autofill";
|
public const string EnableNewCardCombinedExpiryAutofill = "enable-new-card-combined-expiry-autofill";
|
||||||
|
@ -224,27 +224,8 @@ public class UpgradeOrganizationPlanCommand : IUpgradeOrganizationPlanCommand
|
|||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(organization.GatewaySubscriptionId))
|
if (string.IsNullOrWhiteSpace(organization.GatewaySubscriptionId))
|
||||||
{
|
{
|
||||||
if (_featureService.IsEnabled(FeatureFlagKeys.AC2476_DeprecateStripeSourcesAPI))
|
var sale = OrganizationSale.From(organization, upgrade);
|
||||||
{
|
await _organizationBillingService.Finalize(sale);
|
||||||
var sale = OrganizationSale.From(organization, upgrade);
|
|
||||||
await _organizationBillingService.Finalize(sale);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
paymentIntentClientSecret = await _paymentService.UpgradeFreeOrganizationAsync(organization,
|
|
||||||
newPlan, upgrade);
|
|
||||||
success = string.IsNullOrWhiteSpace(paymentIntentClientSecret);
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
await _paymentService.CancelAndRecoverChargesAsync(organization);
|
|
||||||
organization.GatewayCustomerId = null;
|
|
||||||
await _organizationService.ReplaceAndUpdateCacheAsync(organization);
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -933,18 +933,8 @@ public class UserService : UserManager<User>, IUserService, IDisposable
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var deprecateStripeSourcesAPI = _featureService.IsEnabled(FeatureFlagKeys.AC2476_DeprecateStripeSourcesAPI);
|
var sale = PremiumUserSale.From(user, paymentMethodType, paymentToken, taxInfo, additionalStorageGb);
|
||||||
|
await _premiumUserBillingService.Finalize(sale);
|
||||||
if (deprecateStripeSourcesAPI)
|
|
||||||
{
|
|
||||||
var sale = PremiumUserSale.From(user, paymentMethodType, paymentToken, taxInfo, additionalStorageGb);
|
|
||||||
await _premiumUserBillingService.Finalize(sale);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
paymentIntentClientSecret = await _paymentService.PurchasePremiumAsync(user, paymentMethodType,
|
|
||||||
paymentToken, additionalStorageGb, taxInfo);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
user.Premium = true;
|
user.Premium = true;
|
||||||
|
@ -36,7 +36,13 @@ public static class OrganizationTestHelpers
|
|||||||
OwnerKey = ownerKey,
|
OwnerKey = ownerKey,
|
||||||
Owner = owner,
|
Owner = owner,
|
||||||
AdditionalSeats = passwordManagerSeats,
|
AdditionalSeats = passwordManagerSeats,
|
||||||
PaymentMethodType = paymentMethod
|
PaymentMethodType = paymentMethod,
|
||||||
|
PaymentToken = "TOKEN",
|
||||||
|
TaxInfo = new TaxInfo
|
||||||
|
{
|
||||||
|
BillingAddressCountry = "US",
|
||||||
|
BillingAddressPostalCode = "12345"
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Debug.Assert(signUpResult.OrganizationUser is not null);
|
Debug.Assert(signUpResult.OrganizationUser is not null);
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
using Bit.Core.AdminConsole.Entities;
|
using Bit.Core.AdminConsole.Entities;
|
||||||
using Bit.Core.AdminConsole.OrganizationFeatures.Organizations;
|
using Bit.Core.AdminConsole.OrganizationFeatures.Organizations;
|
||||||
using Bit.Core.Billing.Enums;
|
using Bit.Core.Billing.Enums;
|
||||||
|
using Bit.Core.Billing.Models.Sales;
|
||||||
|
using Bit.Core.Billing.Services;
|
||||||
using Bit.Core.Entities;
|
using Bit.Core.Entities;
|
||||||
using Bit.Core.Enums;
|
using Bit.Core.Enums;
|
||||||
using Bit.Core.Exceptions;
|
using Bit.Core.Exceptions;
|
||||||
using Bit.Core.Models.Business;
|
using Bit.Core.Models.Business;
|
||||||
using Bit.Core.Models.Data;
|
using Bit.Core.Models.Data;
|
||||||
using Bit.Core.Models.StaticStore;
|
|
||||||
using Bit.Core.Repositories;
|
using Bit.Core.Repositories;
|
||||||
using Bit.Core.Services;
|
|
||||||
using Bit.Core.Tools.Enums;
|
using Bit.Core.Tools.Enums;
|
||||||
using Bit.Core.Tools.Models.Business;
|
using Bit.Core.Tools.Models.Business;
|
||||||
using Bit.Core.Tools.Services;
|
using Bit.Core.Tools.Services;
|
||||||
@ -60,20 +60,16 @@ public class CloudICloudOrganizationSignUpCommandTests
|
|||||||
Assert.NotNull(result.Organization);
|
Assert.NotNull(result.Organization);
|
||||||
Assert.NotNull(result.OrganizationUser);
|
Assert.NotNull(result.OrganizationUser);
|
||||||
|
|
||||||
await sutProvider.GetDependency<IPaymentService>().Received(1).PurchaseOrganizationAsync(
|
await sutProvider.GetDependency<IOrganizationBillingService>().Received(1).Finalize(
|
||||||
Arg.Any<Organization>(),
|
Arg.Is<OrganizationSale>(sale =>
|
||||||
signup.PaymentMethodType.Value,
|
sale.CustomerSetup.TokenizedPaymentSource.Type == signup.PaymentMethodType.Value &&
|
||||||
signup.PaymentToken,
|
sale.CustomerSetup.TokenizedPaymentSource.Token == signup.PaymentToken &&
|
||||||
plan,
|
sale.CustomerSetup.TaxInformation.Country == signup.TaxInfo.BillingAddressCountry &&
|
||||||
signup.AdditionalStorageGb,
|
sale.CustomerSetup.TaxInformation.PostalCode == signup.TaxInfo.BillingAddressPostalCode &&
|
||||||
signup.AdditionalSeats,
|
sale.SubscriptionSetup.Plan == plan &&
|
||||||
signup.PremiumAccessAddon,
|
sale.SubscriptionSetup.PasswordManagerOptions.Seats == signup.AdditionalSeats &&
|
||||||
signup.TaxInfo,
|
sale.SubscriptionSetup.PasswordManagerOptions.Storage == signup.AdditionalStorageGb &&
|
||||||
false,
|
sale.SubscriptionSetup.SecretsManagerOptions == null));
|
||||||
signup.AdditionalSmSeats.GetValueOrDefault(),
|
|
||||||
signup.AdditionalServiceAccounts.GetValueOrDefault(),
|
|
||||||
signup.UseSecretsManager
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
@ -155,20 +151,17 @@ public class CloudICloudOrganizationSignUpCommandTests
|
|||||||
Assert.NotNull(result.Organization);
|
Assert.NotNull(result.Organization);
|
||||||
Assert.NotNull(result.OrganizationUser);
|
Assert.NotNull(result.OrganizationUser);
|
||||||
|
|
||||||
await sutProvider.GetDependency<IPaymentService>().Received(1).PurchaseOrganizationAsync(
|
await sutProvider.GetDependency<IOrganizationBillingService>().Received(1).Finalize(
|
||||||
Arg.Any<Organization>(),
|
Arg.Is<OrganizationSale>(sale =>
|
||||||
signup.PaymentMethodType.Value,
|
sale.CustomerSetup.TokenizedPaymentSource.Type == signup.PaymentMethodType.Value &&
|
||||||
signup.PaymentToken,
|
sale.CustomerSetup.TokenizedPaymentSource.Token == signup.PaymentToken &&
|
||||||
Arg.Is<Plan>(plan),
|
sale.CustomerSetup.TaxInformation.Country == signup.TaxInfo.BillingAddressCountry &&
|
||||||
signup.AdditionalStorageGb,
|
sale.CustomerSetup.TaxInformation.PostalCode == signup.TaxInfo.BillingAddressPostalCode &&
|
||||||
signup.AdditionalSeats,
|
sale.SubscriptionSetup.Plan == plan &&
|
||||||
signup.PremiumAccessAddon,
|
sale.SubscriptionSetup.PasswordManagerOptions.Seats == signup.AdditionalSeats &&
|
||||||
signup.TaxInfo,
|
sale.SubscriptionSetup.PasswordManagerOptions.Storage == signup.AdditionalStorageGb &&
|
||||||
false,
|
sale.SubscriptionSetup.SecretsManagerOptions.Seats == signup.AdditionalSmSeats &&
|
||||||
signup.AdditionalSmSeats.GetValueOrDefault(),
|
sale.SubscriptionSetup.SecretsManagerOptions.ServiceAccounts == signup.AdditionalServiceAccounts));
|
||||||
signup.AdditionalServiceAccounts.GetValueOrDefault(),
|
|
||||||
signup.IsFromSecretsManagerTrial
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
|
@ -139,7 +139,7 @@ public class UpgradeOrganizationPlanCommandTests
|
|||||||
&& o.SmServiceAccounts == plan.SecretsManager.BaseServiceAccount + upgrade.AdditionalServiceAccounts));
|
&& o.SmServiceAccounts == plan.SecretsManager.BaseServiceAccount + upgrade.AdditionalServiceAccounts));
|
||||||
|
|
||||||
Assert.True(result.Item1);
|
Assert.True(result.Item1);
|
||||||
Assert.NotNull(result.Item2);
|
Assert.Null(result.Item2);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Theory, FreeOrganizationUpgradeCustomize]
|
[Theory, FreeOrganizationUpgradeCustomize]
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
using AspNetCoreRateLimit;
|
using AspNetCoreRateLimit;
|
||||||
using Bit.Core.Auth.Services;
|
using Bit.Core.Auth.Services;
|
||||||
|
using Bit.Core.Billing.Services;
|
||||||
using Bit.Core.Platform.Push;
|
using Bit.Core.Platform.Push;
|
||||||
using Bit.Core.Platform.Push.Internal;
|
using Bit.Core.Platform.Push.Internal;
|
||||||
using Bit.Core.Repositories;
|
using Bit.Core.Repositories;
|
||||||
@ -247,6 +248,11 @@ public abstract class WebApplicationFactoryBase<T> : WebApplicationFactory<T>
|
|||||||
var stripePaymentService = services.First(sd => sd.ServiceType == typeof(IPaymentService));
|
var stripePaymentService = services.First(sd => sd.ServiceType == typeof(IPaymentService));
|
||||||
services.Remove(stripePaymentService);
|
services.Remove(stripePaymentService);
|
||||||
services.AddSingleton(Substitute.For<IPaymentService>());
|
services.AddSingleton(Substitute.For<IPaymentService>());
|
||||||
|
|
||||||
|
var organizationBillingService =
|
||||||
|
services.First(sd => sd.ServiceType == typeof(IOrganizationBillingService));
|
||||||
|
services.Remove(organizationBillingService);
|
||||||
|
services.AddSingleton(Substitute.For<IOrganizationBillingService>());
|
||||||
});
|
});
|
||||||
|
|
||||||
foreach (var configureTestService in _configureTestServices)
|
foreach (var configureTestService in _configureTestServices)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user