...
|
...
|
@@ -4,6 +4,8 @@ import com.alibaba.fastjson.JSONArray; |
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.example.gateway.model.PERMISSION;
|
|
|
import com.example.gateway.model.ROLE;
|
|
|
import com.example.gateway.routerImpl.GBKServerHttpResponseDecorator;
|
|
|
import com.example.gateway.routerImpl.UTF8ServerHttpResponseDecorator;
|
|
|
import com.example.gateway.util.JsonToBean;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.reactivestreams.Publisher;
|
...
|
...
|
@@ -85,44 +87,8 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
|
// }
|
|
|
// };
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 测试返回中文乱码
|
|
|
*/
|
|
|
ServerHttpResponseDecorator decoratedResponseWindows = new ServerHttpResponseDecorator(response) {
|
|
|
@Override
|
|
|
public Mono<Void> writeWith(Publisher<? extends DataBuffer> body) {
|
|
|
if (HttpStatus.OK.equals(getStatusCode()) && body instanceof Flux) {
|
|
|
Flux<? extends DataBuffer> fluxBody = Flux.from(body);
|
|
|
return super.writeWith(fluxBody.buffer().map(dataBuffers -> {
|
|
|
|
|
|
StringBuffer stringBuffer = new StringBuffer();
|
|
|
dataBuffers.forEach(dataBuffer -> {
|
|
|
byte[] content = new byte[dataBuffer.readableByteCount()];
|
|
|
dataBuffer.read(content);
|
|
|
DataBufferUtils.release(dataBuffer);
|
|
|
String tempStr = new String(content, Charset.forName("ISO_8859_1"));
|
|
|
stringBuffer.append(tempStr);
|
|
|
});
|
|
|
|
|
|
String str = new String(stringBuffer);
|
|
|
// String fileKey = "\":\"" + Const.DATA_BASE_FILE_URL_HEAD + Const.M00;
|
|
|
// if (str.contains(fileKey)) {
|
|
|
// //修改
|
|
|
// String value = "\":\"" + Const.SYSTEMS_FILE_URL_HEAD + Const.DATA_BASE_FILE_URL_HEAD + Const.M00;
|
|
|
// str = str.replaceAll(fileKey, value);
|
|
|
// }
|
|
|
|
|
|
byte[] content = str.getBytes(Charset.forName("ISO_8859_1"));
|
|
|
return bufferFactory().wrap(content);
|
|
|
}));
|
|
|
}
|
|
|
// if body is not a flux. never got there.
|
|
|
return super.writeWith(body);
|
|
|
}
|
|
|
};
|
|
|
return chain.filter(exchange.mutate().response(decoratedResponseWindows).build());
|
|
|
ServerHttpResponseDecorator decoratedResponseGBK= new GBKServerHttpResponseDecorator(response);
|
|
|
return chain.filter(exchange.mutate().response(decoratedResponseGBK).build());
|
|
|
//
|
|
|
// return chain.filter(exchange);
|
|
|
}
|
...
|
...
|
@@ -137,8 +103,6 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
|
if (anonymousUrlFilter(request)){
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
boolean flag = false;
|
|
|
String token = "";
|
|
|
if (!request.getPath().toString().contains(LOGIN)) {
|
|
|
HttpHeaders rqHeader = request.getHeaders();
|
...
|
...
|
@@ -157,15 +121,14 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
|
log.trace("访问url:[{}]<->权限[{}]",request.getPath().toString(),permission.getUrl());
|
|
|
if (pathMatcher.match(permission.getUrl(), request.getPath().toString())) {
|
|
|
log.info("[FILTER]-[URL:{}]->鉴权成功",request.getPath().toString());
|
|
|
flag = true;
|
|
|
break;
|
|
|
return true;
|
|
|
}
|
|
|
}
|
|
|
}else {
|
|
|
log.info("[FILTER]-没有对应token的redis缓存,鉴权失败");
|
|
|
}
|
|
|
log.info("[FILTER]-[URL:{}]->鉴权失败",request.getPath().toString());
|
|
|
return flag;
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
public boolean anonymousUrlFilter(ServerHttpRequest request){
|
...
|
...
|
@@ -185,6 +148,7 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
|
if(permissionList!=null && !permissionList.isEmpty()){
|
|
|
for (PERMISSION permission : permissionList) {
|
|
|
if (pathMatcher.match(permission.getUrl(), request.getPath().toString())) {
|
|
|
log.info("[ANONYMOUS-FILTER-SUCCESS]-匿名者过滤器适配到规则-PATH:[{}]",request.getPath().toString());
|
|
|
return true;
|
|
|
}
|
|
|
}
|
...
|
...
|
@@ -192,13 +156,13 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
|
}
|
|
|
}
|
|
|
}catch (Exception e){
|
|
|
log.error("[ANONYMOUS-FILTER]匿名者过滤规则审核出错->{}",e.toString());
|
|
|
log.error("[ANONYMOUS-FILTER-ERR]匿名者过滤规则审核出错->{}",e.toString());
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
|
|
|
}
|
|
|
log.info("[ANONYMOUS-FILTER]-匿名者过滤器为适配到符合条件的规则-PATH:[{}]",request.getPath().toString());
|
|
|
log.info("[ANONYMOUS-FILTER-FALSE]-匿名者过滤器未适配到规则-PATH:[{}]",request.getPath().toString());
|
|
|
return false;
|
|
|
}
|
|
|
} |
...
|
...
|
|