OnlinePreviewController.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. package cn.keking.web.controller;
  2. import cn.keking.config.ConfigConstants;
  3. import cn.keking.model.FileAttribute;
  4. import cn.keking.service.FilePreview;
  5. import cn.keking.service.FilePreviewFactory;
  6. import cn.keking.service.cache.CacheService;
  7. import cn.keking.utils.FileUtils;
  8. import org.apache.commons.io.IOUtils;
  9. import org.slf4j.Logger;
  10. import org.slf4j.LoggerFactory;
  11. import org.springframework.beans.factory.annotation.Autowired;
  12. import org.springframework.stereotype.Controller;
  13. import org.springframework.ui.Model;
  14. import org.springframework.web.bind.annotation.GetMapping;
  15. import org.springframework.web.bind.annotation.RequestMapping;
  16. import org.springframework.web.bind.annotation.RequestMethod;
  17. import org.springframework.web.bind.annotation.ResponseBody;
  18. import javax.servlet.http.HttpServletRequest;
  19. import javax.servlet.http.HttpServletResponse;
  20. import java.io.*;
  21. import java.net.*;
  22. import java.util.Arrays;
  23. import java.util.List;
  24. /**
  25. * @author yudian-it
  26. */
  27. @Controller
  28. public class OnlinePreviewController {
  29. private static final Logger LOGGER = LoggerFactory.getLogger(OnlinePreviewController.class);
  30. @Autowired
  31. FilePreviewFactory previewFactory;
  32. @Autowired
  33. CacheService cacheService;
  34. @Autowired
  35. private FileUtils fileUtils;
  36. private String fileDir = ConfigConstants.getFileDir();
  37. /**
  38. * @param url
  39. * @param model
  40. * @return
  41. */
  42. @RequestMapping(value = "onlinePreview", method = RequestMethod.GET)
  43. public String onlinePreview(String url, Model model, HttpServletRequest req) {
  44. FileAttribute fileAttribute = fileUtils.getFileAttribute(url);
  45. req.setAttribute("fileKey", req.getParameter("fileKey"));
  46. model.addAttribute("officePreviewType", req.getParameter("officePreviewType"));
  47. model.addAttribute("originUrl", req.getRequestURL().toString());
  48. FilePreview filePreview = previewFactory.get(fileAttribute);
  49. return filePreview.filePreviewHandle(url, model, fileAttribute);
  50. }
  51. /**
  52. * 多图片切换预览
  53. *
  54. * @param model
  55. * @param req
  56. * @return
  57. * @throws UnsupportedEncodingException
  58. */
  59. @RequestMapping(value = "picturesPreview", method = RequestMethod.GET)
  60. public String picturesPreview(String urls, String currentUrl, Model model, HttpServletRequest req) throws UnsupportedEncodingException {
  61. // 路径转码
  62. String decodedUrl = URLDecoder.decode(urls, "utf-8");
  63. String decodedCurrentUrl = URLDecoder.decode(currentUrl, "utf-8");
  64. // 抽取文件并返回文件列表
  65. String[] imgs = decodedUrl.split("\\|");
  66. List imgurls = Arrays.asList(imgs);
  67. model.addAttribute("imgurls", imgurls);
  68. model.addAttribute("currentUrl",decodedCurrentUrl);
  69. return "picture";
  70. }
  71. @RequestMapping(value = "picturesPreview", method = RequestMethod.POST)
  72. public String picturesPreview(Model model, HttpServletRequest req) throws UnsupportedEncodingException {
  73. String urls = req.getParameter("urls");
  74. String currentUrl = req.getParameter("currentUrl");
  75. // 路径转码
  76. String decodedUrl = URLDecoder.decode(urls, "utf-8");
  77. String decodedCurrentUrl = URLDecoder.decode(currentUrl, "utf-8");
  78. // 抽取文件并返回文件列表
  79. String[] imgs = decodedUrl.split("\\|");
  80. List imgurls = Arrays.asList(imgs);
  81. model.addAttribute("imgurls", imgurls);
  82. model.addAttribute("currentUrl",decodedCurrentUrl);
  83. return "picture";
  84. }
  85. /**
  86. * 根据url获取文件内容
  87. * 当pdfjs读取存在跨域问题的文件时将通过此接口读取
  88. *
  89. * @param urlPath
  90. * @param resp
  91. */
  92. @RequestMapping(value = "/getCorsFile", method = RequestMethod.GET)
  93. public void getCorsFile(String urlPath, HttpServletResponse resp) {
  94. InputStream inputStream = null;
  95. try {
  96. String strUrl = urlPath.trim();
  97. URL url = new URL(new URI(strUrl).toASCIIString());
  98. //打开请求连接
  99. URLConnection connection = url.openConnection();
  100. HttpURLConnection httpURLConnection = (HttpURLConnection) connection;
  101. httpURLConnection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
  102. inputStream = httpURLConnection.getInputStream();
  103. byte[] bs = new byte[1024];
  104. int len;
  105. while (-1 != (len = inputStream.read(bs))) {
  106. resp.getOutputStream().write(bs, 0, len);
  107. }
  108. } catch (IOException | URISyntaxException e) {
  109. LOGGER.error("下载pdf文件失败", e);
  110. } finally {
  111. if (inputStream != null) {
  112. IOUtils.closeQuietly(inputStream);
  113. }
  114. }
  115. }
  116. /**
  117. * 通过api接口入队
  118. * @param url 请编码后在入队
  119. */
  120. @GetMapping("/addTask")
  121. @ResponseBody
  122. public String addQueueTask(String url) {
  123. cacheService.addQueueTask(url);
  124. return "success";
  125. }
  126. }