2018-01-17 14:10:40 +08:00
|
|
|
|
package cn.keking.utils;
|
|
|
|
|
|
2019-04-16 21:09:32 +08:00
|
|
|
|
import cn.keking.config.ConfigConstants;
|
2019-06-19 14:18:09 +08:00
|
|
|
|
import cn.keking.model.FileAttribute;
|
2018-01-19 14:51:18 +08:00
|
|
|
|
import cn.keking.model.ReturnResponse;
|
2020-12-28 11:42:08 +08:00
|
|
|
|
import io.mola.galimatias.GalimatiasParseException;
|
2021-01-28 15:55:42 +08:00
|
|
|
|
import org.apache.commons.io.FileUtils;
|
2019-06-19 14:18:09 +08:00
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
1,优化URL报错,2,更新OFD组件 3,美化Excel 4,文本方法关闭字节流 5,新增多种类型文件预览 (#419)
1,优化URL报错
2,更新OFD组件
3,美化Excel
4,文本方法关闭字节流
5,新增xmind、eml、epub、"obj", "3ds", "stl", "ply", "off", "3dm", "fbx", "dae", "wrl", "3mf", "ifc","glb","o3dv","gltf","stp","bim","fcstd","step","iges","brep"格式
Co-authored-by: gaoxiongzaq <admin@cxcp.com>
2022-12-28 10:17:06 +08:00
|
|
|
|
import org.springframework.util.StringUtils;
|
2020-05-15 18:09:19 +08:00
|
|
|
|
|
2023-04-03 15:11:14 +08:00
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
|
import java.io.IOException;
|
2023-07-28 14:36:23 +08:00
|
|
|
|
import java.io.UnsupportedEncodingException;
|
|
|
|
|
import java.net.HttpURLConnection;
|
2023-04-03 15:11:14 +08:00
|
|
|
|
import java.net.URL;
|
2023-07-28 14:36:23 +08:00
|
|
|
|
import java.net.URLDecoder;
|
2018-01-17 14:10:40 +08:00
|
|
|
|
import java.util.UUID;
|
|
|
|
|
|
2020-12-28 18:21:35 +08:00
|
|
|
|
import static cn.keking.utils.KkFileUtils.isFtpUrl;
|
|
|
|
|
import static cn.keking.utils.KkFileUtils.isHttpUrl;
|
|
|
|
|
|
2018-01-17 14:10:40 +08:00
|
|
|
|
/**
|
|
|
|
|
* @author yudian-it
|
|
|
|
|
*/
|
|
|
|
|
public class DownloadUtils {
|
|
|
|
|
|
2020-12-26 19:13:50 +08:00
|
|
|
|
private final static Logger logger = LoggerFactory.getLogger(DownloadUtils.class);
|
2020-12-27 01:43:50 +08:00
|
|
|
|
private static final String fileDir = ConfigConstants.getFileDir();
|
2019-06-19 14:18:09 +08:00
|
|
|
|
private static final String URL_PARAM_FTP_USERNAME = "ftp.username";
|
|
|
|
|
private static final String URL_PARAM_FTP_PASSWORD = "ftp.password";
|
|
|
|
|
private static final String URL_PARAM_FTP_CONTROL_ENCODING = "ftp.control.encoding";
|
2018-01-17 14:10:40 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2020-05-15 18:09:19 +08:00
|
|
|
|
* @param fileAttribute fileAttribute
|
2020-12-26 19:13:50 +08:00
|
|
|
|
* @param fileName 文件名
|
2020-05-15 18:09:19 +08:00
|
|
|
|
* @return 本地文件绝对路径
|
2018-01-17 14:10:40 +08:00
|
|
|
|
*/
|
2020-12-27 01:43:50 +08:00
|
|
|
|
public static ReturnResponse<String> downLoad(FileAttribute fileAttribute, String fileName) {
|
2022-12-28 10:40:56 +08:00
|
|
|
|
// 忽略ssl证书
|
2023-04-03 15:11:14 +08:00
|
|
|
|
String urlStr = null;
|
2023-07-28 14:36:23 +08:00
|
|
|
|
HttpURLConnection urlcon;
|
2022-12-28 10:40:56 +08:00
|
|
|
|
try {
|
|
|
|
|
SslUtils.ignoreSsl();
|
2023-04-03 15:11:14 +08:00
|
|
|
|
urlStr = fileAttribute.getUrl().replaceAll("\\+", "%20");
|
2022-12-28 10:40:56 +08:00
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.error("忽略SSL证书异常:", e);
|
|
|
|
|
}
|
2018-01-17 14:10:40 +08:00
|
|
|
|
ReturnResponse<String> response = new ReturnResponse<>(0, "下载成功!!!", "");
|
2023-04-18 11:50:36 +08:00
|
|
|
|
String realPath = getRelFilePath(fileName, fileAttribute);
|
2023-08-17 13:56:59 +08:00
|
|
|
|
if (null == realPath || !KkFileUtils.isAllowedUpload(realPath)) {
|
2023-04-10 17:35:15 +08:00
|
|
|
|
response.setCode(1);
|
|
|
|
|
response.setContent(null);
|
|
|
|
|
response.setMsg("下载失败:不支持的类型!" + urlStr);
|
|
|
|
|
return response;
|
|
|
|
|
}
|
2023-04-03 15:11:14 +08:00
|
|
|
|
assert urlStr != null;
|
|
|
|
|
if (urlStr.contains("?fileKey=")) {
|
2023-04-28 09:46:18 +08:00
|
|
|
|
response.setContent(fileDir + fileName);
|
2023-04-03 15:11:14 +08:00
|
|
|
|
response.setMsg(fileName);
|
|
|
|
|
return response;
|
|
|
|
|
}
|
1,优化URL报错,2,更新OFD组件 3,美化Excel 4,文本方法关闭字节流 5,新增多种类型文件预览 (#419)
1,优化URL报错
2,更新OFD组件
3,美化Excel
4,文本方法关闭字节流
5,新增xmind、eml、epub、"obj", "3ds", "stl", "ply", "off", "3dm", "fbx", "dae", "wrl", "3mf", "ifc","glb","o3dv","gltf","stp","bim","fcstd","step","iges","brep"格式
Co-authored-by: gaoxiongzaq <admin@cxcp.com>
2022-12-28 10:17:06 +08:00
|
|
|
|
if(!StringUtils.hasText(realPath)){
|
|
|
|
|
response.setCode(1);
|
|
|
|
|
response.setContent(null);
|
|
|
|
|
response.setMsg("下载失败:文件名不合法!" + urlStr);
|
|
|
|
|
return response;
|
|
|
|
|
}
|
2023-01-11 13:26:18 +08:00
|
|
|
|
if(realPath.equals("cunzhai")){
|
|
|
|
|
response.setContent(fileDir + fileName);
|
|
|
|
|
response.setMsg(fileName);
|
|
|
|
|
return response;
|
|
|
|
|
}
|
2018-01-17 14:10:40 +08:00
|
|
|
|
try {
|
2020-12-28 18:21:35 +08:00
|
|
|
|
URL url = WebUtils.normalizedURL(urlStr);
|
2023-07-28 14:36:23 +08:00
|
|
|
|
if (!urlStr.toLowerCase().startsWith("ftp:")&& !urlStr.toLowerCase().startsWith("file")){
|
|
|
|
|
urlcon=(HttpURLConnection)url.openConnection();
|
|
|
|
|
urlcon.setConnectTimeout(30000);
|
|
|
|
|
urlcon.setReadTimeout(30000);
|
|
|
|
|
urlcon.setInstanceFollowRedirects(false);
|
|
|
|
|
int responseCode = urlcon.getResponseCode();
|
|
|
|
|
if(responseCode != 200){
|
|
|
|
|
if (responseCode == HttpURLConnection.HTTP_MOVED_PERM || responseCode == HttpURLConnection.HTTP_MOVED_TEMP) { //301 302
|
|
|
|
|
url =new URL(urlcon.getHeaderField("Location"));
|
|
|
|
|
}
|
|
|
|
|
if (responseCode == 403|| responseCode == 500) { //301 302
|
|
|
|
|
response.setCode(1);
|
|
|
|
|
response.setContent(null);
|
|
|
|
|
response.setMsg("下载失败:地址错误!" + urlStr);
|
|
|
|
|
return response;
|
|
|
|
|
}
|
|
|
|
|
if (responseCode == 404 ) { //404
|
|
|
|
|
try {
|
|
|
|
|
urlStr = URLDecoder.decode(urlStr, "UTF-8");
|
|
|
|
|
urlStr = URLDecoder.decode(urlStr, "UTF-8");
|
|
|
|
|
url = WebUtils.normalizedURL(urlStr);
|
|
|
|
|
urlcon=(HttpURLConnection)url.openConnection();
|
|
|
|
|
urlcon.setConnectTimeout(30000);
|
|
|
|
|
urlcon.setReadTimeout(30000);
|
|
|
|
|
urlcon.setInstanceFollowRedirects(false);
|
|
|
|
|
responseCode = urlcon.getResponseCode();
|
|
|
|
|
if (responseCode == HttpURLConnection.HTTP_MOVED_PERM || responseCode == HttpURLConnection.HTTP_MOVED_TEMP) { //301 302
|
|
|
|
|
url =new URL(urlcon.getHeaderField("Location"));
|
|
|
|
|
}
|
|
|
|
|
if(responseCode == 404 ||responseCode == 403|| responseCode == 500 ){
|
|
|
|
|
response.setCode(1);
|
|
|
|
|
response.setContent(null);
|
|
|
|
|
response.setMsg("下载失败:地址错误!" + urlStr);
|
|
|
|
|
return response;
|
|
|
|
|
}
|
|
|
|
|
} catch (UnsupportedEncodingException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}finally {
|
|
|
|
|
assert urlcon != null;
|
|
|
|
|
urlcon.disconnect();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-17 09:23:32 +08:00
|
|
|
|
if (!fileAttribute.getSkipDownLoad()) {
|
|
|
|
|
if (isHttpUrl(url)) {
|
|
|
|
|
File realFile = new File(realPath);
|
|
|
|
|
FileUtils.copyURLToFile(url, realFile);
|
|
|
|
|
} else if (isFtpUrl(url)) {
|
|
|
|
|
String ftpUsername = WebUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_USERNAME);
|
|
|
|
|
String ftpPassword = WebUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_PASSWORD);
|
|
|
|
|
String ftpControlEncoding = WebUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_CONTROL_ENCODING);
|
|
|
|
|
FtpUtils.download(fileAttribute.getUrl(), realPath, ftpUsername, ftpPassword, ftpControlEncoding);
|
|
|
|
|
} else {
|
|
|
|
|
response.setCode(1);
|
|
|
|
|
response.setMsg("url不能识别url" + urlStr);
|
|
|
|
|
}
|
2018-01-17 14:10:40 +08:00
|
|
|
|
}
|
|
|
|
|
response.setContent(realPath);
|
|
|
|
|
response.setMsg(fileName);
|
|
|
|
|
return response;
|
2020-12-28 18:21:35 +08:00
|
|
|
|
} catch (IOException | GalimatiasParseException e) {
|
2023-03-20 15:26:23 +08:00
|
|
|
|
logger.error("文件下载失败,url:{}", urlStr);
|
2018-01-17 14:10:40 +08:00
|
|
|
|
response.setCode(1);
|
|
|
|
|
response.setContent(null);
|
|
|
|
|
if (e instanceof FileNotFoundException) {
|
|
|
|
|
response.setMsg("文件不存在!!!");
|
2019-06-19 14:18:09 +08:00
|
|
|
|
} else {
|
2018-01-17 14:10:40 +08:00
|
|
|
|
response.setMsg(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
return response;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
|
|
2020-12-26 19:13:50 +08:00
|
|
|
|
/**
|
2020-12-28 18:21:35 +08:00
|
|
|
|
* 获取真实文件绝对路径
|
2020-12-26 19:13:50 +08:00
|
|
|
|
*
|
2020-12-28 18:21:35 +08:00
|
|
|
|
* @param fileName 文件名
|
|
|
|
|
* @return 文件路径
|
2020-12-26 19:13:50 +08:00
|
|
|
|
*/
|
2020-12-28 18:21:35 +08:00
|
|
|
|
private static String getRelFilePath(String fileName, FileAttribute fileAttribute) {
|
|
|
|
|
String type = fileAttribute.getSuffix();
|
|
|
|
|
if (null == fileName) {
|
|
|
|
|
UUID uuid = UUID.randomUUID();
|
|
|
|
|
fileName = uuid + "." + type;
|
|
|
|
|
} else { // 文件后缀不一致时,以type为准(针对simText【将类txt文件转为txt】)
|
|
|
|
|
fileName = fileName.replace(fileName.substring(fileName.lastIndexOf(".") + 1), type);
|
|
|
|
|
}
|
1,优化URL报错,2,更新OFD组件 3,美化Excel 4,文本方法关闭字节流 5,新增多种类型文件预览 (#419)
1,优化URL报错
2,更新OFD组件
3,美化Excel
4,文本方法关闭字节流
5,新增xmind、eml、epub、"obj", "3ds", "stl", "ply", "off", "3dm", "fbx", "dae", "wrl", "3mf", "ifc","glb","o3dv","gltf","stp","bim","fcstd","step","iges","brep"格式
Co-authored-by: gaoxiongzaq <admin@cxcp.com>
2022-12-28 10:17:06 +08:00
|
|
|
|
// 判断是否非法地址
|
|
|
|
|
if (KkFileUtils.isIllegalFileName(fileName)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2020-12-28 18:21:35 +08:00
|
|
|
|
String realPath = fileDir + fileName;
|
|
|
|
|
File dirFile = new File(fileDir);
|
|
|
|
|
if (!dirFile.exists() && !dirFile.mkdirs()) {
|
|
|
|
|
logger.error("创建目录【{}】失败,可能是权限不够,请检查", fileDir);
|
2018-01-17 14:10:40 +08:00
|
|
|
|
}
|
2023-07-10 15:43:23 +08:00
|
|
|
|
Boolean forceUpdatedCache = fileAttribute.forceUpdatedCache();
|
|
|
|
|
//判断是否启用强制更新功能如果启用 文件必须重新下载
|
|
|
|
|
if (null == forceUpdatedCache || !forceUpdatedCache) {
|
|
|
|
|
// 文件已在本地存在,跳过文件下载
|
|
|
|
|
File realFile = new File(realPath);
|
|
|
|
|
if (realFile.exists()) {
|
|
|
|
|
fileAttribute.setSkipDownLoad(true);
|
|
|
|
|
return "cunzhai"; //这里给的值是不能修改的 对应的是下载方法里面有个强制输出地址的
|
|
|
|
|
}
|
2022-07-21 11:19:46 +08:00
|
|
|
|
}
|
2020-12-28 18:21:35 +08:00
|
|
|
|
return realPath;
|
2018-01-17 14:10:40 +08:00
|
|
|
|
}
|
2020-12-28 18:21:35 +08:00
|
|
|
|
|
2018-01-17 14:10:40 +08:00
|
|
|
|
}
|