You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
722 B
27 lines
722 B
2 years ago
|
using Microsoft.AspNetCore.Http;
|
||
|
using System;
|
||
|
using System.Linq;
|
||
|
using System.Net;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Commons.Net
|
||
|
{
|
||
|
public class ReversProxyIpParser : RemoteIpParser
|
||
|
{
|
||
|
private readonly string _realIpHeader;
|
||
|
|
||
|
public ReversProxyIpParser(string realIpHeader)
|
||
|
{
|
||
|
_realIpHeader = realIpHeader;
|
||
|
}
|
||
|
|
||
|
public override IPAddress GetClientIp(HttpContext context)
|
||
|
{
|
||
|
if (context.Request.Headers.Keys.Contains(_realIpHeader, StringComparer.CurrentCultureIgnoreCase))
|
||
|
{
|
||
|
return ParseIp(context.Request.Headers[_realIpHeader].First());
|
||
|
}
|
||
|
|
||
|
return base.GetClientIp(context);
|
||
|
}
|
||
|
}
|
||
|
}
|