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;
|
2020-05-15 18:09:19 +08:00
|
|
|
|
import cn.keking.model.FileType;
|
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;
|
2019-06-19 14:18:09 +08:00
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
2020-05-15 18:09:19 +08:00
|
|
|
|
|
2018-01-17 14:10:40 +08:00
|
|
|
|
import java.io.*;
|
|
|
|
|
import java.net.*;
|
2020-05-15 18:09:19 +08:00
|
|
|
|
import java.nio.charset.StandardCharsets;
|
2018-01-17 14:10:40 +08:00
|
|
|
|
import java.util.UUID;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @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) {
|
2020-05-15 18:09:19 +08:00
|
|
|
|
String urlStr = fileAttribute.getUrl();
|
2019-06-19 14:18:09 +08:00
|
|
|
|
String type = fileAttribute.getSuffix();
|
2018-01-17 14:10:40 +08:00
|
|
|
|
ReturnResponse<String> response = new ReturnResponse<>(0, "下载成功!!!", "");
|
|
|
|
|
UUID uuid = UUID.randomUUID();
|
|
|
|
|
if (null == fileName) {
|
2020-12-26 19:13:50 +08:00
|
|
|
|
fileName = uuid + "." + type;
|
2019-06-17 14:21:16 +08:00
|
|
|
|
} else { // 文件后缀不一致时,以type为准(针对simText【将类txt文件转为txt】)
|
2018-01-17 14:10:40 +08:00
|
|
|
|
fileName = fileName.replace(fileName.substring(fileName.lastIndexOf(".") + 1), type);
|
|
|
|
|
}
|
|
|
|
|
String realPath = fileDir + fileName;
|
|
|
|
|
File dirFile = new File(fileDir);
|
2020-12-26 19:13:50 +08:00
|
|
|
|
if (!dirFile.exists() && !dirFile.mkdirs()) {
|
|
|
|
|
logger.error("创建目录【{}】失败,可能是权限不够,请检查", fileDir);
|
2018-01-17 14:10:40 +08:00
|
|
|
|
}
|
|
|
|
|
try {
|
2020-12-10 11:47:22 +08:00
|
|
|
|
URL url = new URL(urlStr);
|
2020-12-26 19:13:50 +08:00
|
|
|
|
if (url.getProtocol() != null && (url.getProtocol().toLowerCase().startsWith("file") || url.getProtocol().toLowerCase().startsWith("http"))) {
|
2020-12-10 11:47:22 +08:00
|
|
|
|
byte[] bytes = getBytesFromUrl(urlStr);
|
2020-12-25 16:59:11 +08:00
|
|
|
|
OutputStream os = new FileOutputStream(realPath);
|
2020-08-11 10:42:01 +08:00
|
|
|
|
saveBytesToOutStream(bytes, os);
|
2020-12-25 16:59:11 +08:00
|
|
|
|
} else if (url.getProtocol() != null && "ftp".equalsIgnoreCase(url.getProtocol())) {
|
2020-12-27 01:43:50 +08:00
|
|
|
|
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);
|
2020-12-10 11:47:22 +08:00
|
|
|
|
FtpUtils.download(fileAttribute.getUrl(), realPath, ftpUsername, ftpPassword, ftpControlEncoding);
|
|
|
|
|
} else {
|
|
|
|
|
response.setCode(1);
|
|
|
|
|
response.setContent(null);
|
|
|
|
|
response.setMsg("url不能识别url" + urlStr);
|
2018-01-17 14:10:40 +08:00
|
|
|
|
}
|
|
|
|
|
response.setContent(realPath);
|
|
|
|
|
response.setMsg(fileName);
|
2020-12-26 19:13:50 +08:00
|
|
|
|
if (FileType.simText.equals(fileAttribute.getType())) {
|
2020-12-27 01:43:50 +08:00
|
|
|
|
convertTextPlainFileCharsetToUtf8(realPath);
|
2018-01-17 14:10:40 +08:00
|
|
|
|
}
|
|
|
|
|
return response;
|
|
|
|
|
} catch (IOException e) {
|
2020-05-15 18:09:19 +08:00
|
|
|
|
logger.error("文件下载失败,url:{}", urlStr, e);
|
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-12-27 01:43:50 +08:00
|
|
|
|
public static byte[] getBytesFromUrl(String urlStr) throws IOException {
|
2020-05-15 18:09:19 +08:00
|
|
|
|
InputStream is = getInputStreamFromUrl(urlStr);
|
2020-12-26 19:13:50 +08:00
|
|
|
|
if (is == null) {
|
2020-05-15 18:09:19 +08:00
|
|
|
|
is = getInputStreamFromUrl(urlStr);
|
2020-08-11 10:42:01 +08:00
|
|
|
|
if (is == null) {
|
|
|
|
|
logger.error("文件下载异常:url:{}", urlStr);
|
|
|
|
|
throw new IOException("文件下载异常:url:" + urlStr);
|
2020-05-15 18:09:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-26 19:13:50 +08:00
|
|
|
|
return getBytesFromStream(is);
|
2020-08-11 10:42:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-27 01:43:50 +08:00
|
|
|
|
public static void saveBytesToOutStream(byte[] b, OutputStream os) throws IOException {
|
2020-08-11 10:42:01 +08:00
|
|
|
|
os.write(b);
|
|
|
|
|
os.close();
|
2020-05-15 18:09:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-27 01:43:50 +08:00
|
|
|
|
private static InputStream getInputStreamFromUrl(String urlStr) {
|
2020-05-15 18:09:19 +08:00
|
|
|
|
try {
|
2020-12-28 11:42:08 +08:00
|
|
|
|
|
|
|
|
|
URL url = io.mola.galimatias.URL.parse(urlStr).toJavaURL();
|
2020-05-15 18:09:19 +08:00
|
|
|
|
URLConnection connection = url.openConnection();
|
|
|
|
|
if (connection instanceof HttpURLConnection) {
|
|
|
|
|
connection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
|
|
|
|
|
}
|
|
|
|
|
return connection.getInputStream();
|
2020-12-28 11:42:08 +08:00
|
|
|
|
} catch (IOException | GalimatiasParseException e) {
|
2020-05-15 18:09:19 +08:00
|
|
|
|
logger.warn("连接url异常:url:{}", urlStr);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-27 01:43:50 +08:00
|
|
|
|
private static byte[] getBytesFromStream(InputStream is) throws IOException {
|
2020-08-11 10:42:01 +08:00
|
|
|
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
|
|
|
|
byte[] buffer = new byte[1024];
|
2020-12-26 19:13:50 +08:00
|
|
|
|
int len;
|
2020-08-11 10:42:01 +08:00
|
|
|
|
while ((len = is.read(buffer)) != -1) {
|
|
|
|
|
baos.write(buffer, 0, len);
|
2020-05-15 18:09:19 +08:00
|
|
|
|
}
|
2020-08-11 10:42:01 +08:00
|
|
|
|
byte[] b = baos.toByteArray();
|
2020-05-15 18:09:19 +08:00
|
|
|
|
is.close();
|
2020-08-11 10:42:01 +08:00
|
|
|
|
baos.close();
|
|
|
|
|
return b;
|
2020-05-15 18:09:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-26 19:13:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* 转换文本文件编码为utf8
|
|
|
|
|
* 探测源文件编码,探测到编码切不为utf8则进行转码
|
|
|
|
|
*
|
|
|
|
|
* @param filePath 文件路径
|
|
|
|
|
*/
|
2020-12-27 01:43:50 +08:00
|
|
|
|
private static void convertTextPlainFileCharsetToUtf8(String filePath) throws IOException {
|
2020-12-26 19:13:50 +08:00
|
|
|
|
File sourceFile = new File(filePath);
|
|
|
|
|
if (sourceFile.exists() && sourceFile.isFile() && sourceFile.canRead()) {
|
|
|
|
|
String encoding = FileUtils.getFileEncode(filePath);
|
|
|
|
|
if (!FileUtils.DEFAULT_FILE_ENCODING.equals(encoding)) {
|
|
|
|
|
// 不为utf8,进行转码
|
|
|
|
|
File tmpUtf8File = new File(filePath + ".utf8");
|
|
|
|
|
Writer writer = new OutputStreamWriter(new FileOutputStream(tmpUtf8File), StandardCharsets.UTF_8);
|
|
|
|
|
Reader reader = new BufferedReader(new InputStreamReader(new FileInputStream(sourceFile), encoding));
|
|
|
|
|
char[] buf = new char[1024];
|
|
|
|
|
int read;
|
|
|
|
|
while ((read = reader.read(buf)) > 0) {
|
|
|
|
|
writer.write(buf, 0, read);
|
|
|
|
|
}
|
|
|
|
|
reader.close();
|
|
|
|
|
writer.close();
|
|
|
|
|
// 删除源文件
|
|
|
|
|
if (!sourceFile.delete()) {
|
|
|
|
|
logger.error("源文件【{}】删除失败,请检查文件目录权限!", filePath);
|
|
|
|
|
}
|
|
|
|
|
// 重命名
|
|
|
|
|
if (tmpUtf8File.renameTo(sourceFile)) {
|
|
|
|
|
logger.error("临时文件【{}】重命名失败,请检查文件路径权限!", tmpUtf8File.getPath());
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-17 14:10:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|