| | |
| | | import org.jsoup.nodes.Document;
|
| | | import org.jsoup.nodes.Element;
|
| | | import org.jsoup.select.Elements;
|
| | | import org.yeshi.utils.BigDecimalUtil;
|
| | | import org.yeshi.utils.HttpUtil;
|
| | |
|
| | | import com.yeshi.fanli.dto.jd.JDCommissionInfo;
|
| | | import com.yeshi.fanli.dto.jd.JDCouponInfo;
|
| | | import com.yeshi.fanli.dto.jd.JDPingouInfo;
|
| | | 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.entity.jd.JDGoods;
|
| | | import com.yeshi.fanli.tag.PageEntity;
|
| | | import com.yeshi.fanli.util.MoneyBigDecimalUtil;
|
| | | import com.yeshi.fanli.util.StringUtil;
|
| | |
|
| | | import net.sf.json.JSONArray;
|
| | |
| | | System.out.println(result);
|
| | | }
|
| | |
|
| | | |
| | | /**
|
| | | * 搜索网页
|
| | | * @param searchFilter
|
| | | * @return
|
| | | */
|
| | | @SuppressWarnings("deprecation")
|
| | | public static JDSearchResult searchByKey(JDSearchFilter searchFilter) {
|
| | |
|
| | |
| | | params.put("pageNo", searchFilter.getPageNo());
|
| | | params.put("pageSize", searchFilter.getPageSize());
|
| | | params.put("searchUUID", StringUtil.Md5(System.currentTimeMillis() + ""));
|
| | | |
| | | JSONObject data = new JSONObject();
|
| | | data.put("deliveryType", "0");
|
| | | data.put("lock", "0");
|
| | | data.put("deliveryType", searchFilter.getDeliveryType());
|
| | | data.put("hasCoupon", searchFilter.getHasCoupon());
|
| | | data.put("isCare", "0");
|
| | | data.put("isPinGou", "0");
|
| | | data.put("isCare", searchFilter.getIsCare());
|
| | | data.put("isPinGou", searchFilter.getIsPinGou());
|
| | | data.put("isZY", searchFilter.getIsZY());
|
| | | data.put("key", searchFilter.getKey());
|
| | | data.put("keywordType", "kt1");
|
| | | data.put("lock", "");
|
| | | data.put("orientationFlag", "");
|
| | | data.put("searchType", "st1");
|
| | | data.put("orientationFlag", searchFilter.getOrientationFlag());
|
| | | |
| | | // 分类
|
| | | data.put("categoryId", searchFilter.getCategoryId());
|
| | | data.put("cat2Id", searchFilter.getCat2Id());
|
| | | data.put("cat3Id", searchFilter.getCat3Id());
|
| | | |
| | | data.put("fromCommissionRatio", searchFilter.getFromCommissionRatio());
|
| | | data.put("toCommissionRatio", searchFilter.getToCommissionRatio());
|
| | | data.put("fromPrice", searchFilter.getFromPrice());
|
| | | data.put("toPrice", searchFilter.getToPrice());
|
| | | |
| | | String key = searchFilter.getKey();
|
| | | if (StringUtil.isNullOrEmpty(key)) {
|
| | | data.put("key", "");
|
| | | data.put("keywordType", "kt0");
|
| | | data.put("searchType", "st3");
|
| | | } else {
|
| | | data.put("key", key);
|
| | | data.put("keywordType", "kt1");
|
| | | data.put("searchType", "st3");
|
| | | }
|
| | | |
| | | String sortName = searchFilter.getSortName();
|
| | | if (StringUtil.isNullOrEmpty(sortName)) {
|
| | | data.put("sort", null);
|
| | | data.put("sortName", null);
|
| | | } else {
|
| | | data.put("sortName", sortName);
|
| | | String sort = searchFilter.getSort();
|
| | | if (StringUtil.isNullOrEmpty(sort)) {
|
| | | sort = JDSearchFilter.SORT_DESC;
|
| | | } |
| | | data.put("sort", sort);
|
| | | }
|
| | | params.put("data", data);
|
| | | |
| | | System.out.println(params.toString());
|
| | | |
| | | HttpClient client = new HttpClient();
|
| | | PostMethod pm = new PostMethod("https://union.jd.com/api/goods/search");
|
| | | pm.setRequestHeader("User-Agent", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko");
|
| | |
| | | JSONArray array = json.optJSONObject("data").optJSONArray("unionGoods");
|
| | | if (array != null) {
|
| | | for (int i = 0; i < array.size(); i++) {
|
| | | goodsList.add(parseGoods(array.optJSONArray(i).optJSONObject(0).toString()));
|
| | | JDGoods parseGoods = parseGoods(array.optJSONArray(i).optJSONObject(0).toString());
|
| | | if (parseGoods != null) {
|
| | | goodsList.add(parseGoods);
|
| | | }
|
| | | }
|
| | | }
|
| | | }
|
| | | json.optJSONObject("data").optJSONArray("unionGoods");
|
| | | }
|
| | |
|
| | | System.out.println(result);
|
| | | } catch (Exception e) {
|
| | | e.printStackTrace();
|
| | | }
|
| | |
|
| | | searchResult.setGoodsList(goodsList);
|
| | | return searchResult;
|
| | | }
|
| | | |
| | | |
| | | /**
|
| | | * 搜索网页
|
| | | * @param searchFilter
|
| | | * @return
|
| | | */
|
| | | @SuppressWarnings("deprecation")
|
| | | public static List<JDGoods> getRecommendGoodsById(Long skuId) {
|
| | | List<JDGoods> goodsList = new ArrayList<>();
|
| | | JSONObject params = new JSONObject();
|
| | | params.put("pageNo", 1);
|
| | | params.put("pageSize", 60);
|
| | | params.put("searchUUID", StringUtil.Md5(System.currentTimeMillis() + ""));
|
| | | |
| | | JSONObject data = new JSONObject();
|
| | | data.put("lock", "0");
|
| | | data.put("deliveryType", 0);
|
| | | data.put("hasCoupon",0);
|
| | | data.put("isCare", 0);
|
| | | data.put("isPinGou", 0);
|
| | | data.put("isZY", 0);
|
| | | data.put("orientationFlag", 0);
|
| | | |
| | | data.put("key", skuId);
|
| | | data.put("keywordType", "kt0");
|
| | | data.put("searchType", "st2");
|
| | | params.put("data", data);
|
| | | |
| | | HttpClient client = new HttpClient();
|
| | | PostMethod pm = new PostMethod("https://union.jd.com/api/goods/search");
|
| | | pm.setRequestHeader("User-Agent", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko");
|
| | | pm.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
|
| | | pm.setRequestHeader("Referer", "https://union.jd.com/proManager/index?pageNo=1&keywords=%E9%9E%8B%E5%AD%90");
|
| | | pm.setRequestBody(params.toString());
|
| | | try {
|
| | | client.executeMethod(pm);
|
| | | String result = pm.getResponseBodyAsString();
|
| | | JSONObject json = JSONObject.fromObject(result);
|
| | | if (json.optInt("code") == 200) {
|
| | | if (json.optJSONObject("data") != null) {
|
| | | JSONArray array = json.optJSONObject("data").optJSONArray("unionRecommendGoods");
|
| | | if (array != null) {
|
| | | for (int i = 0; i < array.size(); i++) {
|
| | | JDGoods parseGoods = parseGoods(array.optJSONArray(i).optJSONObject(0).toString());
|
| | | if (parseGoods != null) {
|
| | | goodsList.add(parseGoods);
|
| | | }
|
| | | }
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | } catch (Exception e) {
|
| | | e.printStackTrace();
|
| | | }
|
| | |
|
| | | return goodsList;
|
| | | }
|
| | |
|
| | | public static JDGoods getGoodsDetail(Long skuId) {
|
| | |
| | | return null;
|
| | | }
|
| | |
|
| | | |
| | | private static JDGoods parseGoods(String data) {
|
| | | JDGoods goods = new JDGoods();
|
| | | JSONObject json = JSONObject.fromObject(data);
|
| | | |
| | | BigDecimal wlCommissionRatio = new BigDecimal(json.optString("wlCommissionRatio"));
|
| | | if (wlCommissionRatio.compareTo(new BigDecimal(0)) > 0) {
|
| | | JDCommissionInfo commission = new JDCommissionInfo();
|
| | | commission.setCommission(new BigDecimal(json.optString("wlCommission")));
|
| | | commission.setCommissionShare(wlCommissionRatio);
|
| | | goods.setCommissionInfo(commission);
|
| | | } else {
|
| | | return null; // 过滤无返利商品
|
| | | }
|
| | | |
| | | goods.setSkuId(json.optLong("skuId"));
|
| | | goods.setSkuName(json.optString("skuName"));
|
| | | |
| | | JDShopInfo shopInfo = new JDShopInfo();
|
| | | shopInfo.setShopId(json.optInt("shopId"));
|
| | | shopInfo.setShopName(json.optString("shopName"));
|
| | | goods.setShopInfo(shopInfo);
|
| | |
|
| | | if (!StringUtil.isNullOrEmpty(json.optString("wlPrice")))
|
| | | goods.setPrice(new BigDecimal(json.optString("wlPrice")));
|
| | | else
|
| | | goods.setPrice(new BigDecimal(json.optString("finalPrice")));
|
| | | goods.setGoodCommentsShare(new BigDecimal(json.optString("goodCommentsShare")));
|
| | | goods.setPrice(new BigDecimal(json.optString("wlPrice")));
|
| | | |
| | | goods.setInOrderCount30Days(json.optLong("inOrderCount30Days"));
|
| | | |
| | | if (json.optInt("isZY") == 1)
|
| | | goods.setOwner("g");
|
| | | else
|
| | | goods.setOwner("p");
|
| | | goods.setMaterialUrl("http://img14.360buyimg.com/n1/" + json.optString("materialUrl"));
|
| | | JDCommissionInfo commission = new JDCommissionInfo();
|
| | | commission.setCommission(new BigDecimal(json.optString("wlCommission")));
|
| | | commission.setCommissionShare(new BigDecimal(json.optString("wlCommissionRatio")));
|
| | | goods.setCommissionInfo(commission);
|
| | | |
| | | goods.setMaterialUrl("https://item.jd.com/"+ json.optLong("skuId") +".html");
|
| | | goods.setPicUrl("http://img14.360buyimg.com/n1/" + json.optString("materialUrl"));
|
| | | |
| | | goods.setGoodCommentsShare(new BigDecimal(json.optString("goodCommentsShare")));
|
| | |
|
| | | if (json.optString("hasCoupon") != null && json.optInt("hasCoupon") == 1
|
| | | && json.optInt("couponRemainCnt") > 0) {
|
| | | // 有券
|
| | | JDCouponInfo coupon = new JDCouponInfo();
|
| | | coupon.setDiscount(new BigDecimal(json.optString("couponDiscount")));
|
| | | coupon.setQuota(new BigDecimal(json.optString("couponQuota")));
|
| | | coupon.setLink("https:" + json.optString("couponLink"));
|
| | | goods.setCouponInfo(coupon);
|
| | | } else {
|
| | | // 无券
|
| | | // 团购信息
|
| | | if (json.optString("isPinGou") != null && json.optInt("isPinGou") == 1) {
|
| | | JDPingouInfo jdPinGouInfo = new JDPingouInfo();
|
| | | jdPinGouInfo.setPingouPrice(new BigDecimal(json.optString("pingouPrice")));
|
| | | jdPinGouInfo.setPingouTmCount(json.optLong("pingouTmCount"));
|
| | | goods.setPinGouInfo(jdPinGouInfo);
|
| | | } |
| | | |
| | | |
| | | String finalPrice = json.optString("finalPrice");
|
| | | if (!StringUtil.isNullOrEmpty(finalPrice)) {
|
| | | // 券信息
|
| | | BigDecimal finalPriceDecimal = new BigDecimal(json.optString("finalPrice"));
|
| | | if (finalPriceDecimal != null && json.optString("hasCoupon") != null && json.optInt("hasCoupon") == 1
|
| | | && json.optInt("couponRemainCnt") > 0) {
|
| | | JDCouponInfo coupon = new JDCouponInfo();
|
| | | coupon.setDiscount(new BigDecimal(json.optString("couponDiscount")));
|
| | | coupon.setQuota(new BigDecimal(json.optString("couponQuota")));
|
| | | coupon.setLink("https:" + json.optString("couponLink"));
|
| | | goods.setCouponInfo(coupon);
|
| | | } |
| | | }
|
| | | |
| | | |
| | | return goods;
|
| | | }
|
| | | |
| | | |
| | | /**
|
| | | * 商品佣金计算
|
| | | * @param goods
|
| | | * @param rate
|
| | | * @return
|
| | | */
|
| | | public static BigDecimal getGoodsFanLiMoney(JDGoods goods, BigDecimal rate) {
|
| | | BigDecimal money = null;
|
| | | |
| | | JDCommissionInfo commissionInfo = goods.getCommissionInfo();
|
| | | if (commissionInfo == null) {
|
| | | return money;
|
| | | }
|
| | | |
| | | BigDecimal price = null;
|
| | | JDPingouInfo pinGouInfo = goods.getPinGouInfo();
|
| | | if (pinGouInfo == null) {
|
| | | price = goods.getPrice();
|
| | | } else {
|
| | | price = pinGouInfo.getPingouPrice();
|
| | | }
|
| | | |
| | | JDCouponInfo couponInfo = goods.getCouponInfo();
|
| | | if (couponInfo == null) {
|
| | | money = MoneyBigDecimalUtil.mul(MoneyBigDecimalUtil.mul(
|
| | | MoneyBigDecimalUtil.mul(price,commissionInfo.getCommissionShare()),
|
| | | new BigDecimal("0.01")), MoneyBigDecimalUtil.div(rate, new BigDecimal(100)));
|
| | | } else {
|
| | | BigDecimal quota = couponInfo.getQuota();
|
| | | BigDecimal discount = couponInfo.getDiscount();
|
| | | if (quota.compareTo(price) <= 0 && price.compareTo(discount) > 0) {
|
| | | |
| | | BigDecimal finalPrice = price.subtract(discount);
|
| | | money = MoneyBigDecimalUtil.mul(MoneyBigDecimalUtil
|
| | | .mul(MoneyBigDecimalUtil.mul(finalPrice, commissionInfo.getCommissionShare()), new BigDecimal("0.01")),
|
| | | MoneyBigDecimalUtil.div(rate, new BigDecimal(100)));
|
| | |
|
| | | } else {// 不能用券
|
| | | money = MoneyBigDecimalUtil.mul(MoneyBigDecimalUtil.mul(
|
| | | MoneyBigDecimalUtil.mul(price,commissionInfo.getCommissionShare()),
|
| | | new BigDecimal("0.01")), MoneyBigDecimalUtil.div(rate, new BigDecimal(100)));
|
| | | }
|
| | | |
| | | }
|
| | | return BigDecimalUtil.getWithNoZera(money);
|
| | | }
|
| | | |
| | | |
| | | /**
|
| | | * 计算商品券后价,没有券则返回原价
|
| | | * |
| | | * @param goodsBrief
|
| | | * @return
|
| | | */
|
| | | public static BigDecimal getQuanPrice(JDGoods jdGoods) {
|
| | | JDCouponInfo couponInfo = jdGoods.getCouponInfo();
|
| | | if (couponInfo == null) {
|
| | | return jdGoods.getPrice();
|
| | | } |
| | | |
| | | BigDecimal discount = couponInfo.getDiscount();
|
| | | BigDecimal price = null;
|
| | | JDPingouInfo pinGouInfo = jdGoods.getPinGouInfo();
|
| | | if (pinGouInfo == null) {
|
| | | price = jdGoods.getPrice();
|
| | | } else {
|
| | | price = pinGouInfo.getPingouPrice();
|
| | | }
|
| | | // 计算券后价
|
| | | BigDecimal sub = price.subtract(couponInfo.getQuota());
|
| | | if (sub.compareTo(BigDecimal.valueOf(0)) >= 0) {
|
| | | BigDecimal quanPrice = MoneyBigDecimalUtil.sub(price, discount);
|
| | | return quanPrice;
|
| | | } else {
|
| | | return jdGoods.getPrice();
|
| | | }
|
| | | }
|
| | | |
| | | |
| | | /**
|
| | | * 销量处理
|
| | | * @param count
|
| | | * @return
|
| | | */
|
| | | public static String getSaleCount(long count) {
|
| | | String salesCountMidea = null;
|
| | | if (count < 10000) {
|
| | | salesCountMidea = count + "";
|
| | | } else {
|
| | | double sales = count;
|
| | | salesCountMidea = String.format("%.1f", sales / 10000);
|
| | | salesCountMidea = salesCountMidea + "万";
|
| | | }
|
| | | return salesCountMidea;
|
| | | }
|
| | | |
| | | /** |
| | | * 搜索候选词
|
| | | * @param key
|
| | | * @return
|
| | | */
|
| | | public static List<String> suggestSearch(String key) {
|
| | | List<String> list = new ArrayList<>();
|
| | | if (StringUtil.isNullOrEmpty(key))
|