|
@@ -1,5 +1,6 @@
|
|
|
package com.scbfkj.uni.api;
|
|
|
|
|
|
+import com.google.common.util.concurrent.RateLimiter;
|
|
|
import com.scbfkj.uni.library.DataFormatUtil;
|
|
|
import com.scbfkj.uni.library.RequestUtil;
|
|
|
import com.scbfkj.uni.library.UniReturnUtil;
|
|
@@ -19,6 +20,9 @@ import org.springframework.web.context.request.ServletRequestAttributes;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.util.*;
|
|
|
+import java.util.concurrent.TimeUnit;
|
|
|
+import java.util.regex.Pattern;
|
|
|
+import java.util.stream.Stream;
|
|
|
|
|
|
@Component
|
|
|
@Aspect
|
|
@@ -28,7 +32,8 @@ public class LogAop {
|
|
|
@Resource
|
|
|
private SecurityService securityService;
|
|
|
|
|
|
- private static List<Map<String, Object>> apiInfos;
|
|
|
+
|
|
|
+ private static Map<String, RateLimiter> rateLimiterMap=new HashMap<>();
|
|
|
|
|
|
|
|
|
@Around(value = "within( com.scbfkj.uni.api.*Api)")
|
|
@@ -44,19 +49,43 @@ public class LogAop {
|
|
|
|
|
|
// 请求
|
|
|
String uri = request.getRequestURI();
|
|
|
+
|
|
|
+
|
|
|
// 请求参数
|
|
|
Object[] args = joinPoint.getArgs();
|
|
|
Object returnData = null;
|
|
|
String message = null;
|
|
|
|
|
|
try {
|
|
|
+ List<Map<String, Object>> ratelimitruleList = DataBase.query(Config.securityConnectionStr, "select * from ratelimitrule where 1=?", Collections.singletonList(new Object[]{1}));
|
|
|
+ Optional<Map<String, Object>> optional = ratelimitruleList.stream().filter(it -> {
|
|
|
+ Object pathMatch = it.get("pathmatch");
|
|
|
+ if (Objects.isNull(pathMatch)) return true;
|
|
|
+ return uri.matches(pathMatch.toString());
|
|
|
+ }).findFirst();
|
|
|
+ if (optional.isPresent()) {
|
|
|
+ Map<String, Object> map = optional.get();
|
|
|
+ String pathMatch = map.get("pathmatch").toString();
|
|
|
+ if(!rateLimiterMap.containsKey(pathMatch)){
|
|
|
+ String duration = map.getOrDefault("duration", 1).toString();
|
|
|
+ String limitValue = map.getOrDefault("limitvalue", 100).toString();
|
|
|
+ rateLimiterMap.put(pathMatch,RateLimiter.create(Double.parseDouble(limitValue),Integer.parseInt(duration), TimeUnit.SECONDS));
|
|
|
+ }
|
|
|
+ RateLimiter rateLimiter = rateLimiterMap.get(pathMatch);
|
|
|
+ String timeOut = map.getOrDefault("timeout", 1).toString();
|
|
|
+ boolean acquire = rateLimiter.tryAcquire(Integer.parseInt(timeOut), TimeUnit.SECONDS);
|
|
|
+ if(!acquire){
|
|
|
+ message = map.getOrDefault("returnmessage", "请求频率过高,请降低请求频率").toString();
|
|
|
+ return ResponseEntity.ok(UniReturnUtil.fail(message));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
if (Config.securityEnable) {
|
|
|
- if (Objects.isNull(apiInfos) || apiInfos.isEmpty()) {
|
|
|
- apiInfos = DataBase.query(Config.securityConnectionStr, "select * from apiinfo", new ArrayList<>() {{
|
|
|
+ List<Map<String,Object>> apiInfos = DataBase.query(Config.securityConnectionStr, "select * from apiinfo", new ArrayList<>() {{
|
|
|
add(new Object[]{});
|
|
|
}});
|
|
|
- }
|
|
|
+
|
|
|
|
|
|
Optional<Map<String, Object>> requestpath = apiInfos.stream().filter(it -> {
|
|
|
Object o = it.get("requestpath");
|
|
@@ -112,11 +141,7 @@ public class LogAop {
|
|
|
try {
|
|
|
put("applicationid", RequestUtil.getAppId());
|
|
|
} catch (Exception e) {
|
|
|
- if (Config.debug) {
|
|
|
- e.printStackTrace();
|
|
|
- } else {
|
|
|
System.out.println(UniReturnUtil.getMessage(e));
|
|
|
- }
|
|
|
}
|
|
|
}});
|
|
|
}
|