123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- package cn.keking.service.impl;
- import cn.keking.config.ConfigConstants;
- import cn.keking.model.FileAttribute;
- import cn.keking.model.ReturnResponse;
- import cn.keking.service.FileHandlerService;
- import cn.keking.service.FilePreview;
- import cn.keking.service.OfficeToPdfService;
- import cn.keking.utils.DownloadUtils;
- import cn.keking.utils.KkFileUtils;
- import cn.keking.utils.OfficeUtils;
- import cn.keking.web.filter.BaseUrlFilter;
- import org.apache.commons.lang3.exception.ExceptionUtils;
- import org.apache.poi.EncryptedDocumentException;
- import org.jodconverter.core.office.OfficeException;
- import org.springframework.stereotype.Service;
- import org.springframework.ui.Model;
- import org.springframework.util.ObjectUtils;
- import org.springframework.util.StringUtils;
- import java.io.IOException;
- import java.util.List;
- /**
- * Created by kl on 2018/1/17.
- * Content :处理office文件
- */
- @Service
- public class OfficeFilePreviewImpl implements FilePreview {
- public static final String OFFICE_PREVIEW_TYPE_IMAGE = "image";
- public static final String OFFICE_PREVIEW_TYPE_ALL_IMAGES = "allImages";
- private static final String OFFICE_PASSWORD_MSG = "password";
- private final FileHandlerService fileHandlerService;
- private final OfficeToPdfService officeToPdfService;
- private final OtherFilePreviewImpl otherFilePreview;
- public OfficeFilePreviewImpl(FileHandlerService fileHandlerService, OfficeToPdfService officeToPdfService, OtherFilePreviewImpl otherFilePreview) {
- this.fileHandlerService = fileHandlerService;
- this.officeToPdfService = officeToPdfService;
- this.otherFilePreview = otherFilePreview;
- }
- @Override
- public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
- // 预览Type,参数传了就取参数的,没传取系统默认
- String officePreviewType = fileAttribute.getOfficePreviewType();
- boolean userToken = fileAttribute.getUsePasswordCache();
- String baseUrl = BaseUrlFilter.getBaseUrl();
- String suffix = fileAttribute.getSuffix(); //获取文件后缀
- String fileName = fileAttribute.getName(); //获取文件原始名称
- String filePassword = fileAttribute.getFilePassword(); //获取密码
- boolean forceUpdatedCache=fileAttribute.forceUpdatedCache(); //是否启用强制更新命令
- boolean isHtmlView = fileAttribute.isHtmlView(); //xlsx 转换成html
- String cacheName = fileAttribute.getCacheName(); //转换后的文件名
- String outFilePath = fileAttribute.getOutFilePath(); //转换后生成文件的路径
- if (!officePreviewType.equalsIgnoreCase("html")) {
- if (ConfigConstants.getOfficeTypeWeb() .equalsIgnoreCase("web")) {
- if (suffix.equalsIgnoreCase("xlsx")) {
- model.addAttribute("pdfUrl", KkFileUtils.htmlEscape(url)); //特殊符号处理
- return XLSX_FILE_PREVIEW_PAGE;
- }
- if (suffix.equalsIgnoreCase("csv")) {
- model.addAttribute("csvUrl", KkFileUtils.htmlEscape(url));
- return CSV_FILE_PREVIEW_PAGE;
- }
- }
- }
- if (forceUpdatedCache|| !fileHandlerService.listConvertedFiles().containsKey(cacheName) || !ConfigConstants.isCacheEnabled()) {
- // 下载远程文件到本地,如果文件在本地已存在不会重复下载
- ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileName);
- if (response.isFailure()) {
- return otherFilePreview.notSupportedFile(url, model, fileAttribute, response.getMsg());
- }
- String filePath = response.getContent();
- boolean isPwdProtectedOffice = OfficeUtils.isPwdProtected(filePath); // 判断是否加密文件
- if (isPwdProtectedOffice && !StringUtils.hasLength(filePassword)) {
- // 加密文件需要密码
- model.addAttribute("needFilePassword", true);
- return EXEL_FILE_PREVIEW_PAGE;
- } else {
- if (StringUtils.hasText(outFilePath)) {
- try {
- officeToPdfService.openOfficeToPDF(filePath, outFilePath, fileAttribute);
- } catch (OfficeException e) {
- if (isPwdProtectedOffice && !OfficeUtils.isCompatible(filePath, filePassword)) {
- // 加密文件密码错误,提示重新输入
- model.addAttribute("needFilePassword", true);
- model.addAttribute("filePasswordError", true);
- return EXEL_FILE_PREVIEW_PAGE;
- }
- return otherFilePreview.notSupportedFile(url, model, fileAttribute, "抱歉,该文件版本不兼容,文件版本错误。");
- }
- if (isHtmlView) {
- // 对转换后的文件进行操作(改变编码方式)
- fileHandlerService.doActionConvertedFile(outFilePath);
- }
- //是否保留OFFICE源文件
- if (!fileAttribute.isCompressFile() && ConfigConstants.getDeleteSourceFile()) {
- KkFileUtils.deleteFileByPath(filePath);
- }
- if (userToken || !isPwdProtectedOffice) {
- // 加入缓存
- fileHandlerService.addConvertedFile(cacheName, fileHandlerService.getRelativePath(outFilePath));
- }
- }
- }
- }
- if (!isHtmlView && baseUrl != null && (OFFICE_PREVIEW_TYPE_IMAGE.equals(officePreviewType) || OFFICE_PREVIEW_TYPE_ALL_IMAGES.equals(officePreviewType))) {
- return getPreviewType(model, fileAttribute, officePreviewType, cacheName, outFilePath, fileHandlerService, OFFICE_PREVIEW_TYPE_IMAGE, otherFilePreview);
- }
- model.addAttribute("pdfUrl", cacheName);
- return isHtmlView ? EXEL_FILE_PREVIEW_PAGE : PDF_FILE_PREVIEW_PAGE;
- }
- static String getPreviewType(Model model, FileAttribute fileAttribute, String officePreviewType, String pdfName, String outFilePath, FileHandlerService fileHandlerService, String officePreviewTypeImage, OtherFilePreviewImpl otherFilePreview) {
- String suffix = fileAttribute.getSuffix();
- boolean isPPT = suffix.equalsIgnoreCase("ppt") || suffix.equalsIgnoreCase("pptx");
- List<String> imageUrls = null;
- try {
- imageUrls = fileHandlerService.pdf2jpg(outFilePath,outFilePath, pdfName, fileAttribute);
- } catch (Exception e) {
- Throwable[] throwableArray = ExceptionUtils.getThrowables(e);
- for (Throwable throwable : throwableArray) {
- if (throwable instanceof IOException || throwable instanceof EncryptedDocumentException) {
- if (e.getMessage().toLowerCase().contains(OFFICE_PASSWORD_MSG)) {
- model.addAttribute("needFilePassword", true);
- return EXEL_FILE_PREVIEW_PAGE;
- }
- }
- }
- }
- if (imageUrls == null || imageUrls.size() < 1) {
- return otherFilePreview.notSupportedFile(null, model, fileAttribute, "office转图片异常,请联系管理员");
- }
- model.addAttribute("imgUrls", imageUrls);
- model.addAttribute("currentUrl", imageUrls.get(0));
- if (officePreviewTypeImage.equals(officePreviewType)) {
- // PPT 图片模式使用专用预览页面
- return (isPPT ? PPT_FILE_PREVIEW_PAGE : OFFICE_PICTURE_FILE_PREVIEW_PAGE);
- } else {
- return PICTURE_FILE_PREVIEW_PAGE;
- }
- }
- }
|