|
@@ -1,6 +1,5 @@
|
|
|
package com.jkcredit.invoice.credit;
|
|
|
|
|
|
-import com.alibaba.fastjson.JSONObject;
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
import com.jkcredit.invoice.common.ApiResult;
|
|
|
import com.jkcredit.invoice.common.DataResult;
|
|
@@ -8,6 +7,7 @@ import com.jkcredit.invoice.common.RequestApi;
|
|
|
import com.jkcredit.invoice.common.ResponseCode;
|
|
|
import com.jkcredit.invoice.model.entity.customer.Customer;
|
|
|
import com.jkcredit.invoice.service.customer.CustomerService;
|
|
|
+import com.jkcredit.invoice.util.CorsFilterCheckUtil;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -21,8 +21,6 @@ import java.math.BigDecimal;
|
|
|
import java.net.URLDecoder;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
-import java.util.regex.Matcher;
|
|
|
-import java.util.regex.Pattern;
|
|
|
|
|
|
/**
|
|
|
* @Description: 跨域请求拦截器
|
|
@@ -277,60 +275,16 @@ public class SimpleCORSFilter implements Filter {
|
|
|
}
|
|
|
|
|
|
private String getApi(String request){
|
|
|
- String api = "";
|
|
|
- Pattern p=Pattern.compile("api=(\\w+)&");
|
|
|
- Matcher m=p.matcher(request);
|
|
|
- while(m.find()){
|
|
|
- api = m.group(1);
|
|
|
- }
|
|
|
- if(StringUtils.isEmpty(api)){
|
|
|
- api = JSONObject.parseObject(request.substring(0, request.length()-1)).getString("api");
|
|
|
- }
|
|
|
- return api;
|
|
|
+ return CorsFilterCheckUtil.getApi(request);
|
|
|
}
|
|
|
private String getAppKey(String request){
|
|
|
- String appkey = "";
|
|
|
- Pattern p=Pattern.compile("appKey=(\\w+)&");
|
|
|
- Matcher m=p.matcher(request);
|
|
|
- while(m.find()){
|
|
|
- appkey = m.group(1);
|
|
|
- }
|
|
|
-
|
|
|
- if(StringUtils.isEmpty(appkey)){
|
|
|
- appkey = JSONObject.parseObject(request.substring(0, request.length()-1)).getString("appKey");
|
|
|
-
|
|
|
- }
|
|
|
- return appkey;
|
|
|
+ return CorsFilterCheckUtil.getAppKey(request);
|
|
|
}
|
|
|
private String getAppSecret(String request){
|
|
|
- String appSecret = "";
|
|
|
- Pattern p=Pattern.compile("appSecret=(\\w+)&");
|
|
|
- Matcher m=p.matcher(request);
|
|
|
- while(m.find()){
|
|
|
- appSecret = m.group(1);
|
|
|
- }
|
|
|
-
|
|
|
- if(StringUtils.isEmpty(appSecret)){
|
|
|
- appSecret = JSONObject.parseObject(request.substring(0, request.length()-1)).getString("appSecret");
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- return appSecret;
|
|
|
+ return CorsFilterCheckUtil.getAppSecret(request);
|
|
|
}
|
|
|
private String getData(String request){
|
|
|
- String data = "";
|
|
|
- Pattern p=Pattern.compile("data=([^&]*)&");
|
|
|
- Matcher m=p.matcher(request);
|
|
|
- while(m.find()){
|
|
|
- data = m.group(1);
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- if(StringUtils.isEmpty(data)){
|
|
|
- // data = getsrt("\"data\":", ",", request).trim();;
|
|
|
- data = JSONObject.parseObject(request.substring(0, request.length()-1)).getString("data");
|
|
|
- }
|
|
|
- return data;
|
|
|
+ return CorsFilterCheckUtil.getData(request);
|
|
|
}
|
|
|
/**
|
|
|
* 用户 Token 校验
|