|
@@ -4,6 +4,7 @@ import com.alibaba.fastjson.JSON;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.jkcredit.illegal.info.constant.CommonConstant;
|
|
import com.jkcredit.illegal.info.constant.CommonConstant;
|
|
import com.jkcredit.illegal.info.model.*;
|
|
import com.jkcredit.illegal.info.model.*;
|
|
|
|
+import com.jkcredit.illegal.info.service.CriminalInfoService;
|
|
import com.jkcredit.illegal.info.service.IllegalInfoService;
|
|
import com.jkcredit.illegal.info.service.IllegalInfoService;
|
|
import com.jkcredit.illegal.info.util.AesUtil;
|
|
import com.jkcredit.illegal.info.util.AesUtil;
|
|
import com.jkcredit.illegal.info.util.OkHttpUtil;
|
|
import com.jkcredit.illegal.info.util.OkHttpUtil;
|
|
@@ -34,8 +35,11 @@ public class IllegalInfoServiceImpl implements IllegalInfoService {
|
|
private String decodeKey;
|
|
private String decodeKey;
|
|
@Autowired
|
|
@Autowired
|
|
StringRedisTemplate stringRedisTemplate;
|
|
StringRedisTemplate stringRedisTemplate;
|
|
|
|
+ @Autowired
|
|
|
|
+ CriminalInfoService criminalInfoService;
|
|
|
|
|
|
private static final Log CHARGE_LOGGER = LogFactory.getLog("CHARGE_LOGGER");
|
|
private static final Log CHARGE_LOGGER = LogFactory.getLog("CHARGE_LOGGER");
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public IllegalInfoResult checkIllegalInfo(IllegalInfoRequestParam requestParams) {
|
|
public IllegalInfoResult checkIllegalInfo(IllegalInfoRequestParam requestParams) {
|
|
String body = JSON.toJSONString(requestParams);
|
|
String body = JSON.toJSONString(requestParams);
|
|
@@ -66,9 +70,9 @@ public class IllegalInfoServiceImpl implements IllegalInfoService {
|
|
|
|
|
|
// 返回4个参数,code0表示结果正常,其他表示异常
|
|
// 返回4个参数,code0表示结果正常,其他表示异常
|
|
if (!illegalInfoResult.getCode().equals("0")
|
|
if (!illegalInfoResult.getCode().equals("0")
|
|
- || illegalInfoResult.getIsDrugs().equals("2")
|
|
|
|
- || illegalInfoResult.getIsEscape().equals("2")
|
|
|
|
- || illegalInfoResult.getIsPedigree().equals("2")) {
|
|
|
|
|
|
+ || illegalInfoResult.getIsDrugs().equals("2")
|
|
|
|
+ || illegalInfoResult.getIsEscape().equals("2")
|
|
|
|
+ || illegalInfoResult.getIsPedigree().equals("2")) {
|
|
// 查询错误,不计费
|
|
// 查询错误,不计费
|
|
CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
|
|
CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
|
|
stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
|
|
stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
|
|
@@ -184,4 +188,76 @@ public class IllegalInfoServiceImpl implements IllegalInfoService {
|
|
requestParam.setIdCode(jsonObject.getString("idCode"));
|
|
requestParam.setIdCode(jsonObject.getString("idCode"));
|
|
return requestParam;
|
|
return requestParam;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ private IllegalInfoResult getCriminalInfoResult(IllegalInfoRequestParam requestParams) {
|
|
|
|
+ CriminalInfoRequestObject requestObject = new CriminalInfoRequestObject();
|
|
|
|
+ BeanUtils.copyProperties(requestParams, requestObject);
|
|
|
|
+ CriminalInfoResult criminalInfoResult = criminalInfoService.getCriminalInfo(requestObject);
|
|
|
|
+ IllegalInfoResult illegalInfoResult = new IllegalInfoResult().normalResult();
|
|
|
|
+ if (criminalInfoResult == null) {
|
|
|
|
+ return illegalInfoResult;
|
|
|
|
+ } else {
|
|
|
|
+ /**
|
|
|
|
+ * 前科 8
|
|
|
|
+ * 涉毒 14和26
|
|
|
|
+ * 在逃 50
|
|
|
|
+ * 未命中 2
|
|
|
|
+ */
|
|
|
|
+ if (criminalInfoResult.getScore().equals("14") || criminalInfoResult.getScore().equals("26")) {
|
|
|
|
+ // 涉毒
|
|
|
|
+ illegalInfoResult.setIsDrugs("1");
|
|
|
|
+ } else if (criminalInfoResult.getScore().equals("50")) {
|
|
|
|
+ // 在逃
|
|
|
|
+ illegalInfoResult.setIsEscape("1");
|
|
|
|
+ } else if (criminalInfoResult.getScore().equals("8")) {
|
|
|
|
+ // 前科
|
|
|
|
+ illegalInfoResult.setIsPedigree("1");
|
|
|
|
+ } else {
|
|
|
|
+ // 未命中重点人
|
|
|
|
+ return illegalInfoResult;
|
|
|
|
+ }
|
|
|
|
+ return illegalInfoResult;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public IllegalInfoResult checkIllegalInfoV2(IllegalInfoRequestParam requestParams) {
|
|
|
|
+ String body = JSON.toJSONString(requestParams);
|
|
|
|
+ Long startTime = System.currentTimeMillis();
|
|
|
|
+ String result = OkHttpUtil.doPost(illegalInfoUrl, body, CommonConstant.PERSON_TIME_OUT);
|
|
|
|
+ log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParams.getTraceId(), body, result, System.currentTimeMillis() - startTime);
|
|
|
|
+ if (StringUtils.isBlank(result)) {
|
|
|
|
+ log.info("checkIllegalInfoRequestError-流水号:{}, 入参:{}, 请求上游失败无返回", requestParams.getTraceId(), body);
|
|
|
|
+ stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_TIME_OUT).increment();
|
|
|
|
+ IllegalInfoResult illegalInfoResult = getCriminalInfoResult(requestParams);
|
|
|
|
+ CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
|
|
|
|
+ return illegalInfoResult;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ IllegalInfoResult illegalInfoResult;
|
|
|
|
+ try {
|
|
|
|
+ illegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), IllegalInfoResult.class);
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ log.error("checkIllegalInfo解析异常-流水号:{}, 入参:{}, 解析上游返回异常:{}", requestParams.getTraceId(), body, e);
|
|
|
|
+ illegalInfoResult = getCriminalInfoResult(requestParams);
|
|
|
|
+ CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
|
|
|
|
+ return illegalInfoResult;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 返回4个参数,code0表示结果正常,其他表示异常
|
|
|
|
+ if (!illegalInfoResult.getCode().equals("0")
|
|
|
|
+ || illegalInfoResult.getIsDrugs().equals("2")
|
|
|
|
+ || illegalInfoResult.getIsEscape().equals("2")
|
|
|
|
+ || illegalInfoResult.getIsPedigree().equals("2")) {
|
|
|
|
+ // 查询错误,不计费
|
|
|
|
+ CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
|
|
|
|
+ stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
|
|
|
|
+ log.info("checkIllegalInfoResultError-流水号:{}, 上游结果异常", requestParams.getTraceId());
|
|
|
|
+ illegalInfoResult = getCriminalInfoResult(requestParams);
|
|
|
|
+ } else {
|
|
|
|
+ // 查询成功,计费
|
|
|
|
+ CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, true, requestParams.getTraceId())));
|
|
|
|
+ }
|
|
|
|
+ return illegalInfoResult;
|
|
|
|
+ }
|
|
}
|
|
}
|