< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.Extensions.ServiceCollectionExtensions
Assembly: Jellyfin.Server.Implementations
File(s): /srv/git/jellyfin/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs
Line coverage
83%
Covered lines: 26
Uncovered lines: 5
Coverable lines: 31
Total lines: 96
Line coverage: 83.8%
Branch coverage
78%
Covered branches: 11
Total branches: 14
Branch coverage: 78.5%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
GetSupportedDbProviders()100%66100%
AddJellyfinDbContext(...)62.5%9879.16%

File(s)

/srv/git/jellyfin/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Reflection;
 4using Jellyfin.Database.Implementations;
 5using Jellyfin.Database.Implementations.DbConfiguration;
 6using Jellyfin.Database.Providers.Sqlite;
 7using MediaBrowser.Common.Configuration;
 8using MediaBrowser.Controller.Configuration;
 9using Microsoft.EntityFrameworkCore;
 10using Microsoft.Extensions.Configuration;
 11using Microsoft.Extensions.DependencyInjection;
 12using JellyfinDbProviderFactory = System.Func<System.IServiceProvider, Jellyfin.Database.Implementations.IJellyfinDataba
 13
 14namespace Jellyfin.Server.Implementations.Extensions;
 15
 16/// <summary>
 17/// Extensions for the <see cref="IServiceCollection"/> interface.
 18/// </summary>
 19public static class ServiceCollectionExtensions
 20{
 21    private static IEnumerable<Type> DatabaseProviderTypes()
 22    {
 23        yield return typeof(SqliteDatabaseProvider);
 24    }
 25
 26    private static IDictionary<string, JellyfinDbProviderFactory> GetSupportedDbProviders()
 27    {
 2128        var items = new Dictionary<string, JellyfinDbProviderFactory>(StringComparer.InvariantCultureIgnoreCase);
 8429        foreach (var providerType in DatabaseProviderTypes())
 30        {
 2131            var keyAttribute = providerType.GetCustomAttribute<JellyfinDatabaseProviderKeyAttribute>();
 2132            if (keyAttribute is null || string.IsNullOrWhiteSpace(keyAttribute.DatabaseProviderKey))
 33            {
 34                continue;
 35            }
 36
 2137            var provider = providerType;
 2138            items[keyAttribute.DatabaseProviderKey] = (services) => (IJellyfinDatabaseProvider)ActivatorUtilities.Create
 39        }
 40
 2141        return items;
 42    }
 43
 44    /// <summary>
 45    /// Adds the <see cref="IDbContextFactory{TContext}"/> interface to the service collection with second level caching
 46    /// </summary>
 47    /// <param name="serviceCollection">An instance of the <see cref="IServiceCollection"/> interface.</param>
 48    /// <param name="configurationManager">The server configuration manager.</param>
 49    /// <param name="configuration">The startup Configuration.</param>
 50    /// <returns>The updated service collection.</returns>
 51    public static IServiceCollection AddJellyfinDbContext(
 52        this IServiceCollection serviceCollection,
 53        IServerConfigurationManager configurationManager,
 54        IConfiguration configuration)
 55    {
 2156        var efCoreConfiguration = configurationManager.GetConfiguration<DatabaseConfigurationOptions>("database");
 2157        var providers = GetSupportedDbProviders();
 2158        JellyfinDbProviderFactory? providerFactory = null;
 59
 2160        if (efCoreConfiguration?.DatabaseType is null)
 61        {
 2162            var cmdMigrationArgument = configuration.GetValue<string>("migration-provider");
 2163            if (!string.IsNullOrWhiteSpace(cmdMigrationArgument))
 64            {
 065                efCoreConfiguration = new DatabaseConfigurationOptions()
 066                {
 067                    DatabaseType = cmdMigrationArgument,
 068                };
 69            }
 70            else
 71            {
 72                // when nothing is setup via new Database configuration, fallback to SQLite with default settings.
 2173                efCoreConfiguration = new DatabaseConfigurationOptions()
 2174                {
 2175                    DatabaseType = "Jellyfin-SQLite",
 2176                };
 2177                configurationManager.SaveConfiguration("database", efCoreConfiguration);
 78            }
 79        }
 80
 2181        if (!providers.TryGetValue(efCoreConfiguration.DatabaseType.ToUpperInvariant(), out providerFactory!))
 82        {
 083            throw new InvalidOperationException($"Jellyfin cannot find the database provider of type '{efCoreConfigurati
 84        }
 85
 2186        serviceCollection.AddSingleton<IJellyfinDatabaseProvider>(providerFactory!);
 87
 2188        serviceCollection.AddPooledDbContextFactory<JellyfinDbContext>((serviceProvider, opt) =>
 2189        {
 2190            var provider = serviceProvider.GetRequiredService<IJellyfinDatabaseProvider>();
 2191            provider.Initialise(opt);
 2192        });
 93
 2194        return serviceCollection;
 95    }
 96}