jellyfin/MediaBrowser.Common/Extensions/HttpContextExtensions.cs

42 lines
1.5 KiB
C#
Raw Permalink Normal View History

2020-09-10 14:30:33 +02:00
using System.Net;
2020-07-17 17:06:52 +02:00
using Microsoft.AspNetCore.Http;
2020-07-18 17:54:23 +02:00
namespace MediaBrowser.Common.Extensions
2020-07-17 17:06:52 +02:00
{
/// <summary>
2020-07-18 17:54:23 +02:00
/// Static class containing extension methods for <see cref="HttpContext"/>.
2020-07-17 17:06:52 +02:00
/// </summary>
2020-07-18 17:54:23 +02:00
public static class HttpContextExtensions
2020-07-17 17:06:52 +02:00
{
/// <summary>
/// Checks the origin of the HTTP context.
2020-07-17 17:06:52 +02:00
/// </summary>
/// <param name="context">The incoming HTTP context.</param>
2020-09-02 12:22:14 +02:00
/// <returns><c>true</c> if the request is coming from LAN, <c>false</c> otherwise.</returns>
public static bool IsLocal(this HttpContext context)
2020-07-17 17:06:52 +02:00
{
2022-12-05 15:00:20 +01:00
return (context.Connection.LocalIpAddress is null
&& context.Connection.RemoteIpAddress is null)
|| Equals(context.Connection.LocalIpAddress, context.Connection.RemoteIpAddress);
2020-07-17 17:06:52 +02:00
}
/// <summary>
/// Extracts the remote IP address of the caller of the HTTP context.
2020-07-17 17:06:52 +02:00
/// </summary>
/// <param name="context">The HTTP context.</param>
2020-09-02 12:22:14 +02:00
/// <returns>The remote caller IP address.</returns>
2023-02-17 19:27:36 +01:00
public static IPAddress GetNormalizedRemoteIP(this HttpContext context)
2020-07-17 17:06:52 +02:00
{
2020-09-10 14:30:33 +02:00
// Default to the loopback address if no RemoteIpAddress is specified (i.e. during integration tests)
var ip = context.Connection.RemoteIpAddress ?? IPAddress.Loopback;
2020-09-02 12:22:14 +02:00
if (ip.IsIPv4MappedToIPv6)
{
ip = ip.MapToIPv4();
}
return ip;
2020-07-17 17:06:52 +02:00
}
}
}