All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.channel.api.impl.WxChannelCompassShopServiceImpl Maven / Gradle / Ivy

There is a newer version: 4.7.5.B
Show newest version
package me.chanjar.weixin.channel.api.impl;

import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.FINDER_AUTH_LIST_URL;
import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.FINDER_LIST_URL;
import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.GET_FINDER_OVERALL_URL;
import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.GET_FINDER_PRODUCT_LIST_URL;
import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.GET_FINDER_PRODUCT_OVERALL_URL;
import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.GET_LIVE_LIST_URL;
import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.GET_SHOP_OVERALL_URL;
import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.GET_SHOP_PRODUCT_DATA_URL;
import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.GET_SHOP_PRODUCT_LIST_URL;
import static me.chanjar.weixin.channel.constant.WxChannelApiUrlConstants.CompassShop.GET_SHOP_SALE_PROFILE_DATA_URL;

import lombok.extern.slf4j.Slf4j;
import me.chanjar.weixin.channel.api.WxChannelCompassShopService;
import me.chanjar.weixin.channel.bean.compass.CompassFinderBaseParam;
import me.chanjar.weixin.channel.bean.compass.shop.CompassFinderIdParam;
import me.chanjar.weixin.channel.bean.compass.shop.FinderAuthListResponse;
import me.chanjar.weixin.channel.bean.compass.shop.FinderListResponse;
import me.chanjar.weixin.channel.bean.compass.shop.FinderOverallResponse;
import me.chanjar.weixin.channel.bean.compass.shop.FinderProductListResponse;
import me.chanjar.weixin.channel.bean.compass.shop.FinderProductOverallResponse;
import me.chanjar.weixin.channel.bean.compass.shop.ShopLiveListResponse;
import me.chanjar.weixin.channel.bean.compass.shop.ShopOverallResponse;
import me.chanjar.weixin.channel.bean.compass.shop.ShopProductDataParam;
import me.chanjar.weixin.channel.bean.compass.shop.ShopProductDataResponse;
import me.chanjar.weixin.channel.bean.compass.shop.ShopProductListResponse;
import me.chanjar.weixin.channel.bean.compass.shop.ShopSaleProfileDataParam;
import me.chanjar.weixin.channel.bean.compass.shop.ShopSaleProfileDataResponse;
import me.chanjar.weixin.channel.util.ResponseUtils;
import me.chanjar.weixin.common.error.WxErrorException;

/**
 * 视频号/微信小店 罗盘商家版 服务实现
 *
 * @author Zeyes
 */
@Slf4j
public class WxChannelCompassShopServiceImpl implements WxChannelCompassShopService {

  /**
   * 微信商店服务
   */
  private final BaseWxChannelServiceImpl shopService;

  public WxChannelCompassShopServiceImpl(BaseWxChannelServiceImpl shopService) {this.shopService = shopService;}

  @Override
  public ShopOverallResponse getShopOverall(String ds) throws WxErrorException {
    CompassFinderBaseParam param = new CompassFinderBaseParam(ds);
    String resJson = shopService.post(GET_SHOP_OVERALL_URL, param);
    return ResponseUtils.decode(resJson, ShopOverallResponse.class);
  }

  @Override
  public FinderAuthListResponse getFinderAuthorizationList() throws WxErrorException {
    String resJson = shopService.post(FINDER_AUTH_LIST_URL, "{}");
    return ResponseUtils.decode(resJson, FinderAuthListResponse.class);
  }

  @Override
  public FinderListResponse getFinderList(String ds) throws WxErrorException {
    CompassFinderBaseParam param = new CompassFinderBaseParam(ds);
    String resJson = shopService.post(FINDER_LIST_URL, param);
    return ResponseUtils.decode(resJson, FinderListResponse.class);
  }

  @Override
  public FinderOverallResponse getFinderOverall(String ds) throws WxErrorException {
    CompassFinderBaseParam param = new CompassFinderBaseParam(ds);
    String resJson = shopService.post(GET_FINDER_OVERALL_URL, param);
    return ResponseUtils.decode(resJson, FinderOverallResponse.class);
  }

  @Override
  public FinderProductListResponse getFinderProductList(String ds, String finderId) throws WxErrorException {
    CompassFinderIdParam param = new CompassFinderIdParam(ds, finderId);
    String resJson = shopService.post(GET_FINDER_PRODUCT_LIST_URL, param);
    return ResponseUtils.decode(resJson, FinderProductListResponse.class);
  }

  @Override
  public FinderProductOverallResponse getFinderProductOverall(String ds, String finderId) throws WxErrorException {
    CompassFinderIdParam param = new CompassFinderIdParam(ds, finderId);
    String resJson = shopService.post(GET_FINDER_PRODUCT_OVERALL_URL, param);
    return ResponseUtils.decode(resJson, FinderProductOverallResponse.class);
  }

  @Override
  public ShopLiveListResponse getShopLiveList(String ds, String finderId) throws WxErrorException {
    CompassFinderIdParam param = new CompassFinderIdParam(ds, finderId);
    String resJson = shopService.post(GET_LIVE_LIST_URL, param);
    return ResponseUtils.decode(resJson, ShopLiveListResponse.class);
  }

  @Override
  public ShopProductDataResponse getShopProductData(String ds, String productId) throws WxErrorException {
    ShopProductDataParam param = new ShopProductDataParam(ds, productId);
    String resJson = shopService.post(GET_SHOP_PRODUCT_DATA_URL, param);
    return ResponseUtils.decode(resJson, ShopProductDataResponse.class);
  }

  @Override
  public ShopProductListResponse getShopProductList(String ds) throws WxErrorException {
    CompassFinderBaseParam param = new CompassFinderBaseParam(ds);
    String resJson = shopService.post(GET_SHOP_PRODUCT_LIST_URL, param);
    return ResponseUtils.decode(resJson, ShopProductListResponse.class);
  }

  @Override
  public ShopSaleProfileDataResponse getShopSaleProfileData(String ds, Integer type) throws WxErrorException {
    ShopSaleProfileDataParam param = new ShopSaleProfileDataParam(ds, type);
    String resJson = shopService.post(GET_SHOP_SALE_PROFILE_DATA_URL, param);
    return ResponseUtils.decode(resJson, ShopSaleProfileDataResponse.class);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy