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

me.chanjar.weixin.mp.api.impl.WxMpGuideMaterialServiceImpl Maven / Gradle / Ivy

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

import com.google.gson.reflect.TypeToken;
import lombok.AllArgsConstructor;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.common.util.json.GsonHelper;
import me.chanjar.weixin.common.util.json.GsonParser;
import me.chanjar.weixin.common.util.json.WxGsonBuilder;
import me.chanjar.weixin.mp.api.WxMpGuideMaterialService;
import me.chanjar.weixin.mp.api.WxMpService;
import me.chanjar.weixin.mp.bean.guide.WxMpGuideCardMaterialInfo;
import me.chanjar.weixin.mp.bean.guide.WxMpGuideImgMaterialInfoList;
import me.chanjar.weixin.mp.bean.guide.WxMpGuideWordMaterialInfoList;
import me.chanjar.weixin.mp.enums.WxMpApiUrl;

import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

/**
 * @author 广州跨界-宋心成
 * created on  2021/5/13/013
 */
@AllArgsConstructor
public class WxMpGuideMaterialServiceImpl implements WxMpGuideMaterialService {
  private static final String ACCOUNT = "guide_account";
  private static final String OPENID = "guide_openid";
  private final WxMpService mpService;

  @Override
  public void setGuideCardMaterial(String mediaId, int type, String title, String path, String appId) throws WxErrorException {
    Map body = new LinkedHashMap<>();
    body.put("type", type);
    body.put("media_id", mediaId);
    body.put("title", title);
    body.put("path", path);
    body.put("appid", appId);
    this.mpService.post(WxMpApiUrl.Guide.SET_GUIDE_CARD_MATERIAL, body);
  }

  @Override
  public List getGuideCardMaterial(int type) throws WxErrorException {
    String returnString = this.mpService.post(WxMpApiUrl.Guide.GET_GUIDE_CARD_MATERIAL, GsonHelper.buildJsonObject("type", type));
    return WxGsonBuilder.create().fromJson(GsonParser.parse(returnString).getAsJsonArray("card_list"),
      new TypeToken>() {
      }.getType());
  }

  @Override
  public void delGuideCardMaterial(int type, String title, String path, String appId) throws WxErrorException {
    Map body = new LinkedHashMap<>();
    body.put("type", type);
    body.put("title", title);
    body.put("path", path);
    body.put("appid", appId);
    this.mpService.post(WxMpApiUrl.Guide.DEL_GUIDE_CARD_MATERIAL, body);
  }

  @Override
  public void setGuideImageMaterial(String mediaId, int type) throws WxErrorException {
    this.mpService.post(WxMpApiUrl.Guide.SET_GUIDE_IMAGE_MATERIAL,
      GsonHelper.buildJsonObject("media_id", mediaId, "type", type));
  }

  @Override
  public WxMpGuideImgMaterialInfoList getGuideImageMaterial(int type, int start, int num) throws WxErrorException {
    String returnString = this.mpService.post(WxMpApiUrl.Guide.GET_GUIDE_IMAGE_MATERIAL,
      GsonHelper.buildJsonObject("type", type, "start", start, "num", num));
    return WxMpGuideImgMaterialInfoList.fromJson(returnString);
  }

  @Override
  public void delGuideImageMaterial(int type, String picUrl) throws WxErrorException {
    this.mpService.post(WxMpApiUrl.Guide.DEL_GUIDE_IMAGE_MATERIAL,
      GsonHelper.buildJsonObject("type", type, "picurl", picUrl));
  }

  @Override
  public void setGuideWordMaterial(int type, String word) throws WxErrorException {
    this.mpService.post(WxMpApiUrl.Guide.SET_GUIDE_WORD_MATERIAL,
      GsonHelper.buildJsonObject("type", type, "word", word));
  }

  @Override
  public WxMpGuideWordMaterialInfoList getGuideWordMaterial(int type, int start, int num) throws WxErrorException {
    String returnString = this.mpService.post(WxMpApiUrl.Guide.GET_GUIDE_WORD_MATERIAL,
      GsonHelper.buildJsonObject("type", type, "start", start, "num", num));
    return WxMpGuideWordMaterialInfoList.fromJson(returnString);
  }

  @Override
  public void delGuideWordMaterial(int type, String word) throws WxErrorException {
    this.mpService.post(WxMpApiUrl.Guide.DEL_GUIDE_WORD_MATERIAL,
      GsonHelper.buildJsonObject("type", type, "word", word));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy