|
@@ -1,7 +1,6 @@
|
|
|
package com.gree.mall.manager.logic.common;
|
|
|
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
-import cn.hutool.http.HttpUtil;
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.gree.mall.manager.exception.RemoteServiceException;
|
|
@@ -9,7 +8,8 @@ import com.gree.mall.manager.plus.entity.AdminWebsit;
|
|
|
import com.gree.mall.manager.plus.service.AdminCompanyWechatService;
|
|
|
import com.gree.mall.manager.plus.service.AdminWebsitService;
|
|
|
import com.gree.mall.manager.utils.ArithUtils;
|
|
|
-import com.gree.mall.manager.utils.EncryptUtils;
|
|
|
+import com.gree.mall.manager.utils.ums.HttpUtils;
|
|
|
+import com.gree.mall.manager.utils.ums.RSAUtils;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.codec.binary.Base64;
|
|
|
import org.apache.commons.codec.digest.DigestUtils;
|
|
@@ -30,10 +30,12 @@ import javax.crypto.Mac;
|
|
|
import javax.crypto.spec.SecretKeySpec;
|
|
|
import java.io.ByteArrayInputStream;
|
|
|
import java.io.InputStream;
|
|
|
+import java.nio.charset.StandardCharsets;
|
|
|
import java.security.InvalidKeyException;
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.Date;
|
|
|
+import java.util.HashMap;
|
|
|
import java.util.UUID;
|
|
|
|
|
|
@Service
|
|
@@ -162,8 +164,9 @@ public class UMSLogic {
|
|
|
*/
|
|
|
public JSONObject submitSubsidyApplyTrace(String userId, String reqSn, String encBizReqData, String servicePublicKey,
|
|
|
String privateKey) throws Exception {
|
|
|
- String url = supplementUrl + "/o2o/submitSubsidyApplTrace";
|
|
|
- return this.commonReqYueHuanXin(userId, reqSn, encBizReqData, servicePublicKey, privateKey);
|
|
|
+ String sourceUrl = supplementUrl + "/o2o/submitSubsidyApplTrace";
|
|
|
+ log.info("准备请求{}", sourceUrl);
|
|
|
+ return this.commonReqYueHuanXin(sourceUrl, userId, reqSn, encBizReqData, servicePublicKey, privateKey);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -171,8 +174,9 @@ public class UMSLogic {
|
|
|
*/
|
|
|
public JSONObject querySubsidyApplyTrace(String userId, String reqSn, String encBizReqData, String servicePublicKey,
|
|
|
String privateKey) throws Exception {
|
|
|
- String url = supplementUrl + "/o2o/querySubsidyApplTrace";
|
|
|
- return this.commonReqYueHuanXin(userId, reqSn, encBizReqData, servicePublicKey, privateKey);
|
|
|
+ String sourceUrl = supplementUrl + "/o2o/querySubsidyApplTrace";
|
|
|
+ log.info("准备请求{}", sourceUrl);
|
|
|
+ return this.commonReqYueHuanXin(sourceUrl, userId, reqSn, encBizReqData, servicePublicKey, privateKey);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -180,55 +184,72 @@ public class UMSLogic {
|
|
|
*/
|
|
|
public JSONObject querySubsidyApply(String userId, String reqSn, String encBizReqData, String servicePublicKey,
|
|
|
String privateKey) throws Exception {
|
|
|
- String url = supplementUrl + "/o2o/querySubsidyAppl";
|
|
|
-
|
|
|
- return this.commonReqYueHuanXin(userId, reqSn, encBizReqData, servicePublicKey, privateKey);
|
|
|
+ String sourceUrl = supplementUrl + "/o2o/querySubsidyAppl";
|
|
|
+ log.info("准备请求{}", sourceUrl);
|
|
|
+ return this.commonReqYueHuanXin(sourceUrl, userId, reqSn, encBizReqData, servicePublicKey, privateKey);
|
|
|
}
|
|
|
|
|
|
- private JSONObject commonReqYueHuanXin(String userId, String reqSn, String encBizReqData, String servicePublicKey,
|
|
|
- String privateKey) throws Exception {
|
|
|
- JSONObject json = new JSONObject();
|
|
|
- json.put("userId", userId);
|
|
|
- json.put("reqSn", reqSn);
|
|
|
- json.put("timestamp", DateUtil.formatDateTime(DateUtil.date()));
|
|
|
- final String encryptBizReqData = EncryptUtils.encryptBizReqData(servicePublicKey, encBizReqData);
|
|
|
- final String sign = EncryptUtils.generateSign(privateKey, encryptBizReqData);
|
|
|
- json.put("encBizReqData", encryptBizReqData);
|
|
|
- json.put("signAlg", "1");
|
|
|
- json.put("sign", sign);
|
|
|
-
|
|
|
- String post;
|
|
|
- JSONObject respBody;
|
|
|
-
|
|
|
- try {
|
|
|
- post = HttpUtil.post(url, json.toString());
|
|
|
- respBody = JSON.parseObject(post);
|
|
|
- } catch (Exception e) {
|
|
|
- throw new RemoteServiceException("公共应答参数异常: " + e.getMessage());
|
|
|
+ private JSONObject commonReqYueHuanXin(String sourceUrl, String userId, String reqSn, String data,
|
|
|
+ String servicePublicKey, String privateKey) throws Exception {
|
|
|
+ log.info("commonReqYueHuanXin请求data:{}", data);
|
|
|
+ HashMap<String, Object> baseReq = new HashMap<>();
|
|
|
+ baseReq.put("userId", userId);
|
|
|
+ baseReq.put("reqSn", reqSn);
|
|
|
+ baseReq.put("timestamp", DateUtil.formatDateTime(DateUtil.date()));
|
|
|
+ byte[] encBizReqData = RSAUtils.encryptByPublicKey(data.getBytes(StandardCharsets.UTF_8), servicePublicKey);
|
|
|
+ baseReq.put("encBizReqData", encBizReqData);
|
|
|
+ baseReq.put("signAlg", "SHA256withRSA");
|
|
|
+ baseReq.put("sign", RSAUtils.sign(encBizReqData, privateKey));
|
|
|
+
|
|
|
+ String respBody = HttpUtils.post(sourceUrl,
|
|
|
+ JSON.toJSONString(baseReq));
|
|
|
+ JSONObject jsonObject = JSONObject.parseObject(respBody);
|
|
|
+
|
|
|
+ if ("00000".equals(jsonObject.getString("code"))) {
|
|
|
+ // 验签
|
|
|
+ verifySign(jsonObject, servicePublicKey);
|
|
|
+
|
|
|
+ // 解密
|
|
|
+ byte[] decryptData = decryptByPrivateKey(jsonObject, privateKey);
|
|
|
+
|
|
|
+ final String respData = new String(decryptData);
|
|
|
+
|
|
|
+ log.info("commonReqYueHuanXin返回结果data:{}", respData);
|
|
|
+ return JSON.parseObject(respData);
|
|
|
}
|
|
|
|
|
|
- final boolean isSuccess = respBody.containsValue("00000");
|
|
|
-
|
|
|
- if (!isSuccess) {
|
|
|
- final String msg = respBody.getObject("msg", String.class);
|
|
|
+ throw new RemoteServiceException("发起补贴申请流水:响应码:" + jsonObject.getString("code") + ",响应描述:" + jsonObject.getString("msg"));
|
|
|
+ }
|
|
|
|
|
|
- throw new RemoteServiceException("应码码错误: " + msg);
|
|
|
+ /**
|
|
|
+ * 验证签名
|
|
|
+ *
|
|
|
+ * @param respDTO
|
|
|
+ */
|
|
|
+ public static void verifySign(JSONObject respDTO, String serverPublicKey) throws Exception {
|
|
|
+ try {
|
|
|
+ boolean pass = RSAUtils.verifySign(Base64.decodeBase64((String) respDTO.get("encBizRespData")), (String) respDTO.get("sign"),
|
|
|
+ serverPublicKey);
|
|
|
+ if (!pass) {
|
|
|
+ throw new RuntimeException("业务请求数据验签不通过");
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new Exception("业务请求数据验签失败");
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- final String encBizRespData = respBody.getObject("encBizRespData", String.class);
|
|
|
- final String respSign = respBody.getObject("sign", String.class);
|
|
|
-
|
|
|
- final String respData = EncryptUtils.decryptEncBizRespData(privateKey, encBizRespData);
|
|
|
-
|
|
|
- final boolean verifySign = EncryptUtils.verifySign(servicePublicKey, encBizRespData, respSign);
|
|
|
-
|
|
|
- if (!verifySign) {
|
|
|
- throw new RemoteServiceException("验签签名串失败");
|
|
|
+ /**
|
|
|
+ * 解密
|
|
|
+ *
|
|
|
+ * @param respDTO
|
|
|
+ */
|
|
|
+ public static byte[] decryptByPrivateKey(JSONObject respDTO, String privateKey) throws Exception {
|
|
|
+ try {
|
|
|
+ return RSAUtils.decryptByPrivateKey(Base64.decodeBase64((String) respDTO.get("encBizRespData")),
|
|
|
+ privateKey);
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new Exception("业务请求数据解密失败");
|
|
|
}
|
|
|
-
|
|
|
- final JSONObject respDataJson = JSON.parseObject(respData);
|
|
|
-
|
|
|
- return respDataJson;
|
|
|
}
|
|
|
}
|
|
|
|