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

me.chanjar.weixin.open.api.impl.WxOpenMaPrivacyServiceImpl Maven / Gradle / Ivy

The newest version!
package me.chanjar.weixin.open.api.impl;

import cn.binarywang.wx.miniapp.api.WxMaService;
import lombok.AllArgsConstructor;
import lombok.SneakyThrows;
import me.chanjar.weixin.common.error.WxError;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.open.api.WxOpenMaPrivacyService;
import me.chanjar.weixin.open.bean.ma.privacy.*;
import me.chanjar.weixin.open.util.json.WxOpenGsonBuilder;

import java.util.HashMap;
import java.util.Map;

/**
 * 微信第三方平台 小程序用户隐私保护指引接口
 * https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/privacy_config/set_privacy_setting.html
 *
 * @author 广州跨界
 */
@AllArgsConstructor
public class WxOpenMaPrivacyServiceImpl implements WxOpenMaPrivacyService {

  private final WxMaService wxMaService;


  @Override
  public GetPrivacySettingResult getPrivacySetting(Integer privacyVer) throws WxErrorException {
    Map params = new HashMap<>(1);
    if (privacyVer != null) {
      params.put("privacy_ver", privacyVer);
    }
    String json = wxMaService.post(OPEN_GET_PRIVACY_SETTING, params);
    return WxOpenGsonBuilder.create().fromJson(json, GetPrivacySettingResult.class);
  }

  @Override
  public void setPrivacySetting(SetPrivacySetting dto) throws WxErrorException {
    wxMaService.post(OPEN_SET_PRIVACY_SETTING, dto);
  }

  @SneakyThrows
  @Override
  public UploadPrivacyFileResult uploadPrivacyFile(String content) throws WxErrorException {
    // TODO 应实现通过InputStream上传的功能,一下代码暂时无法正常运行
//    ByteArrayInputStream data = new ByteArrayInputStream(content.getBytes("GBK"));
//    GenericUploadRequestExecutor executor = new GenericUploadRequestExecutor(wxMaService.getRequestHttp(), "POST", "file", "/temp.txt");
//    String json = wxMaService.execute(executor, OPEN_UPLOAD_PRIVACY_FILE, data);
//    return WxOpenGsonBuilder.create().fromJson(json, UploadPrivacyFileResult.class);
    throw new WxErrorException(new WxError(5003, "暂未实现用户隐私指引内容上传"));
  }

  @Override
  public GetPrivacyInterfaceResult getPrivacyInterface() throws WxErrorException {
    String json = wxMaService.get(GET_PRIVATE_INTERFACE, "");
    return WxOpenGsonBuilder.create().fromJson(json, GetPrivacyInterfaceResult.class);
  }

  @Override
  public ApplyPrivacyInterfaceResult applyPrivacyInterface(ApplyPrivacyInterface dto) throws WxErrorException {
    String json = wxMaService.post(APPLY_PRIVATE_INTERFACE, dto);
    return WxOpenGsonBuilder.create().fromJson(json, ApplyPrivacyInterfaceResult.class);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy