| | |
| | | import org.springframework.cloud.gateway.filter.GlobalFilter;
|
| | | import org.springframework.core.Ordered;
|
| | | import org.springframework.core.io.buffer.DataBuffer;
|
| | | import org.springframework.core.io.buffer.DataBufferFactory;
|
| | | import org.springframework.core.io.buffer.DataBufferUtils;
|
| | | import org.springframework.core.io.buffer.DefaultDataBufferFactory;
|
| | | import org.springframework.core.io.buffer.NettyDataBufferFactory;
|
| | | import org.springframework.http.HttpHeaders;
|
| | | import org.springframework.http.HttpMethod;
|
| | | import org.springframework.http.MediaType;
|
| | | import org.springframework.http.server.reactive.ServerHttpRequest;
|
| | | import org.springframework.http.server.reactive.ServerHttpRequestDecorator;
|
| | | import org.springframework.stereotype.Component;
|
| | |
| | | {
|
| | | return chain.filter(exchange);
|
| | | }
|
| | | // 非json类型,不过滤
|
| | | if (!isJsonRequest(exchange))
|
| | | {
|
| | | return chain.filter(exchange);
|
| | | }
|
| | | // excludeUrls 不过滤
|
| | | String url = request.getURI().getPath();
|
| | | if (StringUtils.matches(url, xss.getExcludeUrls()))
|
| | |
| | | public Flux<DataBuffer> getBody()
|
| | | {
|
| | | Flux<DataBuffer> body = super.getBody();
|
| | | return body.map(dataBuffer -> {
|
| | | byte[] content = new byte[dataBuffer.readableByteCount()];
|
| | | dataBuffer.read(content);
|
| | | DataBufferUtils.release(dataBuffer);
|
| | | return body.buffer().map(dataBuffers -> {
|
| | | DataBufferFactory dataBufferFactory = new DefaultDataBufferFactory();
|
| | | DataBuffer join = dataBufferFactory.join(dataBuffers);
|
| | | byte[] content = new byte[join.readableByteCount()];
|
| | | join.read(content);
|
| | | DataBufferUtils.release(join);
|
| | | String bodyStr = new String(content, StandardCharsets.UTF_8);
|
| | | // 防xss攻击过滤
|
| | | bodyStr = EscapeUtil.clean(bodyStr);
|
| | |
| | | return serverHttpRequestDecorator;
|
| | | }
|
| | |
|
| | | /**
|
| | | * 是否是Json请求
|
| | | * |
| | | * @param request
|
| | | */
|
| | | public boolean isJsonRequest(ServerWebExchange exchange)
|
| | | {
|
| | | String header = exchange.getRequest().getHeaders().getFirst(HttpHeaders.CONTENT_TYPE);
|
| | | return StringUtils.startsWithIgnoreCase(header, MediaType.APPLICATION_JSON_VALUE);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public int getOrder()
|
| | | {
|