CompressFilePreviewImpl.java 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package cn.keking.service.impl;
  2. import cn.keking.config.ConfigConstants;
  3. import cn.keking.model.FileAttribute;
  4. import cn.keking.model.ReturnResponse;
  5. import cn.keking.service.FilePreview;
  6. import cn.keking.utils.DownloadUtils;
  7. import cn.keking.utils.FileUtils;
  8. import cn.keking.utils.ZipReader;
  9. import org.springframework.beans.factory.annotation.Autowired;
  10. import org.springframework.stereotype.Service;
  11. import org.springframework.ui.Model;
  12. import org.springframework.util.StringUtils;
  13. /**
  14. * Created by kl on 2018/1/17.
  15. * Content :处理压缩包文件
  16. */
  17. @Service
  18. public class CompressFilePreviewImpl implements FilePreview{
  19. @Autowired
  20. FileUtils fileUtils;
  21. @Autowired
  22. DownloadUtils downloadUtils;
  23. @Autowired
  24. ZipReader zipReader;
  25. @Override
  26. public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
  27. String fileName=fileAttribute.getName();
  28. String suffix=fileAttribute.getSuffix();
  29. String fileTree = null;
  30. // 判断文件名是否存在(redis缓存读取)
  31. if (!StringUtils.hasText(fileUtils.getConvertedFile(fileName)) || !ConfigConstants.isCacheEnabled()) {
  32. ReturnResponse<String> response = downloadUtils.downLoad(fileAttribute, fileName);
  33. if (0 != response.getCode()) {
  34. model.addAttribute("fileType", suffix);
  35. model.addAttribute("msg", response.getMsg());
  36. return "fileNotSupported";
  37. }
  38. String filePath = response.getContent();
  39. if ("zip".equalsIgnoreCase(suffix) || "jar".equalsIgnoreCase(suffix) || "gzip".equalsIgnoreCase(suffix)) {
  40. fileTree = zipReader.readZipFile(filePath, fileName);
  41. } else if ("rar".equalsIgnoreCase(suffix)) {
  42. fileTree = zipReader.unRar(filePath, fileName);
  43. } else if ("7z".equalsIgnoreCase(suffix)) {
  44. fileTree = zipReader.read7zFile(filePath, fileName);
  45. }
  46. if (fileTree != null && !"null".equals(fileTree) && ConfigConstants.isCacheEnabled()) {
  47. fileUtils.addConvertedFile(fileName, fileTree);
  48. }
  49. } else {
  50. fileTree = fileUtils.getConvertedFile(fileName);
  51. }
  52. if (fileTree != null && !"null".equals(fileTree)) {
  53. model.addAttribute("fileTree", fileTree);
  54. return "compress";
  55. } else {
  56. model.addAttribute("fileType", suffix);
  57. model.addAttribute("msg", "压缩文件类型不受支持,尝试在压缩的时候选择RAR4格式");
  58. return "fileNotSupported";
  59. }
  60. }
  61. }