jellyfin/Jellyfin.Api/Middleware/LanFilteringMiddleware.cs

52 lines
1.7 KiB
C#
Raw Normal View History

using System.Net;
2020-09-03 05:32:22 -04:00
using System.Threading.Tasks;
2023-02-08 17:55:26 -05:00
using MediaBrowser.Common.Extensions;
2020-09-03 05:32:22 -04:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Configuration;
using Microsoft.AspNetCore.Http;
2023-01-31 06:18:10 -05:00
namespace Jellyfin.Api.Middleware;
/// <summary>
/// Validates the LAN host IP based on application configuration.
/// </summary>
public class LanFilteringMiddleware
2020-09-03 05:32:22 -04:00
{
2023-01-31 06:18:10 -05:00
private readonly RequestDelegate _next;
2020-09-03 05:32:22 -04:00
/// <summary>
2023-01-31 06:18:10 -05:00
/// Initializes a new instance of the <see cref="LanFilteringMiddleware"/> class.
2020-09-03 05:32:22 -04:00
/// </summary>
2023-01-31 06:18:10 -05:00
/// <param name="next">The next delegate in the pipeline.</param>
public LanFilteringMiddleware(RequestDelegate next)
2020-09-03 05:32:22 -04:00
{
2023-01-31 06:18:10 -05:00
_next = next;
}
2020-09-03 05:32:22 -04:00
2023-01-31 06:18:10 -05:00
/// <summary>
/// Executes the middleware action.
/// </summary>
/// <param name="httpContext">The current HTTP context.</param>
/// <param name="networkManager">The network manager.</param>
/// <param name="serverConfigurationManager">The server configuration manager.</param>
/// <returns>The async task.</returns>
public async Task Invoke(HttpContext httpContext, INetworkManager networkManager, IServerConfigurationManager serverConfigurationManager)
{
2023-02-08 17:55:26 -05:00
if (serverConfigurationManager.GetNetworkConfiguration().EnableRemoteAccess)
{
await _next(httpContext).ConfigureAwait(false);
return;
}
2020-09-03 05:32:22 -04:00
2023-02-17 13:27:36 -05:00
var host = httpContext.GetNormalizedRemoteIP();
2023-02-08 17:55:26 -05:00
if (!networkManager.IsInLocalNetwork(host))
2020-09-03 05:32:22 -04:00
{
// No access from network, respond with 503 instead of 200.
httpContext.Response.StatusCode = StatusCodes.Status503ServiceUnavailable;
2023-01-31 06:18:10 -05:00
return;
}
2023-01-31 06:18:10 -05:00
await _next(httpContext).ConfigureAwait(false);
2020-09-03 05:32:22 -04:00
}
}