mirror of
https://github.com/kekingcn/kkFileView.git
synced 2026-04-02 16:20:30 +00:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8dbb228617 | ||
|
|
11d0441ed4 | ||
|
|
ef46e2c51e | ||
|
|
0a3c03f18b | ||
|
|
7a7e1a1855 | ||
|
|
f530f441d5 | ||
|
|
10160e8104 | ||
|
|
602e80ee9e | ||
|
|
9c83860e1b |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -17,7 +17,6 @@ target/
|
|||||||
|
|
||||||
### NetBeans ###
|
### NetBeans ###
|
||||||
nbproject/private/
|
nbproject/private/
|
||||||
build/
|
|
||||||
nbbuild/
|
nbbuild/
|
||||||
dist/
|
dist/
|
||||||
nbdist/
|
nbdist/
|
||||||
@@ -29,4 +28,3 @@ nbdist/
|
|||||||
|
|
||||||
server/src/main/cache/
|
server/src/main/cache/
|
||||||
server/src/main/file/
|
server/src/main/file/
|
||||||
server/src/main/log
|
|
||||||
@@ -28,5 +28,5 @@ ENV CLASSPATH $JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
|
|||||||
ENV PATH $PATH:$JAVA_HOME/bin
|
ENV PATH $PATH:$JAVA_HOME/bin
|
||||||
ENV LANG zh_CN.UTF-8
|
ENV LANG zh_CN.UTF-8
|
||||||
ENV LC_ALL zh_CN.UTF-8
|
ENV LC_ALL zh_CN.UTF-8
|
||||||
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-2.2.1/bin
|
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-3.3.0/bin
|
||||||
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider","-Dspring.config.location=/opt/kkFileView-2.2.1/config/application.properties","-jar","/opt/kkFileView-2.2.1/bin/kkFileView-2.2.1.jar"]
|
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider","-Dspring.config.location=/opt/kkFileView-3.3.0/config/application.properties","-jar","/opt/kkFileView-3.3.0/bin/kkFileView-3.3.0.jar"]
|
||||||
20
README.md
20
README.md
@@ -109,6 +109,26 @@ pdf预览模式预览效果如下
|
|||||||
|
|
||||||
### 历史更新记录
|
### 历史更新记录
|
||||||
|
|
||||||
|
> 2020年12月27日 :
|
||||||
|
|
||||||
|
2020年年终大版本更新,架构全面设计,代码全面重构,代码质量全面提升,二次开发更便捷,欢迎拉源码品鉴,提issue、pr共同建设
|
||||||
|
|
||||||
|
1. 架构模块调整,大量的代码重构,代码质量提升N个等级,欢迎品鉴
|
||||||
|
2. 增强XML文件预览效果,新增XML文档数结构预览
|
||||||
|
3. 新增markdown文件预览支持,预览支持md渲染和源文本切换支持
|
||||||
|
4. 切换底层web server为jetty,解决这个issue:https://github.com/kekingcn/kkFileView/issues/168
|
||||||
|
5. 引入cpdetector,解决文件编码识别问题
|
||||||
|
6. url采用base64+urlencode双编码,彻底解决各种奇葩文件名预览问题
|
||||||
|
7. 新增配置项office.preview.switch.disabled,控制offic文件预览切换开关
|
||||||
|
8. 优化文本类型文件预览逻辑,采用Base64传输内容,避免预览时再次请求文件内容
|
||||||
|
9. office预览图片模式禁用图片放大效果,达到图片和pdf预览效果一致的体验
|
||||||
|
10. 直接代码静态设置pdfbox兼容低版本jdk,在IDEA中运行也不会有警告提示
|
||||||
|
11. 移除guava、hutool等非必须的工具包,减少代码体积
|
||||||
|
12. Office组件加载异步化,提速应用启动速度最快到5秒内
|
||||||
|
13. 合理设置预览消费队列的线程数
|
||||||
|
14. 修复压缩包里文件再次预览失败的bug
|
||||||
|
15. 修复图片预览的bug
|
||||||
|
|
||||||
> 2020年05月20日 :
|
> 2020年05月20日 :
|
||||||
1. 新增支持全局水印,并支持通过参数动态改变水印内容
|
1. 新增支持全局水印,并支持通过参数动态改变水印内容
|
||||||
2. 新增支持CAD文件预览
|
2. 新增支持CAD文件预览
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<groupId>cn.keking</groupId>
|
<groupId>cn.keking</groupId>
|
||||||
<artifactId>filepreview</artifactId>
|
<artifactId>filepreview</artifactId>
|
||||||
<version>2.2.1</version>
|
<version>3.3.0</version>
|
||||||
<modules>
|
<modules>
|
||||||
<module>office-plugin</module>
|
<module>office-plugin</module>
|
||||||
<module>server</module>
|
<module>server</module>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
<groupId>cn.keking</groupId>
|
<groupId>cn.keking</groupId>
|
||||||
<artifactId>kkFileView</artifactId>
|
<artifactId>kkFileView</artifactId>
|
||||||
<version>2.2.1</version>
|
<version>3.3.0</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
@@ -201,6 +201,12 @@
|
|||||||
<scope>system</scope>
|
<scope>system</scope>
|
||||||
<systemPath>${basedir}/lib/cpdetector-1.04.jar</systemPath>
|
<systemPath>${basedir}/lib/cpdetector-1.04.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- url 规范化 -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.mola.galimatias</groupId>
|
||||||
|
<artifactId>galimatias</artifactId>
|
||||||
|
<version>0.2.1</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<build>
|
<build>
|
||||||
<resources>
|
<resources>
|
||||||
|
|||||||
@@ -6,4 +6,4 @@ echo Starting kkFileView...
|
|||||||
echo Please check log file in ../log/kkFileView.log for more information
|
echo Please check log file in ../log/kkFileView.log for more information
|
||||||
echo You can get help in our official homesite: https://kkFileView.keking.cn
|
echo You can get help in our official homesite: https://kkFileView.keking.cn
|
||||||
echo If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers
|
echo If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers
|
||||||
java -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider -Dspring.config.location=..\config\application.properties -jar kkFileView-2.2.1.jar -> ..\log\kkFileView.log
|
java -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider -Dspring.config.location=..\config\application.properties -jar kkFileView-3.3.0.jar -> ..\log\kkFileView.log
|
||||||
@@ -29,4 +29,4 @@ echo "Starting kkFileView..."
|
|||||||
echo "Please execute ./showlog.sh to check log for more information"
|
echo "Please execute ./showlog.sh to check log for more information"
|
||||||
echo "You can get help in our official homesite: https://kkFileView.keking.cn"
|
echo "You can get help in our official homesite: https://kkFileView.keking.cn"
|
||||||
echo "If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers"
|
echo "If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers"
|
||||||
nohup java -Dfile.encoding=UTF-8 -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider -Dspring.config.location=../config/application.properties -jar kkFileView-2.2.1.jar > ../log/kkFileView.log 2>&1 &
|
nohup java -Dfile.encoding=UTF-8 -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider -Dspring.config.location=../config/application.properties -jar kkFileView-3.3.0.jar > ../log/kkFileView.log 2>&1 &
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import java.util.Map;
|
|||||||
* Content :文件类型,文本,office,压缩包等等
|
* Content :文件类型,文本,office,压缩包等等
|
||||||
*/
|
*/
|
||||||
public enum FileType {
|
public enum FileType {
|
||||||
|
|
||||||
picture("pictureFilePreviewImpl"),
|
picture("pictureFilePreviewImpl"),
|
||||||
compress("compressFilePreviewImpl"),
|
compress("compressFilePreviewImpl"),
|
||||||
office("officeFilePreviewImpl"),
|
office("officeFilePreviewImpl"),
|
||||||
@@ -19,12 +20,13 @@ public enum FileType {
|
|||||||
media("mediaFilePreviewImpl"),
|
media("mediaFilePreviewImpl"),
|
||||||
markdown("markdownFilePreviewImpl"),
|
markdown("markdownFilePreviewImpl"),
|
||||||
xml("xmlFilePreviewImpl"),
|
xml("xmlFilePreviewImpl"),
|
||||||
|
flv("flvFilePreviewImpl"),
|
||||||
cad("cadFilePreviewImpl");
|
cad("cadFilePreviewImpl");
|
||||||
|
|
||||||
private static final String[] OFFICE_TYPES = {"docx", "doc", "xls", "xlsx", "ppt", "pptx"};
|
private static final String[] OFFICE_TYPES = {"docx", "doc", "xls", "xlsx", "ppt", "pptx"};
|
||||||
private static final String[] PICTURE_TYPES = {"jpg", "jpeg", "png", "gif", "bmp", "ico", "RAW"};
|
private static final String[] PICTURE_TYPES = {"jpg", "jpeg", "png", "gif", "bmp", "ico", "RAW"};
|
||||||
private static final String[] ARCHIVE_TYPES = {"rar", "zip", "jar", "7-zip", "tar", "gzip", "7z"};
|
private static final String[] ARCHIVE_TYPES = {"rar", "zip", "jar", "7-zip", "tar", "gzip", "7z"};
|
||||||
private static final String[] SIMTEXT_TYPES = ConfigConstants.getSimText();
|
private static final String[] SSIM_TEXT_TYPES = ConfigConstants.getSimText();
|
||||||
private static final String[] MEDIA_TYPES = ConfigConstants.getMedia();
|
private static final String[] MEDIA_TYPES = ConfigConstants.getMedia();
|
||||||
private static final Map<String, FileType> FILE_TYPE_MAPPER = new HashMap<>();
|
private static final Map<String, FileType> FILE_TYPE_MAPPER = new HashMap<>();
|
||||||
|
|
||||||
@@ -38,7 +40,7 @@ public enum FileType {
|
|||||||
for (String archive : ARCHIVE_TYPES) {
|
for (String archive : ARCHIVE_TYPES) {
|
||||||
FILE_TYPE_MAPPER.put(archive, FileType.compress);
|
FILE_TYPE_MAPPER.put(archive, FileType.compress);
|
||||||
}
|
}
|
||||||
for (String text : SIMTEXT_TYPES) {
|
for (String text : SSIM_TEXT_TYPES) {
|
||||||
FILE_TYPE_MAPPER.put(text, FileType.simText);
|
FILE_TYPE_MAPPER.put(text, FileType.simText);
|
||||||
}
|
}
|
||||||
for (String media : MEDIA_TYPES) {
|
for (String media : MEDIA_TYPES) {
|
||||||
@@ -48,6 +50,8 @@ public enum FileType {
|
|||||||
FILE_TYPE_MAPPER.put("xml", FileType.xml);
|
FILE_TYPE_MAPPER.put("xml", FileType.xml);
|
||||||
FILE_TYPE_MAPPER.put("pdf", FileType.pdf);
|
FILE_TYPE_MAPPER.put("pdf", FileType.pdf);
|
||||||
FILE_TYPE_MAPPER.put("dwg", FileType.cad);
|
FILE_TYPE_MAPPER.put("dwg", FileType.cad);
|
||||||
|
FILE_TYPE_MAPPER.put("flv", FileType.flv);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static FileType to(String fileType){
|
private static FileType to(String fileType){
|
||||||
|
|||||||
@@ -8,5 +8,16 @@ import org.springframework.ui.Model;
|
|||||||
* Content :
|
* Content :
|
||||||
*/
|
*/
|
||||||
public interface FilePreview {
|
public interface FilePreview {
|
||||||
|
|
||||||
|
String FLV_FILE_PREVIEW_PAGE = "flv";
|
||||||
|
String PDF_FILE_PREVIEW_PAGE = "pdf";
|
||||||
|
String COMPRESS_FILE_PREVIEW_PAGE = "compress";
|
||||||
|
String MEDIA_FILE_PREVIEW_PAGE = "media";
|
||||||
|
String PICTURE_FILE_PREVIEW_PAGE = "picture";
|
||||||
|
String OFFICE_PICTURE_FILE_PREVIEW_PAGE = "officePicture";
|
||||||
|
String TXT_FILE_PREVIEW_PAGE = "txt";
|
||||||
|
String EXEL_FILE_PREVIEW_PAGE = "html";
|
||||||
|
String NOT_SUPPORTED_FILE_PAGE = "fileNotSupported";
|
||||||
|
|
||||||
String filePreviewHandle(String url, Model model, FileAttribute fileAttribute);
|
String filePreviewHandle(String url, Model model, FileAttribute fileAttribute);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,9 +25,11 @@ public class CadFilePreviewImpl implements FilePreview {
|
|||||||
private static final String FILE_DIR = ConfigConstants.getFileDir();
|
private static final String FILE_DIR = ConfigConstants.getFileDir();
|
||||||
|
|
||||||
private final FileHandlerService fileHandlerService;
|
private final FileHandlerService fileHandlerService;
|
||||||
|
private final OtherFilePreviewImpl otherFilePreview;
|
||||||
|
|
||||||
public CadFilePreviewImpl(FileHandlerService fileHandlerService) {
|
public CadFilePreviewImpl(FileHandlerService fileHandlerService, OtherFilePreviewImpl otherFilePreview) {
|
||||||
this.fileHandlerService = fileHandlerService;
|
this.fileHandlerService = fileHandlerService;
|
||||||
|
this.otherFilePreview = otherFilePreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -35,7 +37,6 @@ public class CadFilePreviewImpl implements FilePreview {
|
|||||||
// 预览Type,参数传了就取参数的,没传取系统默认
|
// 预览Type,参数传了就取参数的,没传取系统默认
|
||||||
String officePreviewType = model.asMap().get("officePreviewType") == null ? ConfigConstants.getOfficePreviewType() : model.asMap().get("officePreviewType").toString();
|
String officePreviewType = model.asMap().get("officePreviewType") == null ? ConfigConstants.getOfficePreviewType() : model.asMap().get("officePreviewType").toString();
|
||||||
String baseUrl = BaseUrlFilter.getBaseUrl();
|
String baseUrl = BaseUrlFilter.getBaseUrl();
|
||||||
String suffix = fileAttribute.getSuffix();
|
|
||||||
String fileName = fileAttribute.getName();
|
String fileName = fileAttribute.getName();
|
||||||
String pdfName = fileName.substring(0, fileName.lastIndexOf(".") + 1) + "pdf";
|
String pdfName = fileName.substring(0, fileName.lastIndexOf(".") + 1) + "pdf";
|
||||||
String outFilePath = FILE_DIR + pdfName;
|
String outFilePath = FILE_DIR + pdfName;
|
||||||
@@ -44,17 +45,13 @@ public class CadFilePreviewImpl implements FilePreview {
|
|||||||
String filePath;
|
String filePath;
|
||||||
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, null);
|
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, null);
|
||||||
if (response.isFailure()) {
|
if (response.isFailure()) {
|
||||||
model.addAttribute("fileType", suffix);
|
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
||||||
model.addAttribute("msg", response.getMsg());
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
filePath = response.getContent();
|
filePath = response.getContent();
|
||||||
if (StringUtils.hasText(outFilePath)) {
|
if (StringUtils.hasText(outFilePath)) {
|
||||||
boolean convertResult = fileHandlerService.cadToPdf(filePath, outFilePath);
|
boolean convertResult = fileHandlerService.cadToPdf(filePath, outFilePath);
|
||||||
if (!convertResult) {
|
if (!convertResult) {
|
||||||
model.addAttribute("fileType", suffix);
|
return otherFilePreview.notSupportedFile(model, fileAttribute, "cad文件转换异常,请联系管理员");
|
||||||
model.addAttribute("msg", "cad文件转换异常,请联系管理员");
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
if (ConfigConstants.isCacheEnabled()) {
|
if (ConfigConstants.isCacheEnabled()) {
|
||||||
// 加入缓存
|
// 加入缓存
|
||||||
@@ -63,10 +60,10 @@ public class CadFilePreviewImpl implements FilePreview {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (baseUrl != null && (OFFICE_PREVIEW_TYPE_IMAGE.equals(officePreviewType) || OFFICE_PREVIEW_TYPE_ALL_IMAGES.equals(officePreviewType))) {
|
if (baseUrl != null && (OFFICE_PREVIEW_TYPE_IMAGE.equals(officePreviewType) || OFFICE_PREVIEW_TYPE_ALL_IMAGES.equals(officePreviewType))) {
|
||||||
return getPreviewType(model, fileAttribute, officePreviewType, baseUrl, pdfName, outFilePath, fileHandlerService, OFFICE_PREVIEW_TYPE_IMAGE);
|
return getPreviewType(model, fileAttribute, officePreviewType, baseUrl, pdfName, outFilePath, fileHandlerService, OFFICE_PREVIEW_TYPE_IMAGE,otherFilePreview);
|
||||||
}
|
}
|
||||||
model.addAttribute("pdfUrl", pdfName);
|
model.addAttribute("pdfUrl", pdfName);
|
||||||
return "pdf";
|
return PDF_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -20,10 +20,12 @@ public class CompressFilePreviewImpl implements FilePreview {
|
|||||||
|
|
||||||
private final FileHandlerService fileHandlerService;
|
private final FileHandlerService fileHandlerService;
|
||||||
private final CompressFileReader compressFileReader;
|
private final CompressFileReader compressFileReader;
|
||||||
|
private final OtherFilePreviewImpl otherFilePreview;
|
||||||
|
|
||||||
public CompressFilePreviewImpl(FileHandlerService fileHandlerService, CompressFileReader compressFileReader) {
|
public CompressFilePreviewImpl(FileHandlerService fileHandlerService, CompressFileReader compressFileReader, OtherFilePreviewImpl otherFilePreview) {
|
||||||
this.fileHandlerService = fileHandlerService;
|
this.fileHandlerService = fileHandlerService;
|
||||||
this.compressFileReader = compressFileReader;
|
this.compressFileReader = compressFileReader;
|
||||||
|
this.otherFilePreview = otherFilePreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -35,9 +37,7 @@ public class CompressFilePreviewImpl implements FilePreview {
|
|||||||
if (!StringUtils.hasText(fileHandlerService.getConvertedFile(fileName)) || !ConfigConstants.isCacheEnabled()) {
|
if (!StringUtils.hasText(fileHandlerService.getConvertedFile(fileName)) || !ConfigConstants.isCacheEnabled()) {
|
||||||
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileName);
|
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileName);
|
||||||
if (response.isFailure()) {
|
if (response.isFailure()) {
|
||||||
model.addAttribute("fileType", suffix);
|
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
||||||
model.addAttribute("msg", response.getMsg());
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
String filePath = response.getContent();
|
String filePath = response.getContent();
|
||||||
if ("zip".equalsIgnoreCase(suffix) || "jar".equalsIgnoreCase(suffix) || "gzip".equalsIgnoreCase(suffix)) {
|
if ("zip".equalsIgnoreCase(suffix) || "jar".equalsIgnoreCase(suffix) || "gzip".equalsIgnoreCase(suffix)) {
|
||||||
@@ -55,11 +55,9 @@ public class CompressFilePreviewImpl implements FilePreview {
|
|||||||
}
|
}
|
||||||
if (fileTree != null && !"null".equals(fileTree)) {
|
if (fileTree != null && !"null".equals(fileTree)) {
|
||||||
model.addAttribute("fileTree", fileTree);
|
model.addAttribute("fileTree", fileTree);
|
||||||
return "compress";
|
return COMPRESS_FILE_PREVIEW_PAGE;
|
||||||
} else {
|
} else {
|
||||||
model.addAttribute("fileType", suffix);
|
return otherFilePreview.notSupportedFile(model, fileAttribute, "压缩文件类型不受支持,尝试在压缩的时候选择RAR4格式");
|
||||||
model.addAttribute("msg", "压缩文件类型不受支持,尝试在压缩的时候选择RAR4格式");
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,27 @@
|
|||||||
|
package cn.keking.service.impl;
|
||||||
|
|
||||||
|
import cn.keking.model.FileAttribute;
|
||||||
|
import cn.keking.service.FilePreview;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.ui.Model;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author : kl
|
||||||
|
* create : 2020-12-27 2:50 下午
|
||||||
|
* flv文件预览处理实现
|
||||||
|
**/
|
||||||
|
@Service
|
||||||
|
public class FlvFilePreviewImpl implements FilePreview {
|
||||||
|
|
||||||
|
private final MediaFilePreviewImpl mediaFilePreview;
|
||||||
|
|
||||||
|
public FlvFilePreviewImpl(MediaFilePreviewImpl mediaFilePreview) {
|
||||||
|
this.mediaFilePreview = mediaFilePreview;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
|
||||||
|
mediaFilePreview.filePreviewHandle(url,model,fileAttribute);
|
||||||
|
return FLV_FILE_PREVIEW_PAGE;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,7 +5,7 @@ import cn.keking.service.FilePreview;
|
|||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.ui.Model;
|
import org.springframework.ui.Model;
|
||||||
|
|
||||||
import static com.sun.glass.ui.Clipboard.TEXT_TYPE;
|
import static cn.keking.service.impl.SimTextFilePreviewImpl.TEXT_TYPE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kl (http://kailing.pub)
|
* @author kl (http://kailing.pub)
|
||||||
|
|||||||
@@ -19,9 +19,11 @@ import org.springframework.ui.Model;
|
|||||||
public class MediaFilePreviewImpl implements FilePreview {
|
public class MediaFilePreviewImpl implements FilePreview {
|
||||||
|
|
||||||
private final FileHandlerService fileHandlerService;
|
private final FileHandlerService fileHandlerService;
|
||||||
|
private final OtherFilePreviewImpl otherFilePreview;
|
||||||
|
|
||||||
public MediaFilePreviewImpl(FileHandlerService fileHandlerService) {
|
public MediaFilePreviewImpl(FileHandlerService fileHandlerService, OtherFilePreviewImpl otherFilePreview) {
|
||||||
this.fileHandlerService = fileHandlerService;
|
this.fileHandlerService = fileHandlerService;
|
||||||
|
this.otherFilePreview = otherFilePreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -29,10 +31,8 @@ public class MediaFilePreviewImpl implements FilePreview {
|
|||||||
// 不是http开头,浏览器不能直接访问,需下载到本地
|
// 不是http开头,浏览器不能直接访问,需下载到本地
|
||||||
if (url != null && !url.toLowerCase().startsWith("http")) {
|
if (url != null && !url.toLowerCase().startsWith("http")) {
|
||||||
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileAttribute.getName());
|
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileAttribute.getName());
|
||||||
if (!response.isSuccess()) {
|
if (response.isFailure()) {
|
||||||
model.addAttribute("fileType", fileAttribute.getSuffix());
|
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
||||||
model.addAttribute("msg", response.getMsg());
|
|
||||||
return "fileNotSupported";
|
|
||||||
} else {
|
} else {
|
||||||
model.addAttribute("mediaUrl", BaseUrlFilter.getBaseUrl() + fileHandlerService.getRelativePath(response.getContent()));
|
model.addAttribute("mediaUrl", BaseUrlFilter.getBaseUrl() + fileHandlerService.getRelativePath(response.getContent()));
|
||||||
}
|
}
|
||||||
@@ -40,11 +40,7 @@ public class MediaFilePreviewImpl implements FilePreview {
|
|||||||
model.addAttribute("mediaUrl", url);
|
model.addAttribute("mediaUrl", url);
|
||||||
}
|
}
|
||||||
model.addAttribute("mediaUrl", url);
|
model.addAttribute("mediaUrl", url);
|
||||||
String suffix = fileAttribute.getSuffix();
|
return MEDIA_FILE_PREVIEW_PAGE;
|
||||||
if ("flv".equalsIgnoreCase(suffix)) {
|
|
||||||
return "flv";
|
|
||||||
}
|
|
||||||
return "media";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -27,10 +27,12 @@ public class OfficeFilePreviewImpl implements FilePreview {
|
|||||||
|
|
||||||
private final FileHandlerService fileHandlerService;
|
private final FileHandlerService fileHandlerService;
|
||||||
private final OfficeToPdfService officeToPdfService;
|
private final OfficeToPdfService officeToPdfService;
|
||||||
|
private final OtherFilePreviewImpl otherFilePreview;
|
||||||
|
|
||||||
public OfficeFilePreviewImpl(FileHandlerService fileHandlerService, OfficeToPdfService officeToPdfService) {
|
public OfficeFilePreviewImpl(FileHandlerService fileHandlerService, OfficeToPdfService officeToPdfService, OtherFilePreviewImpl otherFilePreview) {
|
||||||
this.fileHandlerService = fileHandlerService;
|
this.fileHandlerService = fileHandlerService;
|
||||||
this.officeToPdfService = officeToPdfService;
|
this.officeToPdfService = officeToPdfService;
|
||||||
|
this.otherFilePreview = otherFilePreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -38,8 +40,8 @@ public class OfficeFilePreviewImpl implements FilePreview {
|
|||||||
// 预览Type,参数传了就取参数的,没传取系统默认
|
// 预览Type,参数传了就取参数的,没传取系统默认
|
||||||
String officePreviewType = fileAttribute.getOfficePreviewType();
|
String officePreviewType = fileAttribute.getOfficePreviewType();
|
||||||
String baseUrl = BaseUrlFilter.getBaseUrl();
|
String baseUrl = BaseUrlFilter.getBaseUrl();
|
||||||
String suffix=fileAttribute.getSuffix();
|
String suffix = fileAttribute.getSuffix();
|
||||||
String fileName=fileAttribute.getName();
|
String fileName = fileAttribute.getName();
|
||||||
boolean isHtml = suffix.equalsIgnoreCase("xls") || suffix.equalsIgnoreCase("xlsx");
|
boolean isHtml = suffix.equalsIgnoreCase("xls") || suffix.equalsIgnoreCase("xlsx");
|
||||||
String pdfName = fileName.substring(0, fileName.lastIndexOf(".") + 1) + (isHtml ? "html" : "pdf");
|
String pdfName = fileName.substring(0, fileName.lastIndexOf(".") + 1) + (isHtml ? "html" : "pdf");
|
||||||
String outFilePath = FILE_DIR + pdfName;
|
String outFilePath = FILE_DIR + pdfName;
|
||||||
@@ -48,9 +50,7 @@ public class OfficeFilePreviewImpl implements FilePreview {
|
|||||||
String filePath;
|
String filePath;
|
||||||
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, null);
|
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, null);
|
||||||
if (response.isFailure()) {
|
if (response.isFailure()) {
|
||||||
model.addAttribute("fileType", suffix);
|
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
||||||
model.addAttribute("msg", response.getMsg());
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
filePath = response.getContent();
|
filePath = response.getContent();
|
||||||
if (StringUtils.hasText(outFilePath)) {
|
if (StringUtils.hasText(outFilePath)) {
|
||||||
@@ -66,25 +66,23 @@ public class OfficeFilePreviewImpl implements FilePreview {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!isHtml && baseUrl != null && (OFFICE_PREVIEW_TYPE_IMAGE.equals(officePreviewType) || OFFICE_PREVIEW_TYPE_ALL_IMAGES.equals(officePreviewType))) {
|
if (!isHtml && baseUrl != null && (OFFICE_PREVIEW_TYPE_IMAGE.equals(officePreviewType) || OFFICE_PREVIEW_TYPE_ALL_IMAGES.equals(officePreviewType))) {
|
||||||
return getPreviewType(model, fileAttribute, officePreviewType, baseUrl, pdfName, outFilePath, fileHandlerService, OFFICE_PREVIEW_TYPE_IMAGE);
|
return getPreviewType(model, fileAttribute, officePreviewType, baseUrl, pdfName, outFilePath, fileHandlerService, OFFICE_PREVIEW_TYPE_IMAGE, otherFilePreview);
|
||||||
}
|
}
|
||||||
model.addAttribute("pdfUrl", pdfName);
|
model.addAttribute("pdfUrl", pdfName);
|
||||||
return isHtml ? "html" : "pdf";
|
return isHtml ? EXEL_FILE_PREVIEW_PAGE : PDF_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static String getPreviewType(Model model, FileAttribute fileAttribute, String officePreviewType, String baseUrl, String pdfName, String outFilePath, FileHandlerService fileHandlerService, String officePreviewTypeImage) {
|
static String getPreviewType(Model model, FileAttribute fileAttribute, String officePreviewType, String baseUrl, String pdfName, String outFilePath, FileHandlerService fileHandlerService, String officePreviewTypeImage, OtherFilePreviewImpl otherFilePreview) {
|
||||||
List<String> imageUrls = fileHandlerService.pdf2jpg(outFilePath, pdfName, baseUrl);
|
List<String> imageUrls = fileHandlerService.pdf2jpg(outFilePath, pdfName, baseUrl);
|
||||||
if (imageUrls == null || imageUrls.size() < 1) {
|
if (imageUrls == null || imageUrls.size() < 1) {
|
||||||
model.addAttribute("msg", "office转图片异常,请联系管理员");
|
return otherFilePreview.notSupportedFile(model, fileAttribute, "office转图片异常,请联系管理员");
|
||||||
model.addAttribute("fileType",fileAttribute.getSuffix());
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
model.addAttribute("imgurls", imageUrls);
|
model.addAttribute("imgurls", imageUrls);
|
||||||
model.addAttribute("currentUrl", imageUrls.get(0));
|
model.addAttribute("currentUrl", imageUrls.get(0));
|
||||||
if (officePreviewTypeImage.equals(officePreviewType)) {
|
if (officePreviewTypeImage.equals(officePreviewType)) {
|
||||||
return "officePicture";
|
return OFFICE_PICTURE_FILE_PREVIEW_PAGE;
|
||||||
} else {
|
} else {
|
||||||
return "picture";
|
return PICTURE_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,10 +11,41 @@ import org.springframework.ui.Model;
|
|||||||
*/
|
*/
|
||||||
@Service
|
@Service
|
||||||
public class OtherFilePreviewImpl implements FilePreview {
|
public class OtherFilePreviewImpl implements FilePreview {
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
|
public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
|
||||||
model.addAttribute("fileType",fileAttribute.getSuffix());
|
return this.notSupportedFile(model, fileAttribute, "系统还不支持该格式文件的在线预览");
|
||||||
model.addAttribute("msg", "系统还不支持该格式文件的在线预览");
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通用的预览失败,导向到不支持的文件响应页面
|
||||||
|
*
|
||||||
|
* @return 页面
|
||||||
|
*/
|
||||||
|
public String notSupportedFile(Model model, FileAttribute fileAttribute, String errMsg) {
|
||||||
|
return this.notSupportedFile(model, fileAttribute.getSuffix(), errMsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通用的预览失败,导向到不支持的文件响应页面
|
||||||
|
*
|
||||||
|
* @return 页面
|
||||||
|
*/
|
||||||
|
public String notSupportedFile(Model model, String errMsg) {
|
||||||
|
return this.notSupportedFile(model, "未知", errMsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通用的预览失败,导向到不支持的文件响应页面
|
||||||
|
*
|
||||||
|
* @return 页面
|
||||||
|
*/
|
||||||
|
public String notSupportedFile(Model model, String fileType, String errMsg) {
|
||||||
|
model.addAttribute("fileType", fileType);
|
||||||
|
model.addAttribute("msg", errMsg);
|
||||||
|
return NOT_SUPPORTED_FILE_PAGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,16 +20,17 @@ import java.util.List;
|
|||||||
public class PdfFilePreviewImpl implements FilePreview {
|
public class PdfFilePreviewImpl implements FilePreview {
|
||||||
|
|
||||||
private final FileHandlerService fileHandlerService;
|
private final FileHandlerService fileHandlerService;
|
||||||
|
private final OtherFilePreviewImpl otherFilePreview;
|
||||||
private static final String FILE_DIR = ConfigConstants.getFileDir();
|
private static final String FILE_DIR = ConfigConstants.getFileDir();
|
||||||
|
|
||||||
public PdfFilePreviewImpl(FileHandlerService fileHandlerService) {
|
public PdfFilePreviewImpl(FileHandlerService fileHandlerService, OtherFilePreviewImpl otherFilePreview) {
|
||||||
this.fileHandlerService = fileHandlerService;
|
this.fileHandlerService = fileHandlerService;
|
||||||
|
this.otherFilePreview = otherFilePreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
|
public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
|
||||||
String suffix=fileAttribute.getSuffix();
|
String fileName = fileAttribute.getName();
|
||||||
String fileName=fileAttribute.getName();
|
|
||||||
String officePreviewType = fileAttribute.getOfficePreviewType();
|
String officePreviewType = fileAttribute.getOfficePreviewType();
|
||||||
String baseUrl = BaseUrlFilter.getBaseUrl();
|
String baseUrl = BaseUrlFilter.getBaseUrl();
|
||||||
String pdfName = fileName.substring(0, fileName.lastIndexOf(".") + 1) + "pdf";
|
String pdfName = fileName.substring(0, fileName.lastIndexOf(".") + 1) + "pdf";
|
||||||
@@ -39,9 +40,7 @@ public class PdfFilePreviewImpl implements FilePreview {
|
|||||||
if (!fileHandlerService.listConvertedFiles().containsKey(pdfName) || !ConfigConstants.isCacheEnabled()) {
|
if (!fileHandlerService.listConvertedFiles().containsKey(pdfName) || !ConfigConstants.isCacheEnabled()) {
|
||||||
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileName);
|
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileName);
|
||||||
if (response.isFailure()) {
|
if (response.isFailure()) {
|
||||||
model.addAttribute("fileType", suffix);
|
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
||||||
model.addAttribute("msg", response.getMsg());
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
outFilePath = response.getContent();
|
outFilePath = response.getContent();
|
||||||
if (ConfigConstants.isCacheEnabled()) {
|
if (ConfigConstants.isCacheEnabled()) {
|
||||||
@@ -51,16 +50,14 @@ public class PdfFilePreviewImpl implements FilePreview {
|
|||||||
}
|
}
|
||||||
List<String> imageUrls = fileHandlerService.pdf2jpg(outFilePath, pdfName, baseUrl);
|
List<String> imageUrls = fileHandlerService.pdf2jpg(outFilePath, pdfName, baseUrl);
|
||||||
if (imageUrls == null || imageUrls.size() < 1) {
|
if (imageUrls == null || imageUrls.size() < 1) {
|
||||||
model.addAttribute("msg", "pdf转图片异常,请联系管理员");
|
return otherFilePreview.notSupportedFile(model, fileAttribute, "pdf转图片异常,请联系管理员");
|
||||||
model.addAttribute("fileType",fileAttribute.getSuffix());
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
model.addAttribute("imgurls", imageUrls);
|
model.addAttribute("imgurls", imageUrls);
|
||||||
model.addAttribute("currentUrl", imageUrls.get(0));
|
model.addAttribute("currentUrl", imageUrls.get(0));
|
||||||
if (OfficeFilePreviewImpl.OFFICE_PREVIEW_TYPE_IMAGE.equals(officePreviewType)) {
|
if (OfficeFilePreviewImpl.OFFICE_PREVIEW_TYPE_IMAGE.equals(officePreviewType)) {
|
||||||
return "officePicture";
|
return OFFICE_PICTURE_FILE_PREVIEW_PAGE;
|
||||||
} else {
|
} else {
|
||||||
return "picture";
|
return PICTURE_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 不是http开头,浏览器不能直接访问,需下载到本地
|
// 不是http开头,浏览器不能直接访问,需下载到本地
|
||||||
@@ -68,9 +65,7 @@ public class PdfFilePreviewImpl implements FilePreview {
|
|||||||
if (!fileHandlerService.listConvertedFiles().containsKey(pdfName) || !ConfigConstants.isCacheEnabled()) {
|
if (!fileHandlerService.listConvertedFiles().containsKey(pdfName) || !ConfigConstants.isCacheEnabled()) {
|
||||||
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, pdfName);
|
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, pdfName);
|
||||||
if (response.isFailure()) {
|
if (response.isFailure()) {
|
||||||
model.addAttribute("fileType", suffix);
|
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
||||||
model.addAttribute("msg", response.getMsg());
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
model.addAttribute("pdfUrl", fileHandlerService.getRelativePath(response.getContent()));
|
model.addAttribute("pdfUrl", fileHandlerService.getRelativePath(response.getContent()));
|
||||||
if (ConfigConstants.isCacheEnabled()) {
|
if (ConfigConstants.isCacheEnabled()) {
|
||||||
@@ -84,6 +79,6 @@ public class PdfFilePreviewImpl implements FilePreview {
|
|||||||
model.addAttribute("pdfUrl", url);
|
model.addAttribute("pdfUrl", url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return "pdf";
|
return PDF_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,9 +19,11 @@ import java.util.List;
|
|||||||
public class PictureFilePreviewImpl implements FilePreview {
|
public class PictureFilePreviewImpl implements FilePreview {
|
||||||
|
|
||||||
private final FileHandlerService fileHandlerService;
|
private final FileHandlerService fileHandlerService;
|
||||||
|
private final OtherFilePreviewImpl otherFilePreview;
|
||||||
|
|
||||||
public PictureFilePreviewImpl(FileHandlerService fileHandlerService) {
|
public PictureFilePreviewImpl(FileHandlerService fileHandlerService, OtherFilePreviewImpl otherFilePreview) {
|
||||||
this.fileHandlerService = fileHandlerService;
|
this.fileHandlerService = fileHandlerService;
|
||||||
|
this.otherFilePreview = otherFilePreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -37,20 +39,18 @@ public class PictureFilePreviewImpl implements FilePreview {
|
|||||||
if (url != null && !url.toLowerCase().startsWith("http")) {
|
if (url != null && !url.toLowerCase().startsWith("http")) {
|
||||||
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, null);
|
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, null);
|
||||||
if (response.isFailure()) {
|
if (response.isFailure()) {
|
||||||
model.addAttribute("fileType", fileAttribute.getSuffix());
|
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
||||||
model.addAttribute("msg", response.getMsg());
|
|
||||||
return "fileNotSupported";
|
|
||||||
} else {
|
} else {
|
||||||
String file = fileHandlerService.getRelativePath(response.getContent());
|
String file = fileHandlerService.getRelativePath(response.getContent());
|
||||||
imgUrls.clear();
|
imgUrls.clear();
|
||||||
imgUrls.add(file);
|
imgUrls.add(file);
|
||||||
model.addAttribute("imgurls", imgUrls);
|
model.addAttribute("imgUrls", imgUrls);
|
||||||
model.addAttribute("currentUrl", file);
|
model.addAttribute("currentUrl", file);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
model.addAttribute("imgurls", imgUrls);
|
model.addAttribute("imgUrls", imgUrls);
|
||||||
model.addAttribute("currentUrl", url);
|
model.addAttribute("currentUrl", url);
|
||||||
}
|
}
|
||||||
return "picture";
|
return PICTURE_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,28 +23,30 @@ public class SimTextFilePreviewImpl implements FilePreview {
|
|||||||
public static final String TEXT_TYPE = "textType";
|
public static final String TEXT_TYPE = "textType";
|
||||||
public static final String DEFAULT_TEXT_TYPE = "simText";
|
public static final String DEFAULT_TEXT_TYPE = "simText";
|
||||||
|
|
||||||
|
private final OtherFilePreviewImpl otherFilePreview;
|
||||||
|
|
||||||
|
public SimTextFilePreviewImpl(OtherFilePreviewImpl otherFilePreview) {
|
||||||
|
this.otherFilePreview = otherFilePreview;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
|
public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
|
||||||
String fileName = fileAttribute.getName();
|
String fileName = fileAttribute.getName();
|
||||||
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileName);
|
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileName);
|
||||||
if (response.isFailure()) {
|
if (response.isFailure()) {
|
||||||
model.addAttribute("msg", response.getMsg());
|
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
||||||
model.addAttribute("fileType", fileAttribute.getSuffix());
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
File originFile = new File(response.getContent());
|
File originFile = new File(response.getContent());
|
||||||
String xmlString = FileUtils.readFileToString(originFile, StandardCharsets.UTF_8);
|
String xmlString = FileUtils.readFileToString(originFile, StandardCharsets.UTF_8);
|
||||||
model.addAttribute("textData", Base64Utils.encodeToString(xmlString.getBytes()));
|
model.addAttribute("textData", Base64Utils.encodeToString(xmlString.getBytes(StandardCharsets.UTF_8)));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
model.addAttribute("msg", e.getLocalizedMessage());
|
return otherFilePreview.notSupportedFile(model, fileAttribute, e.getLocalizedMessage());
|
||||||
model.addAttribute("fileType", fileAttribute.getSuffix());
|
|
||||||
return "fileNotSupported";
|
|
||||||
}
|
}
|
||||||
if (!model.containsAttribute(TEXT_TYPE)) {
|
if (!model.containsAttribute(TEXT_TYPE)) {
|
||||||
model.addAttribute(TEXT_TYPE, DEFAULT_TEXT_TYPE);
|
model.addAttribute(TEXT_TYPE, DEFAULT_TEXT_TYPE);
|
||||||
}
|
}
|
||||||
return "txt";
|
return TXT_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import cn.keking.service.FilePreview;
|
|||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.ui.Model;
|
import org.springframework.ui.Model;
|
||||||
|
|
||||||
import static com.sun.glass.ui.Clipboard.TEXT_TYPE;
|
import static cn.keking.service.impl.SimTextFilePreviewImpl.TEXT_TYPE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kl (http://kailing.pub)
|
* @author kl (http://kailing.pub)
|
||||||
@@ -20,7 +20,6 @@ public class XmlFilePreviewImpl implements FilePreview {
|
|||||||
this.simTextFilePreview = simTextFilePreview;
|
this.simTextFilePreview = simTextFilePreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
|
public String filePreviewHandle(String url, Model model, FileAttribute fileAttribute) {
|
||||||
model.addAttribute(TEXT_TYPE,"xml");
|
model.addAttribute(TEXT_TYPE,"xml");
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import cn.keking.config.ConfigConstants;
|
|||||||
import cn.keking.model.FileAttribute;
|
import cn.keking.model.FileAttribute;
|
||||||
import cn.keking.model.FileType;
|
import cn.keking.model.FileType;
|
||||||
import cn.keking.model.ReturnResponse;
|
import cn.keking.model.ReturnResponse;
|
||||||
|
import io.mola.galimatias.GalimatiasParseException;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
@@ -81,7 +82,6 @@ public class DownloadUtils {
|
|||||||
public static byte[] getBytesFromUrl(String urlStr) throws IOException {
|
public static byte[] getBytesFromUrl(String urlStr) throws IOException {
|
||||||
InputStream is = getInputStreamFromUrl(urlStr);
|
InputStream is = getInputStreamFromUrl(urlStr);
|
||||||
if (is == null) {
|
if (is == null) {
|
||||||
// urlStr = URLUtil.normalize(urlStr, true, true);
|
|
||||||
is = getInputStreamFromUrl(urlStr);
|
is = getInputStreamFromUrl(urlStr);
|
||||||
if (is == null) {
|
if (is == null) {
|
||||||
logger.error("文件下载异常:url:{}", urlStr);
|
logger.error("文件下载异常:url:{}", urlStr);
|
||||||
@@ -98,13 +98,14 @@ public class DownloadUtils {
|
|||||||
|
|
||||||
private static InputStream getInputStreamFromUrl(String urlStr) {
|
private static InputStream getInputStreamFromUrl(String urlStr) {
|
||||||
try {
|
try {
|
||||||
URL url = new URL(urlStr);
|
|
||||||
|
URL url = io.mola.galimatias.URL.parse(urlStr).toJavaURL();
|
||||||
URLConnection connection = url.openConnection();
|
URLConnection connection = url.openConnection();
|
||||||
if (connection instanceof HttpURLConnection) {
|
if (connection instanceof HttpURLConnection) {
|
||||||
connection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
|
connection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
|
||||||
}
|
}
|
||||||
return connection.getInputStream();
|
return connection.getInputStream();
|
||||||
} catch (IOException e) {
|
} catch (IOException | GalimatiasParseException e) {
|
||||||
logger.warn("连接url异常:url:{}", urlStr);
|
logger.warn("连接url异常:url:{}", urlStr);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,14 +5,15 @@ import cn.keking.service.FilePreview;
|
|||||||
import cn.keking.service.FilePreviewFactory;
|
import cn.keking.service.FilePreviewFactory;
|
||||||
|
|
||||||
import cn.keking.service.cache.CacheService;
|
import cn.keking.service.cache.CacheService;
|
||||||
|
import cn.keking.service.impl.OtherFilePreviewImpl;
|
||||||
import cn.keking.utils.DownloadUtils;
|
import cn.keking.utils.DownloadUtils;
|
||||||
import cn.keking.service.FileHandlerService;
|
import cn.keking.service.FileHandlerService;
|
||||||
import com.thoughtworks.xstream.core.util.Base64JavaUtilCodec;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.ui.Model;
|
import org.springframework.ui.Model;
|
||||||
import org.springframework.util.Base64Utils;
|
import org.springframework.util.Base64Utils;
|
||||||
|
import org.springframework.util.StringUtils;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestMethod;
|
import org.springframework.web.bind.annotation.RequestMethod;
|
||||||
import org.springframework.web.bind.annotation.ResponseBody;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||||||
@@ -20,58 +21,77 @@ import org.springframework.web.bind.annotation.ResponseBody;
|
|||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.net.URLDecoder;
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import static cn.keking.service.FilePreview.PICTURE_FILE_PREVIEW_PAGE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author yudian-it
|
* @author yudian-it
|
||||||
*/
|
*/
|
||||||
@Controller
|
@Controller
|
||||||
public class OnlinePreviewController {
|
public class OnlinePreviewController {
|
||||||
|
|
||||||
|
public static final String BASE64_DECODE_ERROR_MSG = "Base64解码失败,请检查你的 %s 是否采用 Base64 + urlEncode 双重编码了!";
|
||||||
private final Logger logger = LoggerFactory.getLogger(OnlinePreviewController.class);
|
private final Logger logger = LoggerFactory.getLogger(OnlinePreviewController.class);
|
||||||
|
|
||||||
private final FilePreviewFactory previewFactory;
|
private final FilePreviewFactory previewFactory;
|
||||||
private final CacheService cacheService;
|
private final CacheService cacheService;
|
||||||
private final FileHandlerService fileHandlerService;
|
private final FileHandlerService fileHandlerService;
|
||||||
|
private final OtherFilePreviewImpl otherFilePreview;
|
||||||
|
|
||||||
public OnlinePreviewController(FilePreviewFactory filePreviewFactory, FileHandlerService fileHandlerService, CacheService cacheService) {
|
public OnlinePreviewController(FilePreviewFactory filePreviewFactory, FileHandlerService fileHandlerService, CacheService cacheService, OtherFilePreviewImpl otherFilePreview) {
|
||||||
this.previewFactory = filePreviewFactory;
|
this.previewFactory = filePreviewFactory;
|
||||||
this.fileHandlerService = fileHandlerService;
|
this.fileHandlerService = fileHandlerService;
|
||||||
this.cacheService = cacheService;
|
this.cacheService = cacheService;
|
||||||
|
this.otherFilePreview = otherFilePreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = "/onlinePreview")
|
@RequestMapping(value = "/onlinePreview")
|
||||||
public String onlinePreview(String url, Model model, HttpServletRequest req) {
|
public String onlinePreview(String url, Model model, HttpServletRequest req) {
|
||||||
String fileUrl = new String(Base64Utils.decodeFromString(url));
|
String fileUrl;
|
||||||
FileAttribute fileAttribute = fileHandlerService.getFileAttribute(fileUrl,req);
|
try {
|
||||||
|
fileUrl = new String(Base64Utils.decodeFromString(url));
|
||||||
|
} catch (Exception ex) {
|
||||||
|
String errorMsg = String.format(BASE64_DECODE_ERROR_MSG, "url");
|
||||||
|
return otherFilePreview.notSupportedFile(model, errorMsg);
|
||||||
|
}
|
||||||
|
FileAttribute fileAttribute = fileHandlerService.getFileAttribute(fileUrl, req);
|
||||||
FilePreview filePreview = previewFactory.get(fileAttribute);
|
FilePreview filePreview = previewFactory.get(fileAttribute);
|
||||||
logger.info("预览文件url:{},previewType:{}", fileUrl, fileAttribute.getType());
|
logger.info("预览文件url:{},previewType:{}", fileUrl, fileAttribute.getType());
|
||||||
return filePreview.filePreviewHandle(fileUrl, model, fileAttribute);
|
return filePreview.filePreviewHandle(fileUrl, model, fileAttribute);
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = "/picturesPreview")
|
@RequestMapping(value = "/picturesPreview")
|
||||||
public String picturesPreview(Model model, HttpServletRequest req) throws UnsupportedEncodingException {
|
public String picturesPreview(String urls, Model model, HttpServletRequest req) throws UnsupportedEncodingException {
|
||||||
String urls = req.getParameter("urls");
|
String fileUrls;
|
||||||
String currentUrl = req.getParameter("currentUrl");
|
try {
|
||||||
logger.info("预览文件url:{},urls:{}", currentUrl, urls);
|
fileUrls = new String(Base64Utils.decodeFromString(urls));
|
||||||
// 路径转码
|
} catch (Exception ex) {
|
||||||
String decodedUrl = URLDecoder.decode(urls, "utf-8");
|
String errorMsg = String.format(BASE64_DECODE_ERROR_MSG, "urls");
|
||||||
String decodedCurrentUrl = URLDecoder.decode(currentUrl, "utf-8");
|
return otherFilePreview.notSupportedFile(model, errorMsg);
|
||||||
|
}
|
||||||
|
logger.info("预览文件url:{},urls:{}", fileUrls, urls);
|
||||||
// 抽取文件并返回文件列表
|
// 抽取文件并返回文件列表
|
||||||
String[] imgs = decodedUrl.split("\\|");
|
String[] images = fileUrls.split("\\|");
|
||||||
List<String> imgUrls = Arrays.asList(imgs);
|
List<String> imgUrls = Arrays.asList(images);
|
||||||
model.addAttribute("imgUrls", imgUrls);
|
model.addAttribute("imgUrls", imgUrls);
|
||||||
model.addAttribute("currentUrl",decodedCurrentUrl);
|
|
||||||
return "picture";
|
String currentUrl = req.getParameter("currentUrl");
|
||||||
|
if (StringUtils.hasText(currentUrl)) {
|
||||||
|
String decodedCurrentUrl = new String(Base64Utils.decodeFromString(currentUrl));
|
||||||
|
model.addAttribute("currentUrl", decodedCurrentUrl);
|
||||||
|
} else {
|
||||||
|
model.addAttribute("currentUrl", imgUrls.get(0));
|
||||||
|
}
|
||||||
|
return PICTURE_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据url获取文件内容
|
* 根据url获取文件内容
|
||||||
* 当pdfjs读取存在跨域问题的文件时将通过此接口读取
|
* 当pdfjs读取存在跨域问题的文件时将通过此接口读取
|
||||||
*
|
*
|
||||||
* @param urlPath url
|
* @param urlPath url
|
||||||
* @param response response
|
* @param response response
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value = "/getCorsFile", method = RequestMethod.GET)
|
@RequestMapping(value = "/getCorsFile", method = RequestMethod.GET)
|
||||||
@@ -87,6 +107,7 @@ public class OnlinePreviewController {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 通过api接口入队
|
* 通过api接口入队
|
||||||
|
*
|
||||||
* @param url 请编码后在入队
|
* @param url 请编码后在入队
|
||||||
*/
|
*/
|
||||||
@RequestMapping("/addTask")
|
@RequestMapping("/addTask")
|
||||||
|
|||||||
7
server/src/main/log/README.txt
Normal file
7
server/src/main/log/README.txt
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
README.txt
|
||||||
|
log目录是用来存放kkFileView.log的,预览服务的运行情况最终都会反映到这个日志文件里,
|
||||||
|
可以提供给开发、运维排查系统问题。如果通过kkFileView.log还无法定位问题所在,请你在寻求
|
||||||
|
kk官方支持时,QQ群一 613025121、QQ群二 484680571。将此日志文件一并携带,并按照这个
|
||||||
|
格式重命名日志文件 kkFileView-QQ昵称-时间日期.log。如:kkFileView-kl博主-2020-12-27.log 。
|
||||||
|
所有收集的日志文件我们都会存档,供所有的kk用户作为排查案例使用,所以在你提供日志前,请
|
||||||
|
先自行处理日志文件里的业务敏感内容。
|
||||||
25473
server/src/main/resources/static/pdfjs/build/pdf.js
Normal file
25473
server/src/main/resources/static/pdfjs/build/pdf.js
Normal file
File diff suppressed because it is too large
Load Diff
1
server/src/main/resources/static/pdfjs/build/pdf.js.map
Normal file
1
server/src/main/resources/static/pdfjs/build/pdf.js.map
Normal file
File diff suppressed because one or more lines are too long
57878
server/src/main/resources/static/pdfjs/build/pdf.worker.js
vendored
Normal file
57878
server/src/main/resources/static/pdfjs/build/pdf.worker.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
server/src/main/resources/static/pdfjs/build/pdf.worker.js.map
vendored
Normal file
1
server/src/main/resources/static/pdfjs/build/pdf.worker.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -85,6 +85,24 @@ window.open('http://127.0.0.1:8012/picturesPreview?urls='+encodeURIComponent(bas
|
|||||||
<div id="collapseThree" class="panel-collapse collapse in">
|
<div id="collapseThree" class="panel-collapse collapse in">
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<div>
|
<div>
|
||||||
|
2020年12月27日 :<br>
|
||||||
|
2020年年终大版本更新,架构全面设计,代码全面重构,代码质量全面提升,二次开发更便捷,欢迎拉源码品鉴,提issue、pr共同建设
|
||||||
|
1. 架构模块调整,大量的代码重构,代码质量提升N个等级,欢迎品鉴<br>
|
||||||
|
2. 增强XML文件预览效果,新增XML文档数结构预览<br>
|
||||||
|
3. 新增markdown文件预览支持,预览支持md渲染和源文本切换支持<br>
|
||||||
|
4. 切换底层web server为jetty,解决这个issue:<a href="https://github.com/kekingcn/kkFileView/issues/168">#issues/168</a><br>
|
||||||
|
5. 引入cpdetector,解决文件编码识别问题<br>
|
||||||
|
6. url采用base64+urlencode双编码,彻底解决各种奇葩文件名预览问题<br>
|
||||||
|
7. 新增配置项office.preview.switch.disabled,控制offic文件预览切换开关<br>
|
||||||
|
8. 优化文本类型文件预览逻辑,采用Base64传输内容,避免预览时再次请求文件内容<br>
|
||||||
|
9. office预览图片模式禁用图片放大效果,达到图片和pdf预览效果一致的体验<br>
|
||||||
|
10. 直接代码静态设置pdfbox兼容低版本jdk,在IDEA中运行也不会有警告提示<br>
|
||||||
|
11. 移除guava、hutool等非必须的工具包,减少代码体积<br>
|
||||||
|
12. Office组件加载异步化,提速应用启动速度最快到5秒内<br>
|
||||||
|
13. 合理设置预览消费队列的线程数<br>
|
||||||
|
14. 修复压缩包里文件再次预览失败的bug<br>
|
||||||
|
15. 修复图片预览的bug<br><br>
|
||||||
|
|
||||||
2020年05月20日 :<br>
|
2020年05月20日 :<br>
|
||||||
1. 新增支持全局水印,并支持通过参数动态改变水印内容<br>
|
1. 新增支持全局水印,并支持通过参数动态改变水印内容<br>
|
||||||
2. 新增支持CAD文件预览<br>
|
2. 新增支持CAD文件预览<br>
|
||||||
|
|||||||
Reference in New Issue
Block a user