mirror of
https://github.com/bitwarden/server.git
synced 2025-02-17 02:01:53 +01:00
* [PM-14373] Introduce SecurityTask entity and related enums * [PM-14373] Add Dapper SecurityTask repository * [PM-14373] Introduce MSSQL table, view, and stored procedures * [PM-14373] Add EF SecurityTask repository and type configurations * [PM-14373] Add EF Migration * [PM-14373] Add integration tests * [PM-14373] Formatting * Typo Co-authored-by: Matt Bishop <mbishop@bitwarden.com> * Typo Co-authored-by: Matt Bishop <mbishop@bitwarden.com> * [PM-14373] Remove DeleteById sproc * [PM-14373] SQL formatting --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
70 lines
4.1 KiB
C#
70 lines
4.1 KiB
C#
using Bit.Core.AdminConsole.Repositories;
|
|
using Bit.Core.Auth.Repositories;
|
|
using Bit.Core.Billing.Repositories;
|
|
using Bit.Core.NotificationCenter.Repositories;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Core.SecretsManager.Repositories;
|
|
using Bit.Core.Tools.Repositories;
|
|
using Bit.Core.Vault.Repositories;
|
|
using Bit.Infrastructure.Dapper.AdminConsole.Repositories;
|
|
using Bit.Infrastructure.Dapper.Auth.Repositories;
|
|
using Bit.Infrastructure.Dapper.Billing.Repositories;
|
|
using Bit.Infrastructure.Dapper.NotificationCenter.Repositories;
|
|
using Bit.Infrastructure.Dapper.Repositories;
|
|
using Bit.Infrastructure.Dapper.SecretsManager.Repositories;
|
|
using Bit.Infrastructure.Dapper.Tools.Repositories;
|
|
using Bit.Infrastructure.Dapper.Vault.Repositories;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Bit.Infrastructure.Dapper;
|
|
|
|
public static class DapperServiceCollectionExtensions
|
|
{
|
|
public static void AddDapperRepositories(this IServiceCollection services, bool selfHosted)
|
|
{
|
|
services.AddSingleton<IApiKeyRepository, ApiKeyRepository>();
|
|
services.AddSingleton<IAuthRequestRepository, AuthRequestRepository>();
|
|
services.AddSingleton<ICipherRepository, CipherRepository>();
|
|
services.AddSingleton<ICollectionCipherRepository, CollectionCipherRepository>();
|
|
services.AddSingleton<ICollectionRepository, CollectionRepository>();
|
|
services.AddSingleton<IDeviceRepository, DeviceRepository>();
|
|
services.AddSingleton<IEmergencyAccessRepository, EmergencyAccessRepository>();
|
|
services.AddSingleton<IEmergencyAccessRepository, EmergencyAccessRepository>();
|
|
services.AddSingleton<IFolderRepository, FolderRepository>();
|
|
services.AddSingleton<IGrantRepository, GrantRepository>();
|
|
services.AddSingleton<IGroupRepository, GroupRepository>();
|
|
services.AddSingleton<IInstallationRepository, InstallationRepository>();
|
|
services.AddSingleton<IMaintenanceRepository, MaintenanceRepository>();
|
|
services.AddSingleton<IOrganizationApiKeyRepository, OrganizationApiKeyRepository>();
|
|
services.AddSingleton<IOrganizationConnectionRepository, OrganizationConnectionRepository>();
|
|
services.AddSingleton<IOrganizationRepository, OrganizationRepository>();
|
|
services.AddSingleton<IOrganizationSponsorshipRepository, OrganizationSponsorshipRepository>();
|
|
services.AddSingleton<IOrganizationUserRepository, OrganizationUserRepository>();
|
|
services.AddSingleton<IPolicyRepository, PolicyRepository>();
|
|
services.AddSingleton<IProviderOrganizationRepository, ProviderOrganizationRepository>();
|
|
services.AddSingleton<IProviderRepository, ProviderRepository>();
|
|
services.AddSingleton<IProviderUserRepository, ProviderUserRepository>();
|
|
services.AddSingleton<ISendRepository, SendRepository>();
|
|
services.AddSingleton<ISsoConfigRepository, SsoConfigRepository>();
|
|
services.AddSingleton<ISsoUserRepository, SsoUserRepository>();
|
|
services.AddSingleton<ITaxRateRepository, TaxRateRepository>();
|
|
services.AddSingleton<ITransactionRepository, TransactionRepository>();
|
|
services.AddSingleton<IUserRepository, UserRepository>();
|
|
services.AddSingleton<IOrganizationDomainRepository, OrganizationDomainRepository>();
|
|
services.AddSingleton<IWebAuthnCredentialRepository, WebAuthnCredentialRepository>();
|
|
services.AddSingleton<IProviderPlanRepository, ProviderPlanRepository>();
|
|
services.AddSingleton<IProviderInvoiceItemRepository, ProviderInvoiceItemRepository>();
|
|
services.AddSingleton<INotificationRepository, NotificationRepository>();
|
|
services.AddSingleton<INotificationStatusRepository, NotificationStatusRepository>();
|
|
services
|
|
.AddSingleton<IClientOrganizationMigrationRecordRepository, ClientOrganizationMigrationRecordRepository>();
|
|
services.AddSingleton<IPasswordHealthReportApplicationRepository, PasswordHealthReportApplicationRepository>();
|
|
services.AddSingleton<ISecurityTaskRepository, SecurityTaskRepository>();
|
|
|
|
if (selfHosted)
|
|
{
|
|
services.AddSingleton<IEventRepository, EventRepository>();
|
|
}
|
|
}
|
|
}
|