yangys
2025-07-22 833e909fbb25dd1245ec6aabb0c2cbe4c72d31c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/**
 * BladeX Commercial License Agreement
 * Copyright (c) 2018-2099, https://bladex.cn. All rights reserved.
 * <p>
 * Use of this software is governed by the Commercial License Agreement
 * obtained after purchasing a license from BladeX.
 * <p>
 * 1. This software is for development use only under a valid license
 * from BladeX.
 * <p>
 * 2. Redistribution of this software's source code to any third party
 * without a commercial license is strictly prohibited.
 * <p>
 * 3. Licensees may copyright their own code but cannot use segments
 * from this software for such purposes. Copyright of this software
 * remains with BladeX.
 * <p>
 * Using this software signifies agreement to this License, and the software
 * must not be used for illegal purposes.
 * <p>
 * THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY. The author is
 * not liable for any claims arising from secondary or illegal development.
 * <p>
 * Author: Chill Zhuang (bladejava@qq.com)
 */
package org.springblade.gateway.filter;
 
import lombok.RequiredArgsConstructor;
import org.springblade.gateway.props.RequestProperties;
import org.springframework.core.Ordered;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.http.server.reactive.ServerHttpResponse;
import org.springframework.lang.NonNull;
import org.springframework.util.AntPathMatcher;
import org.springframework.util.PatternMatchUtils;
import org.springframework.web.cors.reactive.CorsUtils;
import org.springframework.web.server.ServerWebExchange;
import org.springframework.web.server.WebFilter;
import org.springframework.web.server.WebFilterChain;
import reactor.core.publisher.Mono;
 
import java.util.List;
import java.util.Objects;
 
/**
 * 全局拦截器
 *
 * @author Chill
 */
@RequiredArgsConstructor
public class GatewayFilter implements WebFilter, Ordered {
 
    /**
     * 请求配置
     */
    private final RequestProperties requestProperties;
    /**
     * 路径匹配
     */
    private final AntPathMatcher antPathMatcher = new AntPathMatcher();
 
    /**
     * 默认拦截地址
     */
    private final List<String> defaultBlockUrl = List.of("/**/actuator/**", "/health/**");
    /**
     * 默认白名单
     */
    private final List<String> defaultWhiteList = List.of("127.0.0.1", "172.30.*.*", "192.168.*.*", "10.*.*.*", "0:0:0:0:0:0:0:1");
    /**
     * 默认提示信息
     */
    private final static String DEFAULT_MESSAGE = "当前请求被拒绝,请联系管理员!";
 
    /**
     * 这里为支持的请求头,如果有自定义的header字段请自己添加
     */
    private static final String ALLOWED_HEADERS = "X-Requested-With, Tenant-Id, Blade-Auth, Content-Type, Authorization, credential, X-XSRF-TOKEN, token, username, client, knfie4j-gateway-request, knife4j-gateway-code, request-origion";
    private static final String ALLOWED_METHODS = "GET,POST,PUT,DELETE,OPTIONS,HEAD";
    private static final String ALLOWED_ORIGIN = "*";
    private static final String ALLOWED_EXPOSE = "*";
    private static final String MAX_AGE = "18000L";
 
 
    @NonNull
    @Override
    public Mono<Void> filter(@NonNull ServerWebExchange exchange, @NonNull WebFilterChain chain) {
        ServerHttpRequest request = exchange.getRequest();
        // 处理跨域请求
        if (CorsUtils.isCorsRequest(request)) {
            ServerHttpResponse response = exchange.getResponse();
            HttpHeaders headers = response.getHeaders();
            headers.add("Access-Control-Allow-Headers", ALLOWED_HEADERS);
            headers.add("Access-Control-Allow-Methods", ALLOWED_METHODS);
            headers.add("Access-Control-Allow-Origin", ALLOWED_ORIGIN);
            headers.add("Access-Control-Expose-Headers", ALLOWED_EXPOSE);
            headers.add("Access-Control-Max-Age", MAX_AGE);
            headers.add("Access-Control-Allow-Credentials", "true");
            if (request.getMethod() == HttpMethod.OPTIONS) {
                response.setStatusCode(HttpStatus.OK);
                return Mono.empty();
            }
        }
        // 处理黑白名单与拦截请求
        if (requestProperties.getEnabled()) {
            String path = request.getPath().value();
            String ip = Objects.requireNonNull(request.getRemoteAddress()).getHostString();
            if (isRequestBlock(path, ip)) {
                throw new RuntimeException(DEFAULT_MESSAGE);
            }
        }
        return chain.filter(exchange);
    }
 
 
    /**
     * 是否白名单
     *
     * @param ip ip地址
     * @return boolean
     */
    private boolean isWhiteList(String ip) {
        List<String> whiteList = requestProperties.getWhiteList();
        String[] defaultWhiteIps = defaultWhiteList.toArray(new String[0]);
        String[] whiteIps = whiteList.toArray(new String[0]);
        return PatternMatchUtils.simpleMatch(defaultWhiteIps, ip) || PatternMatchUtils.simpleMatch(whiteIps, ip);
    }
 
    /**
     * 是否黑名单
     *
     * @param ip ip地址
     * @return boolean
     */
    private boolean isBlackList(String ip) {
        List<String> blackList = requestProperties.getBlackList();
        String[] blackIps = blackList.toArray(new String[0]);
        return PatternMatchUtils.simpleMatch(blackIps, ip);
    }
 
    /**
     * 是否禁用请求访问
     *
     * @param path 请求路径
     * @return boolean
     */
    private boolean isRequestBlock(String path) {
        List<String> blockUrl = requestProperties.getBlockUrl();
        return defaultBlockUrl.stream().anyMatch(pattern -> antPathMatcher.match(pattern, path)) ||
            blockUrl.stream().anyMatch(pattern -> antPathMatcher.match(pattern, path));
    }
 
    /**
     * 是否拦截请求
     *
     * @param path 请求路径
     * @param ip   ip地址
     * @return boolean
     */
    private boolean isRequestBlock(String path, String ip) {
        return (isRequestBlock(path) && !isWhiteList(ip)) || isBlackList(ip);
    }
 
    @Override
    public int getOrder() {
        return Ordered.HIGHEST_PRECEDENCE;
    }
}