admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/controller/client/v2/ShareControllerV2.java
@@ -24,6 +24,7 @@
import com.google.gson.GsonBuilder;
import com.yeshi.fanli.dto.ConfigParamsDTO;
import com.yeshi.fanli.dto.jd.JDCouponInfo;
import com.yeshi.fanli.dto.jd.JDPingouInfo;
import com.yeshi.fanli.dto.pdd.PDDGoodsDetail;
import com.yeshi.fanli.dto.share.ShareGoodsRecordDTO;
import com.yeshi.fanli.entity.accept.AcceptData;
@@ -34,8 +35,8 @@
import com.yeshi.fanli.entity.bus.user.UserExtraTaoBaoInfo;
import com.yeshi.fanli.entity.bus.user.UserInfo;
import com.yeshi.fanli.entity.bus.user.UserInfoExtra;
import com.yeshi.fanli.entity.bus.user.vip.UserLevelEnum;
import com.yeshi.fanli.entity.goods.CommonGoods;
import com.yeshi.fanli.entity.goods.ShareGoodsTextTemplate;
import com.yeshi.fanli.entity.jd.JDGoods;
import com.yeshi.fanli.entity.system.ConfigKeyEnum;
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
@@ -55,6 +56,7 @@
import com.yeshi.fanli.service.inter.goods.ShareGoodsTextTemplateService;
import com.yeshi.fanli.service.inter.monitor.BusinessEmergent110Service;
import com.yeshi.fanli.service.inter.monitor.MonitorService;
import com.yeshi.fanli.service.inter.order.OrderHongBaoMoneyComputeService;
import com.yeshi.fanli.service.inter.order.config.HongBaoManageService;
import com.yeshi.fanli.service.inter.tlj.ConfigTaoLiJinService;
import com.yeshi.fanli.service.inter.tlj.UserTaoLiJinRecordService;
@@ -104,6 +106,9 @@
   @Resource
   private HongBaoManageService hongBaoManageService;
   @Resource
   private OrderHongBaoMoneyComputeService orderHongBaoMoneyComputeService;
   @Resource
   private MonitorService monitorService;
@@ -177,7 +182,7 @@
            "下载链接:" + Constant.YINGYONGBAO_LINK, false, true));
      list.add(new ShareGoodsCommentChoiceInfo(ShareGoodsCommentChoiceInfo.TYPE_FANLI_MONEY, "返利金额",
            "返利金额:¥ " + fanliMoney, false, true));
            String.format("【联系我下载APP】最高可返还%s元", fanliMoney + ""), false, true));
      return list;
   }
