|
|
@ -134,28 +134,28 @@ namespace Ombi.DependencyInjection
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void RegisterStore(this IServiceCollection services) {
|
|
|
|
public static void RegisterStore(this IServiceCollection services) {
|
|
|
|
services.AddEntityFrameworkSqlite().AddDbContext<OmbiContext>();
|
|
|
|
services.AddDbContext<OmbiContext>();
|
|
|
|
services.AddEntityFrameworkSqlite().AddDbContext<SettingsContext>();
|
|
|
|
services.AddDbContext<SettingsContext>();
|
|
|
|
services.AddEntityFrameworkSqlite().AddDbContext<ExternalContext>();
|
|
|
|
services.AddDbContext<ExternalContext>();
|
|
|
|
|
|
|
|
|
|
|
|
services.AddScoped<IOmbiContext, OmbiContext>(); // https://docs.microsoft.com/en-us/aspnet/core/data/entity-framework-6
|
|
|
|
services.AddScoped<IOmbiContext, OmbiContext>(); // https://docs.microsoft.com/en-us/aspnet/core/data/entity-framework-6
|
|
|
|
services.AddScoped<ISettingsContext, SettingsContext>(); // https://docs.microsoft.com/en-us/aspnet/core/data/entity-framework-6
|
|
|
|
services.AddScoped<ISettingsContext, SettingsContext>(); // https://docs.microsoft.com/en-us/aspnet/core/data/entity-framework-6
|
|
|
|
services.AddScoped<IExternalContext, ExternalContext>(); // https://docs.microsoft.com/en-us/aspnet/core/data/entity-framework-6
|
|
|
|
services.AddScoped<IExternalContext, ExternalContext>(); // https://docs.microsoft.com/en-us/aspnet/core/data/entity-framework-6
|
|
|
|
services.AddTransient<ISettingsRepository, SettingsJsonRepository>();
|
|
|
|
services.AddScoped<ISettingsRepository, SettingsJsonRepository>();
|
|
|
|
services.AddTransient<ISettingsResolver, SettingsResolver>();
|
|
|
|
services.AddScoped<ISettingsResolver, SettingsResolver>();
|
|
|
|
services.AddTransient<IPlexContentRepository, PlexServerContentRepository>();
|
|
|
|
services.AddScoped<IPlexContentRepository, PlexServerContentRepository>();
|
|
|
|
services.AddTransient<IEmbyContentRepository, EmbyContentRepository>();
|
|
|
|
services.AddScoped<IEmbyContentRepository, EmbyContentRepository>();
|
|
|
|
services.AddTransient<INotificationTemplatesRepository, NotificationTemplatesRepository>();
|
|
|
|
services.AddScoped<INotificationTemplatesRepository, NotificationTemplatesRepository>();
|
|
|
|
|
|
|
|
|
|
|
|
services.AddTransient<ITvRequestRepository, TvRequestRepository>();
|
|
|
|
services.AddScoped<ITvRequestRepository, TvRequestRepository>();
|
|
|
|
services.AddTransient<IMovieRequestRepository, MovieRequestRepository>();
|
|
|
|
services.AddScoped<IMovieRequestRepository, MovieRequestRepository>();
|
|
|
|
services.AddTransient<IMusicRequestRepository, MusicRequestRepository>();
|
|
|
|
services.AddScoped<IMusicRequestRepository, MusicRequestRepository>();
|
|
|
|
services.AddTransient<IAuditRepository, AuditRepository>();
|
|
|
|
services.AddScoped<IAuditRepository, AuditRepository>();
|
|
|
|
services.AddTransient<IApplicationConfigRepository, ApplicationConfigRepository>();
|
|
|
|
services.AddScoped<IApplicationConfigRepository, ApplicationConfigRepository>();
|
|
|
|
services.AddTransient<ITokenRepository, TokenRepository>();
|
|
|
|
services.AddScoped<ITokenRepository, TokenRepository>();
|
|
|
|
services.AddTransient(typeof(ISettingsService<>), typeof(SettingsService<>));
|
|
|
|
services.AddScoped(typeof(ISettingsService<>), typeof(SettingsService<>));
|
|
|
|
services.AddTransient(typeof(IRepository<>), typeof(Repository<>));
|
|
|
|
services.AddScoped(typeof(IRepository<>), typeof(Repository<>));
|
|
|
|
services.AddTransient(typeof(IExternalRepository<>), typeof(ExternalRepository<>));
|
|
|
|
services.AddScoped(typeof(IExternalRepository<>), typeof(ExternalRepository<>));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public static void RegisterServices(this IServiceCollection services)
|
|
|
|
public static void RegisterServices(this IServiceCollection services)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -163,7 +163,7 @@ namespace Ombi.DependencyInjection
|
|
|
|
services.AddTransient<INotificationService, NotificationService>();
|
|
|
|
services.AddTransient<INotificationService, NotificationService>();
|
|
|
|
services.AddTransient<IEmailProvider, GenericEmailProvider>();
|
|
|
|
services.AddTransient<IEmailProvider, GenericEmailProvider>();
|
|
|
|
services.AddTransient<INotificationHelper, NotificationHelper>();
|
|
|
|
services.AddTransient<INotificationHelper, NotificationHelper>();
|
|
|
|
services.AddTransient<ICacheService, CacheService>();
|
|
|
|
services.AddSingleton<ICacheService, CacheService>();
|
|
|
|
|
|
|
|
|
|
|
|
services.AddTransient<IDiscordNotification, DiscordNotification>();
|
|
|
|
services.AddTransient<IDiscordNotification, DiscordNotification>();
|
|
|
|
services.AddTransient<IEmailNotification, EmailNotification>();
|
|
|
|
services.AddTransient<IEmailNotification, EmailNotification>();
|
|
|
|