You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.5 KiB
Java

8 years ago
package com.ruoyi.common.utils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.alibaba.fastjson.JSONObject;
7 years ago
import com.ruoyi.common.config.Global;
import com.ruoyi.common.utils.http.HttpUtils;
8 years ago
/**
*
*
* @author ruoyi
*/
public class AddressUtils
{
private static final Logger log = LoggerFactory.getLogger(AddressUtils.class);
// IP地址查询
public static final String IP_URL = "http://whois.pconline.com.cn/ipJson.jsp";
// 未知地址
public static final String UNKNOWN = "XX XX";
8 years ago
public static String getRealAddressByIP(String ip)
{
String address = UNKNOWN;
// 内网不查询
if (IpUtils.internalIp(ip))
{
return "内网IP";
}
7 years ago
if (Global.isAddressEnabled())
8 years ago
{
7 years ago
try
{
String rspStr = HttpUtils.sendGet(IP_URL, "ip=" + ip + "&json=true");
if (StringUtils.isEmpty(rspStr))
{
log.error("获取地理位置异常 {}", ip);
return UNKNOWN;
}
JSONObject obj = JSONObject.parseObject(rspStr);
String region = obj.getString("pro");
String city = obj.getString("city");
return String.format("%s %s", region, city);
7 years ago
}
catch (Exception e)
{
log.error("获取地理位置异常 {}", ip);
}
8 years ago
}
return address;
}
}