AddressUtils.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package com.ruoyi.common.utils;
  2. import org.slf4j.Logger;
  3. import org.slf4j.LoggerFactory;
  4. import com.alibaba.fastjson.JSONObject;
  5. import com.ruoyi.common.config.Global;
  6. import com.ruoyi.common.utils.http.HttpUtils;
  7. /**
  8. * 获取地址类
  9. *
  10. * @author ruoyi
  11. */
  12. public class AddressUtils
  13. {
  14. private static final Logger log = LoggerFactory.getLogger(AddressUtils.class);
  15. // IP地址查询
  16. public static final String IP_URL = "http://whois.pconline.com.cn/ipJson.jsp";
  17. // 未知地址
  18. public static final String UNKNOWN = "XX XX";
  19. public static String getRealAddressByIP(String ip)
  20. {
  21. String address = UNKNOWN;
  22. // 内网不查询
  23. if (IpUtils.internalIp(ip))
  24. {
  25. return "内网IP";
  26. }
  27. if (Global.isAddressEnabled())
  28. {
  29. try
  30. {
  31. String rspStr = HttpUtils.sendGet(IP_URL, "ip=" + ip + "&json=true");
  32. if (StringUtils.isEmpty(rspStr))
  33. {
  34. log.error("获取地理位置异常 {}", ip);
  35. return UNKNOWN;
  36. }
  37. JSONObject obj = JSONObject.parseObject(rspStr);
  38. String region = obj.getString("pro");
  39. String city = obj.getString("city");
  40. return String.format("%s %s", region, city);
  41. }
  42. catch (Exception e)
  43. {
  44. log.error("获取地理位置异常 {}", ip);
  45. }
  46. }
  47. return address;
  48. }
  49. }