IllegalInfoServiceImpl.java 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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. /**
  40. * 社会风险预警-超时返回一致
  41. * @param requestParams 姓名 身份证号 流水号
  42. * @return 结果
  43. */
  44. @Override
  45. public IllegalInfoResult checkIllegalInfo(IllegalInfoRequestParam requestParams) {
  46. String body = JSON.toJSONString(requestParams);
  47. Long startTime = System.currentTimeMillis();
  48. String result = OkHttpUtil.doPost(illegalInfoUrl, body, CommonConstant.PERSON_TIME_OUT);
  49. log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParams.getTraceId(), body, result, System.currentTimeMillis() - startTime);
  50. if (StringUtils.isBlank(result)) {
  51. log.info("checkIllegalInfoRequestError-流水号:{}, 入参:{}, 请求上游失败无返回", requestParams.getTraceId(), body);
  52. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_TIME_OUT).increment();
  53. }
  54. IllegalInfoResult illegalInfoResult;
  55. try {
  56. if (StringUtils.isBlank(result)) {
  57. illegalInfoResult = new IllegalInfoResult().normalResult();
  58. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  59. return illegalInfoResult;
  60. } else {
  61. illegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), IllegalInfoResult.class);
  62. }
  63. } catch (Exception e) {
  64. log.error("checkIllegalInfo解析异常-流水号:{}, 入参:{}, 解析上游返回异常:{}", requestParams.getTraceId(), body, e);
  65. illegalInfoResult = new IllegalInfoResult().normalResult();
  66. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  67. return illegalInfoResult;
  68. }
  69. // 返回4个参数,code0表示结果正常,其他表示异常
  70. if (!illegalInfoResult.getCode().equals("0")
  71. || illegalInfoResult.getIsDrugs().equals("2")
  72. || illegalInfoResult.getIsEscape().equals("2")
  73. || illegalInfoResult.getIsPedigree().equals("2")) {
  74. // 查询错误,不计费
  75. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  76. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
  77. log.info("checkIllegalInfoResultError-流水号:{}, 上游结果异常", requestParams.getTraceId());
  78. } else {
  79. // 查询成功,计费
  80. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, true, requestParams.getTraceId())));
  81. }
  82. return illegalInfoResult;
  83. }
  84. @Override
  85. public VehicleIllegalInfoResult checkVehicleIllegalInfo(String params) {
  86. try {
  87. params = AesUtil.decryAES(decodeKey, params);
  88. } catch (Exception e) {
  89. log.info("解析参数失败, 入参:{}", params);
  90. return null;
  91. }
  92. VehicleIllegalInfoRequestParam requestParam = getVehicleIllegalInfoRequestParam(params);
  93. String body = JSON.toJSONString(requestParam);
  94. Long startTime = System.currentTimeMillis();
  95. String result = OkHttpUtil.doPost(vehicleIllegalInfoUrl, body, CommonConstant.VEHICLE_TIME_OUT);
  96. log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParam.getTraceId(), body, result, System.currentTimeMillis() - startTime);
  97. if (StringUtils.isBlank(result)) {
  98. log.info("checkVehicleIllegalInfoRequestError-流水号:{}, 入参:{}, 请求上游失败无返回", requestParam.getTraceId(), body);
  99. stringRedisTemplate.boundValueOps(CommonConstant.VEHICLE_ILLEGAL_INFO_TIME_OUT).increment();
  100. return null;
  101. }
  102. VehicleIllegalInfoResult vehicleIllegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), VehicleIllegalInfoResult.class);
  103. // code0表示结果正常,其他表示异常
  104. if (!vehicleIllegalInfoResult.getCode().equals("0")
  105. || vehicleIllegalInfoResult.getResult().equals("2")) {
  106. // 查询错误,不计费
  107. CHARGE_LOGGER.info(JSON.toJSONString(new VehicleIllegalInfoChargeObject(vehicleIllegalInfoResult, false, requestParam.getTraceId())));
  108. stringRedisTemplate.boundValueOps(CommonConstant.VEHICLE_ILLEGAL_INFO_QUERY_FAILED).increment();
  109. log.info("checkVehicleIllegalInfoResultError-流水号:{}, 上游结果异常", requestParam.getTraceId());
  110. } else {
  111. // 查询成功,计费
  112. CHARGE_LOGGER.info(JSON.toJSONString(new VehicleIllegalInfoChargeObject(vehicleIllegalInfoResult, true, requestParam.getTraceId())));
  113. }
  114. return vehicleIllegalInfoResult;
  115. }
  116. private VehicleIllegalInfoRequestParam getVehicleIllegalInfoRequestParam(String params) {
  117. JSONObject jsonObject = JSON.parseObject(params);
  118. VehicleIllegalInfoRequestParam requestParam = new VehicleIllegalInfoRequestParam();
  119. requestParam.setName(jsonObject.getString("name"));
  120. requestParam.setPlateNumber(jsonObject.getString("plateNumber"));
  121. requestParam.setTraceId(jsonObject.getString("traceId"));
  122. requestParam.setIdCode(jsonObject.getString("idCode"));
  123. requestParam.setPlateColor(jsonObject.getString("plateColor"));
  124. return requestParam;
  125. }
  126. @Override
  127. public IllegalInfoResult checkPersonIllegalInfo(String params) {
  128. try {
  129. params = AesUtil.decryAES(decodeKey, params);
  130. } catch (Exception e) {
  131. log.info("解析参数失败, 入参:{}", params);
  132. return null;
  133. }
  134. IllegalInfoRequestParam requestParams = getIllegalInfoRequestParam(params);
  135. String body = JSON.toJSONString(requestParams);
  136. Long startTime = System.currentTimeMillis();
  137. String result = OkHttpUtil.doPost(illegalInfoUrl, body, CommonConstant.PERSON_TIME_OUT);
  138. log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParams.getTraceId(), body, result, System.currentTimeMillis() - startTime);
  139. if (StringUtils.isBlank(result)) {
  140. log.info("checkIllegalInfoRequestError-流水号:{}, 入参:{}, 请求上游失败无返回", requestParams.getTraceId(), body);
  141. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_TIME_OUT).increment();
  142. }
  143. IllegalInfoResult illegalInfoResult;
  144. try {
  145. if (StringUtils.isBlank(result)) {
  146. illegalInfoResult = new IllegalInfoResult().normalResult();
  147. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  148. return illegalInfoResult;
  149. } else {
  150. illegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), IllegalInfoResult.class);
  151. }
  152. } catch (Exception e) {
  153. log.error("checkIllegalInfo解析异常-流水号:{}, 入参:{}, 解析上游返回异常:{}", requestParams.getTraceId(), body, e);
  154. illegalInfoResult = new IllegalInfoResult().normalResult();
  155. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  156. return illegalInfoResult;
  157. }
  158. // 返回4个参数,code0表示结果正常,其他表示异常
  159. if (!illegalInfoResult.getCode().equals("0")
  160. || illegalInfoResult.getIsDrugs().equals("2")
  161. || illegalInfoResult.getIsEscape().equals("2")
  162. || illegalInfoResult.getIsPedigree().equals("2")) {
  163. // 查询错误,不计费
  164. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  165. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
  166. log.info("checkIllegalInfoResultError-流水号:{}, 上游结果异常", requestParams.getTraceId());
  167. } else {
  168. // 查询成功,计费
  169. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, true, requestParams.getTraceId())));
  170. }
  171. return illegalInfoResult;
  172. }
  173. private IllegalInfoRequestParam getIllegalInfoRequestParam(String params) {
  174. JSONObject jsonObject = JSON.parseObject(params);
  175. IllegalInfoRequestParam requestParam = new IllegalInfoRequestParam();
  176. requestParam.setName(jsonObject.getString("name"));
  177. requestParam.setTraceId(jsonObject.getString("traceId"));
  178. requestParam.setIdCode(jsonObject.getString("idCode"));
  179. return requestParam;
  180. }
  181. private IllegalInfoResult getCriminalInfoResult(IllegalInfoRequestParam requestParams) {
  182. CriminalInfoRequestObject requestObject = new CriminalInfoRequestObject();
  183. BeanUtils.copyProperties(requestParams, requestObject);
  184. CriminalInfoResult criminalInfoResult = criminalInfoService.getCriminalInfo(requestObject);
  185. IllegalInfoResult illegalInfoResult = new IllegalInfoResult().normalResult();
  186. if (criminalInfoResult == null) {
  187. return illegalInfoResult;
  188. } else {
  189. /**
  190. * 前科 8
  191. * 涉毒 14和26
  192. * 在逃 50
  193. * 未命中 2
  194. */
  195. if (criminalInfoResult.getScore().equals("14") || criminalInfoResult.getScore().equals("26")) {
  196. // 涉毒
  197. illegalInfoResult.setIsDrugs("1");
  198. } else if (criminalInfoResult.getScore().equals("50")) {
  199. // 在逃
  200. illegalInfoResult.setIsEscape("1");
  201. } else if (criminalInfoResult.getScore().equals("8")) {
  202. // 前科
  203. illegalInfoResult.setIsPedigree("1");
  204. } else {
  205. // 未命中重点人
  206. return illegalInfoResult;
  207. }
  208. return illegalInfoResult;
  209. }
  210. }
  211. /**
  212. * 社会风险预警-超时跳转接口
  213. * @param requestParams 姓名 身份证号 流水号
  214. * @return 结果
  215. */
  216. @Override
  217. public IllegalInfoResult checkIllegalInfoV2(IllegalInfoRequestParam requestParams) {
  218. String body = JSON.toJSONString(requestParams);
  219. Long startTime = System.currentTimeMillis();
  220. String result = OkHttpUtil.doPost(illegalInfoUrl, body, CommonConstant.PERSON_TIME_OUT);
  221. log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParams.getTraceId(), body, result, System.currentTimeMillis() - startTime);
  222. if (StringUtils.isBlank(result)) {
  223. log.info("checkIllegalInfoRequestError-流水号:{}, 入参:{}, 请求上游失败无返回", requestParams.getTraceId(), body);
  224. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_TIME_OUT).increment();
  225. IllegalInfoResult illegalInfoResult = getCriminalInfoResult(requestParams);
  226. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  227. return illegalInfoResult;
  228. }
  229. IllegalInfoResult illegalInfoResult;
  230. try {
  231. illegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), IllegalInfoResult.class);
  232. } catch (Exception e) {
  233. log.error("checkIllegalInfo解析异常-流水号:{}, 入参:{}, 解析上游返回异常:{}", requestParams.getTraceId(), body, e);
  234. illegalInfoResult = getCriminalInfoResult(requestParams);
  235. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  236. return illegalInfoResult;
  237. }
  238. // 返回4个参数,code0表示结果正常,其他表示异常
  239. if (!illegalInfoResult.getCode().equals("0")
  240. || illegalInfoResult.getIsDrugs().equals("2")
  241. || illegalInfoResult.getIsEscape().equals("2")
  242. || illegalInfoResult.getIsPedigree().equals("2")) {
  243. // 查询错误,不计费
  244. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  245. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
  246. log.info("checkIllegalInfoResultError-流水号:{}, 上游结果异常", requestParams.getTraceId());
  247. illegalInfoResult = getCriminalInfoResult(requestParams);
  248. } else {
  249. // 查询成功,计费
  250. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, true, requestParams.getTraceId())));
  251. }
  252. return illegalInfoResult;
  253. }
  254. /**
  255. * 社会风险预警
  256. * @param requestParams 姓名 身份证号 流水号
  257. * @return 结果
  258. */
  259. @Override
  260. public IllegalInfoResult checkIllegalInfoV3(IllegalInfoRequestParam requestParams) {
  261. String body = JSON.toJSONString(requestParams);
  262. Long startTime = System.currentTimeMillis();
  263. String result = OkHttpUtil.doPost(illegalInfoUrl, body, CommonConstant.PERSON_TIME_OUT);
  264. log.info("调用上游接口-流水号:{}, 入参:{}, 返回:{}, 时延:{}", requestParams.getTraceId(), body, result, System.currentTimeMillis() - startTime);
  265. if (StringUtils.isBlank(result)) {
  266. log.info("调用上游接口-流水号:{}, 入参:{}, 请求上游失败无返回", requestParams.getTraceId(), body);
  267. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_TIME_OUT).increment();
  268. return null;
  269. }
  270. IllegalInfoResult illegalInfoResult = JSON.toJavaObject(JSON.parseObject(result), IllegalInfoResult.class);
  271. // 返回4个参数,code0表示结果正常,其他表示异常
  272. if (!illegalInfoResult.getCode().equals("0")
  273. || illegalInfoResult.getIsDrugs().equals("2")
  274. || illegalInfoResult.getIsEscape().equals("2")
  275. || illegalInfoResult.getIsPedigree().equals("2")) {
  276. // 查询错误,不计费
  277. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, false, requestParams.getTraceId())));
  278. stringRedisTemplate.boundValueOps(CommonConstant.PERSON_ILLEGAL_INFO_QUERY_FAILED).increment();
  279. } else {
  280. // 查询成功,计费
  281. CHARGE_LOGGER.info(JSON.toJSONString(new IllegalInfoChargeObject(illegalInfoResult, true, requestParams.getTraceId())));
  282. }
  283. return illegalInfoResult;
  284. }
  285. }