mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
* ignore serena * removing unused properties from org metadata * removing further properties that can already be fetched on the client side using available data * new vnext endpoint for org metadata plus caching metadata first pass including new feature flag # Conflicts: # src/Core/Constants.cs * [PM-25379] decided against cache and new query shouldn't use the service * pr feedback removing unneeded response model * run dotnet format
54 lines
2.6 KiB
C#
54 lines
2.6 KiB
C#
using Bit.Core.Billing.Caches;
|
|
using Bit.Core.Billing.Caches.Implementations;
|
|
using Bit.Core.Billing.Licenses.Extensions;
|
|
using Bit.Core.Billing.Organizations.Commands;
|
|
using Bit.Core.Billing.Organizations.Queries;
|
|
using Bit.Core.Billing.Organizations.Services;
|
|
using Bit.Core.Billing.Payment;
|
|
using Bit.Core.Billing.Premium.Commands;
|
|
using Bit.Core.Billing.Pricing;
|
|
using Bit.Core.Billing.Services;
|
|
using Bit.Core.Billing.Services.Implementations;
|
|
using Bit.Core.Billing.Subscriptions.Commands;
|
|
using Bit.Core.Billing.Tax.Services;
|
|
using Bit.Core.Billing.Tax.Services.Implementations;
|
|
|
|
namespace Bit.Core.Billing.Extensions;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
public static class ServiceCollectionExtensions
|
|
{
|
|
public static void AddBillingOperations(this IServiceCollection services)
|
|
{
|
|
services.AddSingleton<ITaxService, TaxService>();
|
|
services.AddTransient<IOrganizationBillingService, OrganizationBillingService>();
|
|
services.AddTransient<IPremiumUserBillingService, PremiumUserBillingService>();
|
|
services.AddTransient<ISetupIntentCache, SetupIntentDistributedCache>();
|
|
services.AddTransient<ISubscriberService, SubscriberService>();
|
|
services.AddLicenseServices();
|
|
services.AddPricingClient();
|
|
services.AddPaymentOperations();
|
|
services.AddOrganizationLicenseCommandsQueries();
|
|
services.AddPremiumCommands();
|
|
services.AddTransient<IGetOrganizationMetadataQuery, GetOrganizationMetadataQuery>();
|
|
services.AddTransient<IGetOrganizationWarningsQuery, GetOrganizationWarningsQuery>();
|
|
services.AddTransient<IRestartSubscriptionCommand, RestartSubscriptionCommand>();
|
|
services.AddTransient<IPreviewOrganizationTaxCommand, PreviewOrganizationTaxCommand>();
|
|
}
|
|
|
|
private static void AddOrganizationLicenseCommandsQueries(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<IGetCloudOrganizationLicenseQuery, GetCloudOrganizationLicenseQuery>();
|
|
services.AddScoped<IGetSelfHostedOrganizationLicenseQuery, GetSelfHostedOrganizationLicenseQuery>();
|
|
services.AddScoped<IUpdateOrganizationLicenseCommand, UpdateOrganizationLicenseCommand>();
|
|
}
|
|
|
|
private static void AddPremiumCommands(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<ICreatePremiumCloudHostedSubscriptionCommand, CreatePremiumCloudHostedSubscriptionCommand>();
|
|
services.AddScoped<ICreatePremiumSelfHostedSubscriptionCommand, CreatePremiumSelfHostedSubscriptionCommand>();
|
|
services.AddTransient<IPreviewPremiumTaxCommand, PreviewPremiumTaxCommand>();
|
|
}
|
|
}
|