add GlobalInterceptor

This commit is contained in:
Looly 2022-03-28 01:14:03 +08:00
parent 63ad6de20d
commit 6427d6fb13
6 changed files with 75 additions and 6 deletions

View File

@ -47,6 +47,7 @@
* 【db 】 DruidDataSource构建时支持自定义参数issue#I4ZKCW@Gitee
* 【poi 】 ExcelWriter增加addImg重载issue#2218@Github
* 【bloomFilter】 增加FuncFilter
* 【http 】 增加GlobalInterceptorissue#2217
### 🐞Bug修复
* 【core 】 修复ObjectUtil.hasNull传入null返回true的问题pr#555@Gitee

View File

@ -113,7 +113,7 @@ public enum GlobalHeaders {
* @param isOverride 是否覆盖已有值
* @return this
*/
public GlobalHeaders header(String name, String value, boolean isOverride) {
synchronized public GlobalHeaders header(String name, String value, boolean isOverride) {
if (null != name && null != value) {
final List<String> values = headers.get(name.trim());
if (isOverride || CollectionUtil.isEmpty(values)) {
@ -192,7 +192,7 @@ public enum GlobalHeaders {
* @param name Header名
* @return this
*/
public GlobalHeaders removeHeader(String name) {
synchronized public GlobalHeaders removeHeader(String name) {
if (name != null) {
headers.remove(name.trim());
}
@ -224,7 +224,7 @@ public enum GlobalHeaders {
* @return this
* @since 5.7.13
*/
public GlobalHeaders clearHeaders() {
synchronized public GlobalHeaders clearHeaders() {
this.headers.clear();
return this;
}

View File

@ -0,0 +1,44 @@
package cn.hutool.http;
/**
* 全局的拦截器
*
* @author looly
* @since 5.8.0
*/
public enum GlobalInterceptor {
INSTANCE;
private final HttpInterceptor.Chain interceptors = new HttpInterceptor.Chain();
/**
* 设置拦截器用于在请求前重新编辑请求
*
* @param interceptor 拦截器实现
*/
synchronized public GlobalInterceptor addInterceptor(HttpInterceptor interceptor) {
this.interceptors.addChain(interceptor);
return this;
}
/**
* 清空
* @return this
*/
synchronized public GlobalInterceptor clear(){
interceptors.clear();
return this;
}
/**
* 复制过滤器列表
* @return {@link cn.hutool.http.HttpInterceptor.Chain}
*/
HttpInterceptor.Chain getCopied(){
final HttpInterceptor.Chain copied = new HttpInterceptor.Chain();
for (HttpInterceptor interceptor : this.interceptors) {
copied.addChain(interceptor);
}
return copied;
}
}

View File

@ -29,7 +29,6 @@ public interface HttpInterceptor {
class Chain implements cn.hutool.core.lang.Chain<HttpInterceptor, Chain> {
private final List<HttpInterceptor> interceptors = new LinkedList<>();
@Override
public Chain addChain(HttpInterceptor element) {
interceptors.add(element);
@ -40,5 +39,16 @@ public interface HttpInterceptor {
public Iterator<HttpInterceptor> iterator() {
return interceptors.iterator();
}
/**
* 清空
*
* @return this
* @since 5.8.0
*/
public Chain clear() {
interceptors.clear();
return this;
}
}
}

View File

@ -206,7 +206,7 @@ public class HttpRequest extends HttpBase<HttpRequest> {
/**
* 请求前的拦截器用于在请求前重新编辑请求
*/
private final HttpInterceptor.Chain interceptors = new HttpInterceptor.Chain();
private final HttpInterceptor.Chain interceptors = GlobalInterceptor.INSTANCE.getCopied();
/**
* 默认连接超时
@ -967,8 +967,9 @@ public class HttpRequest extends HttpBase<HttpRequest> {
* @param interceptor 拦截器实现
* @since 5.7.16
*/
public void addInterceptor(HttpInterceptor interceptor) {
public HttpRequest addInterceptor(HttpInterceptor interceptor) {
this.interceptors.addChain(interceptor);
return this;
}
/**

View File

@ -167,4 +167,17 @@ public class HttpRequestTest {
execute = HttpRequest.get(url).setMaxRedirectCount(1).execute();
Console.log(execute.getStatus(), execute.header(Header.LOCATION));
}
@Test
@Ignore
public void addInterceptorTest() {
HttpUtil.createGet("https://hutool.cn").addInterceptor(Console::log).execute();
}
@Test
@Ignore
public void addGlobalInterceptorTest() {
GlobalInterceptor.INSTANCE.addInterceptor(Console::log);
HttpUtil.createGet("https://hutool.cn").execute();
}
}