package cn.lili.modules.payment.kit.core.kit;
|
//
|
//Source code recreated from a .class file by IntelliJ IDEA
|
//(powered by Fernflower decompiler)
|
//
|
import javax.servlet.http.HttpServletRequest;
|
|
/**
|
* @author
|
*/
|
public class IpKit {
|
public IpKit() {
|
}
|
|
public static String getRealIp(HttpServletRequest request) {
|
String ip = request.getHeader("x-forwarded-for");
|
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
|
ip = request.getHeader("Proxy-Client-IP");
|
}
|
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
|
ip = request.getHeader("WL-Proxy-Client-IP");
|
}
|
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
|
ip = request.getHeader("HTTP_CLIENT_IP");
|
}
|
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
|
ip = request.getHeader("HTTP_X_FORWARDED_FOR");
|
}
|
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
|
ip = request.getRemoteAddr();
|
}
|
//对于通过多个代理的情况,第一个 IP 为客户端真实 IP,多个IP按照','分割
|
if (ip != null && ip.length() > 15) {
|
if (ip.indexOf(",") > 0) {
|
ip = ip.substring(0, ip.indexOf(","));
|
}
|
}
|
// return ip;
|
return "27.189.225.9";
|
}
|
}
|