using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text.RegularExpressions; using Znyc.Recruitment.Admin.Commons.Helpers; using Znyc.Recruitment.Admin.Commons.Json; using Znyc.Recruitment.Admin.Commons.Log; using Znyc.Recruitment.Admin.Commons.Net.TencentIp; namespace Znyc.Recruitment.Admin.Commons.Net { /// /// IP地址 /// public class IpAddressUtil { /// /// Ip地址段是否包含另外一个IP地址 /// /// /// /// public static bool ContainsIp(string rule, string clientIp) { IPAddress ip = ParseIp(clientIp); IpAddressRange range = new IpAddressRange(rule); if (range.Contains(ip)) { return true; } return false; } /// /// Ip地址集合是否包含另外一个IP地址 /// /// Ip地址集合List /// /// public static bool ContainsIp(List ipRules, string clientIp) { IPAddress ip = ParseIp(clientIp); if (ipRules != null && ipRules.Any()) { foreach (string rule in ipRules) { IpAddressRange range = new IpAddressRange(rule); if (range.Contains(ip)) { return true; } } } return false; } /// /// Ip地址集合是否包含另外一个IP地址 /// /// /// /// /// public static bool ContainsIp(List ipRules, string clientIp, out string rule) { rule = null; IPAddress ip = ParseIp(clientIp); if (ipRules != null && ipRules.Any()) { foreach (string r in ipRules) { IpAddressRange range = new IpAddressRange(r); if (range.Contains(ip)) { rule = r; return true; } } } return false; } /// /// /// /// /// public static IPAddress ParseIp(string ipAddress) { return IPAddress.Parse(ipAddress); } /// /// 是否为ip /// /// /// public static bool IsIP(string ip) { return Regex.IsMatch(ip, @"^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)$"); } /// /// 根据腾讯地图接口查询IP所属地区 /// /// /// public static string GetCityByIp(string strIP) { try { string url = "https://apis.map.qq.com/ws/location/v1/ip?ip=" + strIP + "&key=WANBZ-6C56D-6P34Y-HWNMG-YHAH7-BJFP5"; string jsonText = HttpRequestHelper.HttpGet(url); TencentIpResult ipResult = jsonText.ToObject(); if (ipResult.status == 0) { string nation = ipResult.result.ad_info.nation.ToString(); //国家 string province = ipResult.result.ad_info.province.ToString(); //省份 string city = ipResult.result.ad_info.city.ToString(); //城市 string district = ipResult.result.ad_info.district.ToString(); //区/县 string adcode = ipResult.result.ad_info.adcode.ToString(); //行政区划代码 string resultStr = ""; if (nation is { Length: > 0 }) { resultStr += nation; } if (province is { Length: > 0 }) { resultStr += province; } if (city is { Length: > 0 }) { resultStr += city; } if (district is { Length: > 0 }) { resultStr += district; } return resultStr; } else { Log4NetHelper.Error(strIP + "获取地区接口调用异常。" + ipResult.message); return "未知"; } } catch (Exception ex) { Log4NetHelper.Error(strIP + "获取地区异常。" + ex.Message); return "未知"; } } } }