|
@@ -1,6 +1,5 @@
|
|
package org.jeecg.modules.adweb.common.util;
|
|
package org.jeecg.modules.adweb.common.util;
|
|
|
|
|
|
-
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
import com.maxmind.db.CHMCache;
|
|
import com.maxmind.db.CHMCache;
|
|
import com.maxmind.geoip2.DatabaseReader;
|
|
import com.maxmind.geoip2.DatabaseReader;
|
|
@@ -9,6 +8,7 @@ import com.maxmind.geoip2.model.CityResponse;
|
|
import com.maxmind.geoip2.record.Country;
|
|
import com.maxmind.geoip2.record.Country;
|
|
import com.maxmind.geoip2.record.Location;
|
|
import com.maxmind.geoip2.record.Location;
|
|
import com.maxmind.geoip2.record.Subdivision;
|
|
import com.maxmind.geoip2.record.Subdivision;
|
|
|
|
+
|
|
import org.jeecg.modules.adweb.common.dto.CountryAreaApiDto;
|
|
import org.jeecg.modules.adweb.common.dto.CountryAreaApiDto;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.slf4j.LoggerFactory;
|
|
@@ -31,7 +31,7 @@ import java.util.TimeZone;
|
|
public class GeoIpUtil {
|
|
public class GeoIpUtil {
|
|
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(GeoIpUtil.class);
|
|
private static final Logger log = LoggerFactory.getLogger(GeoIpUtil.class);
|
|
- //GEOIp数据库实例
|
|
|
|
|
|
+ // GEOIp数据库实例
|
|
private static DatabaseReader reader = null;
|
|
private static DatabaseReader reader = null;
|
|
|
|
|
|
@Value("${geoip.static.city.mmdb}")
|
|
@Value("${geoip.static.city.mmdb}")
|
|
@@ -67,12 +67,12 @@ public class GeoIpUtil {
|
|
CountryAreaApiDto dto = new CountryAreaApiDto();
|
|
CountryAreaApiDto dto = new CountryAreaApiDto();
|
|
try {
|
|
try {
|
|
DatabaseReader reader = getDatabaseReader(geoipCityMmdb);
|
|
DatabaseReader reader = getDatabaseReader(geoipCityMmdb);
|
|
- if(reader == null){
|
|
|
|
|
|
+ if (reader == null) {
|
|
return dto;
|
|
return dto;
|
|
}
|
|
}
|
|
InetAddress ipAddress = InetAddress.getByName(ip);
|
|
InetAddress ipAddress = InetAddress.getByName(ip);
|
|
CityResponse response = reader.city(ipAddress);
|
|
CityResponse response = reader.city(ipAddress);
|
|
- //国家
|
|
|
|
|
|
+ // 国家
|
|
Country country = response.getCountry();
|
|
Country country = response.getCountry();
|
|
dto.setCountryZhCN(country.getNames().get("zh-CN"));
|
|
dto.setCountryZhCN(country.getNames().get("zh-CN"));
|
|
if ("香港".equals(country.getNames().get("zh-CN"))) {
|
|
if ("香港".equals(country.getNames().get("zh-CN"))) {
|
|
@@ -85,7 +85,7 @@ public class GeoIpUtil {
|
|
dto.setCountryZhCN("中国澳门");
|
|
dto.setCountryZhCN("中国澳门");
|
|
}
|
|
}
|
|
dto.setCountryIsoCode(country.getIsoCode());
|
|
dto.setCountryIsoCode(country.getIsoCode());
|
|
- //省份
|
|
|
|
|
|
+ // 省份
|
|
Subdivision subdivision = response.getMostSpecificSubdivision();
|
|
Subdivision subdivision = response.getMostSpecificSubdivision();
|
|
dto.setSubdivisionIsoCode(subdivision.getIsoCode());
|
|
dto.setSubdivisionIsoCode(subdivision.getIsoCode());
|
|
dto.setSubdivisionZhCN(subdivision.getNames().get("zh-CN"));
|
|
dto.setSubdivisionZhCN(subdivision.getNames().get("zh-CN"));
|
|
@@ -104,6 +104,7 @@ public class GeoIpUtil {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 根据ip获取时区
|
|
* 根据ip获取时区
|
|
|
|
+ *
|
|
* @param ip
|
|
* @param ip
|
|
* @return 时区
|
|
* @return 时区
|
|
* @author Cyan -- 2020/3/9 10:58
|
|
* @author Cyan -- 2020/3/9 10:58
|
|
@@ -125,26 +126,25 @@ public class GeoIpUtil {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 根据ip获取当地时区时间
|
|
* 根据ip获取当地时区时间
|
|
|
|
+ *
|
|
* @param ip
|
|
* @param ip
|
|
* @return
|
|
* @return
|
|
* @author Cyan -- 2020/3/9 11:06
|
|
* @author Cyan -- 2020/3/9 11:06
|
|
*/
|
|
*/
|
|
- public Date getLocalhostTime(String ip,Date date) {
|
|
|
|
- SimpleDateFormat sdf = new SimpleDateFormat(DateUtil.DATE_FORMAT_FIVE);
|
|
|
|
|
|
+ public Date getLocalhostTime(String ip, Date date) {
|
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat(DateUtil.DATE_TIME_FORMAT);
|
|
String timeZone = getTimeZone(ip);
|
|
String timeZone = getTimeZone(ip);
|
|
- if(StringUtils.isEmpty(timeZone)){
|
|
|
|
|
|
+ if (StringUtils.isEmpty(timeZone)) {
|
|
timeZone = "Asia/Shanghai";
|
|
timeZone = "Asia/Shanghai";
|
|
}
|
|
}
|
|
sdf.setTimeZone(TimeZone.getTimeZone(timeZone));
|
|
sdf.setTimeZone(TimeZone.getTimeZone(timeZone));
|
|
String dateStr = sdf.format(date);
|
|
String dateStr = sdf.format(date);
|
|
Date res = new Date();
|
|
Date res = new Date();
|
|
try {
|
|
try {
|
|
- res = DateUtil.getFormatDate(dateStr,DateUtil.DATE_FORMAT_FIVE);
|
|
|
|
- }catch (Exception e){
|
|
|
|
|
|
+ res = DateUtil.getFormatDate(dateStr, DateUtil.DATE_TIME_FORMAT);
|
|
|
|
+ } catch (Exception e) {
|
|
log.error("获取ip时区时间失败", e);
|
|
log.error("获取ip时区时间失败", e);
|
|
}
|
|
}
|
|
return res;
|
|
return res;
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
}
|
|
}
|