admin
2021-05-14 ae2294be876ac4595d7b31b36c0057726d12354f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.yeshi.fanli.util.vipshop;
 
import java.math.BigDecimal;
 
import org.yeshi.utils.BigDecimalUtil;
import org.yeshi.utils.NumberUtil;
 
import com.yeshi.fanli.dto.vip.goods.VIPGoodsInfo;
import org.yeshi.utils.MoneyBigDecimalUtil;
import com.yeshi.fanli.util.StringUtil;
 
public class VipShopUtil {
 
    private static String getBase64Str(String str) {
        try {
            return StringUtil.getBase64String(str);
        } catch (Exception e) {
            e.printStackTrace();
        }
 
        return null;
    }
 
    /**
     * 获取分享的渠道标识
     *
     * @param uid
     * @return String 返回类型
     * @throws
     * @Title: getShareChanTag
     * @Description:
     */
    public static String getShareChanTag(Long uid) {
        return getBase64Str("share#" + uid);
    }
 
    /**
     * 获取自购的渠道标识
     *
     * @param uid
     * @return String 返回类型
     * @throws
     * @Title: getBuyChanTag
     * @Description:
     */
    public static String getBuyChanTag(Long uid) {
        return getBase64Str("buy#" + uid);
 
    }
 
    public static String getCouponChanTag() {
        return getBase64Str("coupon");
 
    }
 
    public static String getUidFromChanTag(String tag) {
        String decodeTag = StringUtil.getFromBase64(tag);
        return decodeTag.split("#")[1];
    }
 
    public static String getTypeFromChanTag(String tag) {
        String decodeTag = StringUtil.getFromBase64(tag);
        return decodeTag.split("#")[0];
    }
 
    public static BigDecimal getGoodsFanLiMoney(VIPGoodsInfo goods, BigDecimal rate) {
        BigDecimal money = null;
        BigDecimal hundred = new BigDecimal(100);
        rate = MoneyBigDecimalUtil.div(rate, hundred);
        money = MoneyBigDecimalUtil.mul(new BigDecimal(goods.getCommission()), rate);
        return BigDecimalUtil.getWithNoZera(money).setScale(2);
    }
 
    public static BigDecimal getCouponPrice(VIPGoodsInfo goods) {
        return new BigDecimal(goods.getVipPrice());
    }
 
    /**
     * 获取订单详情的唯一标识
     *
     * @param orderSn
     * @param goodsId
     * @param sizeId
     * @return String 返回类型
     * @throws
     * @Title: getOrderDetailIdentifyCode
     * @Description:
     */
    public static String getOrderDetailIdentifyCode(String orderSn, String goodsId, String sizeId) {
 
        return StringUtil.Md5(orderSn + "#" + goodsId + "#" + sizeId);
    }
 
    public static String parseGoodsIdByUrl(String url) {
        try {
            if (url.contains(".vip.com/") && (url.contains("detail-") || url.contains("product-"))) {
                String preUrl = url.split("\\?")[0];
                String goodsId = preUrl.split("-")[preUrl.split("-").length - 1].replace(".html", "").replace(".htm",
                        "");
                if (NumberUtil.isNumeric(goodsId))
                    return goodsId;
            }
        } catch (Exception e) {
        }
        return null;
    }
}