DownloadUtils.java 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. package cn.keking.utils;
  2. import cn.keking.config.ConfigConstants;
  3. import cn.keking.model.FileAttribute;
  4. import cn.keking.model.ReturnResponse;
  5. import io.mola.galimatias.GalimatiasParseException;
  6. import org.apache.commons.io.FileUtils;
  7. import org.slf4j.Logger;
  8. import org.slf4j.LoggerFactory;
  9. import org.springframework.util.StringUtils;
  10. import java.io.File;
  11. import java.io.FileNotFoundException;
  12. import java.io.IOException;
  13. import java.io.UnsupportedEncodingException;
  14. import java.net.HttpURLConnection;
  15. import java.net.URL;
  16. import java.net.URLDecoder;
  17. import java.util.UUID;
  18. import static cn.keking.utils.KkFileUtils.isFtpUrl;
  19. import static cn.keking.utils.KkFileUtils.isHttpUrl;
  20. /**
  21. * @author yudian-it
  22. */
  23. public class DownloadUtils {
  24. private final static Logger logger = LoggerFactory.getLogger(DownloadUtils.class);
  25. private static final String fileDir = ConfigConstants.getFileDir();
  26. private static final String URL_PARAM_FTP_USERNAME = "ftp.username";
  27. private static final String URL_PARAM_FTP_PASSWORD = "ftp.password";
  28. private static final String URL_PARAM_FTP_CONTROL_ENCODING = "ftp.control.encoding";
  29. /**
  30. * @param fileAttribute fileAttribute
  31. * @param fileName 文件名
  32. * @return 本地文件绝对路径
  33. */
  34. public static ReturnResponse<String> downLoad(FileAttribute fileAttribute, String fileName) {
  35. // 忽略ssl证书
  36. String urlStr = null;
  37. HttpURLConnection urlcon;
  38. try {
  39. SslUtils.ignoreSsl();
  40. urlStr = fileAttribute.getUrl().replaceAll("\\+", "%20");
  41. } catch (Exception e) {
  42. logger.error("忽略SSL证书异常:", e);
  43. }
  44. ReturnResponse<String> response = new ReturnResponse<>(0, "下载成功!!!", "");
  45. String realPath = getRelFilePath(fileName, fileAttribute);
  46. if (null == realPath || !KkFileUtils.isAllowedUpload(realPath)) {
  47. response.setCode(1);
  48. response.setContent(null);
  49. response.setMsg("下载失败:不支持的类型!" + urlStr);
  50. return response;
  51. }
  52. assert urlStr != null;
  53. if (urlStr.contains("?fileKey=")) {
  54. response.setContent(fileDir + fileName);
  55. response.setMsg(fileName);
  56. return response;
  57. }
  58. if(!StringUtils.hasText(realPath)){
  59. response.setCode(1);
  60. response.setContent(null);
  61. response.setMsg("下载失败:文件名不合法!" + urlStr);
  62. return response;
  63. }
  64. if(realPath.equals("cunzhai")){
  65. response.setContent(fileDir + fileName);
  66. response.setMsg(fileName);
  67. return response;
  68. }
  69. try {
  70. URL url = WebUtils.normalizedURL(urlStr);
  71. if (!urlStr.toLowerCase().startsWith("ftp:")&& !urlStr.toLowerCase().startsWith("file")){
  72. urlcon=(HttpURLConnection)url.openConnection();
  73. urlcon.setConnectTimeout(30000);
  74. urlcon.setReadTimeout(30000);
  75. urlcon.setInstanceFollowRedirects(false);
  76. int responseCode = urlcon.getResponseCode();
  77. if(responseCode != 200){
  78. if (responseCode == HttpURLConnection.HTTP_MOVED_PERM || responseCode == HttpURLConnection.HTTP_MOVED_TEMP) { //301 302
  79. url =new URL(urlcon.getHeaderField("Location"));
  80. }
  81. if (responseCode == 403|| responseCode == 500) { //301 302
  82. response.setCode(1);
  83. response.setContent(null);
  84. response.setMsg("下载失败:地址错误!" + urlStr);
  85. return response;
  86. }
  87. if (responseCode == 404 ) { //404
  88. try {
  89. urlStr = URLDecoder.decode(urlStr, "UTF-8");
  90. urlStr = URLDecoder.decode(urlStr, "UTF-8");
  91. url = WebUtils.normalizedURL(urlStr);
  92. urlcon=(HttpURLConnection)url.openConnection();
  93. urlcon.setConnectTimeout(30000);
  94. urlcon.setReadTimeout(30000);
  95. urlcon.setInstanceFollowRedirects(false);
  96. responseCode = urlcon.getResponseCode();
  97. if (responseCode == HttpURLConnection.HTTP_MOVED_PERM || responseCode == HttpURLConnection.HTTP_MOVED_TEMP) { //301 302
  98. url =new URL(urlcon.getHeaderField("Location"));
  99. }
  100. if(responseCode == 404 ||responseCode == 403|| responseCode == 500 ){
  101. response.setCode(1);
  102. response.setContent(null);
  103. response.setMsg("下载失败:地址错误!" + urlStr);
  104. return response;
  105. }
  106. } catch (UnsupportedEncodingException e) {
  107. e.printStackTrace();
  108. }finally {
  109. assert urlcon != null;
  110. urlcon.disconnect();
  111. }
  112. }
  113. }
  114. }
  115. if (!fileAttribute.getSkipDownLoad()) {
  116. if (isHttpUrl(url)) {
  117. File realFile = new File(realPath);
  118. FileUtils.copyURLToFile(url, realFile);
  119. } else if (isFtpUrl(url)) {
  120. String ftpUsername = WebUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_USERNAME);
  121. String ftpPassword = WebUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_PASSWORD);
  122. String ftpControlEncoding = WebUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_CONTROL_ENCODING);
  123. FtpUtils.download(fileAttribute.getUrl(), realPath, ftpUsername, ftpPassword, ftpControlEncoding);
  124. } else {
  125. response.setCode(1);
  126. response.setMsg("url不能识别url" + urlStr);
  127. }
  128. }
  129. response.setContent(realPath);
  130. response.setMsg(fileName);
  131. return response;
  132. } catch (IOException | GalimatiasParseException e) {
  133. logger.error("文件下载失败,url:{}", urlStr);
  134. response.setCode(1);
  135. response.setContent(null);
  136. if (e instanceof FileNotFoundException) {
  137. response.setMsg("文件不存在!!!");
  138. } else {
  139. response.setMsg(e.getMessage());
  140. }
  141. return response;
  142. }
  143. }
  144. /**
  145. * 获取真实文件绝对路径
  146. *
  147. * @param fileName 文件名
  148. * @return 文件路径
  149. */
  150. private static String getRelFilePath(String fileName, FileAttribute fileAttribute) {
  151. String type = fileAttribute.getSuffix();
  152. if (null == fileName) {
  153. UUID uuid = UUID.randomUUID();
  154. fileName = uuid + "." + type;
  155. } else { // 文件后缀不一致时,以type为准(针对simText【将类txt文件转为txt】)
  156. fileName = fileName.replace(fileName.substring(fileName.lastIndexOf(".") + 1), type);
  157. }
  158. // 判断是否非法地址
  159. if (KkFileUtils.isIllegalFileName(fileName)) {
  160. return null;
  161. }
  162. String realPath = fileDir + fileName;
  163. File dirFile = new File(fileDir);
  164. if (!dirFile.exists() && !dirFile.mkdirs()) {
  165. logger.error("创建目录【{}】失败,可能是权限不够,请检查", fileDir);
  166. }
  167. Boolean forceUpdatedCache = fileAttribute.forceUpdatedCache();
  168. //判断是否启用强制更新功能如果启用 文件必须重新下载
  169. if (null == forceUpdatedCache || !forceUpdatedCache) {
  170. // 文件已在本地存在,跳过文件下载
  171. File realFile = new File(realPath);
  172. if (realFile.exists()) {
  173. fileAttribute.setSkipDownLoad(true);
  174. return "cunzhai"; //这里给的值是不能修改的 对应的是下载方法里面有个强制输出地址的
  175. }
  176. }
  177. return realPath;
  178. }
  179. }