< Summary - Jellyfin

Information
Class: Jellyfin.Server.Startup
Assembly: jellyfin
File(s): /srv/git/jellyfin/Jellyfin.Server/Startup.cs
Line coverage
100%
Covered lines: 148
Uncovered lines: 0
Coverable lines: 148
Total lines: 235
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
.ctor(...)100%11100%
ConfigureServices(...)100%11100%
Configure(...)100%11100%

File(s)

/srv/git/jellyfin/Jellyfin.Server/Startup.cs

#LineLine coverage
 1using System;
 2using System.Net;
 3using System.Net.Http;
 4using System.Net.Http.Headers;
 5using System.Net.Mime;
 6using System.Text;
 7using Emby.Server.Implementations.EntryPoints;
 8using Jellyfin.Api.Middleware;
 9using Jellyfin.Database.Implementations;
 10using Jellyfin.LiveTv.Extensions;
 11using Jellyfin.LiveTv.Recordings;
 12using Jellyfin.MediaEncoding.Hls.Extensions;
 13using Jellyfin.Networking;
 14using Jellyfin.Networking.HappyEyeballs;
 15using Jellyfin.Server.Extensions;
 16using Jellyfin.Server.HealthChecks;
 17using Jellyfin.Server.Implementations.Extensions;
 18using Jellyfin.Server.Infrastructure;
 19using MediaBrowser.Common.Net;
 20using MediaBrowser.Controller.Configuration;
 21using MediaBrowser.Controller.Extensions;
 22using MediaBrowser.XbmcMetadata;
 23using Microsoft.AspNetCore.Builder;
 24using Microsoft.AspNetCore.Hosting;
 25using Microsoft.AspNetCore.Mvc;
 26using Microsoft.AspNetCore.Mvc.Infrastructure;
 27using Microsoft.AspNetCore.StaticFiles;
 28using Microsoft.Extensions.Configuration;
 29using Microsoft.Extensions.DependencyInjection;
 30using Microsoft.Extensions.FileProviders;
 31using Microsoft.Extensions.Hosting;
 32using Prometheus;
 33
 34namespace Jellyfin.Server
 35{
 36    /// <summary>
 37    /// Startup configuration for the Kestrel webhost.
 38    /// </summary>
 39    public class Startup
 40    {
 41        private readonly CoreAppHost _serverApplicationHost;
 42        private readonly IConfiguration _configuration;
 43        private readonly IServerConfigurationManager _serverConfigurationManager;
 44
 45        /// <summary>
 46        /// Initializes a new instance of the <see cref="Startup" /> class.
 47        /// </summary>
 48        /// <param name="appHost">The server application host.</param>
 49        /// <param name="configuration">The used Configuration.</param>
 50        public Startup(CoreAppHost appHost, IConfiguration configuration)
 51        {
 2152            _serverApplicationHost = appHost;
 2153            _configuration = configuration;
 2154            _serverConfigurationManager = appHost.ConfigurationManager;
 2155        }
 56
 57        /// <summary>
 58        /// Configures the service collection for the webhost.
 59        /// </summary>
 60        /// <param name="services">The service collection.</param>
 61        public void ConfigureServices(IServiceCollection services)
 62        {
 2163            services.AddResponseCompression();
 2164            services.AddHttpContextAccessor();
 2165            services.AddHttpsRedirection(options =>
 2166            {
 2167                options.HttpsPort = _serverApplicationHost.HttpsPort;
 2168            });
 69
 70            // TODO remove once this is fixed upstream https://github.com/dotnet/aspnetcore/issues/34371
 2171            services.AddSingleton<IActionResultExecutor<PhysicalFileResult>, SymlinkFollowingPhysicalFileResultExecutor>
 2172            services.AddJellyfinApi(_serverApplicationHost.GetApiPluginAssemblies(), _serverConfigurationManager.GetNetw
 2173            services.AddJellyfinDbContext(_serverApplicationHost.ConfigurationManager, _configuration);
 2174            services.AddJellyfinApiSwagger();
 75
 76            // configure custom legacy authentication
 2177            services.AddCustomAuthentication();
 78
 2179            services.AddJellyfinApiAuthorization();
 80
 2181            var productHeader = new ProductInfoHeaderValue(
 2182                _serverApplicationHost.Name.Replace(' ', '-'),
 2183                _serverApplicationHost.ApplicationVersionString);
 2184            var acceptJsonHeader = new MediaTypeWithQualityHeaderValue(MediaTypeNames.Application.Json, 1.0);
 2185            var acceptXmlHeader = new MediaTypeWithQualityHeaderValue(MediaTypeNames.Application.Xml, 0.9);
 2186            var acceptAnyHeader = new MediaTypeWithQualityHeaderValue("*/*", 0.8);
 2187            Func<IServiceProvider, HttpMessageHandler> eyeballsHttpClientHandlerDelegate = (_) => new SocketsHttpHandler
 2188            {
 2189                AutomaticDecompression = DecompressionMethods.All,
 2190                RequestHeaderEncodingSelector = (_, _) => Encoding.UTF8,
 2191                ConnectCallback = HttpClientExtension.OnConnect
 2192            };
 93
 2194            Func<IServiceProvider, HttpMessageHandler> defaultHttpClientHandlerDelegate = (_) => new SocketsHttpHandler(
 2195            {
 2196                AutomaticDecompression = DecompressionMethods.All,
 2197                RequestHeaderEncodingSelector = (_, _) => Encoding.UTF8
 2198            };
 99
 21100            services.AddHttpClient(NamedClient.Default, c =>
 21101                {
 21102                    c.DefaultRequestHeaders.UserAgent.Add(productHeader);
 21103                    c.DefaultRequestHeaders.Accept.Add(acceptJsonHeader);
 21104                    c.DefaultRequestHeaders.Accept.Add(acceptXmlHeader);
 21105                    c.DefaultRequestHeaders.Accept.Add(acceptAnyHeader);
 21106                })
 21107                .ConfigurePrimaryHttpMessageHandler(eyeballsHttpClientHandlerDelegate);
 108
 21109            services.AddHttpClient(NamedClient.MusicBrainz, c =>
 21110                {
 21111                    c.DefaultRequestHeaders.UserAgent.Add(productHeader);
 21112                    c.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue($"({_serverApplicationHost.Applicat
 21113                    c.DefaultRequestHeaders.Accept.Add(acceptXmlHeader);
 21114                    c.DefaultRequestHeaders.Accept.Add(acceptAnyHeader);
 21115                })
 21116                .ConfigurePrimaryHttpMessageHandler(eyeballsHttpClientHandlerDelegate);
 117
 21118            services.AddHttpClient(NamedClient.DirectIp, c =>
 21119                {
 21120                    c.DefaultRequestHeaders.UserAgent.Add(productHeader);
 21121                    c.DefaultRequestHeaders.Accept.Add(acceptJsonHeader);
 21122                    c.DefaultRequestHeaders.Accept.Add(acceptXmlHeader);
 21123                    c.DefaultRequestHeaders.Accept.Add(acceptAnyHeader);
 21124                })
 21125                .ConfigurePrimaryHttpMessageHandler(defaultHttpClientHandlerDelegate);
 126
 21127            services.AddHealthChecks()
 21128                .AddCheck<DbContextFactoryHealthCheck<JellyfinDbContext>>(nameof(JellyfinDbContext));
 129
 21130            services.AddHlsPlaylistGenerator();
 21131            services.AddLiveTvServices();
 132
 21133            services.AddHostedService<RecordingsHost>();
 21134            services.AddHostedService<AutoDiscoveryHost>();
 21135            services.AddHostedService<NfoUserDataSaver>();
 21136            services.AddHostedService<LibraryChangedNotifier>();
 21137            services.AddHostedService<UserDataChangeNotifier>();
 21138            services.AddHostedService<RecordingNotifier>();
 21139        }
 140
 141        /// <summary>
 142        /// Configures the app builder for the webhost.
 143        /// </summary>
 144        /// <param name="app">The application builder.</param>
 145        /// <param name="env">The webhost environment.</param>
 146        /// <param name="appConfig">The application config.</param>
 147        public void Configure(
 148            IApplicationBuilder app,
 149            IWebHostEnvironment env,
 150            IConfiguration appConfig)
 151        {
 21152            app.UseBaseUrlRedirection();
 153
 154            // Wrap rest of configuration so everything only listens on BaseUrl.
 21155            var config = _serverConfigurationManager.GetNetworkConfiguration();
 21156            app.Map(config.BaseUrl, mainApp =>
 21157            {
 21158                if (env.IsDevelopment())
 21159                {
 21160                    mainApp.UseDeveloperExceptionPage();
 21161                }
 21162
 21163                mainApp.UseForwardedHeaders();
 21164                mainApp.UseMiddleware<ExceptionMiddleware>();
 21165
 21166                mainApp.UseMiddleware<ResponseTimeMiddleware>();
 21167
 21168                mainApp.UseWebSockets();
 21169
 21170                mainApp.UseResponseCompression();
 21171
 21172                mainApp.UseCors();
 21173
 21174                if (config.RequireHttps && _serverApplicationHost.ListenWithHttps)
 21175                {
 21176                    mainApp.UseHttpsRedirection();
 21177                }
 21178
 21179                // This must be injected before any path related middleware.
 21180                mainApp.UsePathTrim();
 21181
 21182                if (appConfig.HostWebClient())
 21183                {
 21184                    var extensionProvider = new FileExtensionContentTypeProvider();
 21185
 21186                    // subtitles octopus requires .data, .mem files.
 21187                    extensionProvider.Mappings.Add(".data", MediaTypeNames.Application.Octet);
 21188                    extensionProvider.Mappings.Add(".mem", MediaTypeNames.Application.Octet);
 21189                    mainApp.UseDefaultFiles(new DefaultFilesOptions
 21190                    {
 21191                        FileProvider = new PhysicalFileProvider(_serverConfigurationManager.ApplicationPaths.WebPath),
 21192                        RequestPath = "/web"
 21193                    });
 21194                    mainApp.UseStaticFiles(new StaticFileOptions
 21195                    {
 21196                        FileProvider = new PhysicalFileProvider(_serverConfigurationManager.ApplicationPaths.WebPath),
 21197                        RequestPath = "/web",
 21198                        ContentTypeProvider = extensionProvider
 21199                    });
 21200
 21201                    mainApp.UseRobotsRedirection();
 21202                }
 21203
 21204                mainApp.UseStaticFiles();
 21205                mainApp.UseAuthentication();
 21206                mainApp.UseJellyfinApiSwagger(_serverConfigurationManager);
 21207                mainApp.UseQueryStringDecoding();
 21208                mainApp.UseRouting();
 21209                mainApp.UseAuthorization();
 21210
 21211                mainApp.UseLanFiltering();
 21212                mainApp.UseIPBasedAccessValidation();
 21213                mainApp.UseWebSocketHandler();
 21214                mainApp.UseServerStartupMessage();
 21215
 21216                if (_serverConfigurationManager.Configuration.EnableMetrics)
 21217                {
 21218                    // Must be registered after any middleware that could change HTTP response codes or the data will be
 21219                    mainApp.UseHttpMetrics();
 21220                }
 21221
 21222                mainApp.UseEndpoints(endpoints =>
 21223                {
 21224                    endpoints.MapControllers();
 21225                    if (_serverConfigurationManager.Configuration.EnableMetrics)
 21226                    {
 21227                        endpoints.MapMetrics();
 21228                    }
 21229
 21230                    endpoints.MapHealthChecks("/health");
 21231                });
 21232            });
 21233        }
 234    }
 235}