@@ -244,16 +249,24 @@
      }
   }
   public static String getERCodeContent(String template, TaoBaoGoodsBrief goods, String token) {
      // return template.replace("[淘口令]", token);
   public static String getERCodeContentNew(String template, TaoBaoGoodsBrief goods, String token) {
      String commentText = template.replace("[原价]", goods.getZkPrice().toString());
      commentText = commentText.replace("[口令]", token);
      commentText = commentText.replace("[淘口令]", token);
      if (StringUtil.isNullOrEmpty(goods.getCouponInfo())) {
         commentText = commentText.replace("领券抢购", "抢购");
         commentText = commentText.replace("【券后价】[券后价]元", "");
      } else {
         commentText = commentText.replace("[券后价]", TaoBaoUtil.getAfterUseCouplePrice(goods) + "");
      }
      commentText = commentText.replace("\r\n\r\n", "\r\n").replace("\r\n\r\n", "\r\n").replace("\r\n\r\n", "\r\n");
      return commentText;
   }
   // 淘宝分享活动
   public static String getTaoBaoActiivtyERCodeContentNew(String template, String token) {
      String commentText = template.replace("[淘口令]", token);
      commentText = commentText.replace("\r\n\r\n", "\r\n").replace("\r\n\r\n", "\r\n").replace("\r\n\r\n", "\r\n");
      return commentText;
   }
@@ -491,7 +504,7 @@
         TaoBaoLink taoBaoLink = shareGoodsService.getTaoBaoLinkForShare(uid, goodsId, relationId);
         if (taoBaoLink != null && taoBaoLink.getGoods() != null && needGoods) {
            ConfigParamsDTO dto = hongBaoManageService.getShowComputeRate(platform, version);
            ConfigParamsDTO dto = orderHongBaoMoneyComputeService.getShowComputeRate(platform, version);
            GoodsDetailVO goodsInfo = GoodsDetailVOFactory.convertTaoBao(taoBaoLink.getGoods(), dto);
            shareInfo.setGoodsInfo(goodsInfo);
         }
@@ -530,49 +543,44 @@
         }
         shareInfo.setCommentTexts(commentTexts);
         String shareText = "";
         // 无券
         String shopType = taoBaoLink.getGoods().getUserType() == 0 ? TaoBaoConstant.SHARE_PRICE_TAOBAO
               : TaoBaoConstant.SHARE_PRICE_TM;
         TaoBaoGoodsBrief goods = taoBaoLink.getGoods();
         if (StringUtil.isNullOrEmpty(taoBaoLink.getGoods().getCouponInfo())) {
            String text = shareGoodsTextTemplateService.getCommonTemplate(uid);
            if (StringUtil.isNullOrEmpty(text))
               text = configService.get(ConfigKeyEnum.goodsShareTextNoCoupon.getKey());
            shareText = text.replace("{标题}", taoBaoLink.getGoods().getTitle()).replace("{商品原价}",
                  MoneyBigDecimalUtil.getWithNoZera(taoBaoLink.getGoods().getZkPrice()) + "");
         } else// 有券
         {
            String text = shareGoodsTextTemplateService.geteCouponTemplate(uid);
            if (StringUtil.isNullOrEmpty(text))
               text = configService.get(ConfigKeyEnum.goodsShareTextCoupon.getKey());
            shareText = text.replace("{标题}", taoBaoLink.getGoods().getTitle())
                  .replace("{商品原价}", MoneyBigDecimalUtil.getWithNoZera(taoBaoLink.getGoods().getZkPrice()) + "")
                  .replace("{优惠券面额}",
                        MoneyBigDecimalUtil.getWithNoZera(taoBaoLink.getGoods().getCouponAmount()).toString())
                  .replace("{优惠券价}", TaoBaoUtil.getAfterUseCouplePrice(taoBaoLink.getGoods()) + "");
         boolean coupon = false;
         if (!StringUtil.isNullOrEmpty(taoBaoLink.getGoods().getCouponInfo())) {
            coupon = true;
         }
         shareText = shareText.replace("{店铺类型}", shopType)
               .replace("{月销量}", TaoBaoUtil.getSaleCount(taoBaoLink.getGoods().getBiz30day()))
               .replace("{领券短链}", shortLink).replace("{淘口令}", TaoBaoUtil.filterTaoToken(taoBaoLink.getTaoToken()));
         String template = shareGoodsTextTemplateService.getTextTemplateByTB(uid);
         String shareText = shareGoodsTextTemplateService.createContentTB(template, goods, taoBaoLink.getTaoToken(),
               coupon);
         shareInfo.setShareText(shareText);
         String descText = shareText.replace(taoBaoLink.getGoods().getTitle(), "").trim();
         if (descText.startsWith("\\r\\n")) {
            descText = descText.substring(0);
         }
         shareInfo.setDescText(descText);
         shareInfo.setDescText(deleteBlankLine(descText));
         // 测试
         // 2.0.2之前
         if (!VersionUtil.greaterThan_2_0_2(platform, version))
            shareInfo.setClickUrl(getERCodeContent(configService.get(ConfigKeyEnum.taobaoShareQrcodeText.getKey()),
                  taoBaoLink.getGoods(), shareInfo.getToken()));
         if (VersionUtil.greaterThan_2_0_7(platform, version)) {
            shareInfo.setClickUrl(
                  getERCodeContentNew(configService.get(ConfigKeyEnum.quickShareTBCommentText.getKey()),
                        taoBaoLink.getGoods(), shareInfo.getToken()));
         } else if (!VersionUtil.greaterThan_2_0_2(platform, version)) {
            shareInfo.setClickUrl(
                  getERCodeContentNew(configService.get(ConfigKeyEnum.taobaoShareQrcodeText.getKey()),
                        taoBaoLink.getGoods(), shareInfo.getToken()));
         }
         shareInfo.setWxErCode(getERCodeContent(configService.get(ConfigKeyEnum.taobaoShareQrcodeText.getKey()),
         // if (VersionUtil.greaterThan_2_0_7(platform, version)) {
         // shareInfo.setWxErCode(
         // getERCodeContentNew(configService.get(ConfigKeyEnum.quickShareTBCommentText.getKey()),
         // taoBaoLink.getGoods(), shareInfo.getToken()));
         // } else {
         shareInfo.setWxErCode(getERCodeContentNew(configService.get(ConfigKeyEnum.taobaoShareQrcodeText.getKey()),
               taoBaoLink.getGoods(), shareInfo.getToken()));
         // }
         // 提示图文内容
         String imgs = configService.getByVersion(ConfigKeyEnum.goodsShareNotifyImgs.getKey(), platform,
@@ -609,15 +617,18 @@
         String commentText = "";
         String recommendText = "";
         if (VersionUtil.greaterThan_2_0_7(platform, version)) {
            TaoBaoGoodsBrief goods = taoBaoLink.getGoods();
            String template = configService.get(ConfigKeyEnum.quickShareGoodsText.getKey());
            recommendText = template.replace("[商品标题]", goods.getTitle());
            if (StringUtil.isNullOrEmpty(goods.getDescription())) {
            String template2 = configService.get(ConfigKeyEnum.quickShareGoodsText.getKey());
            recommendText = template2.replace("[商品标题]", goods.getTitle());
            if (!coupon) {
               recommendText = recommendText.replace("推荐理由:[推荐语]", "");
            } else {
               recommendText = recommendText.replace("[推荐语]", goods.getDescription());
               if (!StringUtil.isNullOrEmpty(goods.getDescription())) {
                  recommendText = recommendText.replace("[推荐语]", goods.getDescription());
               } else {
                  recommendText = recommendText.replace("推荐理由:[推荐语]", "");
               }
            }
            String sales = TaoBaoUtil.getSaleCount(taoBaoLink.getGoods().getBiz30day());
            if (sales.equals("0")) {
               recommendText = recommendText.replace("销量:[销量]", "");
@@ -627,27 +638,32 @@
            String quickCommentText = configService.get(ConfigKeyEnum.quickShareTBCommentText.getKey());
            commentText = quickCommentText.replace("[原价]", goods.getZkPrice().toString());
            commentText = commentText.replace("[口令]", TaoBaoUtil.filterTaoToken(taoBaoLink.getTaoToken()));
            commentText = commentText.replace("[淘口令]", TaoBaoUtil.filterTaoToken(taoBaoLink.getTaoToken()));
            if (StringUtil.isNullOrEmpty(taoBaoLink.getGoods().getCouponInfo())) {
               commentText = commentText.replace("领券抢购", "抢购");
               commentText = commentText.replace("【券后价】[券后价]元", "");
               recommendText = recommendText.replace("优惠券:[券面额]元", "");
            } else {
               commentText = commentText.replace("[券后价]",
                     TaoBaoUtil.getAfterUseCouplePrice(taoBaoLink.getGoods()) + "");
            }
            if (StringUtil.isNullOrEmpty(taoBaoLink.getGoods().getCouponInfo())) {
               recommendText = recommendText.replace("优惠券:[券面额]元", "");
            } else {
               recommendText = recommendText.replace("[券面额]",
                     MoneyBigDecimalUtil.getWithNoZera(taoBaoLink.getGoods().getCouponAmount()).toString());
            }
         } else {
            recommendText = shareInfo.getDescText();
            commentText = shareInfo.getShareText();
            recommendText = shareInfo.getDescText();
         }
         shareInfo.setCommentText(deleteBlankLine(commentText));
         shareInfo.setRecommendText(deleteBlankLine(recommendText));
         // 设置评论文本选项
         shareInfo.setCommentTextChoiceList(getCommentChoiceList(shareInfo.getCommentText(), null, inviteCode,
               TaoBaoUtil.getGoodsHongBaoMoney(taoBaoLink.getGoods(), hongBaoManageService.getFanLiRate())));
         shareInfo.setCommentTextChoiceList(
               getCommentChoiceList(shareInfo.getCommentText(), null, inviteCode, TaoBaoUtil.getGoodsHongBaoMoney(
                     taoBaoLink.getGoods(), hongBaoManageService.getFanLiRate(UserLevelEnum.superVIP))));
         out.print(JsonUtil.loadTrueResult(
               JsonUtil.getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder()).create().toJson(shareInfo)));
@@ -726,30 +742,16 @@
      shareInfo.setCommentTexts(new ArrayList<>());
      if (needGoods)
         shareInfo.setGoodsInfo(GoodsDetailVOFactory.convertJDGoods(jdGoods,
               hongBaoManageService.getShowComputeRate(acceptData.getPlatform(), acceptData.getVersion())));
         shareInfo.setGoodsInfo(GoodsDetailVOFactory.convertJDGoods(jdGoods, orderHongBaoMoneyComputeService
               .getShowComputeRate(acceptData.getPlatform(), acceptData.getVersion())));
      String shareText = "";
      boolean hasCoupon = false;
      // 分享模板
      ShareGoodsTextTemplate textTemplate = shareGoodsTextTemplateService.getShareGoodsTextTemplate(uid);
      if (couponInfo == null) { // 无券模板
         if (textTemplate != null)
            shareText = textTemplate.getShareJDTextTemplate();
         if (StringUtil.isNullOrEmpty(shareText))
            shareText = configService.get(ConfigKeyEnum.goodsShareTextNoCouponJD.getKey());
      } else { // 有券模板
      if (couponInfo != null) {
         hasCoupon = true;
         if (textTemplate != null)
            shareText = textTemplate.getShareJDTextTemplateCoupon();
         if (StringUtil.isNullOrEmpty(shareText))
            shareText = configService.get(ConfigKeyEnum.goodsShareTextCouponJD.getKey());
      }
      shareText = shareGoodsTextTemplateService.createContentByTemplateJD(shareText, uid, jdGoods, jumpLink,
            hasCoupon);
      String template = shareGoodsTextTemplateService.getTextTemplateByJD(uid);
      String shareText = shareGoodsTextTemplateService.createContentJD(template, jdGoods, jumpLink, hasCoupon);
      shareInfo.setShareText(shareText);
      String descText = shareText.replace(jdGoods.getSkuName(), "").trim();
@@ -792,31 +794,35 @@
      String commentText = "";
      String recommendText = "";
      if (VersionUtil.greaterThan_2_0_7(acceptData.getPlatform(), acceptData.getVersion())) {
         String template = configService.get(ConfigKeyEnum.quickShareGoodsText.getKey());
         recommendText = template.replace("[商品标题]", jdGoods.getSkuName());
         // 无推荐语
         String template2 = configService.get(ConfigKeyEnum.quickShareGoodsText.getKey());
         recommendText = template2.replace("[商品标题]", jdGoods.getSkuName());
         recommendText = recommendText.replace("推荐理由:[推荐语]", "");
         String sales = JDUtil.getSaleCount(jdGoods.getInOrderCount30Days());
         if (sales.equals("0")) {
            recommendText = recommendText.replace("销量:[销量]", "");
         } else {
            recommendText = recommendText.replace("[销量]", sales.replace("万", "w"));
         }
         String quickCommentText = configService.get(ConfigKeyEnum.quickShareJDCommentText.getKey());
         commentText = quickCommentText.replace("[原价]", jdGoods.getPrice().toString());
         commentText = commentText.replace("[链接]", jumpLink);
         if (couponInfo == null) {
            commentText = commentText.replace("领券抢购", "抢购");
            commentText = commentText.replace("【券后价】[券后价]元", "");
         BigDecimal price = jdGoods.getPrice();
         JDPingouInfo pinGouInfo = jdGoods.getPinGouInfo();
         if (pinGouInfo != null) {
            price = pinGouInfo.getPingouPrice();
         }
         String template3 = configService.get(ConfigKeyEnum.quickShareJDCommentText.getKey());
         commentText = template3.replace("[原价]", BigDecimalUtil.getWithNoZera(price).toString());
         if (!hasCoupon) {
            recommendText = recommendText.replace("优惠券:[券面额]元", "");
            commentText = commentText.replace("【券后价】[券后价]元", "");
            commentText = commentText.replace("领券抢购", "抢购");
         } else {
            recommendText = recommendText.replace("[券面额]",
                  BigDecimalUtil.getWithNoZera(couponInfo.getDiscount()).toString());
            commentText = commentText.replace("[券后价]",
                  BigDecimalUtil.getWithNoZera(JDUtil.getQuanPrice(jdGoods)).toString());
            recommendText = recommendText.replace("[券面额]",
                  BigDecimalUtil.getWithNoZera(JDUtil.getShowCouponInfo(jdGoods).getDiscount()).toString());
         }
         commentText = commentText.replace("[链接]", jumpLink);
      } else {
         commentText = shareInfo.getShareText();
         recommendText = shareInfo.getDescText();
@@ -826,7 +832,7 @@
      // 设置评论文本选项
      shareInfo.setCommentTextChoiceList(getCommentChoiceList(null, shareInfo.getCommentText(), inviteCode,
            JDUtil.getGoodsFanLiMoney(jdGoods, hongBaoManageService.getFanLiRate())));
            JDUtil.getGoodsFanLiMoney(jdGoods, hongBaoManageService.getFanLiRate(UserLevelEnum.superVIP))));
      out.print(JsonUtil.loadTrueResult(
            JsonUtil.getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder()).create().toJson(shareInfo)));
@@ -858,12 +864,10 @@
         }
      });
   }
   private String deleteBlankLine(String st){
   private String deleteBlankLine(String st) {
      return st.replace("\r\n\r\n", "\r\n").replace("\r\n\r\n", "\r\n").replace("\r\n\r\n", "\r\n");
   }
   /**
    * 拼多多分享
@@ -901,33 +905,18 @@
               .setGoodsInfo(GoodsDetailVOFactory.convertPDDGoods(goods,
                     new ConfigParamsDTO(hongBaoManageService.getFanLiRate(),
                           hongBaoManageService.getShareRate(), Constant.MAX_REWARD_RATE,
                           hongBaoManageService.getVIPFanLiRate())));
      }
      String template = "";
      boolean hasCoupon = false;
      ShareGoodsTextTemplate textTemplate = shareGoodsTextTemplateService.getShareGoodsTextTemplate(uid);
      if (goods.getHasCoupon() == null || !goods.getHasCoupon()) {
         if (textTemplate != null)
            template = textTemplate.getSharePDDTextTemplate();
         if (StringUtil.isNullOrEmpty(template))
            template = configService.get(ConfigKeyEnum.goodsShareTextNocouponPDD.getKey());
      } else {
         hasCoupon = true;
         if (textTemplate != null)
            template = textTemplate.getSharePDDTextTemplateCoupon();
         if (StringUtil.isNullOrEmpty(template))
            template = configService.get(ConfigKeyEnum.goodsShareTextCouponPDD.getKey());
                           hongBaoManageService.getFanLiRate(UserLevelEnum.superVIP))));
      }
      // 创建口令
      String token = PinDuoDuoApiUtil.createGenerate(goodsId);
      // String token = PinDuoDuoApiUtil.createGenerate(goodsId);
      // 生成分享内容
      String shareText = shareGoodsTextTemplateService.createContentByTemplatePDD(template, uid, goods, jumpLink,
            hasCoupon, token);
      boolean hasCoupon = true;
      if (goods.getHasCoupon() == null || !goods.getHasCoupon()) {
         hasCoupon = false;
      }
      String template = shareGoodsTextTemplateService.getTextTemplateByPDD(uid);
      String shareText = shareGoodsTextTemplateService.createContentPDD(template, goods, jumpLink, hasCoupon);
      shareInfo.setShareText(shareText);
      String descText = shareText.replace(goods.getGoodsName(), "").trim();
@@ -1012,8 +1001,8 @@
      shareInfo.setCommentText(deleteBlankLine(commentText));
      // 设置评论文本选项
      shareInfo.setCommentTextChoiceList(getCommentChoiceList(null,shareInfo.getCommentText(), inviteCode,
            PinDuoDuoUtil.getGoodsFanLiMoney(goods, hongBaoManageService.getFanLiRate())));
      shareInfo.setCommentTextChoiceList(getCommentChoiceList(null, shareInfo.getCommentText(), inviteCode,
            PinDuoDuoUtil.getGoodsFanLiMoney(goods, hongBaoManageService.getFanLiRate(UserLevelEnum.superVIP))));
      out.print(JsonUtil.loadTrueResult(
            JsonUtil.getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder()).create().toJson(shareInfo)));
@@ -1103,7 +1092,7 @@
    * @param hasCoupon
    * @param out
    */
   public void createTaoBaoViewText(Integer goodsType, Long uid, String template, Long goodsId, Long tljId,
   private void createTaoBaoViewText(Integer goodsType, Long uid, String template, Long goodsId, Long tljId,
         Boolean hasCoupon, PrintWriter out) {
      TaoBaoGoodsBrief goods = taoBaoGoodsCacheUtil.getCommonTaoBaoGoodsInfo(goodsId);
      if (goods == null)
@@ -1122,49 +1111,13 @@
         template = getShareTemplate(goodsType, uid, hasCoupon, tljId);
      }
      // 校验券模板是否正确
      if (hasCoupon) {
         // 有券商品
         if (tljId != null) {
            try {
               shareGoodsTextTemplateService.isTaoLiJinTemplateRight(template);
            } catch (ShareGoodsTextTemplateException e) {
               out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
               return;
            }
         } else {
            try {
               shareGoodsTextTemplateService.isCouponTemplateRight(template);
            } catch (ShareGoodsTextTemplateException e) {
               out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
               return;
            }
         }
      } else {
         // 普通商品
         try {
            shareGoodsTextTemplateService.isCommonTemplateRight(template);
         } catch (ShareGoodsTextTemplateException e) {
            out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
            return;
         }
      // 校验模板是否正确
      try {
         shareGoodsTextTemplateService.verifyRightTB(template);
      } catch (ShareGoodsTextTemplateException e) {
         out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
         return;
      }
      String url = null;
      if (tljId != null) {
         UserTaoLiJinRecord userTaoLiJinRecord = userTaoLiJinRecordService.selectByPrimaryKey(tljId);
         if (userTaoLiJinRecord == null) {
            out.print(JsonUtil.loadFalseResult(5, "淘礼金领取链接不存在"));
            return;
         }
         url = userTaoLiJinRecord.getSendUrl();
      } else {
         url = String.format("http://%s%s?uid=%s&id=%s&appType=flq", configService.getH5Host(),
               Constant.systemCommonConfig.getShareGoodsPagePath(), AESUtil.encrypt(uid + "", Constant.UIDAESKEY),
               goods.getAuctionId() + "");
      }
      String shortLink = HttpUtil.getShortLink(url);
      // 查询是否有分享
      UserShareGoodsHistory userShareHistory = shareGoodsService.getShareGoodsHistory(uid, goods.getAuctionId());
@@ -1185,8 +1138,7 @@
                  StringUtil.isNullOrEmpty(goodsLink.getCouponLink()) ? goodsLink.getAuctionUrl()
                        : goodsLink.getCouponLink());
      }
      String content = shareGoodsTextTemplateService.createContentByTemplate(template, uid, goods, token, shortLink,
            hasCoupon, tljId);
      String content = shareGoodsTextTemplateService.createContentTB(template, goods, token, hasCoupon);
      JSONObject data = new JSONObject();
      data.put("content", content);
      out.print(JsonUtil.loadTrueResult(data));
@@ -1203,7 +1155,7 @@
    * @param hasCoupon
    * @param out
    */
   public void createJDViewText(Integer goodsType, Long uid, String template, Long goodsId, Boolean hasCoupon,
   private void createJDViewText(Integer goodsType, Long uid, String template, Long goodsId, Boolean hasCoupon,
         PrintWriter out) {
      JDGoods goods = jdGoodsCacheUtil.getGoodsInfo(goodsId);
      if (goods == null) {
@@ -1216,23 +1168,11 @@
      }
      // 校验券模板是否正确
      if (hasCoupon) {
         // 有券商品
         try {
            shareGoodsTextTemplateService.isCouponTemplateRightJD(template);
         } catch (ShareGoodsTextTemplateException e) {
            out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
            return;
         }
      } else {
         // 普通商品
         try {
            shareGoodsTextTemplateService.isCommonTemplateRightJD(template);
         } catch (ShareGoodsTextTemplateException e) {
            out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
            return;
         }
      try {
         shareGoodsTextTemplateService.verifyRightJD(template);
      } catch (ShareGoodsTextTemplateException e) {
         out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
         return;
      }
      String couponUrl = null;
@@ -1244,8 +1184,7 @@
      String shortLink = JDApiUtil.convertLinkWithSubUnionId(materialId, couponUrl, JDApiUtil.POSITION_SHARE + "",
            uid + "");
      String content = shareGoodsTextTemplateService.createContentByTemplateJD(template, uid, goods, shortLink,
            hasCoupon);
      String content = shareGoodsTextTemplateService.createContentJD(template, goods, shortLink, hasCoupon);
      JSONObject data = new JSONObject();
      data.put("content", content);
      out.print(JsonUtil.loadTrueResult(data));
@@ -1262,7 +1201,7 @@
    * @param hasCoupon
    * @param out
    */
   public void createPDDViewText(Integer goodsType, Long uid, String template, Long goodsId, Boolean hasCoupon,
   private void createPDDViewText(Integer goodsType, Long uid, String template, Long goodsId, Boolean hasCoupon,
         PrintWriter out) {
      PDDGoodsDetail goods = pinDuoDuoCacheUtil.getGoodsInfo(goodsId);
      if (goods == null) {
@@ -1275,23 +1214,11 @@
      }
      // 校验券模板是否正确
      if (hasCoupon) {
         // 有券商品
         try {
            shareGoodsTextTemplateService.isCouponTemplateRightPDD(template);
         } catch (ShareGoodsTextTemplateException e) {
            out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
            return;
         }
      } else {
         // 普通商品
         try {
            shareGoodsTextTemplateService.isCommonTemplateRightPDD(template);
         } catch (ShareGoodsTextTemplateException e) {
            out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
            return;
         }
      try {
         shareGoodsTextTemplateService.verifyRightPDD(template);
      } catch (ShareGoodsTextTemplateException e) {
         out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
         return;
      }
      // // 创建h5连接
@@ -1304,12 +1231,11 @@
      String shortLink = PinDuoDuoApiUtil.getPromotionUrl(goodsId, PinDuoDuoApiUtil.PID_SHARE + "", uid + "");
      // 创建口令
      String token = PinDuoDuoApiUtil.createGenerate(goodsId);
      // // 创建口令
      // String token = PinDuoDuoApiUtil.createGenerate(goodsId);
      // 生成分享内容
      String content = shareGoodsTextTemplateService.createContentByTemplatePDD(template, uid, goods, shortLink,
            hasCoupon, token);
      String content = shareGoodsTextTemplateService.createContentPDD(template, goods, shortLink, hasCoupon);
      JSONObject data = new JSONObject();
      data.put("content", content);
@@ -1327,58 +1253,11 @@
   private String getShareTemplate(int goodsType, Long uid, boolean hasCoupon, Long tljId) {
      String template = "";
      if (goodsType == Constant.SOURCE_TYPE_TAOBAO) {
         if (hasCoupon) {
            if (tljId != null) {
               template = shareGoodsTextTemplateService.getTaoLiJinTemplate(uid);
               if (StringUtil.isNullOrEmpty(template))
                  template = configTaoLiJinService.getValueByKey("goods_share_text", new Date());
            } else {
               template = shareGoodsTextTemplateService.geteCouponTemplate(uid);
               if (StringUtil.isNullOrEmpty(template))
                  template = configService.get(ConfigKeyEnum.goodsShareTextCoupon.getKey());
            }
         } else {
            template = shareGoodsTextTemplateService.getCommonTemplate(uid);
            if (StringUtil.isNullOrEmpty(template))
               template = configService.get(ConfigKeyEnum.goodsShareTextNoCoupon.getKey());
         }
         template = shareGoodsTextTemplateService.getTextTemplateByTB(uid);
      } else if (goodsType == Constant.SOURCE_TYPE_JD) {
         ShareGoodsTextTemplate textTemplate = shareGoodsTextTemplateService.getShareGoodsTextTemplate(uid);
         if (hasCoupon) {
            if (textTemplate != null) {
               template = textTemplate.getShareJDTextTemplateCoupon();
            }
            if (StringUtil.isNullOrEmpty(template)) {
               template = configService.get(ConfigKeyEnum.goodsShareTextCouponJD.getKey());
            }
         } else {
            if (textTemplate != null) {
               template = textTemplate.getShareJDTextTemplate();
            }
            if (StringUtil.isNullOrEmpty(template)) {
               template = configService.get(ConfigKeyEnum.goodsShareTextNoCouponJD.getKey());
            }
         }
         template = shareGoodsTextTemplateService.getTextTemplateByJD(uid);
      } else if (goodsType == Constant.SOURCE_TYPE_PDD) {
         ShareGoodsTextTemplate textTemplate = shareGoodsTextTemplateService.getShareGoodsTextTemplate(uid);
         if (hasCoupon) {
            if (textTemplate != null) {
               template = textTemplate.getSharePDDTextTemplateCoupon();
            }
            if (StringUtil.isNullOrEmpty(template)) {
               template = configService.get(ConfigKeyEnum.goodsShareTextCouponPDD.getKey());
            }
         } else {
            if (textTemplate != null) {
               template = textTemplate.getSharePDDTextTemplate();
            }
            if (StringUtil.isNullOrEmpty(template)) {
               template = configService.get(ConfigKeyEnum.goodsShareTextNocouponPDD.getKey());
            }
         }
         template = shareGoodsTextTemplateService.getTextTemplateByPDD(uid);
      }
      return template;
   }
@@ -1460,39 +1339,11 @@
      try {
         if (goodsType == Constant.SOURCE_TYPE_TAOBAO) {
            // 校验券模板是否正确
            if (hasCoupon) {
               // 有券商品
               if (tljId != null) {
                  shareGoodsTextTemplateService.isTaoLiJinTemplateRight(template);
                  shareGoodsTextTemplateService.saveTaoLiJinTemplate(uid, template);
               } else {
                  shareGoodsTextTemplateService.isCouponTemplateRight(template);
                  shareGoodsTextTemplateService.saveCouponTemplate(uid, template);
               }
            } else {
               // 普通商品
               shareGoodsTextTemplateService.isCommonTemplateRight(template);
               shareGoodsTextTemplateService.saveCommonTemplate(uid, template);
            }
            shareGoodsTextTemplateService.saveTemplateTB(uid, template);
         } else if (goodsType == Constant.SOURCE_TYPE_JD) {
            if (hasCoupon) {
               shareGoodsTextTemplateService.isCouponTemplateRightJD(template);
               shareGoodsTextTemplateService.saveCouponTemplateJD(uid, template);
            } else {
               shareGoodsTextTemplateService.isCommonTemplateRightJD(template);
               shareGoodsTextTemplateService.saveCommonTemplateJD(uid, template);
               out.print(JsonUtil.loadTrueResult(""));
            }
            shareGoodsTextTemplateService.saveTemplateJD(uid, template);
         } else if (goodsType == Constant.SOURCE_TYPE_PDD) {
            if (hasCoupon) {
               shareGoodsTextTemplateService.isCouponTemplateRightPDD(template);
               shareGoodsTextTemplateService.saveCouponTemplatePDD(uid, template);
            } else {
               shareGoodsTextTemplateService.isCommonTemplateRightPDD(template);
               shareGoodsTextTemplateService.saveCommonTemplatePDD(uid, template);
               out.print(JsonUtil.loadTrueResult(""));
            }
            shareGoodsTextTemplateService.saveTemplatePDD(uid, template);
         }
      } catch (ShareGoodsTextTemplateException e) {
         out.print(JsonUtil.loadFalseResult(5, e.getMsg()));
@@ -1524,27 +1375,11 @@
      }
      if (goodsType == Constant.SOURCE_TYPE_TAOBAO) {
         if (hasCoupon) {
            if (tljId != null) {
               shareGoodsTextTemplateService.resetTaoLijinTemplate(uid);
            } else {
               shareGoodsTextTemplateService.resetCouponTemplate(uid);
            }
         } else {
            shareGoodsTextTemplateService.resetCommonTemplate(uid);
         }
         shareGoodsTextTemplateService.resetCommonTemplate(uid);
      } else if (goodsType == Constant.SOURCE_TYPE_JD) {
         if (hasCoupon) {
            shareGoodsTextTemplateService.resetCouponTemplateJD(uid);
         } else {
            shareGoodsTextTemplateService.resetCommonTemplateJD(uid);
         }
         shareGoodsTextTemplateService.resetCommonTemplateJD(uid);
      } else if (goodsType == Constant.SOURCE_TYPE_PDD) {
         if (hasCoupon) {
            shareGoodsTextTemplateService.resetCouponTemplatePDD(uid);
         } else {
            shareGoodsTextTemplateService.resetCommonTemplatePDD(uid);
         }
         shareGoodsTextTemplateService.resetCommonTemplatePDD(uid);
      }
      if (goodsId != null) {
@@ -1605,7 +1440,7 @@
         }
      }
      ConfigParamsDTO paramsDTO = hongBaoManageService.getShowComputeRate(acceptData.getPlatform(),
      ConfigParamsDTO paramsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(acceptData.getPlatform(),
            acceptData.getVersion());
      Gson gson = JsonUtil.getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder())
@@ -1677,7 +1512,7 @@
      }
      GoodsDetailVO goodsDetail = null;
      ConfigParamsDTO paramsDTO = hongBaoManageService.getShowComputeRate(acceptData.getPlatform(),
      ConfigParamsDTO paramsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(acceptData.getPlatform(),
            acceptData.getVersion());
      paramsDTO.setBaseFanliRate(hongBaoManageService.getBaseFanliRate());
@@ -1712,7 +1547,7 @@
      String template = configService.get(ConfigKeyEnum.quickShareGoodsText.getKey());
      template = template.replace("[商品标题]", goodsDetail.getTitle()).replace("[销量]", goodsDetail.getSalesCount());
      if (StringUtil.isNullOrEmpty(goodsDetail.getDescription())) {
      if (!StringUtil.isNullOrEmpty(goodsDetail.getDescription())) {
         template = template.replace("[推荐语]", goodsDetail.getDescription());
      } else {
         template = template.replace("推荐语:[推荐语]", "");