| | 1 | | using System; |
| | 2 | | using System.Net; |
| | 3 | | using System.Net.Http; |
| | 4 | | using System.Net.Http.Headers; |
| | 5 | | using System.Net.Mime; |
| | 6 | | using System.Text; |
| | 7 | | using Emby.Server.Implementations.EntryPoints; |
| | 8 | | using Jellyfin.Api.Middleware; |
| | 9 | | using Jellyfin.Database.Implementations; |
| | 10 | | using Jellyfin.LiveTv.Extensions; |
| | 11 | | using Jellyfin.LiveTv.Recordings; |
| | 12 | | using Jellyfin.MediaEncoding.Hls.Extensions; |
| | 13 | | using Jellyfin.Networking; |
| | 14 | | using Jellyfin.Networking.HappyEyeballs; |
| | 15 | | using Jellyfin.Server.Extensions; |
| | 16 | | using Jellyfin.Server.HealthChecks; |
| | 17 | | using Jellyfin.Server.Implementations.Extensions; |
| | 18 | | using Jellyfin.Server.Infrastructure; |
| | 19 | | using MediaBrowser.Common.Net; |
| | 20 | | using MediaBrowser.Controller.Configuration; |
| | 21 | | using MediaBrowser.Controller.Extensions; |
| | 22 | | using MediaBrowser.XbmcMetadata; |
| | 23 | | using Microsoft.AspNetCore.Builder; |
| | 24 | | using Microsoft.AspNetCore.Hosting; |
| | 25 | | using Microsoft.AspNetCore.Mvc; |
| | 26 | | using Microsoft.AspNetCore.Mvc.Infrastructure; |
| | 27 | | using Microsoft.AspNetCore.StaticFiles; |
| | 28 | | using Microsoft.Extensions.Configuration; |
| | 29 | | using Microsoft.Extensions.DependencyInjection; |
| | 30 | | using Microsoft.Extensions.FileProviders; |
| | 31 | | using Microsoft.Extensions.Hosting; |
| | 32 | | using Prometheus; |
| | 33 | |
|
| | 34 | | namespace 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 | | { |
| 21 | 52 | | _serverApplicationHost = appHost; |
| 21 | 53 | | _configuration = configuration; |
| 21 | 54 | | _serverConfigurationManager = appHost.ConfigurationManager; |
| 21 | 55 | | } |
| | 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 | | { |
| 21 | 63 | | services.AddResponseCompression(); |
| 21 | 64 | | services.AddHttpContextAccessor(); |
| 21 | 65 | | services.AddHttpsRedirection(options => |
| 21 | 66 | | { |
| 21 | 67 | | options.HttpsPort = _serverApplicationHost.HttpsPort; |
| 21 | 68 | | }); |
| | 69 | |
|
| | 70 | | // TODO remove once this is fixed upstream https://github.com/dotnet/aspnetcore/issues/34371 |
| 21 | 71 | | services.AddSingleton<IActionResultExecutor<PhysicalFileResult>, SymlinkFollowingPhysicalFileResultExecutor> |
| 21 | 72 | | services.AddJellyfinApi(_serverApplicationHost.GetApiPluginAssemblies(), _serverConfigurationManager.GetNetw |
| 21 | 73 | | services.AddJellyfinDbContext(_serverApplicationHost.ConfigurationManager, _configuration); |
| 21 | 74 | | services.AddJellyfinApiSwagger(); |
| | 75 | |
|
| | 76 | | // configure custom legacy authentication |
| 21 | 77 | | services.AddCustomAuthentication(); |
| | 78 | |
|
| 21 | 79 | | services.AddJellyfinApiAuthorization(); |
| | 80 | |
|
| 21 | 81 | | var productHeader = new ProductInfoHeaderValue( |
| 21 | 82 | | _serverApplicationHost.Name.Replace(' ', '-'), |
| 21 | 83 | | _serverApplicationHost.ApplicationVersionString); |
| 21 | 84 | | var acceptJsonHeader = new MediaTypeWithQualityHeaderValue(MediaTypeNames.Application.Json, 1.0); |
| 21 | 85 | | var acceptXmlHeader = new MediaTypeWithQualityHeaderValue(MediaTypeNames.Application.Xml, 0.9); |
| 21 | 86 | | var acceptAnyHeader = new MediaTypeWithQualityHeaderValue("*/*", 0.8); |
| 21 | 87 | | Func<IServiceProvider, HttpMessageHandler> eyeballsHttpClientHandlerDelegate = (_) => new SocketsHttpHandler |
| 21 | 88 | | { |
| 21 | 89 | | AutomaticDecompression = DecompressionMethods.All, |
| 21 | 90 | | RequestHeaderEncodingSelector = (_, _) => Encoding.UTF8, |
| 21 | 91 | | ConnectCallback = HttpClientExtension.OnConnect |
| 21 | 92 | | }; |
| | 93 | |
|
| 21 | 94 | | Func<IServiceProvider, HttpMessageHandler> defaultHttpClientHandlerDelegate = (_) => new SocketsHttpHandler( |
| 21 | 95 | | { |
| 21 | 96 | | AutomaticDecompression = DecompressionMethods.All, |
| 21 | 97 | | RequestHeaderEncodingSelector = (_, _) => Encoding.UTF8 |
| 21 | 98 | | }; |
| | 99 | |
|
| 21 | 100 | | services.AddHttpClient(NamedClient.Default, c => |
| 21 | 101 | | { |
| 21 | 102 | | c.DefaultRequestHeaders.UserAgent.Add(productHeader); |
| 21 | 103 | | c.DefaultRequestHeaders.Accept.Add(acceptJsonHeader); |
| 21 | 104 | | c.DefaultRequestHeaders.Accept.Add(acceptXmlHeader); |
| 21 | 105 | | c.DefaultRequestHeaders.Accept.Add(acceptAnyHeader); |
| 21 | 106 | | }) |
| 21 | 107 | | .ConfigurePrimaryHttpMessageHandler(eyeballsHttpClientHandlerDelegate); |
| | 108 | |
|
| 21 | 109 | | services.AddHttpClient(NamedClient.MusicBrainz, c => |
| 21 | 110 | | { |
| 21 | 111 | | c.DefaultRequestHeaders.UserAgent.Add(productHeader); |
| 21 | 112 | | c.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue($"({_serverApplicationHost.Applicat |
| 21 | 113 | | c.DefaultRequestHeaders.Accept.Add(acceptXmlHeader); |
| 21 | 114 | | c.DefaultRequestHeaders.Accept.Add(acceptAnyHeader); |
| 21 | 115 | | }) |
| 21 | 116 | | .ConfigurePrimaryHttpMessageHandler(eyeballsHttpClientHandlerDelegate); |
| | 117 | |
|
| 21 | 118 | | services.AddHttpClient(NamedClient.DirectIp, c => |
| 21 | 119 | | { |
| 21 | 120 | | c.DefaultRequestHeaders.UserAgent.Add(productHeader); |
| 21 | 121 | | c.DefaultRequestHeaders.Accept.Add(acceptJsonHeader); |
| 21 | 122 | | c.DefaultRequestHeaders.Accept.Add(acceptXmlHeader); |
| 21 | 123 | | c.DefaultRequestHeaders.Accept.Add(acceptAnyHeader); |
| 21 | 124 | | }) |
| 21 | 125 | | .ConfigurePrimaryHttpMessageHandler(defaultHttpClientHandlerDelegate); |
| | 126 | |
|
| 21 | 127 | | services.AddHealthChecks() |
| 21 | 128 | | .AddCheck<DbContextFactoryHealthCheck<JellyfinDbContext>>(nameof(JellyfinDbContext)); |
| | 129 | |
|
| 21 | 130 | | services.AddHlsPlaylistGenerator(); |
| 21 | 131 | | services.AddLiveTvServices(); |
| | 132 | |
|
| 21 | 133 | | services.AddHostedService<RecordingsHost>(); |
| 21 | 134 | | services.AddHostedService<AutoDiscoveryHost>(); |
| 21 | 135 | | services.AddHostedService<NfoUserDataSaver>(); |
| 21 | 136 | | services.AddHostedService<LibraryChangedNotifier>(); |
| 21 | 137 | | services.AddHostedService<UserDataChangeNotifier>(); |
| 21 | 138 | | services.AddHostedService<RecordingNotifier>(); |
| 21 | 139 | | } |
| | 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 | | { |
| 21 | 152 | | app.UseBaseUrlRedirection(); |
| | 153 | |
|
| | 154 | | // Wrap rest of configuration so everything only listens on BaseUrl. |
| 21 | 155 | | var config = _serverConfigurationManager.GetNetworkConfiguration(); |
| 21 | 156 | | app.Map(config.BaseUrl, mainApp => |
| 21 | 157 | | { |
| 21 | 158 | | if (env.IsDevelopment()) |
| 21 | 159 | | { |
| 21 | 160 | | mainApp.UseDeveloperExceptionPage(); |
| 21 | 161 | | } |
| 21 | 162 | |
|
| 21 | 163 | | mainApp.UseForwardedHeaders(); |
| 21 | 164 | | mainApp.UseMiddleware<ExceptionMiddleware>(); |
| 21 | 165 | |
|
| 21 | 166 | | mainApp.UseMiddleware<ResponseTimeMiddleware>(); |
| 21 | 167 | |
|
| 21 | 168 | | mainApp.UseWebSockets(); |
| 21 | 169 | |
|
| 21 | 170 | | mainApp.UseResponseCompression(); |
| 21 | 171 | |
|
| 21 | 172 | | mainApp.UseCors(); |
| 21 | 173 | |
|
| 21 | 174 | | if (config.RequireHttps && _serverApplicationHost.ListenWithHttps) |
| 21 | 175 | | { |
| 21 | 176 | | mainApp.UseHttpsRedirection(); |
| 21 | 177 | | } |
| 21 | 178 | |
|
| 21 | 179 | | // This must be injected before any path related middleware. |
| 21 | 180 | | mainApp.UsePathTrim(); |
| 21 | 181 | |
|
| 21 | 182 | | if (appConfig.HostWebClient()) |
| 21 | 183 | | { |
| 21 | 184 | | var extensionProvider = new FileExtensionContentTypeProvider(); |
| 21 | 185 | |
|
| 21 | 186 | | // subtitles octopus requires .data, .mem files. |
| 21 | 187 | | extensionProvider.Mappings.Add(".data", MediaTypeNames.Application.Octet); |
| 21 | 188 | | extensionProvider.Mappings.Add(".mem", MediaTypeNames.Application.Octet); |
| 21 | 189 | | mainApp.UseDefaultFiles(new DefaultFilesOptions |
| 21 | 190 | | { |
| 21 | 191 | | FileProvider = new PhysicalFileProvider(_serverConfigurationManager.ApplicationPaths.WebPath), |
| 21 | 192 | | RequestPath = "/web" |
| 21 | 193 | | }); |
| 21 | 194 | | mainApp.UseStaticFiles(new StaticFileOptions |
| 21 | 195 | | { |
| 21 | 196 | | FileProvider = new PhysicalFileProvider(_serverConfigurationManager.ApplicationPaths.WebPath), |
| 21 | 197 | | RequestPath = "/web", |
| 21 | 198 | | ContentTypeProvider = extensionProvider |
| 21 | 199 | | }); |
| 21 | 200 | |
|
| 21 | 201 | | mainApp.UseRobotsRedirection(); |
| 21 | 202 | | } |
| 21 | 203 | |
|
| 21 | 204 | | mainApp.UseStaticFiles(); |
| 21 | 205 | | mainApp.UseAuthentication(); |
| 21 | 206 | | mainApp.UseJellyfinApiSwagger(_serverConfigurationManager); |
| 21 | 207 | | mainApp.UseQueryStringDecoding(); |
| 21 | 208 | | mainApp.UseRouting(); |
| 21 | 209 | | mainApp.UseAuthorization(); |
| 21 | 210 | |
|
| 21 | 211 | | mainApp.UseLanFiltering(); |
| 21 | 212 | | mainApp.UseIPBasedAccessValidation(); |
| 21 | 213 | | mainApp.UseWebSocketHandler(); |
| 21 | 214 | | mainApp.UseServerStartupMessage(); |
| 21 | 215 | |
|
| 21 | 216 | | if (_serverConfigurationManager.Configuration.EnableMetrics) |
| 21 | 217 | | { |
| 21 | 218 | | // Must be registered after any middleware that could change HTTP response codes or the data will be |
| 21 | 219 | | mainApp.UseHttpMetrics(); |
| 21 | 220 | | } |
| 21 | 221 | |
|
| 21 | 222 | | mainApp.UseEndpoints(endpoints => |
| 21 | 223 | | { |
| 21 | 224 | | endpoints.MapControllers(); |
| 21 | 225 | | if (_serverConfigurationManager.Configuration.EnableMetrics) |
| 21 | 226 | | { |
| 21 | 227 | | endpoints.MapMetrics(); |
| 21 | 228 | | } |
| 21 | 229 | |
|
| 21 | 230 | | endpoints.MapHealthChecks("/health"); |
| 21 | 231 | | }); |
| 21 | 232 | | }); |
| 21 | 233 | | } |
| | 234 | | } |
| | 235 | | } |