AddressUtils.java 1.27 KB
package com.lhcredit.common.utils;

import com.alibaba.fastjson.JSONObject;
import com.lhcredit.common.utils.http.HttpUtils;
import com.lhcredit.framework.config.CommonConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * 获取地址类
 */
public class AddressUtils {
    private static final Logger log = LoggerFactory.getLogger(AddressUtils.class);

    public static final String IP_URL = "http://ip.taobao.com/service/getIpInfo.php";

    public static String getRealAddressByIP(String ip) {
//        String address = "XX XX";
//        // 内网不查询
//        if (IpUtils.internalIp(ip)) {
//            return "内网IP";
//        }
//        if (CommonConfig.isAddressEnabled()) {
//            String rspStr = HttpUtils.sendPost(IP_URL, "ip=" + ip);
//            if (StringUtils.isEmpty(rspStr)) {
//                log.error("获取地理位置异常 {}", ip);
//                return address;
//            }
//            JSONObject obj = JSONObject.parseObject(rspStr);
//            JSONObject data = obj.getObject("data", JSONObject.class);
//            String region = data.getString("region");
//            String city = data.getString("city");
//            address = region + " " + city;
//        }
//        return address;
        return "";
    }
}