yujian
2020-06-29 880238957a973ecd9676237672276b0e99d31115
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
package com.yeshi.fanli.util.taobao;
 
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
import org.yeshi.utils.HttpUtil;
 
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.yeshi.fanli.dto.taobao.haodanku.HDKGoodsListResultDTO;
import com.yeshi.fanli.dto.taobao.haodanku.HDKSearchFilter;
import com.yeshi.fanli.dto.taobao.haodanku.HDKWXCircleContentDTO;
import com.yeshi.fanli.entity.taobao.haodanku.HDKGoodsDetail;
import com.yeshi.fanli.util.StringUtil;
 
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
/**
 * 好单库API
 * @author Administrator
 *
 */
public class HaoDanKuApiUtil {
 
    private final static String API_KEY = "blks";
 
    private static HaoDanKuApiUtil instance;
 
    public static HaoDanKuApiUtil getInstance() {
        if (instance == null)
            instance = new HaoDanKuApiUtil();
        return instance;
    }
 
    private String baseGetRequest(String path, List<ParamsKeyValue> params) {
        params.add(0, new HaoDanKuApiUtil.ParamsKeyValue("apikey", API_KEY));
        String url = "http://v2.api.haodanku.com/" + path;
        for (ParamsKeyValue keyValue : params) {
            url += ("/" + keyValue.key + "/" + keyValue.value);
        }
        return HttpUtil.get(url);
    }
 
    private String basePostRequest(String url, List<ParamsKeyValue> params) {
        params.add(0, new HaoDanKuApiUtil.ParamsKeyValue("apikey", API_KEY));
        Map<String, String> parmasMap = new HashMap<>();
        for (ParamsKeyValue keyValue : params) {
            parmasMap.put(keyValue.key, keyValue.value);
        }
        return HttpUtil.post(url, parmasMap, null);
    }
 
