using Bit.Core.Models.Business.Tokenables; using Bit.Core.OrganizationFeatures.Groups; using Bit.Core.OrganizationFeatures.Groups.Interfaces; using Bit.Core.OrganizationFeatures.OrganizationApiKeys; using Bit.Core.OrganizationFeatures.OrganizationApiKeys.Interfaces; using Bit.Core.OrganizationFeatures.OrganizationCollections; using Bit.Core.OrganizationFeatures.OrganizationCollections.Interfaces; using Bit.Core.OrganizationFeatures.OrganizationConnections; using Bit.Core.OrganizationFeatures.OrganizationConnections.Interfaces; using Bit.Core.OrganizationFeatures.OrganizationDomains; using Bit.Core.OrganizationFeatures.OrganizationDomains.Interfaces; using Bit.Core.OrganizationFeatures.OrganizationLicenses; using Bit.Core.OrganizationFeatures.OrganizationLicenses.Interfaces; using Bit.Core.OrganizationFeatures.OrganizationSponsorships.FamiliesForEnterprise; using Bit.Core.OrganizationFeatures.OrganizationSponsorships.FamiliesForEnterprise.Cloud; using Bit.Core.OrganizationFeatures.OrganizationSponsorships.FamiliesForEnterprise.Interfaces; using Bit.Core.OrganizationFeatures.OrganizationSponsorships.FamiliesForEnterprise.SelfHosted; using Bit.Core.SecretsManager.Commands.EnableAccessSecretsManager; using Bit.Core.SecretsManager.Commands.EnableAccessSecretsManager.Interfaces; using Bit.Core.Services; using Bit.Core.Settings; using Bit.Core.Tokens; using Microsoft.AspNetCore.DataProtection; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; namespace Bit.Core.OrganizationFeatures; public static class OrganizationServiceCollectionExtensions { public static void AddOrganizationServices(this IServiceCollection services, IGlobalSettings globalSettings) { services.AddScoped(); services.AddScoped(); services.AddTokenizers(); services.AddOrganizationGroupCommands(); services.AddOrganizationConnectionCommands(); services.AddOrganizationSponsorshipCommands(globalSettings); services.AddOrganizationApiKeyCommandsQueries(); services.AddOrganizationCollectionCommands(); services.AddOrganizationGroupCommands(); services.AddOrganizationLicenseCommandsQueries(); services.AddOrganizationDomainCommandsQueries(); } private static void AddOrganizationConnectionCommands(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); } private static void AddOrganizationSponsorshipCommands(this IServiceCollection services, IGlobalSettings globalSettings) { services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); if (globalSettings.SelfHosted) { services.AddScoped(); } else { services.AddScoped(); } } private static void AddOrganizationApiKeyCommandsQueries(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); } public static void AddOrganizationCollectionCommands(this IServiceCollection services) { services.AddScoped(); } private static void AddOrganizationGroupCommands(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); } private static void AddOrganizationLicenseCommandsQueries(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); } private static void AddOrganizationDomainCommandsQueries(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); } private static void AddTokenizers(this IServiceCollection services) { services.AddSingleton>(serviceProvider => new DataProtectorTokenFactory( OrganizationSponsorshipOfferTokenable.ClearTextPrefix, OrganizationSponsorshipOfferTokenable.DataProtectorPurpose, serviceProvider.GetDataProtectionProvider(), serviceProvider.GetRequiredService>>()) ); } }