From f4548a3ee46afe45da4ee2a42dc169c575deee9f Mon Sep 17 00:00:00 2001
From: yujian <yujian@123.com>
Date: 星期三, 31 七月 2019 11:57:36 +0800
Subject: [PATCH] 动态v2兼容

---
 fanli/src/main/java/com/yeshi/fanli/util/pinduoduo/PinDuoDuoApiUtil.java |  168 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 160 insertions(+), 8 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/util/pinduoduo/PinDuoDuoApiUtil.java b/fanli/src/main/java/com/yeshi/fanli/util/pinduoduo/PinDuoDuoApiUtil.java
index 2f1a8ec..d814855 100644
--- a/fanli/src/main/java/com/yeshi/fanli/util/pinduoduo/PinDuoDuoApiUtil.java
+++ b/fanli/src/main/java/com/yeshi/fanli/util/pinduoduo/PinDuoDuoApiUtil.java
@@ -20,6 +20,7 @@
 import com.yeshi.fanli.dto.pdd.PDDOrderResult;
 import com.yeshi.fanli.dto.pdd.PDDSearchFilter;
 import com.yeshi.fanli.entity.pdd.PDDOrder;
+import com.yeshi.fanli.util.Constant;
 import com.yeshi.fanli.util.StringUtil;
 
 import net.sf.json.JSONArray;
@@ -28,6 +29,7 @@
 public class PinDuoDuoApiUtil {
 	public final static String PID_FANLI = "8590899_72067894";
 	public final static String PID_SHARE = "8590899_72067895";
+	public final static String PID_COUPON = "8590899_102657575";
 
 	private final static String CLIENT_ID = "9f6ee5ebd3b94c2080c4d51c2427e9fa";
 	private final static String CLIENT_SECRET = "95e1f1904385664bf4b87d4b34de12f9f31c505d";
@@ -66,6 +68,11 @@
 		return HttpUtil.postSimple(url);
 	}
 
+	/**
+	 * 澶氬杩涘疂鍟嗗搧鏌ヨ
+	 * @param sf
+	 * @return
+	 */
 	public static PDDGoodsResult searchGoods(PDDSearchFilter sf) {
 		Map<String, String> map = new HashMap<>();
 		map.put("type", "pdd.ddk.goods.search");
@@ -88,14 +95,20 @@
 		if (sf.getGoodsIdList() != null)
 			map.put("goods_id_list", "[" + StringUtil.concat(sf.getGoodsIdList(), ",") + "]");
 		
-		System.out.println(sf.getGoodsIdList().toString());
 		
 		map.put("pid", PID_FANLI);
 		String result = baseRequest(map);
-		
 		JSONObject json = JSONObject.fromObject(result);
 		JSONObject root = json.optJSONObject("goods_search_response");
+		if (root == null) {
+			return null;
+		} 
+		
 		JSONArray array = root.optJSONArray("goods_list");
+		if (array == null) {
+			return null;
+		}
+		
 		Type type = new TypeToken<List<PDDGoodsDetail>>() {
 		}.getType();
 		
@@ -104,6 +117,132 @@
 		int totalCount = root.optInt("total_count");
 		return new PDDGoodsResult(totalCount, goodsList);
 	}
