|
@@ -1,6 +1,13 @@
|
|
|
package com.scbfkj.uni.api;
|
|
|
|
|
|
import com.google.common.util.concurrent.RateLimiter;
|
|
|
+
|
|
|
+import org.aspectj.lang.ProceedingJoinPoint;
|
|
|
+import org.aspectj.lang.annotation.Around;
|
|
|
+import org.aspectj.lang.annotation.Aspect;
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+
|
|
|
import com.scbfkj.uni.library.DataAliasGetUtil;
|
|
|
import com.scbfkj.uni.library.DataFormatUtil;
|
|
|
import com.scbfkj.uni.library.RequestUtil;
|
|
@@ -9,15 +16,14 @@ import com.scbfkj.uni.process.DataBase;
|
|
|
import com.scbfkj.uni.service.LoggerService;
|
|
|
import com.scbfkj.uni.system.Config;
|
|
|
import com.scbfkj.uni.utils.Util;
|
|
|
-import jakarta.annotation.Resource;
|
|
|
-import org.aspectj.lang.ProceedingJoinPoint;
|
|
|
-import org.aspectj.lang.annotation.Around;
|
|
|
-import org.aspectj.lang.annotation.Aspect;
|
|
|
-import org.springframework.http.ResponseEntity;
|
|
|
-import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
-import java.util.*;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+import java.util.Objects;
|
|
|
+import java.util.Optional;
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
/**
|
|
@@ -26,207 +32,224 @@ import java.util.concurrent.TimeUnit;
|
|
|
@Component
|
|
|
@Aspect
|
|
|
public class LogAop {
|
|
|
-
|
|
|
- // 用于存储限流规则的映射
|
|
|
- private static final Map<String, RateLimiter> rateLimiterMap = new HashMap<>();
|
|
|
- // 数据库操作实例
|
|
|
- private static final DataBase DATA_BASE = new DataBase();
|
|
|
- // 工具类实例
|
|
|
- @Resource
|
|
|
- private Util util;
|
|
|
-
|
|
|
- /**
|
|
|
- * 环绕通知,拦截指定包下的Api请求。
|
|
|
- *
|
|
|
- * @param joinPoint 切点表达式匹配到的连接点
|
|
|
- *
|
|
|
- * @return 返回处理后的响应实体
|
|
|
- *
|
|
|
- * @throws Throwable 抛出异常时处理
|
|
|
- */
|
|
|
- @Around(value = "within(com.scbfkj.uni.api.*Api)")
|
|
|
- public ResponseEntity<Object> invokeAround(ProceedingJoinPoint joinPoint) throws Throwable {
|
|
|
-
|
|
|
- String methodName = joinPoint.getSignature().getName();
|
|
|
- String className = joinPoint.getSignature().getDeclaringTypeName();
|
|
|
-
|
|
|
- if ( "matchService".equals(methodName) && GenericApi.class.getName().equals(className) ) {
|
|
|
- String requestBody = RequestUtil.getRequestBody();
|
|
|
- if ( requestBody != null ) {
|
|
|
- Map<String, Object> body = (Map<String, Object>) DataFormatUtil.toMap(requestBody);
|
|
|
- joinPoint.getArgs()[0] = body;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- LocalDateTime requestTime = LocalDateTime.now();
|
|
|
- // 获取请求信息
|
|
|
- String uri = RequestUtil.getUri();
|
|
|
- Object[] args = joinPoint.getArgs();
|
|
|
- Map<String, Object> returnData = null;
|
|
|
- String message = null;
|
|
|
- Map<String, Object> userInfo = RequestUtil.getUserInfo();
|
|
|
-
|
|
|
- Optional<String> serviceid = Optional.empty();
|
|
|
- String userId = RequestUtil.getUserId();
|
|
|
-
|
|
|
-
|
|
|
- try {
|
|
|
- Map<String, Object> body = null;
|
|
|
- // 检查除特定接口外的服务状态
|
|
|
- if ( args.length > 0 && ! uri.startsWith("/controlApi") && ! uri.startsWith("/file") && ! uri.startsWith("/user") && ! uri.startsWith("/foxlibc") && ! uri.startsWith("/ws") ) {
|
|
|
- Object arg = args[0];
|
|
|
- if ( arg instanceof Map<?, ?> map ) {
|
|
|
- body = (Map<String, Object>) map;
|
|
|
- Util.addFilter(body, serviceid, uri, true);
|
|
|
- serviceid = DataAliasGetUtil.getValue("serviceid", (Map<String, Object>) map);
|
|
|
- if ( serviceid.isEmpty() ) {
|
|
|
- List<Map<String, Object>> query = DATA_BASE.query(Config.getCenterConnectionStr(), "select * from serviceinfo where urilist=?", uri);
|
|
|
- if ( ! query.isEmpty() ) {
|
|
|
- serviceid = DataAliasGetUtil.getValue("serviceid", query.get(0));
|
|
|
- }
|
|
|
- }
|
|
|
- if ( serviceid.isPresent() ) {
|
|
|
- // 检查服务运行状态
|
|
|
- List<Map<String, Object>> mapList = DATA_BASE.query(Config.getCenterConnectionStr(), "select runstate from servicestate where stoptime is null and serviceid=? and containercode = ?", serviceid.get(), Config.getContainerCode());
|
|
|
- if ( mapList.isEmpty() ) {
|
|
|
- throw new RuntimeException("服务没有运行或者被熔断");
|
|
|
- } else {
|
|
|
- Map<String, Object> serviceState = mapList.get(0);
|
|
|
- Object o = serviceState.get("runstate");
|
|
|
- // 判断服务状态
|
|
|
- if ( Objects.equals(o.toString(), "0") ) {
|
|
|
- throw new RuntimeException("服务没有运行或者被熔断");
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 检查是否符合限流规则
|
|
|
- message = checkratelimitrule(uri);
|
|
|
- if ( Objects.nonNull(message) ) {
|
|
|
- return ResponseEntity.ok(UniReturnUtil.fail(message));
|
|
|
- }
|
|
|
-
|
|
|
- // 继续执行原方法逻辑
|
|
|
- ResponseEntity<Map<String, Object>> responseEntity = (ResponseEntity<Map<String, Object>>) joinPoint.proceed(args);
|
|
|
- Map<String, Object> responseEntityBody = responseEntity.getBody();
|
|
|
- if ( responseEntity.getStatusCode().is2xxSuccessful() ) {
|
|
|
- if ( Config.isDebug() ) {
|
|
|
- System.out.println("返回值:" + DataFormatUtil.toString(returnData));
|
|
|
- }
|
|
|
- // 处理返回数据,如果是调试模式,直接返回
|
|
|
- if ( "0".equals(responseEntityBody.get("code")) && serviceid.isPresent() ) {
|
|
|
- List<Map<String, Object>> serviceInfoes = DATA_BASE.query(Config.getCenterConnectionStr(), "select * from serviceinfo where serviceid=?", serviceid.get());
|
|
|
- if ( ! serviceInfoes.isEmpty() ) {
|
|
|
- Map<String, Object> serviceInfo = serviceInfoes.get(0);
|
|
|
- Object raw = serviceInfo.get("raw");
|
|
|
- if ( raw != null && raw.toString().equalsIgnoreCase("1") ) {
|
|
|
- Object data = responseEntityBody.getOrDefault("returnData", responseEntityBody);
|
|
|
- if ( data instanceof List<?> d && d.size() == 1 ) {
|
|
|
- data = d.get(0);
|
|
|
- }
|
|
|
- return ResponseEntity.ok(data);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- return ResponseEntity.ok(responseEntityBody);
|
|
|
- } else {
|
|
|
- returnData = responseEntityBody;
|
|
|
- }
|
|
|
-
|
|
|
- } catch ( Throwable e ) {
|
|
|
- if ( Config.isDebug() ) {
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
- // 错误处理,生成错误日志消息
|
|
|
- message = UniReturnUtil.getMessage(e);
|
|
|
- returnData = UniReturnUtil.fail(message);
|
|
|
- } finally {
|
|
|
- // 记录日志
|
|
|
- HashMap<String, Object> logData = new HashMap<>();
|
|
|
- logData.put("requesttime", requestTime);
|
|
|
- logData.put("requestpath", uri);
|
|
|
- logData.put("requestdata", DataFormatUtil.toString(args));
|
|
|
- logData.put("sessionid", RequestUtil.getSessionId());
|
|
|
- logData.put("returndata", DataFormatUtil.toString(returnData));
|
|
|
- logData.put("returntime", LocalDateTime.now());
|
|
|
- try {
|
|
|
- logData.put("applicationid", RequestUtil.getAppId());
|
|
|
- } catch ( Exception e ) {
|
|
|
- if ( Config.isDebug() ) {
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
- }
|
|
|
- LoggerService.log(LoggerService.LogType.INTERFACE, logData);
|
|
|
- }
|
|
|
-
|
|
|
- Object code = returnData.get("code");
|
|
|
- // 过滤返回数据
|
|
|
- if ( ! Config.isDebug() && Objects.nonNull(code) && "0".equals(code.toString()) && Objects.nonNull(userInfo) && ! "0".equals(userInfo.get("usergroupid").toString()) ) {
|
|
|
- Object returnData1 = returnData.get("returnData");
|
|
|
- if ( returnData1 instanceof List<?> ls ) {
|
|
|
- if ( serviceid.isPresent() ) {
|
|
|
- try {
|
|
|
- List<String> columns = DATA_BASE.query(Config.getSecurityConnectionStr(), "select pagecode from pageconfiguration where pageconfigurationid in (select userpermissions.pageconfigurationid from userpermissions where userid =? and serviceid = ?)", userId, serviceid.get()).stream().map(it -> it.get("pagecode").toString()).toList();
|
|
|
- List<Object> list = ls.stream().map(it -> {
|
|
|
- if ( it instanceof Map<?, ?> map ) {
|
|
|
- HashMap<Object, Object> map1 = new HashMap<>();
|
|
|
- columns.forEach(key -> {
|
|
|
- map1.put(key, map.get(key));
|
|
|
- });
|
|
|
- return map1;
|
|
|
- } else {
|
|
|
- return it;
|
|
|
- }
|
|
|
- }).toList();
|
|
|
- returnData.put("returnData", list);
|
|
|
-
|
|
|
- } catch ( Exception e ) {
|
|
|
- returnData.put("returnData", new ArrayList<>());
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- return ResponseEntity.ok(returnData);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 检查请求是否符合限流规则。
|
|
|
- *
|
|
|
- * @param uri 请求的URI
|
|
|
- *
|
|
|
- * @return 如果请求超过限流规则,则返回提示消息;否则返回null。
|
|
|
- *
|
|
|
- * @throws Exception 抛出异常时处理
|
|
|
- */
|
|
|
- private String checkratelimitrule(String uri) throws Exception {
|
|
|
- // 从数据库查询限流规则
|
|
|
- List<Map<String, Object>> ratelimitruleList = DATA_BASE.query(Config.getSecurityConnectionStr(), "select * from ratelimitrule ");
|
|
|
- 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 ) {
|
|
|
- return map.getOrDefault("returnmessage", "请求频率过高,请降低请求频率").toString();
|
|
|
- }
|
|
|
- }
|
|
|
- return null;
|
|
|
- }
|
|
|
+ // 用于存储限流规则的映射
|
|
|
+ private static final Map<String, RateLimiter> rateLimiterMap = new HashMap<>();
|
|
|
+
|
|
|
+ // 数据库操作实例
|
|
|
+ private static final DataBase DATA_BASE = new DataBase();
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 环绕通知,拦截指定包下的Api请求。
|
|
|
+ *
|
|
|
+ * @param joinPoint 切点表达式匹配到的连接点
|
|
|
+ *
|
|
|
+ * @return 返回处理后的响应实体
|
|
|
+ *
|
|
|
+ * @throws Throwable 抛出异常时处理
|
|
|
+ */
|
|
|
+ @Around(value = "within(com.scbfkj.uni.api.*Api)")
|
|
|
+ public ResponseEntity<Object> invokeAround(ProceedingJoinPoint joinPoint) throws Throwable {
|
|
|
+ String methodName = joinPoint.getSignature().getName();
|
|
|
+ String className = joinPoint.getSignature().getDeclaringTypeName();
|
|
|
+ if ("matchService".equals(methodName) && GenericApi.class.getName().equals(className)) {
|
|
|
+ String requestBody = RequestUtil.getRequestBody();
|
|
|
+ if (requestBody != null) {
|
|
|
+ Map<String, Object> body = (Map<String, Object>) DataFormatUtil.toMap(requestBody);
|
|
|
+ joinPoint.getArgs()[0] = body;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ String uri = RequestUtil.getUri();
|
|
|
+ LocalDateTime requestTime = LocalDateTime.now();
|
|
|
+ // 获取请求信息
|
|
|
+ Object[] args = joinPoint.getArgs();
|
|
|
+ Map<String, Object> returnData = null;
|
|
|
+ String message = null;
|
|
|
+ Map<String, Object> userInfo = RequestUtil.getUserInfo();
|
|
|
+ Optional<String> serviceid = Optional.empty();
|
|
|
+ String userId = RequestUtil.getUserId();
|
|
|
+ try {
|
|
|
+ Map<String, Object> body = null;
|
|
|
+ // 检查除特定接口外的服务状态
|
|
|
+ if (args.length > 0 && ! uri.startsWith("/ws")) {
|
|
|
+ Object arg = args[0];
|
|
|
+ if (arg instanceof Map<?, ?> map) {
|
|
|
+ body = (Map<String, Object>) map;
|
|
|
+ Util.addFilter(body, serviceid, uri, true);
|
|
|
+ serviceid = DataAliasGetUtil.getValue("serviceid", (Map<String, Object>) map);
|
|
|
+ if (serviceid.isEmpty()) {
|
|
|
+ List<Map<String, Object>> query = DATA_BASE.query(Config.getCenterConnectionStr(),
|
|
|
+ "select * from serviceinfo where urilist=?",
|
|
|
+ uri);
|
|
|
+ if (! query.isEmpty()) {
|
|
|
+ serviceid = DataAliasGetUtil.getValue("serviceid", query.get(0));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (serviceid.isPresent() && ! uri.startsWith("/controlApi") && ! uri.startsWith("/file") &&
|
|
|
+ ! uri.startsWith("/user") && ! uri.startsWith("/foxlibc")) {
|
|
|
+ // 检查服务运行状态
|
|
|
+ List<Map<String, Object>> mapList = DATA_BASE.query(Config.getCenterConnectionStr(),
|
|
|
+ "select runstate from servicestate where " +
|
|
|
+ "stoptime is null and " +
|
|
|
+ "serviceid=? and containercode = ?",
|
|
|
+ serviceid.get(), Config.getContainerCode());
|
|
|
+ if (mapList.isEmpty()) {
|
|
|
+ throw new RuntimeException("服务没有运行或者被熔断");
|
|
|
+ } else {
|
|
|
+ Map<String, Object> serviceState = mapList.get(0);
|
|
|
+ Object o = serviceState.get("runstate");
|
|
|
+ // 判断服务状态
|
|
|
+ if (Objects.equals(o.toString(), "0")) {
|
|
|
+ throw new RuntimeException("服务没有运行或者被熔断");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 检查是否符合限流规则
|
|
|
+ message = checkratelimitrule(uri);
|
|
|
+ if (Objects.nonNull(message)) {
|
|
|
+ return ResponseEntity.ok(UniReturnUtil.fail(message));
|
|
|
+ }
|
|
|
+ List<Map<String, Object>> maps =
|
|
|
+ DATA_BASE.query(Config.getSecurityConnectionStr(), "select 1 from apiinfo where requestpath = ? " +
|
|
|
+ "limit 1 offset 0",
|
|
|
+ uri);
|
|
|
+ ResponseEntity<Map<String, Object>> responseEntity;
|
|
|
+ if (! maps.isEmpty()) {
|
|
|
+ responseEntity = GenericApi.execService(body, uri);
|
|
|
+ } else {
|
|
|
+ responseEntity = (ResponseEntity<Map<String, Object>>) joinPoint.proceed(args);
|
|
|
+ }
|
|
|
+ // 继续执行原方法逻辑
|
|
|
+ Map<String, Object> responseEntityBody = responseEntity.getBody();
|
|
|
+ if (responseEntity.getStatusCode().is2xxSuccessful()) {
|
|
|
+ if (Config.isDebug()) {
|
|
|
+ System.out.println("返回值:" + DataFormatUtil.toString(returnData));
|
|
|
+ }
|
|
|
+ // 处理返回数据,如果是调试模式,直接返回
|
|
|
+ if ("0".equals(responseEntityBody.get("code")) && serviceid.isPresent()) {
|
|
|
+ List<Map<String, Object>> serviceInfoes = DATA_BASE.query(Config.getCenterConnectionStr(),
|
|
|
+ "select * from serviceinfo where " +
|
|
|
+ "serviceid=?",
|
|
|
+ serviceid.get());
|
|
|
+ if (! serviceInfoes.isEmpty()) {
|
|
|
+ Map<String, Object> serviceInfo = serviceInfoes.get(0);
|
|
|
+ Object raw = serviceInfo.get("raw");
|
|
|
+ if (raw != null && raw.toString().equalsIgnoreCase("1")) {
|
|
|
+ Object data = responseEntityBody.getOrDefault("returnData", responseEntityBody);
|
|
|
+ if (data instanceof List<?> d && d.size() == 1) {
|
|
|
+ data = d.get(0);
|
|
|
+ }
|
|
|
+ return ResponseEntity.ok(data);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return ResponseEntity.ok(responseEntityBody);
|
|
|
+ } else {
|
|
|
+ returnData = responseEntityBody;
|
|
|
+ }
|
|
|
+ } catch (Throwable e) {
|
|
|
+ if (Config.isDebug()) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ // 错误处理,生成错误日志消息
|
|
|
+ message = UniReturnUtil.getMessage(e);
|
|
|
+ returnData = UniReturnUtil.fail(message);
|
|
|
+ } finally {
|
|
|
+ // 记录日志
|
|
|
+ HashMap<String, Object> logData = new HashMap<>();
|
|
|
+ logData.put("requesttime", requestTime);
|
|
|
+ logData.put("requestpath", uri);
|
|
|
+ logData.put("requestdata", DataFormatUtil.toString(args));
|
|
|
+ logData.put("sessionid", RequestUtil.getSessionId());
|
|
|
+ logData.put("returndata", DataFormatUtil.toString(returnData));
|
|
|
+ logData.put("returntime", LocalDateTime.now());
|
|
|
+ try {
|
|
|
+ logData.put("applicationid", RequestUtil.getAppId());
|
|
|
+ } catch (Exception e) {
|
|
|
+ if (Config.isDebug()) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ LoggerService.log(LoggerService.LogType.INTERFACE, logData);
|
|
|
+ }
|
|
|
+ Object code = returnData.get("code");
|
|
|
+ // 过滤返回数据
|
|
|
+ if (! Config.isDebug() && Objects.nonNull(code) && "0".equals(code.toString()) && Objects.nonNull(userInfo) &&
|
|
|
+ ! "0".equals(userInfo.get("usergroupid").toString())) {
|
|
|
+ Object returnData1 = returnData.get("returnData");
|
|
|
+ if (returnData1 instanceof List<?> ls) {
|
|
|
+ if (serviceid.isPresent()) {
|
|
|
+ try {
|
|
|
+ List<String> columns = DATA_BASE.query(Config.getSecurityConnectionStr(),
|
|
|
+ "select pagecode from pageconfiguration where " +
|
|
|
+ "pageconfigurationid in (select " +
|
|
|
+ "userpermissions.pageconfigurationid from " +
|
|
|
+ "userpermissions where userid =? and " +
|
|
|
+ "serviceid = ?)",
|
|
|
+ userId, serviceid.get()).stream()
|
|
|
+ .map(it -> it.get("pagecode").toString()).toList();
|
|
|
+ List<Object> list = ls.stream().map(it -> {
|
|
|
+ if (it instanceof Map<?, ?> map) {
|
|
|
+ HashMap<Object, Object> map1 = new HashMap<>();
|
|
|
+ columns.forEach(key -> {
|
|
|
+ map1.put(key, map.get(key));
|
|
|
+ });
|
|
|
+ return map1;
|
|
|
+ } else {
|
|
|
+ return it;
|
|
|
+ }
|
|
|
+ }).toList();
|
|
|
+ returnData.put("returnData", list);
|
|
|
+ } catch (Exception e) {
|
|
|
+ returnData.put("returnData", new ArrayList<>());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return ResponseEntity.ok(returnData);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 检查请求是否符合限流规则。
|
|
|
+ *
|
|
|
+ * @param uri 请求的URI
|
|
|
+ *
|
|
|
+ * @return 如果请求超过限流规则,则返回提示消息;否则返回null。
|
|
|
+ *
|
|
|
+ * @throws Exception 抛出异常时处理
|
|
|
+ */
|
|
|
+ private String checkratelimitrule(String uri) throws Exception {
|
|
|
+ // 从数据库查询限流规则
|
|
|
+ List<Map<String, Object>> ratelimitruleList =
|
|
|
+ DATA_BASE.query(Config.getSecurityConnectionStr(), "select * from ratelimitrule ");
|
|
|
+ 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) {
|
|
|
+ return map.getOrDefault("returnmessage", "请求频率过高,请降低请求频率").toString();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
}
|
|
|
|