mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +08:00
🆕 #3339 【企业微信】增加上传临时素材的重载方法
This commit is contained in:
parent
9e0b87a1de
commit
1a0d888245
@ -53,6 +53,32 @@ public interface WxCpMediaService {
|
||||
WxMediaUploadResult upload(String mediaType, String filename, String url)
|
||||
throws WxErrorException, IOException;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 上传多媒体文件.
|
||||
* </pre>
|
||||
*
|
||||
* @param mediaType 媒体类型, 请看{@link me.chanjar.weixin.common.api.WxConsts}
|
||||
* @param file 文件对象, 上传的文件内容
|
||||
* @param filename 上传内容的实际文件名.例如:wework.txt
|
||||
* @return wx media upload result
|
||||
* @throws WxErrorException the wx error exception
|
||||
*/
|
||||
WxMediaUploadResult upload(String mediaType, File file, String filename) throws WxErrorException;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 上传多媒体文件.
|
||||
* </pre>
|
||||
*
|
||||
* @param mediaType 媒体类型, 请看{@link me.chanjar.weixin.common.api.WxConsts}
|
||||
* @param inputStream 上传的文件内容
|
||||
* @param filename 上传内容的实际文件名.例如:wework.txt
|
||||
* @return wx media upload result
|
||||
* @throws WxErrorException the wx error exception
|
||||
*/
|
||||
WxMediaUploadResult upload(String mediaType, InputStream inputStream, String filename) throws WxErrorException;
|
||||
|
||||
/**
|
||||
* 上传多媒体文件.
|
||||
*
|
||||
|
@ -3,6 +3,7 @@ package me.chanjar.weixin.cp.api.impl;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import me.chanjar.weixin.common.bean.result.WxMediaUploadResult;
|
||||
import me.chanjar.weixin.common.error.WxErrorException;
|
||||
import me.chanjar.weixin.common.error.WxRuntimeException;
|
||||
import me.chanjar.weixin.common.util.fs.FileUtils;
|
||||
import me.chanjar.weixin.common.util.http.BaseMediaDownloadRequestExecutor;
|
||||
import me.chanjar.weixin.common.util.http.InputStreamData;
|
||||
@ -16,6 +17,7 @@ import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.net.HttpURLConnection;
|
||||
import java.net.URL;
|
||||
import java.nio.file.Files;
|
||||
import java.util.UUID;
|
||||
|
||||
import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Media.*;
|
||||
@ -67,6 +69,28 @@ public class WxCpMediaServiceImpl implements WxCpMediaService {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public WxMediaUploadResult upload(String mediaType, File file, String filename) throws WxErrorException {
|
||||
if(!file.exists()){
|
||||
throw new WxRuntimeException("文件[" + file.getAbsolutePath() + "]不存在");
|
||||
}
|
||||
try (InputStream inputStream = Files.newInputStream(file.toPath())) {
|
||||
return this.mainService.execute(MediaInputStreamUploadRequestExecutor.create(this.mainService.getRequestHttp())
|
||||
, this.mainService.getWxCpConfigStorage().getApiUrl(MEDIA_UPLOAD + mediaType),
|
||||
new InputStreamData(inputStream, filename));
|
||||
} catch (IOException e) {
|
||||
throw new WxRuntimeException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public WxMediaUploadResult upload(String mediaType, InputStream inputStream, String filename) throws WxErrorException{
|
||||
return this.mainService.execute(MediaInputStreamUploadRequestExecutor.create(this.mainService.getRequestHttp())
|
||||
, this.mainService.getWxCpConfigStorage().getApiUrl(MEDIA_UPLOAD + mediaType),
|
||||
new InputStreamData(inputStream, filename));
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public WxMediaUploadResult upload(String mediaType, File file) throws WxErrorException {
|
||||
return this.mainService.execute(MediaUploadRequestExecutor.create(this.mainService.getRequestHttp()),
|
||||
|
Loading…
Reference in New Issue
Block a user