| | 1 | | using System; |
| | 2 | | using System.IO; |
| | 3 | | using System.Net; |
| | 4 | | using Jellyfin.Server.Helpers; |
| | 5 | | using MediaBrowser.Common.Configuration; |
| | 6 | | using MediaBrowser.Controller.Extensions; |
| | 7 | | using Microsoft.AspNetCore.Hosting; |
| | 8 | | using Microsoft.Extensions.Configuration; |
| | 9 | | using Microsoft.Extensions.Hosting; |
| | 10 | | using Microsoft.Extensions.Logging; |
| | 11 | |
|
| | 12 | | namespace Jellyfin.Server.Extensions; |
| | 13 | |
|
| | 14 | | /// <summary> |
| | 15 | | /// Extensions for configuring the web host builder. |
| | 16 | | /// </summary> |
| | 17 | | public 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 | | { |
| 21 | 35 | | return builder |
| 21 | 36 | | .UseKestrel((builderContext, options) => |
| 21 | 37 | | { |
| 21 | 38 | | var addresses = appHost.NetManager.GetAllBindInterfaces(false); |
| 21 | 39 | |
|
| 21 | 40 | | bool flagged = false; |
| 21 | 41 | | foreach (var netAdd in addresses) |
| 21 | 42 | | { |
| 21 | 43 | | var address = netAdd.Address; |
| 21 | 44 | | logger.LogInformation("Kestrel is listening on {Address}", address.Equals(IPAddress.IPv6Any) ? "all |
| 21 | 45 | | options.Listen(netAdd.Address, appHost.HttpPort); |
| 21 | 46 | | if (appHost.ListenWithHttps) |
| 21 | 47 | | { |
| 21 | 48 | | options.Listen( |
| 21 | 49 | | address, |
| 21 | 50 | | appHost.HttpsPort, |
| 21 | 51 | | listenOptions => listenOptions.UseHttps(appHost.Certificate)); |
| 21 | 52 | | } |
| 21 | 53 | | else if (builderContext.HostingEnvironment.IsDevelopment()) |
| 21 | 54 | | { |
| 21 | 55 | | try |
| 21 | 56 | | { |
| 21 | 57 | | options.Listen( |
| 21 | 58 | | address, |
| 21 | 59 | | appHost.HttpsPort, |
| 21 | 60 | | listenOptions => listenOptions.UseHttps()); |
| 21 | 61 | | } |
| 21 | 62 | | catch (InvalidOperationException) |
| 21 | 63 | | { |
| 21 | 64 | | if (!flagged) |
| 21 | 65 | | { |
| 21 | 66 | | logger.LogWarning("Failed to listen to HTTPS using the ASP.NET Core HTTPS development ce |
| 21 | 67 | | flagged = true; |
| 21 | 68 | | } |
| 21 | 69 | | } |
| 21 | 70 | | } |
| 21 | 71 | | } |
| 21 | 72 | |
|
| 21 | 73 | | // Bind to unix socket (only on unix systems) |
| 21 | 74 | | if (startupConfig.UseUnixSocket() && Environment.OSVersion.Platform == PlatformID.Unix) |
| 21 | 75 | | { |
| 21 | 76 | | var socketPath = StartupHelpers.GetUnixSocketPath(startupConfig, appPaths); |
| 21 | 77 | |
|
| 21 | 78 | | // Workaround for https://github.com/aspnet/AspNetCore/issues/14134 |
| 21 | 79 | | if (File.Exists(socketPath)) |
| 21 | 80 | | { |
| 21 | 81 | | File.Delete(socketPath); |
| 21 | 82 | | } |
| 21 | 83 | |
|
| 21 | 84 | | options.ListenUnixSocket(socketPath); |
| 21 | 85 | | logger.LogInformation("Kestrel listening to unix socket {SocketPath}", socketPath); |
| 21 | 86 | | } |
| 21 | 87 | | }) |
| 21 | 88 | | .UseStartup(context => new Startup(appHost, context.Configuration)); |
| | 89 | | } |
| | 90 | | } |