+	
+	
+	/**
+	 *  杩愯惀棰戦亾鍟嗗搧鏌ヨAPI
+	 * @param page
+	 * @param pageSize
+	 * @param channelType  棰戦亾绫诲瀷锛�0, "1.9鍖呴偖", 1, "浠婃棩鐖嗘", 2, "鍝佺墝娓呬粨", 闈炲繀濉� ,榛樿鏄�1
+	 * @return
+	 */
+	public static PDDGoodsResult searchByChannelType(Integer page, Integer pageSize, String channelType) {
+		Map<String, String> map = new HashMap<>();
+		map.put("type", "pdd.ddk.goods.recommend.get");
+		map.put("offset", (page == null?0:page) + "");
+		map.put("offset", (pageSize == null?Constant.PAGE_SIZE:pageSize) + "");
+		
+		if (channelType != null)
+			map.put("channel_type", channelType);
+	
+		map.put("pid", PID_FANLI);
+		String result = baseRequest(map);
+		
+		JSONObject json = JSONObject.fromObject(result);
+		JSONObject root = json.optJSONObject("goods_basic_detail_response");
+		if (root == null) {
+			return null;
+		}
+		JSONArray array = root.optJSONArray("list");
+		if (array == null) {
+			return null;
+		}
+		
+		Type type = new TypeToken<List<PDDGoodsDetail>>() {
+		}.getType();
+		
+		Gson gson = new GsonBuilder().disableHtmlEscaping().create();
+		List<PDDGoodsDetail> goodsList = gson.fromJson(array.toString(), type);
+		int totalCount = root.optInt("total");
+		return new PDDGoodsResult(totalCount, goodsList);
+	}
+	
+	public static void getGoodsClass() {
+		Map<String, String> map = new HashMap<>();
+		map.put("type", "pdd.goods.cats.get");
+		map.put("parent_cat_id", "0");
+		String result = baseRequest(map);
+		
+		JSONObject json = JSONObject.fromObject(result);
+		JSONObject root = json.optJSONObject("goods_cats_get_response");
+		JSONArray array = root.optJSONArray("goods_cats_list");
+	}
+	
+	
+	public static void getThemes(Integer page, Integer pageSize) {
+		Map<String, String> map = new HashMap<>();
+		map.put("type", "pdd.ddk.theme.list.get");
+		map.put("page", page + "");
+		map.put("page_size", pageSize  + "");
+		String result = baseRequest(map);
+		
+		JSONObject json = JSONObject.fromObject(result);
+		JSONObject root = json.optJSONObject("theme_list_get_response");
+		JSONArray array = root.optJSONArray("theme_list");
+		for (int i = 0; i < array.size(); i++) {
+			System.out.println(array.optJSONObject(i).optString("id"));
+			System.out.println(array.optJSONObject(i).optString("name"));
+			System.out.println(array.optJSONObject(i).optString("image_url"));
+			System.out.println(array.optJSONObject(i).optString("goods_num"));
+			System.out.println("-------------------------------------------");
+		}
+		
+		System.out.println(root.optLong("total"));
+	}
+	
+	
+	public static void getGoodsOpt() {
+		Map<String, String> map = new HashMap<>();
+		map.put("type", "pdd.goods.opt.get");
+		map.put("parent_opt_id", "0");
+		String result = baseRequest(map);
+		
+		JSONObject json = JSONObject.fromObject(result);
+		JSONObject root = json.optJSONObject("goods_opt_get_response");
+		JSONArray array = root.optJSONArray("goods_opt_list");
+	}
+	
+	
+	/**
+	 * 澶氬瀹㈣幏鍙栫垎娆炬帓琛屽晢鍝佹帴鍙�
+	 * @param pid  鎺ㄥ箍浣峣d    (闈炲繀濉�)
+	 * @param page 浠庡灏戜綅缃紑濮嬭姹傦紱榛樿鍊� 锛� 0     (闈炲繀濉�)
+	 * @param pageSize 璇锋眰鏁伴噺锛涢粯璁ゅ�� 锛�20    (闈炲繀濉�)
+	 * @param sortType 1-瀹炴椂鐑攢姒滐紱2-瀹炴椂鏀剁泭姒�    (闈炲繀濉�)
+	 * @return
+	 */
+	public static PDDGoodsResult getTopList(String pid, Integer page, Integer pageSize, Integer sortType) {
+		Map<String, String> map = new HashMap<>();
+		map.put("type", "pdd.ddk.top.goods.list.query");
+		map.put("offset", (page == null? 0: (page-1) * Constant.PAGE_SIZE) +"");
+		map.put("limit", (pageSize == null? Constant.PAGE_SIZE : pageSize) +"");
+		
+		if (!StringUtil.isNullOrEmpty(pid))
+			map.put("p_id", pid + "");
+		
+		if (sortType != null)
+			map.put("sort_type", sortType + "");
+	
+		String result = baseRequest(map);
+		JSONObject json = JSONObject.fromObject(result);
+		JSONObject root = json.optJSONObject("top_goods_list_get_response");
+		if (root == null) {
+			return null;
+		}
+		JSONArray array = root.optJSONArray("list");
+		if (array == null) {
+			return null;
+		}
+		
+		Type type = new TypeToken<List<PDDGoodsDetail>>() {}.getType();
+		
+		Gson gson = new GsonBuilder().disableHtmlEscaping().create();
+		List<PDDGoodsDetail> goodsList = gson.fromJson(array.toString(), type);
+		//int totalCount = root.optInt("total");
+		int totalCount = 400; // 榛樿璁剧疆鎴�400
+		return new PDDGoodsResult(totalCount, goodsList);
+	}
+
 
 	/**
 	 * 鍟嗗搧杞摼
@@ -123,14 +262,19 @@
 		JSONArray array = new JSONArray();
 		array.add(goodsId);
 		map.put("goods_id_list", array.toString());
-		map.put("custom_parameters", customParams);
+		if (!StringUtil.isNullOrEmpty(customParams)) {
+			map.put("custom_parameters", customParams);
+		}
 
 		String result = baseRequest(map);
 		JSONObject root = JSONObject.fromObject(result);
 		JSONObject json = root.optJSONObject("goods_promotion_url_generate_response");
-		array = json.optJSONArray("goods_promotion_url_list");
-		if (array != null && array.size() > 0)
-			return array.optJSONObject(0).optString("short_url");
+		if (json == null) {
+			return null;
+		}
+		JSONArray resultArray = json.optJSONArray("goods_promotion_url_list");
+		if (resultArray != null && resultArray.size() > 0)
+			return resultArray.optJSONObject(0).optString("short_url");
 		return null;
 	}
 
@@ -193,10 +337,18 @@
 		String result = baseRequest(map);
 		JSONObject resultJson = JSONObject.fromObject(result);
 		JSONObject root = resultJson.optJSONObject("goods_detail_response");
-		array = root.optJSONArray("goods_details");
+		if (root == null) {
+			return null;
+		}
+		
+		JSONArray resultArray = root.optJSONArray("goods_details");
+		if (resultArray == null) {
+			return null;
+		}
+		
 		Type type = new TypeToken<List<PDDGoodsDetail>>() {
 		}.getType();
-		List<PDDGoodsDetail> goodsList = new Gson().fromJson(array.toString(), type);
+		List<PDDGoodsDetail> goodsList = new Gson().fromJson(resultArray.toString(), type);
 		if (goodsList != null && goodsList.size() > 0)
 			return goodsList.get(0);
 		return null;

--
Gitblit v1.8.0