2021-04-19 20:37:24 +00:00
|
|
|
using System;
|
|
|
|
using System.Net;
|
|
|
|
using System.Net.Http;
|
2020-08-31 14:47:38 +00:00
|
|
|
using System.Net.Http.Headers;
|
2020-10-02 19:30:31 +00:00
|
|
|
using System.Net.Mime;
|
2021-04-19 20:37:24 +00:00
|
|
|
using System.Text;
|
2024-02-06 20:40:52 +00:00
|
|
|
using Emby.Server.Implementations.EntryPoints;
|
2023-01-14 02:37:37 +00:00
|
|
|
using Jellyfin.Api.Middleware;
|
2024-02-06 21:08:41 +00:00
|
|
|
using Jellyfin.LiveTv;
|
2024-02-06 21:23:18 +00:00
|
|
|
using Jellyfin.LiveTv.EmbyTV;
|
2024-01-13 00:07:44 +00:00
|
|
|
using Jellyfin.LiveTv.Extensions;
|
2021-09-23 13:29:12 +00:00
|
|
|
using Jellyfin.MediaEncoding.Hls.Extensions;
|
2024-01-06 20:34:09 +00:00
|
|
|
using Jellyfin.Networking;
|
2022-10-20 20:17:56 +00:00
|
|
|
using Jellyfin.Networking.HappyEyeballs;
|
2019-11-24 14:27:58 +00:00
|
|
|
using Jellyfin.Server.Extensions;
|
2022-12-30 02:40:39 +00:00
|
|
|
using Jellyfin.Server.HealthChecks;
|
2020-09-03 19:44:49 +00:00
|
|
|
using Jellyfin.Server.Implementations;
|
2022-10-21 09:55:32 +00:00
|
|
|
using Jellyfin.Server.Implementations.Extensions;
|
2021-09-11 10:31:29 +00:00
|
|
|
using Jellyfin.Server.Infrastructure;
|
2020-08-19 12:31:45 +00:00
|
|
|
using MediaBrowser.Common.Net;
|
2019-11-24 14:27:58 +00:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
2020-09-02 14:03:15 +00:00
|
|
|
using MediaBrowser.Controller.Extensions;
|
2024-02-06 21:18:17 +00:00
|
|
|
using MediaBrowser.XbmcMetadata;
|
2019-11-24 14:27:58 +00:00
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
2021-09-11 10:31:29 +00:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using Microsoft.AspNetCore.Mvc.Infrastructure;
|
2020-10-02 19:30:31 +00:00
|
|
|
using Microsoft.AspNetCore.StaticFiles;
|
2020-09-02 14:03:15 +00:00
|
|
|
using Microsoft.Extensions.Configuration;
|
2019-11-24 14:27:58 +00:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2020-09-02 14:03:15 +00:00
|
|
|
using Microsoft.Extensions.FileProviders;
|
2019-11-24 14:27:58 +00:00
|
|
|
using Microsoft.Extensions.Hosting;
|
2020-04-26 01:35:51 +00:00
|
|
|
using Prometheus;
|
2019-11-24 14:27:58 +00:00
|
|
|
|
|
|
|
namespace Jellyfin.Server
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Startup configuration for the Kestrel webhost.
|
|
|
|
/// </summary>
|
|
|
|
public class Startup
|
|
|
|
{
|
2023-11-14 19:21:34 +00:00
|
|
|
private readonly CoreAppHost _serverApplicationHost;
|
2023-01-12 03:07:41 +00:00
|
|
|
private readonly IServerConfigurationManager _serverConfigurationManager;
|
2019-11-24 14:27:58 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="Startup" /> class.
|
|
|
|
/// </summary>
|
2023-01-12 03:07:41 +00:00
|
|
|
/// <param name="appHost">The server application host.</param>
|
|
|
|
public Startup(CoreAppHost appHost)
|
2019-11-24 14:27:58 +00:00
|
|
|
{
|
2023-01-12 03:07:41 +00:00
|
|
|
_serverApplicationHost = appHost;
|
|
|
|
_serverConfigurationManager = appHost.ConfigurationManager;
|
2019-11-24 14:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Configures the service collection for the webhost.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="services">The service collection.</param>
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddResponseCompression();
|
|
|
|
services.AddHttpContextAccessor();
|
2020-09-02 22:38:52 +00:00
|
|
|
services.AddHttpsRedirection(options =>
|
|
|
|
{
|
|
|
|
options.HttpsPort = _serverApplicationHost.HttpsPort;
|
|
|
|
});
|
2021-09-11 10:31:29 +00:00
|
|
|
|
|
|
|
// TODO remove once this is fixed upstream https://github.com/dotnet/aspnetcore/issues/34371
|
|
|
|
services.AddSingleton<IActionResultExecutor<PhysicalFileResult>, SymlinkFollowingPhysicalFileResultExecutor>();
|
2021-01-19 10:36:37 +00:00
|
|
|
services.AddJellyfinApi(_serverApplicationHost.GetApiPluginAssemblies(), _serverConfigurationManager.GetNetworkConfiguration());
|
2022-10-21 09:55:32 +00:00
|
|
|
services.AddJellyfinDbContext();
|
2019-11-24 14:27:58 +00:00
|
|
|
services.AddJellyfinApiSwagger();
|
|
|
|
|
|
|
|
// configure custom legacy authentication
|
|
|
|
services.AddCustomAuthentication();
|
|
|
|
|
|
|
|
services.AddJellyfinApiAuthorization();
|
2020-08-19 12:31:45 +00:00
|
|
|
|
2020-09-02 22:31:42 +00:00
|
|
|
var productHeader = new ProductInfoHeaderValue(
|
|
|
|
_serverApplicationHost.Name.Replace(' ', '-'),
|
|
|
|
_serverApplicationHost.ApplicationVersionString);
|
2020-11-19 14:35:34 +00:00
|
|
|
var acceptJsonHeader = new MediaTypeWithQualityHeaderValue(MediaTypeNames.Application.Json, 1.0);
|
|
|
|
var acceptXmlHeader = new MediaTypeWithQualityHeaderValue(MediaTypeNames.Application.Xml, 0.9);
|
|
|
|
var acceptAnyHeader = new MediaTypeWithQualityHeaderValue("*/*", 0.8);
|
2022-10-20 20:17:56 +00:00
|
|
|
Func<IServiceProvider, HttpMessageHandler> eyeballsHttpClientHandlerDelegate = (_) => new SocketsHttpHandler()
|
|
|
|
{
|
|
|
|
AutomaticDecompression = DecompressionMethods.All,
|
|
|
|
RequestHeaderEncodingSelector = (_, _) => Encoding.UTF8,
|
|
|
|
ConnectCallback = HttpClientExtension.OnConnect
|
|
|
|
};
|
|
|
|
|
2021-04-19 20:37:24 +00:00
|
|
|
Func<IServiceProvider, HttpMessageHandler> defaultHttpClientHandlerDelegate = (_) => new SocketsHttpHandler()
|
|
|
|
{
|
|
|
|
AutomaticDecompression = DecompressionMethods.All,
|
|
|
|
RequestHeaderEncodingSelector = (_, _) => Encoding.UTF8
|
|
|
|
};
|
|
|
|
|
2023-01-12 03:07:41 +00:00
|
|
|
services.AddHttpClient(NamedClient.Default, c =>
|
2020-08-31 14:47:38 +00:00
|
|
|
{
|
2020-08-31 15:15:20 +00:00
|
|
|
c.DefaultRequestHeaders.UserAgent.Add(productHeader);
|
2020-11-19 01:20:31 +00:00
|
|
|
c.DefaultRequestHeaders.Accept.Add(acceptJsonHeader);
|
2020-11-19 14:35:34 +00:00
|
|
|
c.DefaultRequestHeaders.Accept.Add(acceptXmlHeader);
|
2020-11-19 01:20:31 +00:00
|
|
|
c.DefaultRequestHeaders.Accept.Add(acceptAnyHeader);
|
2020-08-31 14:47:38 +00:00
|
|
|
})
|
2022-10-20 20:17:56 +00:00
|
|
|
.ConfigurePrimaryHttpMessageHandler(eyeballsHttpClientHandlerDelegate);
|
2020-08-31 14:47:38 +00:00
|
|
|
|
|
|
|
services.AddHttpClient(NamedClient.MusicBrainz, c =>
|
|
|
|
{
|
2020-08-31 15:15:20 +00:00
|
|
|
c.DefaultRequestHeaders.UserAgent.Add(productHeader);
|
2020-09-02 22:31:42 +00:00
|
|
|
c.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue($"({_serverApplicationHost.ApplicationUserAgentAddress})"));
|
2020-12-01 16:57:13 +00:00
|
|
|
c.DefaultRequestHeaders.Accept.Add(acceptXmlHeader);
|
2020-11-19 01:20:31 +00:00
|
|
|
c.DefaultRequestHeaders.Accept.Add(acceptAnyHeader);
|
2020-08-31 14:47:38 +00:00
|
|
|
})
|
2022-10-20 20:17:56 +00:00
|
|
|
.ConfigurePrimaryHttpMessageHandler(eyeballsHttpClientHandlerDelegate);
|
|
|
|
|
|
|
|
services.AddHttpClient(NamedClient.DirectIp, c =>
|
|
|
|
{
|
|
|
|
c.DefaultRequestHeaders.UserAgent.Add(productHeader);
|
|
|
|
c.DefaultRequestHeaders.Accept.Add(acceptJsonHeader);
|
|
|
|
c.DefaultRequestHeaders.Accept.Add(acceptXmlHeader);
|
|
|
|
c.DefaultRequestHeaders.Accept.Add(acceptAnyHeader);
|
|
|
|
})
|
2021-04-19 20:37:24 +00:00
|
|
|
.ConfigurePrimaryHttpMessageHandler(defaultHttpClientHandlerDelegate);
|
2020-09-03 15:26:22 +00:00
|
|
|
|
|
|
|
services.AddHealthChecks()
|
2023-01-16 17:14:44 +00:00
|
|
|
.AddCheck<DbContextFactoryHealthCheck<JellyfinDbContext>>(nameof(JellyfinDbContext));
|
2021-09-23 13:29:12 +00:00
|
|
|
|
|
|
|
services.AddHlsPlaylistGenerator();
|
2024-01-13 00:07:44 +00:00
|
|
|
services.AddLiveTvServices();
|
2024-01-06 20:34:09 +00:00
|
|
|
|
2024-02-06 21:23:18 +00:00
|
|
|
services.AddHostedService<LiveTvHost>();
|
2024-01-06 20:34:09 +00:00
|
|
|
services.AddHostedService<AutoDiscoveryHost>();
|
2024-02-06 19:45:44 +00:00
|
|
|
services.AddHostedService<PortForwardingHost>();
|
2024-02-06 21:18:17 +00:00
|
|
|
services.AddHostedService<NfoUserDataSaver>();
|
2024-02-06 20:40:52 +00:00
|
|
|
services.AddHostedService<LibraryChangedNotifier>();
|
2024-02-06 20:54:03 +00:00
|
|
|
services.AddHostedService<UserDataChangeNotifier>();
|
2024-02-06 21:08:41 +00:00
|
|
|
services.AddHostedService<RecordingNotifier>();
|
2019-11-24 14:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Configures the app builder for the webhost.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="app">The application builder.</param>
|
|
|
|
/// <param name="env">The webhost environment.</param>
|
2020-09-02 14:03:15 +00:00
|
|
|
/// <param name="appConfig">The application config.</param>
|
2019-11-24 14:27:58 +00:00
|
|
|
public void Configure(
|
|
|
|
IApplicationBuilder app,
|
|
|
|
IWebHostEnvironment env,
|
2020-09-02 14:03:15 +00:00
|
|
|
IConfiguration appConfig)
|
2019-11-24 14:27:58 +00:00
|
|
|
{
|
2020-09-08 01:10:14 +00:00
|
|
|
app.UseBaseUrlRedirection();
|
2019-11-24 14:27:58 +00:00
|
|
|
|
2020-09-03 23:11:12 +00:00
|
|
|
// Wrap rest of configuration so everything only listens on BaseUrl.
|
2020-12-01 21:16:36 +00:00
|
|
|
var config = _serverConfigurationManager.GetNetworkConfiguration();
|
|
|
|
app.Map(config.BaseUrl, mainApp =>
|
2020-09-03 23:11:12 +00:00
|
|
|
{
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
{
|
|
|
|
mainApp.UseDeveloperExceptionPage();
|
|
|
|
}
|
2020-04-21 13:36:22 +00:00
|
|
|
|
2020-09-10 09:05:46 +00:00
|
|
|
mainApp.UseForwardedHeaders();
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseMiddleware<ExceptionMiddleware>();
|
2020-07-14 11:26:47 +00:00
|
|
|
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseMiddleware<ResponseTimeMiddleware>();
|
2019-11-24 14:27:58 +00:00
|
|
|
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseWebSockets();
|
2019-11-24 14:27:58 +00:00
|
|
|
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseResponseCompression();
|
2020-09-03 12:05:16 +00:00
|
|
|
|
2020-09-05 15:10:05 +00:00
|
|
|
mainApp.UseCors();
|
2019-11-24 14:27:58 +00:00
|
|
|
|
2020-12-01 21:16:36 +00:00
|
|
|
if (config.RequireHttps && _serverApplicationHost.ListenWithHttps)
|
2020-09-02 14:03:15 +00:00
|
|
|
{
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseHttpsRedirection();
|
|
|
|
}
|
2020-04-26 15:28:17 +00:00
|
|
|
|
2020-12-10 15:17:02 +00:00
|
|
|
// This must be injected before any path related middleware.
|
|
|
|
mainApp.UsePathTrim();
|
2023-05-15 19:28:33 +00:00
|
|
|
|
2020-09-03 23:11:12 +00:00
|
|
|
if (appConfig.HostWebClient())
|
|
|
|
{
|
2020-10-02 19:30:31 +00:00
|
|
|
var extensionProvider = new FileExtensionContentTypeProvider();
|
|
|
|
|
2020-12-04 21:12:59 +00:00
|
|
|
// subtitles octopus requires .data, .mem files.
|
2020-10-02 19:30:31 +00:00
|
|
|
extensionProvider.Mappings.Add(".data", MediaTypeNames.Application.Octet);
|
2020-12-04 21:12:59 +00:00
|
|
|
extensionProvider.Mappings.Add(".mem", MediaTypeNames.Application.Octet);
|
2023-05-15 19:28:33 +00:00
|
|
|
mainApp.UseDefaultFiles(new DefaultFilesOptions
|
|
|
|
{
|
|
|
|
FileProvider = new PhysicalFileProvider(_serverConfigurationManager.ApplicationPaths.WebPath),
|
|
|
|
RequestPath = "/web"
|
|
|
|
});
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseStaticFiles(new StaticFileOptions
|
|
|
|
{
|
|
|
|
FileProvider = new PhysicalFileProvider(_serverConfigurationManager.ApplicationPaths.WebPath),
|
2020-10-02 19:30:31 +00:00
|
|
|
RequestPath = "/web",
|
|
|
|
ContentTypeProvider = extensionProvider
|
2020-09-03 23:11:12 +00:00
|
|
|
});
|
2020-12-07 02:40:43 +00:00
|
|
|
|
|
|
|
mainApp.UseRobotsRedirection();
|
2020-09-03 23:11:12 +00:00
|
|
|
}
|
2020-09-02 22:31:42 +00:00
|
|
|
|
2023-05-15 19:28:33 +00:00
|
|
|
mainApp.UseStaticFiles();
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseAuthentication();
|
|
|
|
mainApp.UseJellyfinApiSwagger(_serverConfigurationManager);
|
2021-05-05 21:52:39 +00:00
|
|
|
mainApp.UseQueryStringDecoding();
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseRouting();
|
|
|
|
mainApp.UseAuthorization();
|
2019-11-24 14:27:58 +00:00
|
|
|
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseLanFiltering();
|
2023-02-17 18:27:36 +00:00
|
|
|
mainApp.UseIPBasedAccessValidation();
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseWebSocketHandler();
|
|
|
|
mainApp.UseServerStartupMessage();
|
2020-09-02 22:31:42 +00:00
|
|
|
|
2020-04-26 15:28:17 +00:00
|
|
|
if (_serverConfigurationManager.Configuration.EnableMetrics)
|
|
|
|
{
|
2020-09-03 23:14:50 +00:00
|
|
|
// Must be registered after any middleware that could change HTTP response codes or the data will be bad
|
|
|
|
mainApp.UseHttpMetrics();
|
2020-04-26 15:28:17 +00:00
|
|
|
}
|
2020-09-03 23:14:50 +00:00
|
|
|
|
2020-09-03 23:11:12 +00:00
|
|
|
mainApp.UseEndpoints(endpoints =>
|
|
|
|
{
|
|
|
|
endpoints.MapControllers();
|
|
|
|
if (_serverConfigurationManager.Configuration.EnableMetrics)
|
|
|
|
{
|
2023-01-12 03:09:14 +00:00
|
|
|
endpoints.MapMetrics();
|
2020-09-03 23:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
endpoints.MapHealthChecks("/health");
|
|
|
|
});
|
2019-11-24 14:27:58 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|