|
@@ -0,0 +1,85 @@
|
|
|
+package com.fdkankan.tracking.utils;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import org.springframework.http.*;
|
|
|
+import org.springframework.web.client.RestTemplate;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+
|
|
|
+public class IpUtils {
|
|
|
+
|
|
|
+ private static RestTemplate restTemplate = new RestTemplate();
|
|
|
+
|
|
|
+ public static String getIPAddress(HttpServletRequest request) {
|
|
|
+ String ip = null;
|
|
|
+
|
|
|
+ //X-Forwarded-For:Squid 服务代理
|
|
|
+ String ipAddresses = request.getHeader("X-Forwarded-For");
|
|
|
+
|
|
|
+ if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
|
|
|
+ //Proxy-Client-IP:apache 服务代理
|
|
|
+ ipAddresses = request.getHeader("Proxy-Client-IP");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
|
|
|
+ //WL-Proxy-Client-IP:weblogic 服务代理
|
|
|
+ ipAddresses = request.getHeader("WL-Proxy-Client-IP");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
|
|
|
+ //HTTP_CLIENT_IP:有些代理服务器
|
|
|
+ ipAddresses = request.getHeader("HTTP_CLIENT_IP");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
|
|
|
+ //X-Real-IP:nginx服务代理
|
|
|
+ ipAddresses = request.getHeader("X-Real-IP");
|
|
|
+ }
|
|
|
+
|
|
|
+ //有些网络通过多层代理,那么获取到的ip就会有多个,一般都是通过逗号(,)分割开来,并且第一个ip为客户端的真实IP
|
|
|
+ if (ipAddresses != null && ipAddresses.length() != 0) {
|
|
|
+ ip = ipAddresses.split(",")[0];
|
|
|
+ }
|
|
|
+
|
|
|
+ //还是不能获取到,最后再通过request.getRemoteAddr();获取
|
|
|
+ if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
|
|
|
+ ip = request.getRemoteAddr();
|
|
|
+ }
|
|
|
+ return ip;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void main(String[] args) {
|
|
|
+ getUserAddress(null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static String getUserAddress(String ip) {
|
|
|
+ try {
|
|
|
+// OkHttpClient client = new OkHttpClient().newBuilder()
|
|
|
+// .build();
|
|
|
+// MediaType mediaType = MediaType.parse("text/plain");
|
|
|
+// RequestBody body = RequestBody.create(mediaType, "");
|
|
|
+// Request request = new Request.Builder()
|
|
|
+// .url("https://ip.taobao.com/outGetIpInfo?accessKey=alibaba-inc&ip=221.4.210.172")
|
|
|
+// .method("GET", null)
|
|
|
+// .addHeader("Cookie", "XSRF-TOKEN=863142da-e773-4e28-9dda-e256fcdb42e5")
|
|
|
+// .build();
|
|
|
+// Response response = client.newCall(request).execute();
|
|
|
+// return JSONObject.parseObject(response.body().string()).getString("data");
|
|
|
+
|
|
|
+// HttpHeaders headers = new HttpHeaders();
|
|
|
+// MediaType type = MediaType.TEXT_PLAIN;
|
|
|
+// headers.setContentType(type);
|
|
|
+// HttpEntity<String> formEntity = new HttpEntity<>(null,headers);
|
|
|
+// ResponseEntity<JSONObject> responseEntity = restTemplate.exchange("http://ip.taobao.com/outGetIpInfo?accessKey=alibaba-inc&ip=" + ip,
|
|
|
+// HttpMethod.GET,formEntity, JSONObject.class);
|
|
|
+// return responseEntity.getBody().getJSONObject("data").toJSONString();
|
|
|
+
|
|
|
+
|
|
|
+ restTemplate.getForObject("https://ip.taobao.com/outGetIpInfo?accessKey=alibaba-inc&ip=221.4.210.172",String.class);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+
|
|
|
+}
|