FileHandlerService.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. package cn.keking.service;
  2. import cn.keking.config.ConfigConstants;
  3. import cn.keking.model.FileAttribute;
  4. import cn.keking.model.FileType;
  5. import cn.keking.service.cache.CacheService;
  6. import cn.keking.service.cache.NotResourceCache;
  7. import cn.keking.utils.EncodingDetects;
  8. import cn.keking.utils.KkFileUtils;
  9. import cn.keking.utils.WebUtils;
  10. import com.aspose.cad.CodePages;
  11. import com.aspose.cad.Color;
  12. import com.aspose.cad.Image;
  13. import com.aspose.cad.LoadOptions;
  14. import com.aspose.cad.imageoptions.CadRasterizationOptions;
  15. import com.aspose.cad.imageoptions.PdfOptions;
  16. import org.apache.pdfbox.pdmodel.PDDocument;
  17. import org.apache.pdfbox.rendering.ImageType;
  18. import org.apache.pdfbox.rendering.PDFRenderer;
  19. import org.apache.pdfbox.tools.imageio.ImageIOUtil;
  20. import org.slf4j.Logger;
  21. import org.slf4j.LoggerFactory;
  22. import org.springframework.beans.factory.annotation.Value;
  23. import org.springframework.stereotype.Component;
  24. import org.springframework.util.CollectionUtils;
  25. import org.springframework.util.StringUtils;
  26. import javax.servlet.http.HttpServletRequest;
  27. import java.awt.image.BufferedImage;
  28. import java.io.*;
  29. import java.net.URL;
  30. import java.net.URLDecoder;
  31. import java.net.URLEncoder;
  32. import java.nio.charset.StandardCharsets;
  33. import java.util.ArrayList;
  34. import java.util.List;
  35. import java.util.Map;
  36. import java.util.Objects;
  37. import java.util.stream.IntStream;
  38. /**
  39. * @author yudian-it
  40. * @date 2017/11/13
  41. */
  42. @Component
  43. public class FileHandlerService {
  44. private final Logger logger = LoggerFactory.getLogger(FileHandlerService.class);
  45. private final String fileDir = ConfigConstants.getFileDir();
  46. private final static String pdf2jpg_image_format = ".jpg";
  47. private final CacheService cacheService;
  48. @Value("${server.tomcat.uri-encoding:UTF-8}")
  49. private String uriEncoding;
  50. public FileHandlerService(CacheService cacheService) {
  51. this.cacheService = cacheService;
  52. }
  53. /**
  54. * @return 已转换过的文件集合(缓存)
  55. */
  56. public Map<String, String> listConvertedFiles() {
  57. return cacheService.getPDFCache();
  58. }
  59. /**
  60. * @return 已转换过的文件,根据文件名获取
  61. */
  62. public String getConvertedFile(String key) {
  63. return cacheService.getPDFCache(key);
  64. }
  65. /**
  66. * @param key pdf本地路径
  67. * @return 已将pdf转换成图片的图片本地相对路径
  68. */
  69. public Integer getPdf2jpgCache(String key) {
  70. return cacheService.getPdfImageCache(key);
  71. }
  72. /**
  73. * 从路径中获取文件负
  74. *
  75. * @param path 类似这种:C:\Users\yudian-it\Downloads
  76. * @return 文件名
  77. */
  78. public String getFileNameFromPath(String path) {
  79. return path.substring(path.lastIndexOf(File.separator) + 1);
  80. }
  81. /**
  82. * 获取相对路径
  83. *
  84. * @param absolutePath 绝对路径
  85. * @return 相对路径
  86. */
  87. public String getRelativePath(String absolutePath) {
  88. return absolutePath.substring(fileDir.length());
  89. }
  90. /**
  91. * 添加转换后PDF缓存
  92. *
  93. * @param fileName pdf文件名
  94. * @param value 缓存相对路径
  95. */
  96. public void addConvertedFile(String fileName, String value) {
  97. cacheService.putPDFCache(fileName, value);
  98. }
  99. /**
  100. * 添加转换后图片组缓存
  101. *
  102. * @param pdfFilePath pdf文件绝对路径
  103. * @param num 图片张数
  104. */
  105. public void addPdf2jpgCache(String pdfFilePath, int num) {
  106. cacheService.putPdfImageCache(pdfFilePath, num);
  107. }
  108. /**
  109. * 获取redis中压缩包内图片文件
  110. *
  111. * @param fileKey fileKey
  112. * @return 图片文件访问url列表
  113. */
  114. public List<String> getImgCache(String fileKey) {
  115. return cacheService.getImgCache(fileKey);
  116. }
  117. /**
  118. * 设置redis中压缩包内图片文件
  119. *
  120. * @param fileKey fileKey
  121. * @param imgs 图片文件访问url列表
  122. */
  123. public void putImgCache(String fileKey, List<String> imgs) {
  124. cacheService.putImgCache(fileKey, imgs);
  125. }
  126. /**
  127. * 对转换后的文件进行操作(改变编码方式)
  128. *
  129. * @param outFilePath 文件绝对路径
  130. */
  131. public void doActionConvertedFile(String outFilePath) {
  132. String charset = EncodingDetects.getJavaEncode(outFilePath);
  133. StringBuilder sb = new StringBuilder();
  134. try (InputStream inputStream = new FileInputStream(outFilePath);
  135. BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, charset))) {
  136. String line;
  137. while (null != (line = reader.readLine())) {
  138. if (line.contains("charset=gb2312")) {
  139. line = line.replace("charset=gb2312", "charset=utf-8");
  140. }
  141. sb.append(line);
  142. }
  143. // 添加sheet控制头
  144. sb.append("<script src=\"js/jquery-3.6.1.min.js\" type=\"text/javascript\"></script>");
  145. sb.append("<script src=\"js/excel.header.js\" type=\"text/javascript\"></script>");
  146. sb.append("<link rel=\"stylesheet\" href=\"bootstrap/css/xlsx.css\">");
  147. } catch (IOException e) {
  148. e.printStackTrace();
  149. }
  150. // 重新写入文件
  151. try (FileOutputStream fos = new FileOutputStream(outFilePath);
  152. BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(fos, StandardCharsets.UTF_8))) {
  153. writer.write(sb.toString());
  154. } catch (IOException e) {
  155. e.printStackTrace();
  156. }
  157. }
  158. /**
  159. * 获取本地 pdf 转 image 后的 web 访问地址
  160. * @param pdfName pdf文件名
  161. * @param index 图片索引
  162. * @return 图片访问地址
  163. */
  164. private String getPdf2jpgUrl(String pdfName, int index) {
  165. String baseUrl = ConfigConstants.getBaseUrl();
  166. String pdfFolder = pdfName.substring(0, pdfName.length() - 4);
  167. String urlPrefix;
  168. try {
  169. urlPrefix = baseUrl + URLEncoder.encode(pdfFolder, uriEncoding).replaceAll("\\+", "%20");
  170. } catch (UnsupportedEncodingException e) {
  171. logger.error("UnsupportedEncodingException", e);
  172. urlPrefix = baseUrl + pdfFolder;
  173. }
  174. return urlPrefix + "/" + index + pdf2jpg_image_format;
  175. }
  176. /**
  177. * 获取缓存中的 pdf 转换成 jpg 图片集
  178. * @param pdfFilePath pdf文件路径
  179. * @param pdfName pdf文件名称
  180. * @return 图片访问集合
  181. */
  182. private List<String> loadPdf2jpgCache(String pdfFilePath, String pdfName) {
  183. List<String> imageUrls = new ArrayList<>();
  184. Integer imageCount = this.getPdf2jpgCache(pdfFilePath);
  185. if (Objects.isNull(imageCount)) {
  186. return imageUrls;
  187. }
  188. IntStream.range(0, imageCount).forEach(i -> {
  189. String imageUrl = this.getPdf2jpgUrl(pdfName, i);
  190. imageUrls.add(imageUrl);
  191. });
  192. return imageUrls;
  193. }
  194. /**
  195. * pdf文件转换成jpg图片集
  196. *
  197. * @param pdfFilePath pdf文件路径
  198. * @param pdfName pdf文件名称
  199. * @return 图片访问集合
  200. */
  201. public List<String> pdf2jpg(String pdfFilePath, String pdfName, FileAttribute fileAttribute) {
  202. boolean forceUpdatedCache = fileAttribute.forceUpdatedCache();
  203. if (!forceUpdatedCache) {
  204. List<String> cacheResult = this.loadPdf2jpgCache(pdfFilePath, pdfName);
  205. if (!CollectionUtils.isEmpty(cacheResult)) {
  206. return cacheResult;
  207. }
  208. }
  209. List<String> imageUrls = new ArrayList<>();
  210. try {
  211. File pdfFile = new File(pdfFilePath);
  212. if (!pdfFile.exists()) {
  213. return null;
  214. }
  215. PDDocument doc = PDDocument.load(pdfFile);
  216. doc.setResourceCache(new NotResourceCache());
  217. int pageCount = doc.getNumberOfPages();
  218. PDFRenderer pdfRenderer = new PDFRenderer(doc);
  219. int index = pdfFilePath.lastIndexOf(".");
  220. String folder = pdfFilePath.substring(0, index);
  221. File path = new File(folder);
  222. if (!path.exists() && !path.mkdirs()) {
  223. logger.error("创建转换文件【{}】目录失败,请检查目录权限!", folder);
  224. }
  225. String imageFilePath;
  226. for (int pageIndex = 0; pageIndex < pageCount; pageIndex++) {
  227. imageFilePath = folder + File.separator + pageIndex + pdf2jpg_image_format;
  228. BufferedImage image = pdfRenderer.renderImageWithDPI(pageIndex, 105, ImageType.RGB);
  229. ImageIOUtil.writeImage(image, imageFilePath, 105);
  230. String imageUrl = this.getPdf2jpgUrl(pdfName, pageIndex);
  231. imageUrls.add(imageUrl);
  232. }
  233. doc.close();
  234. this.addPdf2jpgCache(pdfFilePath, pageCount);
  235. } catch (IOException e) {
  236. logger.error("Convert pdf to jpg exception, pdfFilePath:{}", pdfFilePath, e);
  237. }
  238. return imageUrls;
  239. }
  240. /**
  241. * cad文件转pdf
  242. *
  243. * @param inputFilePath cad文件路径
  244. * @param outputFilePath pdf输出文件路径
  245. * @return 转换是否成功
  246. */
  247. public boolean cadToPdf(String inputFilePath, String outputFilePath) {
  248. File outputFile = new File(outputFilePath);
  249. LoadOptions opts = new LoadOptions();
  250. opts.setSpecifiedEncoding(CodePages.SimpChinese);
  251. com.aspose.cad.Image cadImage = Image.load(inputFilePath, opts);
  252. CadRasterizationOptions cadRasterizationOptions = new CadRasterizationOptions();
  253. cadRasterizationOptions.setBackgroundColor(Color.getWhite());
  254. cadRasterizationOptions.setPageWidth(1400);
  255. cadRasterizationOptions.setPageHeight(650);
  256. cadRasterizationOptions.setAutomaticLayoutsScaling(true);
  257. cadRasterizationOptions.setNoScaling(false);
  258. cadRasterizationOptions.setDrawType(1);
  259. PdfOptions pdfOptions = new PdfOptions();
  260. pdfOptions.setVectorRasterizationOptions(cadRasterizationOptions);
  261. OutputStream stream;
  262. try {
  263. stream = new FileOutputStream(outputFile);
  264. cadImage.save(stream, pdfOptions);
  265. stream.close();
  266. cadImage.close();
  267. return true;
  268. } catch (IOException e) {
  269. logger.error("PDFFileNotFoundException,inputFilePath:{}", inputFilePath, e);
  270. } finally {
  271. if (cadImage != null) { //关闭
  272. cadImage.close();
  273. }
  274. }
  275. return false;
  276. }
  277. /**
  278. * 获取文件属性
  279. *
  280. * @param url url
  281. * @return 文件属性
  282. */
  283. public FileAttribute getFileAttribute(String url, HttpServletRequest req) {
  284. FileAttribute attribute = new FileAttribute();
  285. String suffix;
  286. FileType type;
  287. String fileName;
  288. String fullFileName = WebUtils.getUrlParameterReg(url, "fullfilename");
  289. String urlStrr = null;
  290. URL urll;
  291. try {
  292. urll = new URL(url);
  293. urlStrr = URLDecoder.decode(urll.getPath(), "UTF-8");
  294. } catch (Exception e) {
  295. }
  296. if (StringUtils.hasText(fullFileName)) {
  297. fileName = fullFileName;
  298. type = FileType.typeFromFileName(fullFileName);
  299. suffix = KkFileUtils.suffixFromFileName(fullFileName);
  300. } else {
  301. fileName = WebUtils.getFileNameFromURL(url);
  302. type = FileType.typeFromUrl(url);
  303. suffix = WebUtils.suffixFromUrl(url);
  304. }
  305. if (url.contains("?fileKey=")) {
  306. fileName = urlStrr;
  307. attribute.setSkipDownLoad(true);
  308. }
  309. // System.out.println(fileName);
  310. url = WebUtils.encodeUrlFileName(url);
  311. fileName = KkFileUtils.htmlEscape(fileName); //文件名处理
  312. attribute.setType(type);
  313. attribute.setName(fileName);
  314. attribute.setSuffix(suffix);
  315. attribute.setUrl(url);
  316. if (req != null) {
  317. String officePreviewType = req.getParameter("officePreviewType");
  318. String forceUpdatedCache = req.getParameter("forceUpdatedCache");
  319. String fileKey = WebUtils.getUrlParameterReg(url, "fileKey");
  320. if (StringUtils.hasText(officePreviewType)) {
  321. attribute.setOfficePreviewType(officePreviewType);
  322. }
  323. if (StringUtils.hasText(fileKey)) {
  324. attribute.setFileKey(fileKey);
  325. }
  326. if ("true".equalsIgnoreCase(forceUpdatedCache)) {
  327. attribute.setforceUpdatedCache(true);
  328. }
  329. String tifPreviewType = req.getParameter("tifPreviewType");
  330. if (StringUtils.hasText(tifPreviewType)) {
  331. attribute.setTifPreviewType(tifPreviewType);
  332. }
  333. String filePassword = req.getParameter("filePassword");
  334. if (StringUtils.hasText(filePassword)) {
  335. attribute.setFilePassword(filePassword);
  336. }
  337. String userToken = req.getParameter("userToken");
  338. if (StringUtils.hasText(userToken)) {
  339. attribute.setUserToken(userToken);
  340. }
  341. }
  342. return attribute;
  343. }
  344. /**
  345. * @return 已转换过的视频文件集合(缓存)
  346. */
  347. public Map<String, String> listConvertedMedias() {
  348. return cacheService.getMediaConvertCache();
  349. }
  350. /**
  351. * 添加转换后的视频文件缓存
  352. *
  353. * @param fileName
  354. * @param value
  355. */
  356. public void addConvertedMedias(String fileName, String value) {
  357. cacheService.putMediaConvertCache(fileName, value);
  358. }
  359. /**
  360. * @return 已转换视频文件缓存,根据文件名获取
  361. */
  362. public String getConvertedMedias(String key) {
  363. return cacheService.getMediaConvertCache(key);
  364. }
  365. }