1.背景
现在的社交平台一般都需要展示用户的归属地,这个功能有下面二个主要功能点,接下来我们来介绍下具体实现。
-
IP 获取
-
IP 转归属地
2.ip获取
2.1 Http请求
对于controller的请求,我们只需要写个拦截器,将用户的ip设置进上下文即可,非常方便。
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {RequestInfo info = new RequestInfo(); info.setUid(Optional.ofNullable(request.getAttribute(TokenInterceptor.ATTRIBUTE_UID)).map(Object::toString).map(Long::parseLong).orElse(null));info.setIp(ServletUtil.getClientIP(request));RequestHolder.set(info);return true;
}
ip在请求头中都会携带。直接用hutool的工具类获取ip
public static String getClientIP(HttpServletRequest request, String... otherHeaderNames) {String[] headers = {"X-Forwarded-For", "X-Real-IP", "Proxy-Client-IP", "WL-Proxy-Client-IP", "HTTP_CLIENT_IP", "HTTP_X_FORWARDED_FOR"};if (ArrayUtil.isNotEmpty(otherHeaderNames)) {headers = ArrayUtil.addAll(headers, otherHeaderNames);}return getClientIPByHeader(request, headers);
}
需要注意的是,如果我们开启了nginx来带来请求,需要在nginx里面保存用户真实ip到X-Real-IP,否则你拿到的就是nginx的ip地址了。
location /{proxy_pass http://127.0.0.1:8088;# 在 Nginx 的配置文件中使用 $remote_addr 可以获取到客户端的 IP 地址,# 这是因为 Nginx 会在接收到客户端请求时自动将客户端的真实 IP 地址存储在 $remote_addr 变量中。Malichyet proxy_set_header X-Real-IP $remote_elidnchatproxy_set_header Host $host;
}
2.2 websocket请求
对于websocket请求获取ip就会麻烦一些。