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

cn.binarywang.wx.miniapp.api.impl.WxMaSecCheckServiceImpl Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package cn.binarywang.wx.miniapp.api.impl;

import cn.binarywang.wx.miniapp.api.WxMaSecCheckService;
import cn.binarywang.wx.miniapp.api.WxMaService;
import cn.binarywang.wx.miniapp.bean.WxMaMediaAsyncCheckResult;
import cn.binarywang.wx.miniapp.bean.security.WxMaMediaSecCheckCheckRequest;
import cn.binarywang.wx.miniapp.bean.security.WxMaMsgSecCheckCheckRequest;
import cn.binarywang.wx.miniapp.bean.security.WxMaMsgSecCheckCheckResponse;
import cn.binarywang.wx.miniapp.json.WxMaGsonBuilder;
import com.google.gson.JsonObject;
import lombok.RequiredArgsConstructor;
import me.chanjar.weixin.common.bean.result.WxMediaUploadResult;
import me.chanjar.weixin.common.enums.WxType;
import me.chanjar.weixin.common.error.WxError;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.common.util.http.MediaUploadRequestExecutor;
import me.chanjar.weixin.common.util.json.GsonParser;
import org.apache.commons.io.FileUtils;

import java.io.File;
import java.io.IOException;
import java.net.URL;

import static cn.binarywang.wx.miniapp.constant.WxMaApiUrlConstants.SecCheck.*;
import static cn.binarywang.wx.miniapp.constant.WxMaConstants.ERRCODE;

/**
 * 
 *
 * Created by Binary Wang on 2018/11/24.
 * 
* * @author Binary Wang */ @RequiredArgsConstructor public class WxMaSecCheckServiceImpl implements WxMaSecCheckService { private final WxMaService service; @Override public boolean checkImage(File file) throws WxErrorException { WxMediaUploadResult result = this.service.execute(MediaUploadRequestExecutor .create(this.service.getRequestHttp()), IMG_SEC_CHECK_URL, file); return result != null; } @Override public boolean checkImage(String fileUrl) throws WxErrorException { File file = new File(FileUtils.getTempDirectory(), System.currentTimeMillis() + ".tmp"); try { URL url = new URL(fileUrl); FileUtils.copyURLToFile(url, file); } catch (IOException e) { throw new WxErrorException(WxError.builder().errorCode(-1).errorMsg("文件地址读取异常").build(), e); } return this.checkImage(file); } @Override public boolean checkMessage(String msgString) throws WxErrorException { JsonObject jsonObject = new JsonObject(); jsonObject.addProperty("content", msgString); this.service.post(MSG_SEC_CHECK_URL, jsonObject.toString()); return true; } @Override public WxMaMsgSecCheckCheckResponse checkMessage(WxMaMsgSecCheckCheckRequest msgRequest) throws WxErrorException { String response = this.service.post(MSG_SEC_CHECK_URL, msgRequest); parseErrorResponse(response); return WxMaGsonBuilder.create().fromJson(response, WxMaMsgSecCheckCheckResponse.class); } @Override public WxMaMediaAsyncCheckResult mediaCheckAsync(String mediaUrl, int mediaType) throws WxErrorException { JsonObject jsonObject = new JsonObject(); jsonObject.addProperty("media_url", mediaUrl); jsonObject.addProperty("media_type", mediaType); return WxMaMediaAsyncCheckResult .fromJson(this.service.post(MEDIA_CHECK_ASYNC_URL, jsonObject.toString())); } @Override public WxMaMediaAsyncCheckResult mediaCheckAsync(WxMaMediaSecCheckCheckRequest request) throws WxErrorException { String response = this.service.post(MEDIA_CHECK_ASYNC_URL, request); parseErrorResponse(response); return WxMaGsonBuilder.create().fromJson(response,WxMaMediaAsyncCheckResult.class); } private void parseErrorResponse(String response) throws WxErrorException { JsonObject jsonObject = GsonParser.parse(response); if (jsonObject.get(ERRCODE).getAsInt() != 0) { throw new WxErrorException(WxError.fromJson(response, WxType.MiniApp)); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy