yujian
2019-11-26 2d3afb55aed07f9780ab46aefbdc7d520cdff576
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
package com.yeshi.fanli.service.impl.brand;
 
import java.util.Date;
import java.util.List;
 
import javax.annotation.Resource;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.brand.BrandGoodsCaheDao;
import com.yeshi.fanli.dto.jd.JDFilter;
import com.yeshi.fanli.dto.jd.JDSearchFilter;
import com.yeshi.fanli.dto.jd.JDSearchResult;
import com.yeshi.fanli.dto.jd.JDShopInfo;
import com.yeshi.fanli.dto.pdd.PDDGoodsDetail;
import com.yeshi.fanli.dto.pdd.PDDGoodsResult;
import com.yeshi.fanli.dto.pdd.PDDSearchFilter;
import com.yeshi.fanli.entity.brand.BrandGoodsCahe;
import com.yeshi.fanli.entity.brand.BrandInfo;
import com.yeshi.fanli.entity.jd.JDGoods;
import com.yeshi.fanli.entity.taobao.SearchFilter;
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
import com.yeshi.fanli.entity.taobao.TaoBaoSearchResult;
import com.yeshi.fanli.service.inter.brand.BrandGoodsCaheService;
import com.yeshi.fanli.service.inter.brand.BrandShopCaheService;
import com.yeshi.fanli.service.inter.config.ConfigService;
import com.yeshi.fanli.service.inter.order.config.HongBaoManageService;
import com.yeshi.fanli.util.StringUtil;
import com.yeshi.fanli.util.jd.JDApiUtil;
import com.yeshi.fanli.util.jd.JDUtil;
import com.yeshi.fanli.util.pinduoduo.PinDuoDuoApiUtil;
import com.yeshi.fanli.util.taobao.SearchFilterUtil;
import com.yeshi.fanli.util.taobao.TaoBaoUtil;
import com.yeshi.fanli.util.taobao.TaoKeApiUtil;
 
@Service
public class BrandGoodsCaheServiceImpl implements BrandGoodsCaheService {
    @Resource
    private HongBaoManageService hongBaoManageService;
 
    @Resource
    private ConfigService configService;
    
    @Resource
    private BrandGoodsCaheDao brandGoodsCaheDao;
    
    @Resource
    private BrandShopCaheService brandShopCaheService;
    
    
    @Override
    public BrandInfo addBrandGoods(BrandInfo brandInfo) {
        // 淘宝
        BrandInfo goodsTB = addBrandGoodsTB(brandInfo);
        // 京东
        BrandInfo goodsJD = addBrandGoodsJD(brandInfo);
        // 拼多多
        BrandInfo goodsPDD = addBrandGoodsPDD(brandInfo);
        
        int goodsTotal = goodsTB.getGoodsTotal() + goodsJD.getGoodsTotal() +  goodsPDD.getGoodsTotal();
        int shopTotal = goodsTB.getShopTotal() + goodsJD.getShopTotal() +  goodsPDD.getShopTotal();
        goodsTB.setGoodsTotal(goodsTotal);
        goodsTB.setShopTotal(shopTotal);
        return goodsTB;
    }
    
    
    /**
     * 淘宝商品
     * @param brandInfo
     * @return
     */
    private BrandInfo addBrandGoodsTB(BrandInfo brandInfo) {
        BrandInfo numInfo = new BrandInfo();
        Date date = new Date();
        String shopKey = brandInfo.getShopKey();
        if (StringUtil.isNullOrEmpty(shopKey)) {
            // 删除之前的
            brandGoodsCaheDao.removeByDate(brandInfo.getId(), 1 , date);
            // 删除店铺
            brandShopCaheService.removeByDateAndType(brandInfo.getId(), 11, date);
            
            numInfo.setShopTotal(0);
            numInfo.setGoodsTotal(0);
            return numInfo;
        }
        
        String searchKey = brandInfo.getSearchKey();
        if (StringUtil.isNullOrEmpty(searchKey))
            searchKey = brandInfo.getName();
        
        SearchFilter filter = new SearchFilter();
        filter.setKey(searchKey);
        filter.setPage(1);
        filter.setPageSize(100);
        filter.setTmall(true);
        filter.setSort(TaoBaoUtil.SORT_SALE_HIGH_TO_LOW);
        TaoBaoSearchResult searchResult = TaoKeApiUtil.searchWuLiao(filter);
        
        // 删除店铺
        brandShopCaheService.removeByDateAndType(brandInfo.getId(), 11, date);
        
        // 组织商品 + 添加店铺
        int count = 0;
        int countShop = 0;
        if (searchResult != null && searchResult.getTaoBaoGoodsBriefs() != null 
                && searchResult.getTaoBaoGoodsBriefs().size() > 0) {
            boolean addShop = true;
            List<TaoBaoGoodsBrief> listGoods = searchResult.getTaoBaoGoodsBriefs();
            for (TaoBaoGoodsBrief goods: listGoods) {
                // 添加店铺
                String shopTitle = goods.getShopTitle();
                if (addShop && !StringUtil.isNullOrEmpty(shopTitle) && shopTitle.contains("旗舰店") 
                        && shopTitle.toLowerCase().contains(shopKey.toLowerCase())) {
                    addShop = brandShopCaheService.addBrandShopTB(brandInfo, goods.getAuctionId(),
                            goods.getSellerId());
                    
                    if (!addShop) 
                        countShop = 1;
                }
                
                // 添加商品
                if (count < 50) {
                    BrandGoodsCahe brandGoods = new BrandGoodsCahe();
                    brandGoods.setBrandId(brandInfo.getId());
                    brandGoods.setWeight((int) (Math.random() * 1000));
                    brandGoods.setGoodsType(1);
                    brandGoods.setGoodsTB(goods);
                    brandGoods.setCreateTime(new Date());
                    brandGoodsCaheDao.insert(brandGoods);
                    count ++;
                } else if (!addShop) {
                    break;
                }
            }
        }
        
        // 删除之前的
        brandGoodsCaheDao.removeByDate(brandInfo.getId(), 1 , date);
        
        numInfo.setShopTotal(countShop);
        numInfo.setGoodsTotal(count);
        return numInfo;
    }
    
    
    /**
     *  京东商品
     *  
     * @param brandInfo
     * @return
     */
    private BrandInfo addBrandGoodsJD(BrandInfo brandInfo) {
        BrandInfo numInfo = new BrandInfo();
        Date date = new Date();
        String shopKey = brandInfo.getShopKeyJD();
        if (StringUtil.isNullOrEmpty(shopKey)) {
            // 删除店铺
            brandShopCaheService.removeByDateAndType(brandInfo.getId(), 20, date);
            // 删除之前
            brandGoodsCaheDao.removeByDate(brandInfo.getId(), 2 , date);
            numInfo.setShopTotal(0);
            numInfo.setGoodsTotal(0);
            return numInfo;
        }
        
        String searchKey = brandInfo.getSearchKeyJD();
        if (StringUtil.isNullOrEmpty(searchKey))
            searchKey = brandInfo.getName();
        
        int count = 0;
        int countShop = 0;
        JDSearchResult result = null;
        String way = configService.get("jd_api_search_key");
        
        // 删除店铺
        brandShopCaheService.removeByDateAndType(brandInfo.getId(), 20, date);
        
        boolean addShop = true;
        
        for (int i=0; i < 2;i ++) {
            if ("1".equals(way)) {
                JDFilter filterAPI = new JDFilter();
                filterAPI.setKeyword(SearchFilterUtil.filterSearchContent(searchKey));
                filterAPI.setPageIndex(1);
                filterAPI.setPageSize(30);
                filterAPI.setSort(JDFilter.SORT_DESC);
                filterAPI.setSortName(JDFilter.SORTNAME_ORDER_COUNT_30DAYS);
                result = JDApiUtil.queryByKey(filterAPI);
            } else {
                // 网页爬取
                JDSearchFilter jdfilter = new JDSearchFilter();
                jdfilter.setKey(SearchFilterUtil.filterSearchContent(searchKey));
                jdfilter.setPageNo(1);
                jdfilter.setPageSize(30);
                jdfilter.setSort(JDSearchFilter.SORT_DESC);
                jdfilter.setSortName(JDSearchFilter.SORTNAME_ORDER_COUNT_30DAYS);
                result = JDUtil.searchByKey(jdfilter);
            }
            
            if (result != null && result.getGoodsList() != null && result.getGoodsList().size() > 0) {
                List<JDGoods> goodsList = result.getGoodsList();
                for (JDGoods goods : goodsList) {
                    BrandGoodsCahe brandGoods = new BrandGoodsCahe();
                    brandGoods.setBrandId(brandInfo.getId());
                    brandGoods.setWeight((int) (Math.random() * 1000));
                    brandGoods.setGoodsJD(goods);
                    brandGoods.setGoodsType(2);
                    brandGoods.setCreateTime(new Date());
                    brandGoodsCaheDao.insert(brandGoods);
                    
                    JDShopInfo shopInfo = goods.getShopInfo();
                    if (addShop && shopInfo != null) {
                        // 包含该品牌名称
                        String shopName = shopInfo.getShopName();
                        if (!StringUtil.isNullOrEmpty(shopName) && shopName.toLowerCase().contains(shopKey.toLowerCase())) {
                            addShop = false;
                            brandShopCaheService.addBrandShopJD(brandInfo, shopInfo);
                            countShop = 1;
                        }
                    }
                    
                    count ++;
                    if (count >= 50) {
                        break;
                    }
                }
            }
        }
        // 删除之前
        brandGoodsCaheDao.removeByDate(brandInfo.getId(), 2 , date);
        
        numInfo.setShopTotal(countShop);
        numInfo.setGoodsTotal(count);
        return numInfo;    
    }
    
    
    /**
     * 拼多多商品
     * @param brandInfo
     * @return
     */
    private BrandInfo addBrandGoodsPDD(BrandInfo brandInfo) {
        Date date = new Date();
        BrandInfo numInfo = new BrandInfo();
        String shopKey = brandInfo.getShopKeyPDD();
        if (StringUtil.isNullOrEmpty(shopKey)) {
            // 删除之前
            brandGoodsCaheDao.removeByDate(brandInfo.getId(), 3, date);
            // 删除之前店铺
            brandShopCaheService.removeByDateAndType(brandInfo.getId(), 30, date);
            numInfo.setShopTotal(0);
            numInfo.setGoodsTotal(0);
            return numInfo;
        }
        
        String searchKey = brandInfo.getSearchKeyPDD();
        if (StringUtil.isNullOrEmpty(searchKey))
            searchKey = brandInfo.getName();
        
        PDDSearchFilter pddfilter = new PDDSearchFilter();
        pddfilter.setKw(searchKey);
        pddfilter.setPage(1);
        pddfilter.setPageSize(100);
        pddfilter.setSortType(6);
        PDDGoodsResult result = PinDuoDuoApiUtil.searchGoods(pddfilter);
        
        int count = 0;
        
        if (result != null) {
            List<PDDGoodsDetail> goodsList = result.getGoodsList();
            if (goodsList != null && goodsList.size() > 0) {
                for (PDDGoodsDetail goods : goodsList) {
                    BrandGoodsCahe brandGoods = new BrandGoodsCahe();
                    brandGoods.setBrandId(brandInfo.getId());
                    brandGoods.setWeight((int) (Math.random() * 1000));
                    brandGoods.setGoodsType(3);
                    brandGoods.setGoodsPDD(goods);
                    brandGoods.setCreateTime(new Date());
                    brandGoodsCaheDao.insert(brandGoods);
                    count ++;
                    if (count >= 50) {
                        break;
                    }
                }
            }
        }
        // 删除之前
        brandGoodsCaheDao.removeByDate(brandInfo.getId(), 3, date);
        // 删除之前店铺
        brandShopCaheService.removeByDateAndType(brandInfo.getId(), 30, date);
        // 添加店铺
        int countShop = brandShopCaheService.addBrandShopPDD(brandInfo);
        
        numInfo.setShopTotal(countShop);
        numInfo.setGoodsTotal(count);
        return numInfo;
    }
    
    
    @Override
    public List<BrandGoodsCahe> getByBrandId(int start, int count, Long brandId){
        return brandGoodsCaheDao.getByBrandId(start, count, brandId);
    }
    
    @Override
    public long countByBrandId(Long brandId){
        return brandGoodsCaheDao.countByBrandId(brandId);
    }
    
    @Override
    public void removeAgoByDate(Date createTime) {
        brandGoodsCaheDao.removeAgoByDate(createTime);
    }
    
    @Override
    public void removeByBrandId(Long brandId) {
        brandGoodsCaheDao.removeByBrandId(brandId);
    }
}