簡單的IPHelper.cs 訪客IP獲取類

龐順龍發表於2019-05-11

簡單的IPHelper.cs 訪客IP獲取類

public class IPHelper
{
    public static string GetVisitorsIPAddress()
    {
        string result = String.Empty;

        result = System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];

        // 如果使用代理,獲取真實IP 
        if (result != null && result.IndexOf(".") == -1)    //沒有“.”肯定是非IPv4格式 
            result = null;
        else if (result != null)
        {
            if (result.IndexOf(",") != -1)
            {
                //有“,”,估計多個代理。取第一個不是內網的IP。 
                result = result.Replace(" ", "").Replace("'", "");
                string[] temparyip = result.Split(",;".ToCharArray());
                for (int i = 0; i < temparyip.Length; i++)
                {
                    if (IsIPAddress(temparyip[i])
                        && temparyip[i].Substring(0, 3) != "10."
                        && temparyip[i].Substring(0, 7) != "192.168"
                        && temparyip[i].Substring(0, 7) != "172.16.")
                    {
                        return temparyip[i];    //找到不是內網的地址 
                    }
                }
            }
            else if (IsIPAddress(result)) //代理即是IP格式 
                return result;
            else
                result = null;    //代理中的內容 非IP,取IP 
        }
        if (null == result || result == String.Empty)
            result = System.Web.HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];

        if (result == null || result == String.Empty)
            result = System.Web.HttpContext.Current.Request.UserHostAddress;

        return result; 
    }

    /// <summary>
    /// 判斷是否是IP地址格式 0.0.0.0
    /// </summary>
    /// <param name="str1">待判斷的IP地址</param>
    /// <returns>true or false</returns>
    private static bool IsIPAddress(string str1)
    {
        if (str1 == null || str1 == string.Empty || str1.Length < 7 || str1.Length > 15) return false;

        string regformat = @"^\d{1,3}[\.]\d{1,3}[\.]\d{1,3}[\.]\d{1,3}$";

        Regex regex = new Regex(regformat, RegexOptions.IgnoreCase);
        return regex.IsMatch(str1);
    }
}

內容均為作者獨立觀點,不代表八零IT人立場,如涉及侵權,請及時告知。

相關文章