mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2025-04-05 17:37:49 +08:00

* 1. 修复getCorsFile接口高危安全漏洞 * 1. 优化密码错误提示(“密码错误,请重新输入密码。”) * 1. 修复PPT重复预览bug,此bug导致ppt每次预览会执行两次转换(请求两次onlinePreview接口),在大文件尤其耗时(双倍时… * 1. 【加密office预览】优化受密码保护的office文件检查逻辑,提升旧文件格式的兼容性 * 1. 【加密office预览】优化office文件是否受密码保护判断逻辑,避免兼容性误判 * 1. 【加密office预览】优化重新输入密码提示。 * 1. 【加密office预览】优化当密码输入错误后,不是抛出异常,而是提示用户重新输入 * 1. 优化prompt提示框的输入密码提示样式 * 1. 实现基于userToken缓存加密文件,没有userToken的加密文件不缓存 * 1. 优化docker构建方案,使用分层构建方式,采用层级缓存解决构建慢发布慢等问题。从原本5分钟左右缩短至几秒 * 1. 加密文件暂时不缓存(后续基于用户token实现,基于用户缓存) * 1. 优化office文件下载逻辑,跳过重复下载(大量节约带宽与磁盘空间)。 * 1. 修复预览不同类型的加密office文件bug * 实现预览加密的(受密码保护)office文件
70 lines
2.6 KiB
Java
70 lines
2.6 KiB
Java
package cn.keking.service;
|
|
|
|
import cn.keking.model.FileAttribute;
|
|
import org.artofsolving.jodconverter.OfficeDocumentConverter;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import java.io.File;
|
|
|
|
/**
|
|
* @author yudian-it
|
|
*/
|
|
@Component
|
|
public class OfficeToPdfService {
|
|
|
|
private final static Logger logger = LoggerFactory.getLogger(OfficeToPdfService.class);
|
|
private final OfficePluginManager officePluginManager;
|
|
|
|
public OfficeToPdfService(OfficePluginManager officePluginManager) {
|
|
this.officePluginManager = officePluginManager;
|
|
}
|
|
|
|
public void openOfficeToPDF(String inputFilePath, String outputFilePath, FileAttribute fileAttribute) {
|
|
office2pdf(inputFilePath, outputFilePath, fileAttribute);
|
|
}
|
|
|
|
|
|
public static void converterFile(File inputFile, String outputFilePath_end, OfficeDocumentConverter converter, FileAttribute fileAttribute) {
|
|
File outputFile = new File(outputFilePath_end);
|
|
// 假如目标路径不存在,则新建该路径
|
|
if (!outputFile.getParentFile().exists() && !outputFile.getParentFile().mkdirs()) {
|
|
logger.error("创建目录【{}】失败,请检查目录权限!",outputFilePath_end);
|
|
}
|
|
|
|
converter.convert(inputFile, outputFile, fileAttribute.toFileProperties());
|
|
}
|
|
|
|
|
|
public void office2pdf(String inputFilePath, String outputFilePath, FileAttribute fileAttribute) {
|
|
OfficeDocumentConverter converter = officePluginManager.getDocumentConverter();
|
|
if (null != inputFilePath) {
|
|
File inputFile = new File(inputFilePath);
|
|
// 判断目标文件路径是否为空
|
|
if (null == outputFilePath) {
|
|
// 转换后的文件路径
|
|
String outputFilePath_end = getOutputFilePath(inputFilePath);
|
|
if (inputFile.exists()) {
|
|
// 找不到源文件, 则返回
|
|
converterFile(inputFile, outputFilePath_end, converter, fileAttribute);
|
|
}
|
|
} else {
|
|
if (inputFile.exists()) {
|
|
// 找不到源文件, 则返回
|
|
converterFile(inputFile, outputFilePath, converter, fileAttribute);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public static String getOutputFilePath(String inputFilePath) {
|
|
return inputFilePath.replaceAll("."+ getPostfix(inputFilePath), ".pdf");
|
|
}
|
|
|
|
public static String getPostfix(String inputFilePath) {
|
|
return inputFilePath.substring(inputFilePath.lastIndexOf(".") + 1);
|
|
}
|
|
|
|
}
|