Authored by tanling

买家地址不能是鉴定中心地址

  1 +package com.yohoufo.common.utils;
  2 +
  3 +public class StringSimilarity {
  4 +
  5 + private static int compare(String str, String target) {
  6 + int d[][]; // 矩阵
  7 + int n = str.length();
  8 + int m = target.length();
  9 + int i; // 遍历str的
  10 + int j; // 遍历target的
  11 + char ch1; // str的
  12 + char ch2; // target的
  13 + int temp; // 记录相同字符,在某个矩阵位置值的增量,不是0就是1
  14 + if (n == 0) {
  15 + return m;
  16 + }
  17 + if (m == 0) {
  18 + return n;
  19 + }
  20 + d = new int[n + 1][m + 1];
  21 + for (i = 0; i <= n; i++) {// 初始化第一列
  22 + d[i][0] = i;
  23 + }
  24 + for (j = 0; j <= m; j++) { // 初始化第一行
  25 + d[0][j] = j;
  26 + }
  27 + for (i = 1; i <= n; i++) { // 遍历str
  28 + ch1 = str.charAt(i - 1);
  29 + // 去匹配target
  30 + for (j = 1; j <= m; j++) {
  31 + ch2 = target.charAt(j - 1);
  32 + if (ch1 == ch2 || ch1 == ch2 + 32 || ch1 + 32 == ch2) {
  33 + temp = 0;
  34 + } else {
  35 + temp = 1;
  36 + }
  37 + // 左边+1,上边+1, 左上角+temp取最小
  38 + d[i][j] = min(d[i - 1][j] + 1, d[i][j - 1] + 1, d[i - 1][j - 1] + temp);
  39 + }
  40 + }
  41 + return d[n][m];
  42 + }
  43 +
  44 + private static int min(int one, int two, int three) {
  45 + return (one = one < two ? one : two) < three ? one : three;
  46 + }
  47 +
  48 + /**
  49 + * 获取两字符串的相似度
  50 + */
  51 +
  52 + public static float compute(String str, String target) {
  53 + return 1 - (float) compare(str, target) / Math.max(str.length(), target.length());
  54 + }
  55 +
  56 + public static void main(String[] args) {
  57 + long start=System.currentTimeMillis();
  58 + for (int i=0;i<10000;i++) {
  59 + compute("大大所大萨达所大所多大大所大所多安达市多大声道","大大所大萨达所大所多大大所大所多安达市多大声道");
  60 + }
  61 + System.out.println(System.currentTimeMillis()-start);
  62 + }
  63 +}
@@ -12,6 +12,7 @@ import com.yohobuy.ufo.model.promotion.constant.CouponTypeEnum; @@ -12,6 +12,7 @@ import com.yohobuy.ufo.model.promotion.constant.CouponTypeEnum;
12 import com.yohoufo.common.alarm.EventBusPublisher; 12 import com.yohoufo.common.alarm.EventBusPublisher;
13 import com.yohoufo.common.exception.UfoServiceException; 13 import com.yohoufo.common.exception.UfoServiceException;
14 import com.yohoufo.common.utils.AddressUtil; 14 import com.yohoufo.common.utils.AddressUtil;
  15 +import com.yohoufo.common.utils.StringSimilarity;
15 import com.yohoufo.dal.order.SellerChangePriceRecordMapper; 16 import com.yohoufo.dal.order.SellerChangePriceRecordMapper;
16 import com.yohoufo.dal.order.SellerOrderGoodsMapper; 17 import com.yohoufo.dal.order.SellerOrderGoodsMapper;
17 import com.yohoufo.dal.order.SellerOrderMapper; 18 import com.yohoufo.dal.order.SellerOrderMapper;
@@ -122,6 +123,10 @@ public class ShoppingServiceImpl implements IShoppingService { @@ -122,6 +123,10 @@ public class ShoppingServiceImpl implements IShoppingService {
122 123
123 @Autowired 124 @Autowired
124 private ConfigReader configReader; 125 private ConfigReader configReader;
  126 +
  127 + @Autowired
  128 + AppraiseAddressService appraiseAddressService;
  129 +
125 /** 130 /**
126 * 结算页数据 131 * 结算页数据
127 * @param request 132 * @param request
@@ -449,6 +454,15 @@ public class ShoppingServiceImpl implements IShoppingService { @@ -449,6 +454,15 @@ public class ShoppingServiceImpl implements IShoppingService {
449 throw new ServiceException(ServiceError.ORDER_ADDRESS_NEED_UPDATE); 454 throw new ServiceException(ServiceError.ORDER_ADDRESS_NEED_UPDATE);
450 } 455 }
451 456
  457 + // 检查地址是否是鉴定中心的地址
  458 + List<AppraiseAddressResp> appraiseAddressRespList = appraiseAddressService.queryAddressInfoList();
  459 + List<String> appraiseAddressStrList = appraiseAddressRespList.stream().map(AppraiseAddressResp::getAddress).distinct().collect(Collectors.toList());
  460 + // 存在和鉴定中心相同的地址
  461 + if (appraiseAddressStrList.stream().filter(x->StringSimilarity.compute(x, addressInfo.getAddress())>0.5).findFirst().isPresent()){
  462 + logger.warn("submit address can not appraiseAddress, uid is {}, address is {}",shoppingRequest.getUid(), addressInfo.getAddress() );
  463 + throw new ServiceException(ServiceError.BUY_ADDRESS_CAN_NOT_APPRAISE_ADDRESS);
  464 + }
  465 +
452 //脱敏的用户地址 466 //脱敏的用户地址
453 AddressInfo hiddenAddress = userProxyService.getHiddenAddressInfo(shoppingRequest.getUid(), addressId); 467 AddressInfo hiddenAddress = userProxyService.getHiddenAddressInfo(shoppingRequest.getUid(), addressId);
454 468