|
@@ -4,6 +4,8 @@ import com.alibaba.fastjson.JSONArray; |
|
@@ -4,6 +4,8 @@ import com.alibaba.fastjson.JSONArray; |
4
|
import com.alibaba.fastjson.JSONObject;
|
4
|
import com.alibaba.fastjson.JSONObject;
|
5
|
import com.example.gateway.model.PERMISSION;
|
5
|
import com.example.gateway.model.PERMISSION;
|
6
|
import com.example.gateway.model.ROLE;
|
6
|
import com.example.gateway.model.ROLE;
|
|
|
7
|
+import com.example.gateway.routerImpl.GBKServerHttpResponseDecorator;
|
|
|
8
|
+import com.example.gateway.routerImpl.UTF8ServerHttpResponseDecorator;
|
7
|
import com.example.gateway.util.JsonToBean;
|
9
|
import com.example.gateway.util.JsonToBean;
|
8
|
import lombok.extern.slf4j.Slf4j;
|
10
|
import lombok.extern.slf4j.Slf4j;
|
9
|
import org.reactivestreams.Publisher;
|
11
|
import org.reactivestreams.Publisher;
|
|
@@ -85,44 +87,8 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
@@ -85,44 +87,8 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
85
|
// }
|
87
|
// }
|
86
|
// };
|
88
|
// };
|
87
|
|
89
|
|
88
|
-
|
|
|
89
|
-
|
|
|
90
|
- /**
|
|
|
91
|
- * 测试返回中文乱码
|
|
|
92
|
- */
|
|
|
93
|
- ServerHttpResponseDecorator decoratedResponseWindows = new ServerHttpResponseDecorator(response) {
|
|
|
94
|
- @Override
|
|
|
95
|
- public Mono<Void> writeWith(Publisher<? extends DataBuffer> body) {
|
|
|
96
|
- if (HttpStatus.OK.equals(getStatusCode()) && body instanceof Flux) {
|
|
|
97
|
- Flux<? extends DataBuffer> fluxBody = Flux.from(body);
|
|
|
98
|
- return super.writeWith(fluxBody.buffer().map(dataBuffers -> {
|
|
|
99
|
-
|
|
|
100
|
- StringBuffer stringBuffer = new StringBuffer();
|
|
|
101
|
- dataBuffers.forEach(dataBuffer -> {
|
|
|
102
|
- byte[] content = new byte[dataBuffer.readableByteCount()];
|
|
|
103
|
- dataBuffer.read(content);
|
|
|
104
|
- DataBufferUtils.release(dataBuffer);
|
|
|
105
|
- String tempStr = new String(content, Charset.forName("ISO_8859_1"));
|
|
|
106
|
- stringBuffer.append(tempStr);
|
|
|
107
|
- });
|
|
|
108
|
-
|
|
|
109
|
- String str = new String(stringBuffer);
|
|
|
110
|
-// String fileKey = "\":\"" + Const.DATA_BASE_FILE_URL_HEAD + Const.M00;
|
|
|
111
|
-// if (str.contains(fileKey)) {
|
|
|
112
|
-// //修改
|
|
|
113
|
-// String value = "\":\"" + Const.SYSTEMS_FILE_URL_HEAD + Const.DATA_BASE_FILE_URL_HEAD + Const.M00;
|
|
|
114
|
-// str = str.replaceAll(fileKey, value);
|
|
|
115
|
-// }
|
|
|
116
|
-
|
|
|
117
|
- byte[] content = str.getBytes(Charset.forName("ISO_8859_1"));
|
|
|
118
|
- return bufferFactory().wrap(content);
|
|
|
119
|
- }));
|
|
|
120
|
- }
|
|
|
121
|
- // if body is not a flux. never got there.
|
|
|
122
|
- return super.writeWith(body);
|
|
|
123
|
- }
|
|
|
124
|
- };
|
|
|
125
|
- return chain.filter(exchange.mutate().response(decoratedResponseWindows).build());
|
90
|
+ ServerHttpResponseDecorator decoratedResponseGBK= new GBKServerHttpResponseDecorator(response);
|
|
|
91
|
+ return chain.filter(exchange.mutate().response(decoratedResponseGBK).build());
|
126
|
//
|
92
|
//
|
127
|
// return chain.filter(exchange);
|
93
|
// return chain.filter(exchange);
|
128
|
}
|
94
|
}
|
|
@@ -137,8 +103,6 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
@@ -137,8 +103,6 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
137
|
if (anonymousUrlFilter(request)){
|
103
|
if (anonymousUrlFilter(request)){
|
138
|
return true;
|
104
|
return true;
|
139
|
}
|
105
|
}
|
140
|
-
|
|
|
141
|
- boolean flag = false;
|
|
|
142
|
String token = "";
|
106
|
String token = "";
|
143
|
if (!request.getPath().toString().contains(LOGIN)) {
|
107
|
if (!request.getPath().toString().contains(LOGIN)) {
|
144
|
HttpHeaders rqHeader = request.getHeaders();
|
108
|
HttpHeaders rqHeader = request.getHeaders();
|
|
@@ -157,15 +121,14 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
@@ -157,15 +121,14 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
157
|
log.trace("访问url:[{}]<->权限[{}]",request.getPath().toString(),permission.getUrl());
|
121
|
log.trace("访问url:[{}]<->权限[{}]",request.getPath().toString(),permission.getUrl());
|
158
|
if (pathMatcher.match(permission.getUrl(), request.getPath().toString())) {
|
122
|
if (pathMatcher.match(permission.getUrl(), request.getPath().toString())) {
|
159
|
log.info("[FILTER]-[URL:{}]->鉴权成功",request.getPath().toString());
|
123
|
log.info("[FILTER]-[URL:{}]->鉴权成功",request.getPath().toString());
|
160
|
- flag = true;
|
|
|
161
|
- break;
|
124
|
+ return true;
|
162
|
}
|
125
|
}
|
163
|
}
|
126
|
}
|
164
|
}else {
|
127
|
}else {
|
165
|
log.info("[FILTER]-没有对应token的redis缓存,鉴权失败");
|
128
|
log.info("[FILTER]-没有对应token的redis缓存,鉴权失败");
|
166
|
}
|
129
|
}
|
167
|
log.info("[FILTER]-[URL:{}]->鉴权失败",request.getPath().toString());
|
130
|
log.info("[FILTER]-[URL:{}]->鉴权失败",request.getPath().toString());
|
168
|
- return flag;
|
131
|
+ return false;
|
169
|
}
|
132
|
}
|
170
|
|
133
|
|
171
|
public boolean anonymousUrlFilter(ServerHttpRequest request){
|
134
|
public boolean anonymousUrlFilter(ServerHttpRequest request){
|
|
@@ -185,6 +148,7 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
@@ -185,6 +148,7 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
185
|
if(permissionList!=null && !permissionList.isEmpty()){
|
148
|
if(permissionList!=null && !permissionList.isEmpty()){
|
186
|
for (PERMISSION permission : permissionList) {
|
149
|
for (PERMISSION permission : permissionList) {
|
187
|
if (pathMatcher.match(permission.getUrl(), request.getPath().toString())) {
|
150
|
if (pathMatcher.match(permission.getUrl(), request.getPath().toString())) {
|
|
|
151
|
+ log.info("[ANONYMOUS-FILTER-SUCCESS]-匿名者过滤器适配到规则-PATH:[{}]",request.getPath().toString());
|
188
|
return true;
|
152
|
return true;
|
189
|
}
|
153
|
}
|
190
|
}
|
154
|
}
|
|
@@ -192,13 +156,13 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
@@ -192,13 +156,13 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
192
|
}
|
156
|
}
|
193
|
}
|
157
|
}
|
194
|
}catch (Exception e){
|
158
|
}catch (Exception e){
|
195
|
- log.error("[ANONYMOUS-FILTER]匿名者过滤规则审核出错->{}",e.toString());
|
159
|
+ log.error("[ANONYMOUS-FILTER-ERR]匿名者过滤规则审核出错->{}",e.toString());
|
196
|
return false;
|
160
|
return false;
|
197
|
}
|
161
|
}
|
198
|
|
162
|
|
199
|
|
163
|
|
200
|
}
|
164
|
}
|
201
|
- log.info("[ANONYMOUS-FILTER]-匿名者过滤器为适配到符合条件的规则-PATH:[{}]",request.getPath().toString());
|
165
|
+ log.info("[ANONYMOUS-FILTER-FALSE]-匿名者过滤器未适配到规则-PATH:[{}]",request.getPath().toString());
|
202
|
return false;
|
166
|
return false;
|
203
|
}
|
167
|
}
|
204
|
} |
168
|
} |