| | 1 | | using System.Net; |
| | 2 | | using System.Threading.Tasks; |
| | 3 | | using MediaBrowser.Common.Extensions; |
| | 4 | | using MediaBrowser.Common.Net; |
| | 5 | | using MediaBrowser.Controller.Configuration; |
| | 6 | | using Microsoft.AspNetCore.Http; |
| | 7 | |
|
| | 8 | | namespace Jellyfin.Api.Middleware; |
| | 9 | |
|
| | 10 | | /// <summary> |
| | 11 | | /// Validates the LAN host IP based on application configuration. |
| | 12 | | /// </summary> |
| | 13 | | public class LanFilteringMiddleware |
| | 14 | | { |
| | 15 | | private readonly RequestDelegate _next; |
| | 16 | |
|
| | 17 | | /// <summary> |
| | 18 | | /// Initializes a new instance of the <see cref="LanFilteringMiddleware"/> class. |
| | 19 | | /// </summary> |
| | 20 | | /// <param name="next">The next delegate in the pipeline.</param> |
| | 21 | | public LanFilteringMiddleware(RequestDelegate next) |
| | 22 | | { |
| 21 | 23 | | _next = next; |
| 21 | 24 | | } |
| | 25 | |
|
| | 26 | | /// <summary> |
| | 27 | | /// Executes the middleware action. |
| | 28 | | /// </summary> |
| | 29 | | /// <param name="httpContext">The current HTTP context.</param> |
| | 30 | | /// <param name="networkManager">The network manager.</param> |
| | 31 | | /// <param name="serverConfigurationManager">The server configuration manager.</param> |
| | 32 | | /// <returns>The async task.</returns> |
| | 33 | | public async Task Invoke(HttpContext httpContext, INetworkManager networkManager, IServerConfigurationManager server |
| | 34 | | { |
| | 35 | | if (serverConfigurationManager.GetNetworkConfiguration().EnableRemoteAccess) |
| | 36 | | { |
| | 37 | | await _next(httpContext).ConfigureAwait(false); |
| | 38 | | return; |
| | 39 | | } |
| | 40 | |
|
| | 41 | | var host = httpContext.GetNormalizedRemoteIP(); |
| | 42 | | if (!networkManager.IsInLocalNetwork(host)) |
| | 43 | | { |
| | 44 | | // No access from network, respond with 503 instead of 200. |
| | 45 | | httpContext.Response.StatusCode = StatusCodes.Status503ServiceUnavailable; |
| | 46 | | return; |
| | 47 | | } |
| | 48 | |
|
| | 49 | | await _next(httpContext).ConfigureAwait(false); |
| | 50 | | } |
| | 51 | | } |