|
|
@ -2,9 +2,8 @@ package com.ruoyi.common.utils;
|
|
|
|
|
|
|
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
import com.ruoyi.common.config.Global;
|
|
|
|
import com.ruoyi.common.config.Global;
|
|
|
|
import com.ruoyi.common.json.JSON;
|
|
|
|
|
|
|
|
import com.ruoyi.common.json.JSONObject;
|
|
|
|
|
|
|
|
import com.ruoyi.common.utils.http.HttpUtils;
|
|
|
|
import com.ruoyi.common.utils.http.HttpUtils;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -16,12 +15,15 @@ public class AddressUtils
|
|
|
|
{
|
|
|
|
{
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(AddressUtils.class);
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(AddressUtils.class);
|
|
|
|
|
|
|
|
|
|
|
|
public static final String IP_URL = "http://ip.taobao.com/service/getIpInfo.php";
|
|
|
|
// IP地址查询
|
|
|
|
|
|
|
|
public static final String IP_URL = "http://whois.pconline.com.cn/ipJson.jsp";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 未知地址
|
|
|
|
|
|
|
|
public static final String UNKNOWN = "XX XX";
|
|
|
|
|
|
|
|
|
|
|
|
public static String getRealAddressByIP(String ip)
|
|
|
|
public static String getRealAddressByIP(String ip)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
String address = "XX XX";
|
|
|
|
String address = UNKNOWN;
|
|
|
|
|
|
|
|
|
|
|
|
// 内网不查询
|
|
|
|
// 内网不查询
|
|
|
|
if (IpUtils.internalIp(ip))
|
|
|
|
if (IpUtils.internalIp(ip))
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -29,20 +31,18 @@ public class AddressUtils
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Global.isAddressEnabled())
|
|
|
|
if (Global.isAddressEnabled())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
String rspStr = HttpUtils.sendPost(IP_URL, "ip=" + ip);
|
|
|
|
|
|
|
|
if (StringUtils.isEmpty(rspStr))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
log.error("获取地理位置异常 {}", ip);
|
|
|
|
|
|
|
|
return address;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
JSONObject obj;
|
|
|
|
|
|
|
|
try
|
|
|
|
try
|
|
|
|
{
|
|
|
|
{
|
|
|
|
obj = JSON.unmarshal(rspStr, JSONObject.class);
|
|
|
|
String rspStr = HttpUtils.sendGet(IP_URL, "ip=" + ip + "&json=true");
|
|
|
|
JSONObject data = obj.getObj("data");
|
|
|
|
if (StringUtils.isEmpty(rspStr))
|
|
|
|
String region = data.getStr("region");
|
|
|
|
{
|
|
|
|
String city = data.getStr("city");
|
|
|
|
log.error("获取地理位置异常 {}", ip);
|
|
|
|
address = region + " " + city;
|
|
|
|
return UNKNOWN;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
JSONObject obj = JSONObject.parseObject(rspStr);
|
|
|
|
|
|
|
|
String region = obj.getString("pro");
|
|
|
|
|
|
|
|
String city = obj.getString("city");
|
|
|
|
|
|
|
|
return String.format("%s %s", region, city);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
{
|
|
|
|