IllegalInfoServiceImpl.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. package com.jkcredit.illegal.info.service.impl;
  2. import com.alibaba.fastjson.JSON;
  3. import com.alibaba.fastjson.JSONObject;
  4. import com.jkcredit.illegal.info.constant.CommonConstant;
  5. import com.jkcredit.illegal.info.model.*;
  6. import com.jkcredit.illegal.info.service.CriminalInfoService;
  7. import com.jkcredit.illegal.info.service.IllegalInfoService;
  8. import com.jkcredit.illegal.info.util.AesUtil;
  9. import com.jkcredit.illegal.info.util.OkHttpUtil;
  10. import lombok.extern.slf4j.Slf4j;
  11. import org.apache.commons.lang3.StringUtils;
  12. import org.apache.commons.logging.Log;
  13. import org.apache.commons.logging.LogFactory;
  14. import org.springframework.beans.BeanUtils;
  15. import org.springframework.beans.factory.annotation.Autowired;
  16. import org.springframework.beans.factory.annotation.Value;
  17. import org.springframework.data.redis.core.StringRedisTemplate;
  18. import org.springframework.stereotype.Service;
  19. /**
  20. * @description:
  21. * @author: xusonglin
  22. * @create: 2020/9/22 11:51
  23. * @version: V1.0
  24. **/
  25. @Slf4j
  26. @Service
  27. public class IllegalInfoServiceImpl implements IllegalInfoService {
  28. @Value("${illegalInfo.url}")
  29. private String illegalInfoUrl;
  30. @Value("${illegalInfo.vehicleUrl}")
  31. private String vehicleIllegalInfoUrl;
  32. @Value("${illegalInfo.decodeKey}")
  33. private String decodeKey;
  34. @Autowired
  35. StringRedisTemplate stringRedisTemplate;
  36. @Autowired
  37. CriminalInfoService criminalInfoService;
  38. private static final Log CHARGE_LOGGER = LogFactory.getLog("CHARGE_LOGGER");
  39. @Override
  40. public IllegalInfoResult checkIllegalInfo(IllegalInfoRequestParam requestParams) {
  41. String body = JSON.toJSONString(requestParams);
  42. Long startTime = System.currentTimeMillis();
  43. String result = OkHttpUtil.doPost(illegalInfoUrl, body, CommonConstant.PERSON_TIME_OUT);
  44. log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParams.getTraceId(), body, result, System.currentTimeMillis() - startTime);
  45. if (StringUtils.isBlank(result)) {
  46. log.info("checkIllegalInfoRequestError-流水号:{}, 入参:{}, 请求上游失败无返回", requestParams.getTraceId(), body);
  47. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_TIME_OUT).increment();
  48. }
  49. IllegalInfoResult illegalInfoResult;
  50. try {
  51. if (StringUtils.isBlank(result)) {
  52. illegalInfoResult = new IllegalInfoResult().normalResult();
  53. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  54. return illegalInfoResult;
  55. } else {
  56. illegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), IllegalInfoResult.class);
  57. }
  58. } catch (Exception e) {
  59. log.error("checkIllegalInfo解析异常-流水号:{}, 入参:{}, 解析上游返回异常:{}", requestParams.getTraceId(), body, e);
  60. illegalInfoResult = new IllegalInfoResult().normalResult();
  61. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  62. return illegalInfoResult;
  63. }
  64. // 返回4个参数,code0表示结果正常,其他表示异常
  65. if (!illegalInfoResult.getCode().equals("0")
  66. || illegalInfoResult.getIsDrugs().equals("2")
  67. || illegalInfoResult.getIsEscape().equals("2")
  68. || illegalInfoResult.getIsPedigree().equals("2")) {
  69. // 查询错误,不计费
  70. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  71. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
  72. log.info("checkIllegalInfoResultError-流水号:{}, 上游结果异常", requestParams.getTraceId());
  73. } else {
  74. // 查询成功,计费
  75. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, true, requestParams.getTraceId())));
  76. }
  77. return illegalInfoResult;
  78. }
  79. @Override
  80. public VehicleIllegalInfoResult checkVehicleIllegalInfo(String params) {
  81. try {
  82. params = AesUtil.decryAES(decodeKey, params);
  83. } catch (Exception e) {
  84. log.info("解析参数失败, 入参:{}", params);
  85. return null;
  86. }
  87. VehicleIllegalInfoRequestParam requestParam = getVehicleIllegalInfoRequestParam(params);
  88. String body = JSON.toJSONString(requestParam);
  89. Long startTime = System.currentTimeMillis();
  90. String result = OkHttpUtil.doPost(vehicleIllegalInfoUrl, body, CommonConstant.VEHICLE_TIME_OUT);
  91. log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParam.getTraceId(), body, result, System.currentTimeMillis() - startTime);
  92. if (StringUtils.isBlank(result)) {
  93. log.info("checkVehicleIllegalInfoRequestError-流水号:{}, 入参:{}, 请求上游失败无返回", requestParam.getTraceId(), body);
  94. stringRedisTemplate.boundValueOps(CommonConstant.VEHICLE_ILLEGAL_INFO_TIME_OUT).increment();
  95. return null;
  96. }
  97. VehicleIllegalInfoResult vehicleIllegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), VehicleIllegalInfoResult.class);
  98. // code0表示结果正常,其他表示异常
  99. if (!vehicleIllegalInfoResult.getCode().equals("0")
  100. || vehicleIllegalInfoResult.getResult().equals("2")) {
  101. // 查询错误,不计费
  102. CHARGE_LOGGER.info(JSON.toJSONString(new VehicleIllegalInfoChargeObject(vehicleIllegalInfoResult, false, requestParam.getTraceId())));
  103. stringRedisTemplate.boundValueOps(CommonConstant.VEHICLE_ILLEGAL_INFO_QUERY_FAILED).increment();
  104. log.info("checkVehicleIllegalInfoResultError-流水号:{}, 上游结果异常", requestParam.getTraceId());
  105. } else {
  106. // 查询成功,计费
  107. CHARGE_LOGGER.info(JSON.toJSONString(new VehicleIllegalInfoChargeObject(vehicleIllegalInfoResult, true, requestParam.getTraceId())));
  108. }
  109. return vehicleIllegalInfoResult;
  110. }
  111. private VehicleIllegalInfoRequestParam getVehicleIllegalInfoRequestParam(String params) {
  112. JSONObject jsonObject = JSON.parseObject(params);
  113. VehicleIllegalInfoRequestParam requestParam = new VehicleIllegalInfoRequestParam();
  114. requestParam.setName(jsonObject.getString("name"));
  115. requestParam.setPlateNumber(jsonObject.getString("plateNumber"));
  116. requestParam.setTraceId(jsonObject.getString("traceId"));
  117. requestParam.setIdCode(jsonObject.getString("idCode"));
  118. requestParam.setPlateColor(jsonObject.getString("plateColor"));
  119. return requestParam;
  120. }
  121. @Override
  122. public IllegalInfoResult checkPersonIllegalInfo(String params) {
  123. try {
  124. params = AesUtil.decryAES(decodeKey, params);
  125. } catch (Exception e) {
  126. log.info("解析参数失败, 入参:{}", params);
  127. return null;
  128. }
  129. IllegalInfoRequestParam requestParams = getIllegalInfoRequestParam(params);
  130. String body = JSON.toJSONString(requestParams);
  131. Long startTime = System.currentTimeMillis();
  132. String result = OkHttpUtil.doPost(illegalInfoUrl, body, CommonConstant.PERSON_TIME_OUT);
  133. log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParams.getTraceId(), body, result, System.currentTimeMillis() - startTime);
  134. if (StringUtils.isBlank(result)) {
  135. log.info("checkIllegalInfoRequestError-流水号:{}, 入参:{}, 请求上游失败无返回", requestParams.getTraceId(), body);
  136. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_TIME_OUT).increment();
  137. }
  138. IllegalInfoResult illegalInfoResult;
  139. try {
  140. if (StringUtils.isBlank(result)) {
  141. illegalInfoResult = new IllegalInfoResult().normalResult();
  142. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  143. return illegalInfoResult;
  144. } else {
  145. illegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), IllegalInfoResult.class);
  146. }
  147. } catch (Exception e) {
  148. log.error("checkIllegalInfo解析异常-流水号:{}, 入参:{}, 解析上游返回异常:{}", requestParams.getTraceId(), body, e);
  149. illegalInfoResult = new IllegalInfoResult().normalResult();
  150. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  151. return illegalInfoResult;
  152. }
  153. // 返回4个参数,code0表示结果正常,其他表示异常
  154. if (!illegalInfoResult.getCode().equals("0")
  155. || illegalInfoResult.getIsDrugs().equals("2")
  156. || illegalInfoResult.getIsEscape().equals("2")
  157. || illegalInfoResult.getIsPedigree().equals("2")) {
  158. // 查询错误,不计费
  159. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  160. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
  161. log.info("checkIllegalInfoResultError-流水号:{}, 上游结果异常", requestParams.getTraceId());
  162. } else {
  163. // 查询成功,计费
  164. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, true, requestParams.getTraceId())));
  165. }
  166. return illegalInfoResult;
  167. }
  168. private IllegalInfoRequestParam getIllegalInfoRequestParam(String params) {
  169. JSONObject jsonObject = JSON.parseObject(params);
  170. IllegalInfoRequestParam requestParam = new IllegalInfoRequestParam();
  171. requestParam.setName(jsonObject.getString("name"));
  172. requestParam.setTraceId(jsonObject.getString("traceId"));
  173. requestParam.setIdCode(jsonObject.getString("idCode"));
  174. return requestParam;
  175. }
  176. private IllegalInfoResult getCriminalInfoResult(IllegalInfoRequestParam requestParams) {
  177. CriminalInfoRequestObject requestObject = new CriminalInfoRequestObject();
  178. BeanUtils.copyProperties(requestParams, requestObject);
  179. CriminalInfoResult criminalInfoResult = criminalInfoService.getCriminalInfo(requestObject);
  180. IllegalInfoResult illegalInfoResult = new IllegalInfoResult().normalResult();
  181. if (criminalInfoResult == null) {
  182. return illegalInfoResult;
  183. } else {
  184. /**
  185. * 前科 8
  186. * 涉毒 14和26
  187. * 在逃 50
  188. * 未命中 2
  189. */
  190. if (criminalInfoResult.getScore().equals("14") || criminalInfoResult.getScore().equals("26")) {
  191. // 涉毒
  192. illegalInfoResult.setIsDrugs("1");
  193. } else if (criminalInfoResult.getScore().equals("50")) {
  194. // 在逃
  195. illegalInfoResult.setIsEscape("1");
  196. } else if (criminalInfoResult.getScore().equals("8")) {
  197. // 前科
  198. illegalInfoResult.setIsPedigree("1");
  199. } else {
  200. // 未命中重点人
  201. return illegalInfoResult;
  202. }
  203. return illegalInfoResult;
  204. }
  205. }
  206. @Override
  207. public IllegalInfoResult checkIllegalInfoV2(IllegalInfoRequestParam requestParams) {
  208. String body = JSON.toJSONString(requestParams);
  209. Long startTime = System.currentTimeMillis();
  210. String result = OkHttpUtil.doPost(illegalInfoUrl, body, CommonConstant.PERSON_TIME_OUT);
  211. log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParams.getTraceId(), body, result, System.currentTimeMillis() - startTime);
  212. if (StringUtils.isBlank(result)) {
  213. log.info("checkIllegalInfoRequestError-流水号:{}, 入参:{}, 请求上游失败无返回", requestParams.getTraceId(), body);
  214. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_TIME_OUT).increment();
  215. IllegalInfoResult illegalInfoResult = getCriminalInfoResult(requestParams);
  216. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  217. return illegalInfoResult;
  218. }
  219. IllegalInfoResult illegalInfoResult;
  220. try {
  221. illegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), IllegalInfoResult.class);
  222. } catch (Exception e) {
  223. log.error("checkIllegalInfo解析异常-流水号:{}, 入参:{}, 解析上游返回异常:{}", requestParams.getTraceId(), body, e);
  224. illegalInfoResult = getCriminalInfoResult(requestParams);
  225. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  226. return illegalInfoResult;
  227. }
  228. // 返回4个参数,code0表示结果正常,其他表示异常
  229. if (!illegalInfoResult.getCode().equals("0")
  230. || illegalInfoResult.getIsDrugs().equals("2")
  231. || illegalInfoResult.getIsEscape().equals("2")
  232. || illegalInfoResult.getIsPedigree().equals("2")) {
  233. // 查询错误,不计费
  234. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  235. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
  236. log.info("checkIllegalInfoResultError-流水号:{}, 上游结果异常", requestParams.getTraceId());
  237. illegalInfoResult = getCriminalInfoResult(requestParams);
  238. } else {
  239. // 查询成功,计费
  240. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, true, requestParams.getTraceId())));
  241. }
  242. return illegalInfoResult;
  243. }
  244. }