< Summary - Jellyfin

Information
Class: Jellyfin.Server.Extensions.WebHostBuilderExtensions
Assembly: jellyfin
File(s): /srv/git/jellyfin/Jellyfin.Server/Extensions/WebHostBuilderExtensions.cs
Line coverage
100%
Covered lines: 54
Uncovered lines: 0
Coverable lines: 54
Total lines: 90
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
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
ConfigureWebHostBuilder(...)100%11100%

File(s)

/srv/git/jellyfin/Jellyfin.Server/Extensions/WebHostBuilderExtensions.cs

#LineLine coverage
 1using System;
 2using System.IO;
 3using System.Net;
 4using Jellyfin.Server.Helpers;
 5using MediaBrowser.Common.Configuration;
 6using MediaBrowser.Controller.Extensions;
 7using Microsoft.AspNetCore.Hosting;
 8using Microsoft.Extensions.Configuration;
 9using Microsoft.Extensions.Hosting;
 10using Microsoft.Extensions.Logging;
 11
 12namespace Jellyfin.Server.Extensions;
 13
 14/// <summary>
 15/// Extensions for configuring the web host builder.
 16/// </summary>
 17public static class WebHostBuilderExtensions
 18{
 19    /// <summary>
 20    /// Configure the web host builder.
 21    /// </summary>
 22    /// <param name="builder">The builder to configure.</param>
 23    /// <param name="appHost">The application host.</param>
 24    /// <param name="startupConfig">The application configuration.</param>
 25    /// <param name="appPaths">The application paths.</param>
 26    /// <param name="logger">The logger.</param>
 27    /// <returns>The configured web host builder.</returns>
 28    public static IWebHostBuilder ConfigureWebHostBuilder(
 29        this IWebHostBuilder builder,
 30        CoreAppHost appHost,
 31        IConfiguration startupConfig,
 32        IApplicationPaths appPaths,
 33        ILogger logger)
 34    {
 2135        return builder
 2136            .UseKestrel((builderContext, options) =>
 2137            {
 2138                var addresses = appHost.NetManager.GetAllBindInterfaces(false);
 2139
 2140                bool flagged = false;
 2141                foreach (var netAdd in addresses)
 2142                {
 2143                    var address = netAdd.Address;
 2144                    logger.LogInformation("Kestrel is listening on {Address}", address.Equals(IPAddress.IPv6Any) ? "all 
 2145                    options.Listen(netAdd.Address, appHost.HttpPort);
 2146                    if (appHost.ListenWithHttps)
 2147                    {
 2148                        options.Listen(
 2149                            address,
 2150                            appHost.HttpsPort,
 2151                            listenOptions => listenOptions.UseHttps(appHost.Certificate));
 2152                    }
 2153                    else if (builderContext.HostingEnvironment.IsDevelopment())
 2154                    {
 2155                        try
 2156                        {
 2157                            options.Listen(
 2158                                address,
 2159                                appHost.HttpsPort,
 2160                                listenOptions => listenOptions.UseHttps());
 2161                        }
 2162                        catch (InvalidOperationException)
 2163                        {
 2164                            if (!flagged)
 2165                            {
 2166                                logger.LogWarning("Failed to listen to HTTPS using the ASP.NET Core HTTPS development ce
 2167                                flagged = true;
 2168                            }
 2169                        }
 2170                    }
 2171                }
 2172
 2173                // Bind to unix socket (only on unix systems)
 2174                if (startupConfig.UseUnixSocket() && Environment.OSVersion.Platform == PlatformID.Unix)
 2175                {
 2176                    var socketPath = StartupHelpers.GetUnixSocketPath(startupConfig, appPaths);
 2177
 2178                    // Workaround for https://github.com/aspnet/AspNetCore/issues/14134
 2179                    if (File.Exists(socketPath))
 2180                    {
 2181                        File.Delete(socketPath);
 2182                    }
 2183
 2184                    options.ListenUnixSocket(socketPath);
 2185                    logger.LogInformation("Kestrel listening to unix socket {SocketPath}", socketPath);
 2186                }
 2187            })
 2188            .UseStartup(context => new Startup(appHost, context.Configuration));
 89    }
 90}