|
@@ -2,10 +2,14 @@ package com.hywa.banktest.controller;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.hywa.banktest.bankframework.pack.TransVo;
|
|
|
+import com.hywa.banktest.bankframework.service.BankService;
|
|
|
import com.hywa.banktest.bankframework.utils.StringUtils;
|
|
|
import com.hywa.banktest.bankframework.utils.httpclient.EasyHttpUtils;
|
|
|
import com.hywa.banktest.common.*;
|
|
|
+import com.hywa.banktest.entity.CheckBankVO;
|
|
|
+import com.hywa.banktest.entity.GetBankNo;
|
|
|
import com.hywa.banktest.entity.TransRequest;
|
|
|
+import com.hywa.banktest.service.CarbonBankService;
|
|
|
import com.hywa.banktest.service.OrderInfoService;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -28,6 +32,8 @@ public class ApplyClearingController {
|
|
|
@Autowired
|
|
|
private OrderInfoService orderInfoService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private CarbonBankService carbonBankService;
|
|
|
@Value("spring.datasource.url")
|
|
|
private String url;
|
|
|
@PostMapping(value = "/apply")
|
|
@@ -50,12 +56,21 @@ public class ApplyClearingController {
|
|
|
}
|
|
|
return new AjaxJson(AjaxJson.FAILURE,"验证字符串参数未传,请检查接口参数");
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
@PostMapping("/orApply")
|
|
|
public AjaxJson applyByOrderId(@RequestBody OrderInfoClearingForm orderInfoClearingForm){
|
|
|
log.info("orderInfoForm订单请求划款>>>>>{}", JSONObject.toJSONString(orderInfoClearingForm));
|
|
|
+ if (orderInfoClearingForm.getTimeStamp() == null){
|
|
|
+ return new AjaxJson(ResponseEnum.REQNUMNULL);
|
|
|
+ }
|
|
|
+ long time = orderInfoClearingForm.getTimeStamp();
|
|
|
+ long timeStamp = getTimeStamp(time);
|
|
|
+ if (timeStamp>60000||timeStamp<0){
|
|
|
+ return new AjaxJson(ResponseEnum.ERROREQUEST);
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
- // 先进行值判断是否为空
|
|
|
+ // 先进行值判断是否为空
|
|
|
if (StringUtils.isEmpty(orderInfoClearingForm.getOrderId())){
|
|
|
|
|
|
return new AjaxJson(ResponseEnum.REQNUMNULL);
|
|
@@ -68,7 +83,7 @@ public class ApplyClearingController {
|
|
|
boolean flag = false;
|
|
|
//验证字符串签名
|
|
|
try {
|
|
|
- flag = validateSignUtils.signVerify(orderInfoClearingForm.getRecordId()+"|"+orderInfoClearingForm.getOrderId(), orderInfoClearingForm.getSignStr());
|
|
|
+ flag = validateSignUtils.signVerify(time+"|"+orderInfoClearingForm.getRecordId()+"|"+orderInfoClearingForm.getOrderId(), orderInfoClearingForm.getSignStr());
|
|
|
} catch (Exception e) {
|
|
|
return new AjaxJson(ResponseEnum.FAIL);
|
|
|
}
|
|
@@ -80,8 +95,73 @@ public class ApplyClearingController {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/check")
|
|
|
+ public AjaxJson checkBankNo(@RequestBody CheckBankVO checkBankVO){
|
|
|
+ log.info("------请求银行卡验证---{}",JSONObject.toJSONString(checkBankVO));
|
|
|
+ if (checkBankVO.getTimeStamp()==null||StringUtils.isEmpty(checkBankVO.getSignStr())){
|
|
|
+ return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
|
|
|
+ }
|
|
|
+ long timeStamp = checkBankVO.getTimeStamp();
|
|
|
+ long sc = getTimeStamp(timeStamp);
|
|
|
+ if (sc>60000||sc<0){
|
|
|
+ return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
|
|
|
+ }
|
|
|
+ String strSign = checkBankVO.getSignStr();
|
|
|
+ String farmerPid = checkBankVO.getFarmerPid();
|
|
|
+ String farmerAccount = checkBankVO.getFarmerAccount();
|
|
|
+ if (StringUtils.isEmpty(farmerAccount)||StringUtils.isEmpty(farmerPid)){
|
|
|
+ return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
|
|
|
+ }
|
|
|
+ boolean flag = false;
|
|
|
+ try {
|
|
|
+ flag = validateSignUtils.signVerify(timeStamp + "|" + farmerPid + "|" + farmerAccount, strSign);
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.info("------系统异常---{}",JSONObject.toJSONString(checkBankVO));
|
|
|
+ return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
|
|
|
+ }
|
|
|
+ if (flag){
|
|
|
+
|
|
|
+ return carbonBankService.checkBankCard(checkBankVO);
|
|
|
+ }
|
|
|
+ return new AjaxJson(ResponseEnum.CHECKFAIL);
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/bankNum")
|
|
|
+ public AjaxJson getBankNum(@RequestBody GetBankNo getBankNo){
|
|
|
+ log.info("------请求银行卡余额数量---{}",JSONObject.toJSONString(getBankNo));
|
|
|
+ if (getBankNo==null||StringUtils.isEmpty(getBankNo.getSignStr())){
|
|
|
+ return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
|
|
|
+ }
|
|
|
+ long timeStamp = getBankNo.getTimeStamp();
|
|
|
+ long sc = getTimeStamp(timeStamp);
|
|
|
+ if (sc>60000||sc<0){
|
|
|
+ return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
|
|
|
+ }
|
|
|
+ String strSign = getBankNo.getSignStr();
|
|
|
+ boolean flag = false;
|
|
|
+ try {
|
|
|
+ flag = validateSignUtils.signVerify(timeStamp + "|gzth$12345", strSign);
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.info("------系统异常---{}",JSONObject.toJSONString(getBankNo));
|
|
|
+ return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
|
|
|
+ }
|
|
|
+ if (flag){
|
|
|
+ return carbonBankService.findCardNumMoney(getBankNo);
|
|
|
+
|
|
|
+ }
|
|
|
+ return new AjaxJson(ResponseEnum.CHECKFAIL);
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+ public long getTimeStamp(long timeStamp){
|
|
|
+ long endTime = System.currentTimeMillis();
|
|
|
+ long sc = endTime - timeStamp;
|
|
|
+ return sc;
|
|
|
+ }
|
|
|
+
|
|
|
public AjaxJson getApp(@RequestBody TransRequest transRequest) {
|
|
|
- log.info("我 ==============进入请求打款界面:{} ",JSONObject.toJSONString(transRequest));
|
|
|
|
|
|
// 先进行值判断是否为空
|
|
|
if (StringUtils.isEmpty(transRequest.getRecord())){
|