    /**
     * 获取朋友圈API的内容
     * @Title: getSendWXCircleContent
     * @Description:  
     * void 返回类型
     * @throws
     */
    public void getSendWXCircleContent(Integer minId) {
        if (minId == null)
            minId = 1;
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("min_id", minId + ""));
        String result = baseGetRequest("selected_item", params);
        System.out.println(result);
    }
 
    public String convertLink(Long auctionId, String pid, String activityId) {
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("itemid", auctionId + ""));
        params.add(new ParamsKeyValue("pid", pid));
        if (activityId != null)
            params.add(new ParamsKeyValue("activityid", activityId));
        String result = basePostRequest("http://v2.api.haodanku.com/ratesurl", params);
        JSONObject resultData = JSONObject.fromObject(result);
        String link = "";
        if (resultData.optInt("code") == 1) {
            resultData = resultData.optJSONObject("data");
            link = resultData.optString("coupon_click_url");
            if (StringUtil.isNullOrEmpty(link)) {
                link = resultData.optString("item_url");
            }
        }
 
        return link;
    }
 
    /**
     * 商品列表
     * @Title: listGoods
     * @Description: 
     * @param minId
     * @param catIds
     * @param pageSize
     * @return 
     * HDKGoodsListResultDTO 返回类型
     * @throws
     */
    // 详情:https://www.haodanku.com/api/detail/show/1.html
    public HDKGoodsListResultDTO listGoods(Integer minId, List<Integer> catIds, int pageSize) {
        if (minId == null)
            minId = 1;
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("nav", 3 + ""));
        params.add(new ParamsKeyValue("back", pageSize + ""));
        params.add(new ParamsKeyValue("min_id", minId + ""));
        params.add(new ParamsKeyValue("sort", 0 + ""));
        if (catIds != null && catIds.size() > 0) {
            params.add(new ParamsKeyValue("cid", StringUtil.concat(catIds, ",")));
        }
 
        String result = baseGetRequest("itemlist", params);
 
        JSONObject resultData = JSONObject.fromObject(result);
        if (resultData.optInt("code") == 1) {
            Integer newMinId = resultData.optInt("min_id");
            Type type = new TypeToken<ArrayList<HDKGoodsDetail>>() {
            }.getType();
            List<HDKGoodsDetail> list = new Gson().fromJson(resultData.optJSONArray("data").toString(), type);
            return new HDKGoodsListResultDTO(list, newMinId);
        }
 
        return null;
    }
 
    
    /**
     * 商品列表筛选
     * @param filter
     * @return
     */
    public HDKGoodsListResultDTO queryList(HDKSearchFilter filter) {
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("back", filter.getBack() + ""));
        params.add(new ParamsKeyValue("min_id", filter.getMinId() + ""));
        params.add(new ParamsKeyValue("nav", filter.getNav() + ""));
        if (!StringUtil.isNullOrEmpty(filter.getCid()))
            params.add(new ParamsKeyValue("cid", filter.getCid()));
        if (filter.getPriceMin() != null)
            params.add(new ParamsKeyValue("price_min", filter.getPriceMin() + ""));
        if (filter.getPriceMax() != null)
            params.add(new ParamsKeyValue("price_max", filter.getPriceMax() + ""));
        if (filter.getSaleMin() != null)
            params.add(new ParamsKeyValue("sale_min", filter.getSaleMin() + ""));
        if (filter.getSaleMax() != null)
            params.add(new ParamsKeyValue("sale_max", filter.getSaleMax() + ""));
        if (filter.getCouponMin() != null)
            params.add(new ParamsKeyValue("coupon_min", filter.getCouponMin() + ""));
        if (filter.getCouponMax() != null)
            params.add(new ParamsKeyValue("coupon_max", filter.getCouponMax() + ""));
        if (filter.getTkratesMin()!= null)
            params.add(new ParamsKeyValue("tkrates_min", filter.getTkratesMin() + ""));
        if (filter.getTkratesMax() != null)
            params.add(new ParamsKeyValue("tkrates_max", filter.getTkratesMax() + ""));
        if (filter.getTkmoneyMin()!= null)
            params.add(new ParamsKeyValue("tkmoney_min", filter.getTkmoneyMin() + ""));
        if (filter.getItemType()!= null)
            params.add(new ParamsKeyValue("item_type", filter.getItemType() + ""));
        
        String result = baseGetRequest("itemlist", params);
        JSONObject resultData = JSONObject.fromObject(result);
        if (resultData.optInt("code") == 1) {
            Integer newMinId = resultData.optInt("min_id");
            Type type = new TypeToken<ArrayList<HDKGoodsDetail>>() {
            }.getType();
            List<HDKGoodsDetail> list = new Gson().fromJson(resultData.optJSONArray("data").toString(), type);
            return new HDKGoodsListResultDTO(list, newMinId);
        }
        return null;
    }
 
    
    
    
    /**
     * 商品爆单列表
     * @Title: listGoods
     * @Description: 
     * @param minId
     * @param catIds
     * @param pageSize
     * @return 
     * HDKGoodsListResultDTO 返回类型
     * @throws
     */
    public HDKGoodsListResultDTO listHotGoods(Integer minId, int pageSize, int saleType, List<Integer> catIds) {
        if (minId == null)
            minId = 1;
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("sale_type", saleType +""));
        params.add(new ParamsKeyValue("back", pageSize + ""));
        params.add(new ParamsKeyValue("min_id", minId + ""));
        params.add(new ParamsKeyValue("item_type", 1 + "")); // 是否只获取营销返利商品,1是,0否
        if (catIds != null && catIds.size() > 0) {
            params.add(new ParamsKeyValue("cid", StringUtil.concat(catIds, ",")));
        }
 
        String result = baseGetRequest("sales_list", params);
 
        JSONObject resultData = JSONObject.fromObject(result);
        if (resultData.optInt("code") == 1) {
            Integer newMinId = resultData.optInt("min_id");
            Type type = new TypeToken<ArrayList<HDKGoodsDetail>>() {
            }.getType();
            List<HDKGoodsDetail> list = new Gson().fromJson(resultData.optJSONArray("data").toString(), type);
            return new HDKGoodsListResultDTO(list, newMinId);
        }
 
        return null;
    }
    
    
    /**
     * 增量更新的商品
     * @Title: listAddGoods
     * @Description: 
     * @param minId
     * @param startHour
     * @param endHour
     * @param pageSize
     * @return 
     * HDKGoodsListResultDTO 返回类型
     * @throws
     */
    public HDKGoodsListResultDTO listAddGoods(Integer minId, int startHour, int endHour, int pageSize) {
        if (minId == null)
            minId = 1;
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("back", pageSize + ""));
        params.add(new ParamsKeyValue("min_id", minId + ""));
        params.add(new ParamsKeyValue("start", startHour + ""));
        params.add(new ParamsKeyValue("end", endHour + ""));
 
        String result = baseGetRequest("timing_items", params);
        JSONObject resultData = JSONObject.fromObject(result);
        if (resultData.optInt("code") == 1) {
            Integer newMinId = resultData.optInt("min_id");
            Type type = new TypeToken<ArrayList<HDKGoodsDetail>>() {
            }.getType();
            List<HDKGoodsDetail> list = new Gson().fromJson(resultData.optJSONArray("data").toString(), type);
            return new HDKGoodsListResultDTO(list, newMinId);
        }
 
        return null;
    }
 
    /**
     * 更新商品信息
     * @Title: listUpdateGoods
     * @Description: 
     * @param minId
     * @param pageSize 
     * void 返回类型
     * @throws
     */
    public HDKGoodsListResultDTO listUpdateGoods(Integer minId, int pageSize) {
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("back", pageSize + ""));
        params.add(new ParamsKeyValue("min_id", minId + ""));
        String result = baseGetRequest("update_item", params);
        JSONObject resultData = JSONObject.fromObject(result);
        if (resultData.optInt("code") == 1) {
            Integer newMinId = resultData.optInt("min_id");
            Type type = new TypeToken<ArrayList<HDKGoodsDetail>>() {
            }.getType();
            List<HDKGoodsDetail> list = new Gson().fromJson(resultData.optJSONArray("data").toString(), type);
            return new HDKGoodsListResultDTO(list, newMinId);
        }
        return null;
    }
 
    /**
     * 拉取失效商品
     * @Title: listInvalidGoods
     * @Description: 
     * @param startHour
     * @param endHour
     * @return 
     * List<Long> 返回类型
     * @throws
     */
    public List<Long> listInvalidGoods(int startHour, int endHour) {
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("start", startHour + ""));
        params.add(new ParamsKeyValue("end", endHour + ""));
        String result = baseGetRequest("get_down_items", params);
        JSONObject resultData = JSONObject.fromObject(result);
        List<Long> goodsIdList = new ArrayList<>();
        if (resultData.optInt("code") == 1) {
 
            JSONArray array = resultData.optJSONArray("data");
            for (int i = 0; i < array.size(); i++) {
                goodsIdList.add(array.optJSONObject(i).optLong("itemid"));
            }
        }
        return goodsIdList;
    }
 
    class ParamsKeyValue {
        String key;
        String value;
 
        public ParamsKeyValue(String key, String value) {
            super();
            this.key = key;
            this.value = value;
        }
    }
 
    
    public HDKGoodsListResultDTO  listSelected(Integer minId) {
        if (minId == null)
            minId = 1;
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("min_id", minId + ""));
        String result = baseGetRequest("selected_item", params);
 
        JSONObject resultData = JSONObject.fromObject(result);
        if (resultData.optInt("code") == 1) {
            JSONArray array = resultData.optJSONArray("data");
            if (array != null) {
                List<HDKWXCircleContentDTO> list = new ArrayList<>();
                for (int i = 0; i <array.size(); i ++) {
                     JSONObject item = array.optJSONObject(i);
                     HDKWXCircleContentDTO dto = new HDKWXCircleContentDTO();
                    dto.setTitle(item.optString("title"));
                    dto.setItemid(item.optString("itemid"));
                    dto.setItemtitle(item.optString("itemtitle"));
                    dto.setContent(item.optString("content"));
                    dto.setCopy_content(item.optString("copy_content"));
                    dto.setShow_content(item.optString("show_content"));
                
                    JSONArray imgArray = item.optJSONArray("itempic");
                    if (imgArray != null) {
                        List<String> imgList = new ArrayList<>();
                        for (int n = 0; n < imgArray.size(); n++) {
                            imgList.add(imgArray.optString(n));
                        }
                        dto.setItempic(imgList);
                    }
                    list.add(dto);
                }
                HDKGoodsListResultDTO dto = new HDKGoodsListResultDTO();
                dto.setList(list);
                dto.setMinId(minId);
                return dto;
            }
        }
        return null;
    }
    
    /**
     * 单品详情API
     * @param itemid
     * @return
     */
    public HDKGoodsDetail getItemDetail(String itemid) {
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("itemid", itemid));
        String result = baseGetRequest("item_detail", params);
 
        JSONObject resultData = JSONObject.fromObject(result);
        if (resultData.optInt("code") == 1) {
            Type type = new TypeToken<HDKGoodsDetail>() {}.getType();
            HDKGoodsDetail goodsDetail = new Gson().fromJson(resultData.optJSONObject("data").toString(), type);
            return goodsDetail;
        }
        return null;
    }
    
    
    /**
     * 精选低价包邮专区API
     * @param minId
     * @param pageSize
     * @return
     */
    public HDKGoodsListResultDTO getLowPricePinkageData(Integer minId, int pageSize, Integer typeNum) {
        if (minId == null)
            minId = 1;
        
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("min_id", minId +""));
        params.add(new ParamsKeyValue("back", pageSize + ""));
        params.add(new ParamsKeyValue("type", typeNum + ""));
        String result = baseGetRequest("low_price_Pinkage_data", params);
 
        JSONObject resultData = JSONObject.fromObject(result);
        if (resultData.optInt("code") == 1) {
            Integer newMinId = resultData.optInt("min_id");
            Type type = new TypeToken<ArrayList<HDKGoodsDetail>>() {
            }.getType();
            List<HDKGoodsDetail> list = new Gson().fromJson(resultData.optJSONArray("data").toString(), type);
            return new HDKGoodsListResultDTO(list, newMinId);
        }
        return null;
    }
    
    
    /**
     * 高佣专场商品API
     * @param minId
     * @param pageSize
     * @return
     */
    public HDKGoodsListResultDTO getHighitems(Integer minId, int pageSize, Integer catId) {
        if (minId == null)
            minId = 1;
        
        List<ParamsKeyValue> params = new ArrayList<HaoDanKuApiUtil.ParamsKeyValue>();
        params.add(new ParamsKeyValue("min_id", minId +""));
        params.add(new ParamsKeyValue("back", pageSize + ""));
        if (catId != null)
            params.add(new ParamsKeyValue("cat_id", catId +""));
        
        String result = baseGetRequest("get_highitems", params);
 
        JSONObject resultData = JSONObject.fromObject(result);
        if (resultData.optInt("code") == 200) {
            Integer newMinId = resultData.optInt("min_id");
            Type type = new TypeToken<ArrayList<HDKGoodsDetail>>() {
            }.getType();
            List<HDKGoodsDetail> list = new Gson().fromJson(resultData.optJSONArray("data").toString(), type);
            return new HDKGoodsListResultDTO(list, newMinId);
        }
        return null;
    }
}