mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2026-04-28 02:56:44 +00:00
Compare commits
19 Commits
dependabot
...
pom
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0e86de1e8e | ||
|
|
106036d989 | ||
|
|
026656711d | ||
|
|
35a8c4a5a6 | ||
|
|
86960e3813 | ||
|
|
b099d52520 | ||
|
|
6efe15788c | ||
|
|
3e43c2f9d0 | ||
|
|
f1b949865f | ||
|
|
ab439a17a3 | ||
|
|
dd65564af6 | ||
|
|
acffcbfe98 | ||
|
|
04703aa03c | ||
|
|
584e6b2c77 | ||
|
|
82f6d3565f | ||
|
|
8c68834e17 | ||
|
|
ba7b6eed4a | ||
|
|
051ad0f4ea | ||
|
|
05935c29e1 |
53
.workflow/BranchPipeline.yml
Normal file
53
.workflow/BranchPipeline.yml
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
version: '1.0'
|
||||||
|
name: branch-pipeline
|
||||||
|
displayName: BranchPipeline
|
||||||
|
stages:
|
||||||
|
- stage:
|
||||||
|
name: compile
|
||||||
|
displayName: 编译
|
||||||
|
steps:
|
||||||
|
- step: build@maven
|
||||||
|
name: build_maven
|
||||||
|
displayName: Maven 构建
|
||||||
|
# 支持6、7、8、9、10、11六个版本
|
||||||
|
jdkVersion: 8
|
||||||
|
# 支持2.2.1、3.2.5、3.3.9、3.5.2、3.5.3、3.5.4、3.6.1、3.6.3八个版本
|
||||||
|
mavenVersion: 3.3.9
|
||||||
|
# 构建命令
|
||||||
|
commands:
|
||||||
|
- mvn -B clean package -Dmaven.test.skip=true
|
||||||
|
# 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除
|
||||||
|
artifacts:
|
||||||
|
# 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址
|
||||||
|
- name: BUILD_ARTIFACT
|
||||||
|
# 构建产物获取路径,是指代码编译完毕之后构建物的所在路径,如通常jar包在target目录下。当前目录为代码库根目录
|
||||||
|
path:
|
||||||
|
- ./server/target
|
||||||
|
- step: publish@general_artifacts
|
||||||
|
name: publish_general_artifacts
|
||||||
|
displayName: 上传制品
|
||||||
|
# 上游构建任务定义的产物名,默认BUILD_ARTIFACT
|
||||||
|
dependArtifact: BUILD_ARTIFACT
|
||||||
|
# 上传到制品库时的制品命名,默认output
|
||||||
|
artifactName: output
|
||||||
|
dependsOn: build_maven
|
||||||
|
- stage:
|
||||||
|
name: release
|
||||||
|
displayName: 发布
|
||||||
|
steps:
|
||||||
|
- step: publish@release_artifacts
|
||||||
|
name: publish_release_artifacts
|
||||||
|
displayName: '发布'
|
||||||
|
# 上游上传制品任务的产出
|
||||||
|
dependArtifact: output
|
||||||
|
# 发布制品版本号
|
||||||
|
version: '1.0.0.0'
|
||||||
|
# 是否开启版本号自增,默认开启
|
||||||
|
autoIncrement: true
|
||||||
|
triggers:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
exclude:
|
||||||
|
- master
|
||||||
|
include:
|
||||||
|
- .*
|
||||||
51
.workflow/MasterPipeline.yml
Normal file
51
.workflow/MasterPipeline.yml
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
version: '1.0'
|
||||||
|
name: master-pipeline
|
||||||
|
displayName: MasterPipeline
|
||||||
|
stages:
|
||||||
|
- stage:
|
||||||
|
name: compile
|
||||||
|
displayName: 编译
|
||||||
|
steps:
|
||||||
|
- step: build@maven
|
||||||
|
name: build_maven
|
||||||
|
displayName: Maven 构建
|
||||||
|
# 支持6、7、8、9、10、11六个版本
|
||||||
|
jdkVersion: 8
|
||||||
|
# 支持2.2.1、3.2.5、3.3.9、3.5.2、3.5.3、3.5.4、3.6.1、3.6.3八个版本
|
||||||
|
mavenVersion: 3.3.9
|
||||||
|
# 构建命令
|
||||||
|
commands:
|
||||||
|
- mvn -B clean package -Dmaven.test.skip=true
|
||||||
|
# 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除
|
||||||
|
artifacts:
|
||||||
|
# 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址
|
||||||
|
- name: BUILD_ARTIFACT
|
||||||
|
# 构建产物获取路径,是指代码编译完毕之后构建物的所在路径,如通常jar包在target目录下。当前目录为代码库根目录
|
||||||
|
path:
|
||||||
|
- ./server/target
|
||||||
|
- step: publish@general_artifacts
|
||||||
|
name: publish_general_artifacts
|
||||||
|
displayName: 上传制品
|
||||||
|
# 上游构建任务定义的产物名,默认BUILD_ARTIFACT
|
||||||
|
dependArtifact: BUILD_ARTIFACT
|
||||||
|
# 上传到制品库时的制品命名,默认output
|
||||||
|
artifactName: output
|
||||||
|
dependsOn: build_maven
|
||||||
|
- stage:
|
||||||
|
name: release
|
||||||
|
displayName: 发布
|
||||||
|
steps:
|
||||||
|
- step: publish@release_artifacts
|
||||||
|
name: publish_release_artifacts
|
||||||
|
displayName: '发布'
|
||||||
|
# 上游上传制品任务的产出
|
||||||
|
dependArtifact: output
|
||||||
|
# 发布制品版本号
|
||||||
|
version: '1.0.0.0'
|
||||||
|
# 是否开启版本号自增,默认开启
|
||||||
|
autoIncrement: true
|
||||||
|
triggers:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
include:
|
||||||
|
- master
|
||||||
40
.workflow/PRPipeline.yml
Normal file
40
.workflow/PRPipeline.yml
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
version: '1.0'
|
||||||
|
name: pr-pipeline
|
||||||
|
displayName: PRPipeline
|
||||||
|
stages:
|
||||||
|
- stage:
|
||||||
|
name: compile
|
||||||
|
displayName: 编译
|
||||||
|
steps:
|
||||||
|
- step: build@maven
|
||||||
|
name: build_maven
|
||||||
|
displayName: Maven 构建
|
||||||
|
# 支持6、7、8、9、10、11六个版本
|
||||||
|
jdkVersion: 8
|
||||||
|
# 支持2.2.1、3.2.5、3.3.9、3.5.2、3.5.3、3.5.4、3.6.1、3.6.3八个版本
|
||||||
|
mavenVersion: 3.3.9
|
||||||
|
# 构建命令
|
||||||
|
commands:
|
||||||
|
- mvn -B clean package -Dmaven.test.skip=true
|
||||||
|
# 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除
|
||||||
|
artifacts:
|
||||||
|
# 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址
|
||||||
|
- name: BUILD_ARTIFACT
|
||||||
|
# 构建产物获取路径,是指代码编译完毕之后构建物的所在路径,如通常jar包在target目录下。当前目录为代码库根目录
|
||||||
|
path:
|
||||||
|
- ./server/target
|
||||||
|
- step: publish@general_artifacts
|
||||||
|
name: publish_general_artifacts
|
||||||
|
displayName: 上传制品
|
||||||
|
# 上游构建任务定义的产物名,默认BUILD_ARTIFACT
|
||||||
|
dependArtifact: BUILD_ARTIFACT
|
||||||
|
# 构建产物制品库,默认default,系统默认创建
|
||||||
|
artifactRepository: default
|
||||||
|
# 上传到制品库时的制品命名,默认output
|
||||||
|
artifactName: output
|
||||||
|
dependsOn: build_maven
|
||||||
|
triggers:
|
||||||
|
pr:
|
||||||
|
branches:
|
||||||
|
include:
|
||||||
|
- master
|
||||||
36
.workflow/pipeline-20220716.yml
Normal file
36
.workflow/pipeline-20220716.yml
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
version: '1.0'
|
||||||
|
name: pipeline-20220716
|
||||||
|
displayName: pipeline-20220716
|
||||||
|
triggers:
|
||||||
|
trigger: manual
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
prefix:
|
||||||
|
- ''
|
||||||
|
stages:
|
||||||
|
- name: stage-8b46aafe
|
||||||
|
displayName: 未命名
|
||||||
|
strategy: naturally
|
||||||
|
trigger: auto
|
||||||
|
executor: []
|
||||||
|
steps:
|
||||||
|
- step: build@maven
|
||||||
|
name: build_maven
|
||||||
|
displayName: Maven 构建
|
||||||
|
jdkVersion: '8'
|
||||||
|
mavenVersion: 3.3.9
|
||||||
|
commands:
|
||||||
|
- mvn -B clean package -Dmaven.test.skip=true
|
||||||
|
artifacts:
|
||||||
|
- name: BUILD_ARTIFACT
|
||||||
|
path:
|
||||||
|
- ./server/target
|
||||||
|
settings: []
|
||||||
|
caches:
|
||||||
|
- ~/.m2
|
||||||
|
notify: []
|
||||||
|
strategy:
|
||||||
|
retry: '0'
|
||||||
|
permissions:
|
||||||
|
- role: admin
|
||||||
|
members: []
|
||||||
39
Dockerfile
39
Dockerfile
@@ -1,42 +1,5 @@
|
|||||||
FROM ubuntu:20.04
|
FROM keking/kkfileview-jdk:4.1.1
|
||||||
MAINTAINER chenjh "842761733@qq.com"
|
MAINTAINER chenjh "842761733@qq.com"
|
||||||
ADD server/target/kkFileView-*.tar.gz /opt/
|
ADD server/target/kkFileView-*.tar.gz /opt/
|
||||||
COPY fonts/* /usr/share/fonts/chinese/
|
|
||||||
RUN echo "deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse" > /etc/apt/sources.list &&\
|
|
||||||
apt-get clean && apt-get update &&\
|
|
||||||
apt-get install -y locales && apt-get install -y language-pack-zh-hans &&\
|
|
||||||
localedef -i zh_CN -c -f UTF-8 -A /usr/share/locale/locale.alias zh_CN.UTF-8 && locale-gen zh_CN.UTF-8 &&\
|
|
||||||
export DEBIAN_FRONTEND=noninteractive &&\
|
|
||||||
apt-get install -y tzdata && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime &&\
|
|
||||||
apt-get install -y libxrender1 && apt-get install -y libxt6 && apt-get install -y libxext-dev && apt-get install -y libfreetype6-dev &&\
|
|
||||||
apt-get install -y wget && apt-get install -y ttf-mscorefonts-installer && apt-get install -y fontconfig &&\
|
|
||||||
apt-get install ttf-wqy-microhei &&\
|
|
||||||
apt-get install ttf-wqy-zenhei &&\
|
|
||||||
apt-get install xfonts-wqy &&\
|
|
||||||
cd /tmp &&\
|
|
||||||
wget https://kkfileview.keking.cn/server-jre-8u251-linux-x64.tar.gz &&\
|
|
||||||
tar -zxf /tmp/server-jre-8u251-linux-x64.tar.gz && mv /tmp/jdk1.8.0_251 /usr/local/ &&\
|
|
||||||
|
|
||||||
# 安装 OpenOffice
|
|
||||||
# wget https://kkfileview.keking.cn/Apache_OpenOffice_4.1.6_Linux_x86-64_install-deb_zh-CN.tar.gz -cO openoffice_deb.tar.gz &&\
|
|
||||||
# tar -zxf /tmp/openoffice_deb.tar.gz && cd /tmp/zh-CN/DEBS &&\
|
|
||||||
# dpkg -i *.deb && dpkg -i desktop-integration/openoffice4.1-debian-menus_4.1.6-9790_all.deb &&\
|
|
||||||
|
|
||||||
# 安装 libreoffice
|
|
||||||
apt-get install -y libxinerama1 libcairo2 libcups2 libx11-xcb1 &&\
|
|
||||||
wget https://kkfileview.keking.cn/LibreOffice_7.1.4_Linux_x86-64_deb.tar.gz -cO libreoffice_deb.tar.gz &&\
|
|
||||||
tar -zxf /tmp/libreoffice_deb.tar.gz && cd /tmp/LibreOffice_7.1.4.2_Linux_x86-64_deb/DEBS &&\
|
|
||||||
dpkg -i *.deb &&\
|
|
||||||
|
|
||||||
rm -rf /tmp/* && rm -rf /var/lib/apt/lists/* &&\
|
|
||||||
cd /usr/share/fonts/chinese &&\
|
|
||||||
mkfontscale &&\
|
|
||||||
mkfontdir &&\
|
|
||||||
fc-cache -fv
|
|
||||||
ENV JAVA_HOME /usr/local/jdk1.8.0_251
|
|
||||||
ENV CLASSPATH $JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
|
|
||||||
ENV PATH $PATH:$JAVA_HOME/bin
|
|
||||||
ENV LANG zh_CN.UTF-8
|
|
||||||
ENV LC_ALL zh_CN.UTF-8
|
|
||||||
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.1.0-SNAPSHOT/bin
|
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.1.0-SNAPSHOT/bin
|
||||||
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dspring.config.location=/opt/kkFileView-4.1.0-SNAPSHOT/config/application.properties","-jar","/opt/kkFileView-4.1.0-SNAPSHOT/bin/kkFileView-4.1.0-SNAPSHOT.jar"]
|
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dspring.config.location=/opt/kkFileView-4.1.0-SNAPSHOT/config/application.properties","-jar","/opt/kkFileView-4.1.0-SNAPSHOT/bin/kkFileView-4.1.0-SNAPSHOT.jar"]
|
||||||
38
docker/kkfileview-jdk/Dockerfile
Normal file
38
docker/kkfileview-jdk/Dockerfile
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
FROM ubuntu:20.04
|
||||||
|
MAINTAINER chenjh "842761733@qq.com"
|
||||||
|
# 内置一些常用的中文字体,避免普遍性乱码
|
||||||
|
COPY fonts/* /usr/share/fonts/chinese/
|
||||||
|
RUN echo "deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse" > /etc/apt/sources.list &&\
|
||||||
|
apt-get clean && apt-get update &&\
|
||||||
|
apt-get install -y locales && apt-get install -y language-pack-zh-hans &&\
|
||||||
|
localedef -i zh_CN -c -f UTF-8 -A /usr/share/locale/locale.alias zh_CN.UTF-8 && locale-gen zh_CN.UTF-8 &&\
|
||||||
|
export DEBIAN_FRONTEND=noninteractive &&\
|
||||||
|
apt-get install -y tzdata && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime &&\
|
||||||
|
apt-get install -y libxrender1 && apt-get install -y libxt6 && apt-get install -y libxext-dev && apt-get install -y libfreetype6-dev &&\
|
||||||
|
apt-get install -y wget && apt-get install -y ttf-mscorefonts-installer && apt-get install -y fontconfig &&\
|
||||||
|
apt-get install ttf-wqy-microhei &&\
|
||||||
|
apt-get install ttf-wqy-zenhei &&\
|
||||||
|
apt-get install xfonts-wqy &&\
|
||||||
|
cd /tmp &&\
|
||||||
|
wget https://kkfileview.keking.cn/server-jre-8u251-linux-x64.tar.gz &&\
|
||||||
|
tar -zxf /tmp/server-jre-8u251-linux-x64.tar.gz && mv /tmp/jdk1.8.0_251 /usr/local/ &&\
|
||||||
|
|
||||||
|
# 安装 libreoffice
|
||||||
|
apt-get install -y libxinerama1 libcairo2 libcups2 libx11-xcb1 &&\
|
||||||
|
wget https://kkfileview.keking.cn/LibreOffice_7.1.4_Linux_x86-64_deb.tar.gz -cO libreoffice_deb.tar.gz &&\
|
||||||
|
tar -zxf /tmp/libreoffice_deb.tar.gz && cd /tmp/LibreOffice_7.1.4.2_Linux_x86-64_deb/DEBS &&\
|
||||||
|
dpkg -i *.deb &&\
|
||||||
|
|
||||||
|
# 清理临时文件
|
||||||
|
rm -rf /tmp/* && rm -rf /var/lib/apt/lists/* &&\
|
||||||
|
cd /usr/share/fonts/chinese &&\
|
||||||
|
mkfontscale &&\
|
||||||
|
mkfontdir &&\
|
||||||
|
fc-cache -fv
|
||||||
|
|
||||||
|
ENV JAVA_HOME /usr/local/jdk1.8.0_251
|
||||||
|
ENV CLASSPATH $JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
|
||||||
|
ENV PATH $PATH:$JAVA_HOME/bin
|
||||||
|
ENV LANG zh_CN.UTF-8
|
||||||
|
ENV LC_ALL zh_CN.UTF-8
|
||||||
|
ENTRYPOINT ["java","-version"]
|
||||||
2
docker/kkfileview-jdk/docker build.txt
Normal file
2
docker/kkfileview-jdk/docker build.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# 执行如下命令构建基础镜像,加快kkfileview docker镜像构建与发布
|
||||||
|
docker build --tag keking/kkfileview-jdk:4.1.1 .
|
||||||
@@ -3,7 +3,6 @@
|
|||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>kkFileView-parent</artifactId>
|
<artifactId>kkFileView-parent</artifactId>
|
||||||
<groupId>cn.keking</groupId>
|
<groupId>cn.keking</groupId>
|
||||||
@@ -27,19 +26,9 @@
|
|||||||
<version>2.7</version>
|
<version>2.7</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.openoffice</groupId>
|
<groupId>org.libreoffice</groupId>
|
||||||
<artifactId>juh</artifactId>
|
<artifactId>libreoffice</artifactId>
|
||||||
<version>3.2.1</version>
|
<version>7.1.4</version>
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.openoffice</groupId>
|
|
||||||
<artifactId>ridl</artifactId>
|
|
||||||
<version>3.2.1</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.openoffice</groupId>
|
|
||||||
<artifactId>unoil</artifactId>
|
|
||||||
<version>3.2.1</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<!-- for the command line tool -->
|
<!-- for the command line tool -->
|
||||||
|
|||||||
@@ -12,18 +12,6 @@
|
|||||||
//
|
//
|
||||||
package org.artofsolving.jodconverter;
|
package org.artofsolving.jodconverter;
|
||||||
|
|
||||||
import static org.artofsolving.jodconverter.office.OfficeUtils.SERVICE_DESKTOP;
|
|
||||||
import static org.artofsolving.jodconverter.office.OfficeUtils.cast;
|
|
||||||
import static org.artofsolving.jodconverter.office.OfficeUtils.toUnoProperties;
|
|
||||||
import static org.artofsolving.jodconverter.office.OfficeUtils.toUrl;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import org.artofsolving.jodconverter.office.OfficeContext;
|
|
||||||
import org.artofsolving.jodconverter.office.OfficeException;
|
|
||||||
import org.artofsolving.jodconverter.office.OfficeTask;
|
|
||||||
|
|
||||||
import com.sun.star.frame.XComponentLoader;
|
import com.sun.star.frame.XComponentLoader;
|
||||||
import com.sun.star.frame.XStorable;
|
import com.sun.star.frame.XStorable;
|
||||||
import com.sun.star.io.IOException;
|
import com.sun.star.io.IOException;
|
||||||
@@ -32,6 +20,14 @@ import com.sun.star.lang.XComponent;
|
|||||||
import com.sun.star.task.ErrorCodeIOException;
|
import com.sun.star.task.ErrorCodeIOException;
|
||||||
import com.sun.star.util.CloseVetoException;
|
import com.sun.star.util.CloseVetoException;
|
||||||
import com.sun.star.util.XCloseable;
|
import com.sun.star.util.XCloseable;
|
||||||
|
import org.artofsolving.jodconverter.office.OfficeContext;
|
||||||
|
import org.artofsolving.jodconverter.office.OfficeException;
|
||||||
|
import org.artofsolving.jodconverter.office.OfficeTask;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import static org.artofsolving.jodconverter.office.OfficeUtils.*;
|
||||||
|
|
||||||
public abstract class AbstractConversionTask implements OfficeTask {
|
public abstract class AbstractConversionTask implements OfficeTask {
|
||||||
|
|
||||||
@@ -47,6 +43,7 @@ public abstract class AbstractConversionTask implements OfficeTask {
|
|||||||
|
|
||||||
protected abstract Map<String,?> getStoreProperties(File outputFile, XComponent document);
|
protected abstract Map<String,?> getStoreProperties(File outputFile, XComponent document);
|
||||||
|
|
||||||
|
@Override
|
||||||
public void execute(OfficeContext context) throws OfficeException {
|
public void execute(OfficeContext context) throws OfficeException {
|
||||||
XComponent document = null;
|
XComponent document = null;
|
||||||
try {
|
try {
|
||||||
@@ -79,6 +76,7 @@ public abstract class AbstractConversionTask implements OfficeTask {
|
|||||||
}
|
}
|
||||||
XComponentLoader loader = cast(XComponentLoader.class, context.getService(SERVICE_DESKTOP));
|
XComponentLoader loader = cast(XComponentLoader.class, context.getService(SERVICE_DESKTOP));
|
||||||
Map<String,?> loadProperties = getLoadProperties(inputFile);
|
Map<String,?> loadProperties = getLoadProperties(inputFile);
|
||||||
|
|
||||||
XComponent document = null;
|
XComponent document = null;
|
||||||
try {
|
try {
|
||||||
document = loader.loadComponentFromURL(toUrl(inputFile), "_blank", 0, toUnoProperties(loadProperties));
|
document = loader.loadComponentFromURL(toUrl(inputFile), "_blank", 0, toUnoProperties(loadProperties));
|
||||||
|
|||||||
@@ -12,18 +12,18 @@
|
|||||||
//
|
//
|
||||||
package org.artofsolving.jodconverter;
|
package org.artofsolving.jodconverter;
|
||||||
|
|
||||||
import java.io.File;
|
import com.sun.star.document.UpdateDocMode;
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import org.apache.commons.io.FilenameUtils;
|
import org.apache.commons.io.FilenameUtils;
|
||||||
import org.artofsolving.jodconverter.document.DefaultDocumentFormatRegistry;
|
import org.artofsolving.jodconverter.document.DefaultDocumentFormatRegistry;
|
||||||
import org.artofsolving.jodconverter.document.DocumentFormat;
|
import org.artofsolving.jodconverter.document.DocumentFormat;
|
||||||
import org.artofsolving.jodconverter.document.DocumentFormatRegistry;
|
import org.artofsolving.jodconverter.document.DocumentFormatRegistry;
|
||||||
|
import org.artofsolving.jodconverter.model.FileProperties;
|
||||||
import org.artofsolving.jodconverter.office.OfficeException;
|
import org.artofsolving.jodconverter.office.OfficeException;
|
||||||
import org.artofsolving.jodconverter.office.OfficeManager;
|
import org.artofsolving.jodconverter.office.OfficeManager;
|
||||||
|
|
||||||
import com.sun.star.document.UpdateDocMode;
|
import java.io.File;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
public class OfficeDocumentConverter {
|
public class OfficeDocumentConverter {
|
||||||
|
|
||||||
@@ -60,14 +60,22 @@ public class OfficeDocumentConverter {
|
|||||||
public void convert(File inputFile, File outputFile) throws OfficeException {
|
public void convert(File inputFile, File outputFile) throws OfficeException {
|
||||||
String outputExtension = FilenameUtils.getExtension(outputFile.getName());
|
String outputExtension = FilenameUtils.getExtension(outputFile.getName());
|
||||||
DocumentFormat outputFormat = formatRegistry.getFormatByExtension(outputExtension);
|
DocumentFormat outputFormat = formatRegistry.getFormatByExtension(outputExtension);
|
||||||
convert(inputFile, outputFile, outputFormat);
|
convert(inputFile, outputFile, outputFormat, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void convert(File inputFile, File outputFile, DocumentFormat outputFormat) throws OfficeException {
|
public void convert(File inputFile, File outputFile, FileProperties fileProperties) throws OfficeException {
|
||||||
|
String outputExtension = FilenameUtils.getExtension(outputFile.getName());
|
||||||
|
DocumentFormat outputFormat = formatRegistry.getFormatByExtension(outputExtension);
|
||||||
|
convert(inputFile, outputFile, outputFormat, fileProperties);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void convert(File inputFile, File outputFile, DocumentFormat outputFormat, FileProperties fileProperties) throws OfficeException {
|
||||||
String inputExtension = FilenameUtils.getExtension(inputFile.getName());
|
String inputExtension = FilenameUtils.getExtension(inputFile.getName());
|
||||||
DocumentFormat inputFormat = formatRegistry.getFormatByExtension(inputExtension);
|
DocumentFormat inputFormat = formatRegistry.getFormatByExtension(inputExtension);
|
||||||
|
Map<String, Object> properties = fileProperties.toMap();
|
||||||
|
properties.putAll(defaultLoadProperties);
|
||||||
StandardConversionTask conversionTask = new StandardConversionTask(inputFile, outputFile, outputFormat);
|
StandardConversionTask conversionTask = new StandardConversionTask(inputFile, outputFile, outputFormat);
|
||||||
conversionTask.setDefaultLoadProperties(defaultLoadProperties);
|
conversionTask.setDefaultLoadProperties(properties);
|
||||||
conversionTask.setInputFormat(inputFormat);
|
conversionTask.setInputFormat(inputFormat);
|
||||||
officeManager.execute(conversionTask);
|
officeManager.execute(conversionTask);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
package org.artofsolving.jodconverter.model;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by kl on 2018/1/17.
|
||||||
|
* Content :
|
||||||
|
*/
|
||||||
|
public class FileProperties {
|
||||||
|
|
||||||
|
private String filePassword;
|
||||||
|
|
||||||
|
public FileProperties() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Map<String, Object> toMap() {
|
||||||
|
Map<String, Object> map = new HashMap();
|
||||||
|
if (filePassword != null) {
|
||||||
|
map.put("Password", filePassword);
|
||||||
|
}
|
||||||
|
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFilePassword() {
|
||||||
|
return filePassword;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFilePassword(String filePassword) {
|
||||||
|
this.filePassword = filePassword;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
25
pom.xml
25
pom.xml
@@ -10,9 +10,34 @@
|
|||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>1.8</java.version>
|
<java.version>1.8</java.version>
|
||||||
|
|
||||||
<spring.boot.version>2.4.2</spring.boot.version>
|
<spring.boot.version>2.4.2</spring.boot.version>
|
||||||
|
<poi.version>5.2.2</poi.version>
|
||||||
|
<xdocreport.version>1.0.6</xdocreport.version>
|
||||||
|
<xstream.version>1.4.19</xstream.version>
|
||||||
|
<junrar.version>7.4.1</junrar.version>
|
||||||
|
<redisson.version>3.2.0</redisson.version>
|
||||||
|
<sevenzipjbinding.version>16.02-2.01</sevenzipjbinding.version>
|
||||||
|
<tukaani.version>1.8</tukaani.version>
|
||||||
|
<jchardet.version>1.0</jchardet.version>
|
||||||
|
<antlr.version>2.7.7</antlr.version>
|
||||||
|
<concurrentlinkedhashmap.version>1.4.2</concurrentlinkedhashmap.version>
|
||||||
|
<rocksdb.version>5.17.2</rocksdb.version>
|
||||||
|
<pdfbox.version>2.0.26</pdfbox.version>
|
||||||
|
<galimatias.version>0.2.1</galimatias.version>
|
||||||
|
<bytedeco.version>1.5.2</bytedeco.version>
|
||||||
|
<opencv.version>4.1.2-1.5.2</opencv.version>
|
||||||
|
<openblas.version>0.3.6-1.5.1</openblas.version>
|
||||||
|
<ffmpeg.version>4.2.1-1.5.2</ffmpeg.version>
|
||||||
|
<itext.version>2.1.7</itext.version>
|
||||||
|
<commons-cli.version>1.2</commons-cli.version>
|
||||||
|
<commons-net.version>3.6</commons-net.version>
|
||||||
|
<commons-lang3.version>3.7</commons-lang3.version>
|
||||||
|
<commons-compress.version>1.21</commons-compress.version>
|
||||||
|
|
||||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||||
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
|||||||
167
server/pom.xml
167
server/pom.xml
@@ -25,20 +25,12 @@
|
|||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>cn.keking</groupId>
|
||||||
<artifactId>spring-boot-starter-freemarker</artifactId>
|
<artifactId>office-plugin</artifactId>
|
||||||
</dependency>
|
<version>${project.version}</version>
|
||||||
<!-- 对 rar5 的支持 和其他众多压缩支持 可参考 package net.sf.sevenzipjbinding.ArchiveFormat; -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>net.sf.sevenzipjbinding</groupId>
|
|
||||||
<artifactId>sevenzipjbinding</artifactId>
|
|
||||||
<version>16.02-2.01</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>net.sf.sevenzipjbinding</groupId>
|
|
||||||
<artifactId>sevenzipjbinding-all-platforms</artifactId>
|
|
||||||
<version>16.02-2.01</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- web start -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-web</artifactId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
@@ -53,42 +45,32 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-jetty</artifactId>
|
<artifactId>spring-boot-starter-jetty</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-test</artifactId>
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>cn.keking</groupId>
|
|
||||||
<artifactId>office-plugin</artifactId>
|
|
||||||
<version>${project.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.commons</groupId>
|
|
||||||
<artifactId>commons-lang3</artifactId>
|
|
||||||
<version>3.7</version>
|
|
||||||
</dependency>
|
|
||||||
<!-- REDISSON -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.redisson</groupId>
|
|
||||||
<artifactId>redisson</artifactId>
|
|
||||||
<version>3.2.0</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- web end -->
|
||||||
|
|
||||||
|
<!-- poi start -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.poi</groupId>
|
<groupId>org.apache.poi</groupId>
|
||||||
<artifactId>poi</artifactId>
|
<artifactId>poi</artifactId>
|
||||||
<version>3.17</version>
|
<version>${poi.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.poi</groupId>
|
<groupId>org.apache.poi</groupId>
|
||||||
<artifactId>poi-scratchpad</artifactId>
|
<artifactId>poi-scratchpad</artifactId>
|
||||||
<version>3.12</version>
|
<version>${poi.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.poi</groupId>
|
||||||
|
<artifactId>poi-ooxml</artifactId>
|
||||||
|
<version>${poi.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>fr.opensagres.xdocreport</groupId>
|
<groupId>fr.opensagres.xdocreport</groupId>
|
||||||
<artifactId>org.apache.poi.xwpf.converter.core</artifactId>
|
<artifactId>org.apache.poi.xwpf.converter.core</artifactId>
|
||||||
<version>1.0.5</version>
|
<version>${xdocreport.version}</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<artifactId>poi</artifactId>
|
<artifactId>poi</artifactId>
|
||||||
@@ -99,88 +81,102 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>fr.opensagres.xdocreport</groupId>
|
<groupId>fr.opensagres.xdocreport</groupId>
|
||||||
<artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>
|
<artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>
|
||||||
<version>1.0.5</version>
|
<version>${xdocreport.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>fr.opensagres.xdocreport</groupId>
|
<groupId>fr.opensagres.xdocreport</groupId>
|
||||||
<artifactId>fr.opensagres.xdocreport.document</artifactId>
|
<artifactId>fr.opensagres.xdocreport.document</artifactId>
|
||||||
<version>1.0.5</version>
|
<version>${xdocreport.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- poi start -->
|
||||||
|
|
||||||
|
<!-- 对 rar5 的支持 和其他众多压缩支持 可参考 package net.sf.sevenzipjbinding.ArchiveFormat; -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.sf.sevenzipjbinding</groupId>
|
||||||
|
<artifactId>sevenzipjbinding</artifactId>
|
||||||
|
<version>${sevenzipjbinding.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.sf.sevenzipjbinding</groupId>
|
||||||
|
<artifactId>sevenzipjbinding-all-platforms</artifactId>
|
||||||
|
<version>${sevenzipjbinding.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-lang3</artifactId>
|
||||||
|
<version>${commons-lang3.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.redisson</groupId>
|
||||||
|
<artifactId>redisson</artifactId>
|
||||||
|
<version>${redisson.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- 解压(apache) -->
|
<!-- 解压(apache) -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.commons</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-compress</artifactId>
|
<artifactId>commons-compress</artifactId>
|
||||||
<version>1.21</version>
|
<version>${commons-compress.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- 解压(rar)-->
|
<!-- 解压(rar)-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.junrar</groupId>
|
<groupId>com.github.junrar</groupId>
|
||||||
<artifactId>junrar</artifactId>
|
<artifactId>junrar</artifactId>
|
||||||
<version>4.0.0</version>
|
<version>${junrar.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- 解压(7z)-->
|
<!-- 解压(7z)-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.tukaani</groupId>
|
<groupId>org.tukaani</groupId>
|
||||||
<artifactId>xz</artifactId>
|
<artifactId>xz</artifactId>
|
||||||
<version>1.8</version>
|
<version>${tukaani.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.sourceforge.jchardet</groupId>
|
<groupId>net.sourceforge.jchardet</groupId>
|
||||||
<artifactId>jchardet</artifactId>
|
<artifactId>jchardet</artifactId>
|
||||||
<version>1.0</version>
|
<version>${jchardet.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>antlr</groupId>
|
<groupId>antlr</groupId>
|
||||||
<artifactId>antlr</artifactId>
|
<artifactId>antlr</artifactId>
|
||||||
<version>2.7.7</version>
|
<version>${antlr.version}</version>
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>commons-httpclient</groupId>
|
|
||||||
<artifactId>commons-httpclient</artifactId>
|
|
||||||
<version>3.1</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<artifactId>commons-logging</artifactId>
|
|
||||||
<groupId>commons-logging</groupId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-cli</groupId>
|
<groupId>commons-cli</groupId>
|
||||||
<artifactId>commons-cli</artifactId>
|
<artifactId>commons-cli</artifactId>
|
||||||
<version>1.2</version>
|
<version>${commons-cli.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- FTP -->
|
<!-- FTP -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-net</groupId>
|
<groupId>commons-net</groupId>
|
||||||
<artifactId>commons-net</artifactId>
|
<artifactId>commons-net</artifactId>
|
||||||
<version>3.6</version>
|
<version>${commons-net.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.thoughtworks.xstream</groupId>
|
<groupId>com.thoughtworks.xstream</groupId>
|
||||||
<artifactId>xstream</artifactId>
|
<artifactId>xstream</artifactId>
|
||||||
<version>1.4.18</version>
|
<version>${xstream.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
|
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
|
||||||
<artifactId>concurrentlinkedhashmap-lru</artifactId>
|
<artifactId>concurrentlinkedhashmap-lru</artifactId>
|
||||||
<version>1.4.2</version>
|
<version>${concurrentlinkedhashmap.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.rocksdb</groupId>
|
<groupId>org.rocksdb</groupId>
|
||||||
<artifactId>rocksdbjni</artifactId>
|
<artifactId>rocksdbjni</artifactId>
|
||||||
<version>5.17.2</version>
|
<version>${rocksdb.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.pdfbox</groupId>
|
<groupId>org.apache.pdfbox</groupId>
|
||||||
<artifactId>pdfbox</artifactId>
|
<artifactId>pdfbox</artifactId>
|
||||||
<version>2.0.24</version>
|
<version>${pdfbox.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.pdfbox</groupId>
|
<groupId>org.apache.pdfbox</groupId>
|
||||||
<artifactId>pdfbox-tools</artifactId>
|
<artifactId>pdfbox-tools</artifactId>
|
||||||
<version>2.0.15</version>
|
<version>${pdfbox.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.aspose</groupId>
|
<groupId>com.aspose</groupId>
|
||||||
@@ -201,70 +197,62 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.mola.galimatias</groupId>
|
<groupId>io.mola.galimatias</groupId>
|
||||||
<artifactId>galimatias</artifactId>
|
<artifactId>galimatias</artifactId>
|
||||||
<version>0.2.1</version>
|
<version>${galimatias.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- 以下是bytedeco 基于opencv ffmpeg封装的javacv,用于视频处理 -->
|
<!-- 以下是bytedeco 基于opencv ffmpeg封装的javacv,用于视频处理 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>javacv</artifactId>
|
<artifactId>javacv</artifactId>
|
||||||
<version>1.5.2</version>
|
<version>${bytedeco.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>javacpp</artifactId>
|
<artifactId>javacpp</artifactId>
|
||||||
<version>1.5.2</version>
|
<version>${bytedeco.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- 此版本中主要兼容linux和windows系统,如需兼容其他系统平台,请引入对应依赖即可 -->
|
<!-- 此版本中主要兼容linux和windows系统,如需兼容其他系统平台,请引入对应依赖即可 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>opencv</artifactId>
|
<artifactId>opencv</artifactId>
|
||||||
<version>4.1.2-1.5.2</version>
|
<version>${opencv.version}</version>
|
||||||
<classifier>linux-x86_64</classifier>
|
<classifier>linux-x86_64</classifier>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>opencv</artifactId>
|
<artifactId>opencv</artifactId>
|
||||||
<version>4.1.2-1.5.2</version>
|
<version>${opencv.version}</version>
|
||||||
<classifier>windows-x86_64</classifier>
|
<classifier>windows-x86_64</classifier>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>openblas</artifactId>
|
<artifactId>openblas</artifactId>
|
||||||
<version>0.3.6-1.5.1</version>
|
<version>${openblas.version}</version>
|
||||||
<classifier>linux-x86_64</classifier>
|
<classifier>linux-x86_64</classifier>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>openblas</artifactId>
|
<artifactId>openblas</artifactId>
|
||||||
<version>0.3.6-1.5.1</version>
|
<version>${openblas.version}</version>
|
||||||
<classifier>windows-x86_64</classifier>
|
<classifier>windows-x86_64</classifier>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>ffmpeg</artifactId>
|
<artifactId>ffmpeg</artifactId>
|
||||||
<version>4.2.1-1.5.2</version>
|
<version>${ffmpeg.version}</version>
|
||||||
<classifier>linux-x86_64</classifier>
|
<classifier>linux-x86_64</classifier>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>ffmpeg</artifactId>
|
<artifactId>ffmpeg</artifactId>
|
||||||
<version>4.2.1-1.5.2</version>
|
<version>${ffmpeg.version}</version>
|
||||||
<classifier>windows-x86_64</classifier>
|
<classifier>windows-x86_64</classifier>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.lowagie</groupId>
|
<groupId>com.lowagie</groupId>
|
||||||
<artifactId>itext</artifactId>
|
<artifactId>itext</artifactId>
|
||||||
<version>2.1.7</version>
|
<version>${itext.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
@@ -274,7 +262,6 @@
|
|||||||
<scope>system</scope>
|
<scope>system</scope>
|
||||||
<systemPath>${basedir}/lib/jai_core-1.1.3.jar</systemPath>
|
<systemPath>${basedir}/lib/jai_core-1.1.3.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.media</groupId>
|
<groupId>javax.media</groupId>
|
||||||
<artifactId>jai_codec</artifactId>
|
<artifactId>jai_codec</artifactId>
|
||||||
@@ -283,6 +270,25 @@
|
|||||||
<systemPath>${basedir}/lib/jai_codec-1.1.3.jar</systemPath>
|
<systemPath>${basedir}/lib/jai_codec-1.1.3.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- test dependency - start -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>commons-httpclient</groupId>
|
||||||
|
<artifactId>commons-httpclient</artifactId>
|
||||||
|
<version>3.1</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>commons-logging</artifactId>
|
||||||
|
<groupId>commons-logging</groupId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<!-- test dependency - end -->
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@@ -336,5 +342,4 @@
|
|||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
@@ -5,6 +5,8 @@
|
|||||||
[#-- @ftlvariable name="file" type="cn.keking.model.FileAttribute" --]
|
[#-- @ftlvariable name="file" type="cn.keking.model.FileAttribute" --]
|
||||||
[#-- @ftlvariable name="fileName" type="java.lang.String" --]
|
[#-- @ftlvariable name="fileName" type="java.lang.String" --]
|
||||||
[#-- @ftlvariable name="fileTree" type="java.lang.String" --]
|
[#-- @ftlvariable name="fileTree" type="java.lang.String" --]
|
||||||
|
[#-- @ftlvariable name="needFilePassword" type="java.lang.Boolean" --]
|
||||||
|
[#-- @ftlvariable name="filePasswordError" type="java.lang.Boolean" --]
|
||||||
[#-- @ftlvariable name="baseUrl" type="java.lang.String" --]
|
[#-- @ftlvariable name="baseUrl" type="java.lang.String" --]
|
||||||
[#-- @ftlvariable name="imgUrls" type="String" --]
|
[#-- @ftlvariable name="imgUrls" type="String" --]
|
||||||
[#-- @ftlvariable name="textData" type="java.lang.String" --]
|
[#-- @ftlvariable name="textData" type="java.lang.String" --]
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ import org.springframework.stereotype.Component;
|
|||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.concurrent.CopyOnWriteArraySet;
|
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import java.util.concurrent.CopyOnWriteArraySet;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author: chenjh
|
* @author: chenjh
|
||||||
|
|||||||
@@ -1,11 +1,17 @@
|
|||||||
package cn.keking.config;
|
package cn.keking.config;
|
||||||
|
|
||||||
|
import cn.keking.web.filter.*;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
||||||
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||||||
|
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author: chenjh
|
* @author: chenjh
|
||||||
* @since: 2019/4/16 20:04
|
* @since: 2019/4/16 20:04
|
||||||
@@ -23,4 +29,63 @@ public class WebConfig implements WebMvcConfigurer {
|
|||||||
LOGGER.info("Add resource locations: {}", filePath);
|
LOGGER.info("Add resource locations: {}", filePath);
|
||||||
registry.addResourceHandler("/**").addResourceLocations("classpath:/META-INF/resources/","classpath:/resources/","classpath:/static/","classpath:/public/","file:" + filePath);
|
registry.addResourceHandler("/**").addResourceLocations("classpath:/META-INF/resources/","classpath:/resources/","classpath:/static/","classpath:/public/","file:" + filePath);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public FilterRegistrationBean<ChinesePathFilter> getChinesePathFilter() {
|
||||||
|
ChinesePathFilter filter = new ChinesePathFilter();
|
||||||
|
FilterRegistrationBean<ChinesePathFilter> registrationBean = new FilterRegistrationBean<>();
|
||||||
|
registrationBean.setFilter(filter);
|
||||||
|
return registrationBean;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public FilterRegistrationBean<TrustHostFilter> getTrustHostFilter() {
|
||||||
|
Set<String> filterUri = new HashSet<>();
|
||||||
|
filterUri.add("/onlinePreview");
|
||||||
|
filterUri.add("/picturesPreview");
|
||||||
|
TrustHostFilter filter = new TrustHostFilter();
|
||||||
|
FilterRegistrationBean<TrustHostFilter> registrationBean = new FilterRegistrationBean<>();
|
||||||
|
registrationBean.setFilter(filter);
|
||||||
|
registrationBean.setUrlPatterns(filterUri);
|
||||||
|
return registrationBean;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public FilterRegistrationBean<TrustDirFilter> getTrustDirFilter() {
|
||||||
|
Set<String> filterUri = new HashSet<>();
|
||||||
|
filterUri.add("/onlinePreview");
|
||||||
|
filterUri.add("/picturesPreview");
|
||||||
|
filterUri.add("/getCorsFile");
|
||||||
|
TrustDirFilter filter = new TrustDirFilter();
|
||||||
|
FilterRegistrationBean<TrustDirFilter> registrationBean = new FilterRegistrationBean<>();
|
||||||
|
registrationBean.setFilter(filter);
|
||||||
|
registrationBean.setUrlPatterns(filterUri);
|
||||||
|
return registrationBean;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public FilterRegistrationBean<BaseUrlFilter> getBaseUrlFilter() {
|
||||||
|
Set<String> filterUri = new HashSet<>();
|
||||||
|
filterUri.add("/index");
|
||||||
|
filterUri.add("/onlinePreview");
|
||||||
|
filterUri.add("/picturesPreview");
|
||||||
|
BaseUrlFilter filter = new BaseUrlFilter();
|
||||||
|
FilterRegistrationBean<BaseUrlFilter> registrationBean = new FilterRegistrationBean<>();
|
||||||
|
registrationBean.setFilter(filter);
|
||||||
|
registrationBean.setUrlPatterns(filterUri);
|
||||||
|
return registrationBean;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public FilterRegistrationBean<AttributeSetFilter> getWatermarkConfigFilter() {
|
||||||
|
Set<String> filterUri = new HashSet<>();
|
||||||
|
filterUri.add("/index");
|
||||||
|
filterUri.add("/onlinePreview");
|
||||||
|
filterUri.add("/picturesPreview");
|
||||||
|
AttributeSetFilter filter = new AttributeSetFilter();
|
||||||
|
FilterRegistrationBean<AttributeSetFilter> registrationBean = new FilterRegistrationBean<>();
|
||||||
|
registrationBean.setFilter(filter);
|
||||||
|
registrationBean.setUrlPatterns(filterUri);
|
||||||
|
return registrationBean;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package cn.keking.model;
|
package cn.keking.model;
|
||||||
|
|
||||||
import cn.keking.config.ConfigConstants;
|
import cn.keking.config.ConfigConstants;
|
||||||
|
import org.artofsolving.jodconverter.model.FileProperties;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by kl on 2018/1/17.
|
* Created by kl on 2018/1/17.
|
||||||
@@ -13,6 +14,8 @@ public class FileAttribute {
|
|||||||
private String name;
|
private String name;
|
||||||
private String url;
|
private String url;
|
||||||
private String fileKey;
|
private String fileKey;
|
||||||
|
private String filePassword;
|
||||||
|
private String userToken;
|
||||||
private String officePreviewType = ConfigConstants.getOfficePreviewType();
|
private String officePreviewType = ConfigConstants.getOfficePreviewType();
|
||||||
private String tifPreviewType;
|
private String tifPreviewType;
|
||||||
private Boolean skipDownLoad = false;
|
private Boolean skipDownLoad = false;
|
||||||
@@ -35,6 +38,12 @@ public class FileAttribute {
|
|||||||
this.officePreviewType = officePreviewType;
|
this.officePreviewType = officePreviewType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public FileProperties toFileProperties() {
|
||||||
|
FileProperties fileProperties = new FileProperties();
|
||||||
|
fileProperties.setFilePassword(filePassword);
|
||||||
|
return fileProperties;
|
||||||
|
}
|
||||||
|
|
||||||
public String getFileKey() {
|
public String getFileKey() {
|
||||||
return fileKey;
|
return fileKey;
|
||||||
}
|
}
|
||||||
@@ -43,6 +52,22 @@ public class FileAttribute {
|
|||||||
this.fileKey = fileKey;
|
this.fileKey = fileKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getFilePassword() {
|
||||||
|
return filePassword;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFilePassword(String filePassword) {
|
||||||
|
this.filePassword = filePassword;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUserToken() {
|
||||||
|
return userToken;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserToken(String userToken) {
|
||||||
|
this.userToken = userToken;
|
||||||
|
}
|
||||||
|
|
||||||
public String getOfficePreviewType() {
|
public String getOfficePreviewType() {
|
||||||
return officePreviewType;
|
return officePreviewType;
|
||||||
}
|
}
|
||||||
@@ -82,6 +107,7 @@ public class FileAttribute {
|
|||||||
public void setUrl(String url) {
|
public void setUrl(String url) {
|
||||||
this.url = url;
|
this.url = url;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Boolean getSkipDownLoad() {
|
public Boolean getSkipDownLoad() {
|
||||||
return skipDownLoad;
|
return skipDownLoad;
|
||||||
}
|
}
|
||||||
@@ -89,6 +115,7 @@ public class FileAttribute {
|
|||||||
public void setSkipDownLoad(Boolean skipDownLoad) {
|
public void setSkipDownLoad(Boolean skipDownLoad) {
|
||||||
this.skipDownLoad = skipDownLoad;
|
this.skipDownLoad = skipDownLoad;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getTifPreviewType() {
|
public String getTifPreviewType() {
|
||||||
return tifPreviewType;
|
return tifPreviewType;
|
||||||
}
|
}
|
||||||
@@ -96,4 +123,5 @@ public class FileAttribute {
|
|||||||
public void setTifPreviewType(String previewType) {
|
public void setTifPreviewType(String previewType) {
|
||||||
this.tifPreviewType = previewType;
|
this.tifPreviewType = previewType;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -292,7 +292,18 @@ public class FileHandlerService {
|
|||||||
if (StringUtils.hasText(tifPreviewType)) {
|
if (StringUtils.hasText(tifPreviewType)) {
|
||||||
attribute.setTifPreviewType(tifPreviewType);
|
attribute.setTifPreviewType(tifPreviewType);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String filePassword = req.getParameter("filePassword");
|
||||||
|
if (StringUtils.hasText(filePassword)) {
|
||||||
|
attribute.setFilePassword(filePassword);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String userToken = req.getParameter("userToken");
|
||||||
|
if (StringUtils.hasText(userToken)) {
|
||||||
|
attribute.setUserToken(userToken);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return attribute;
|
return attribute;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import org.artofsolving.jodconverter.OfficeDocumentConverter;
|
|||||||
import org.artofsolving.jodconverter.office.DefaultOfficeManagerConfiguration;
|
import org.artofsolving.jodconverter.office.DefaultOfficeManagerConfiguration;
|
||||||
import org.artofsolving.jodconverter.office.OfficeManager;
|
import org.artofsolving.jodconverter.office.OfficeManager;
|
||||||
import org.artofsolving.jodconverter.office.OfficeUtils;
|
import org.artofsolving.jodconverter.office.OfficeUtils;
|
||||||
|
import org.artofsolving.jodconverter.util.PlatformUtils;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
@@ -24,7 +25,6 @@ import java.nio.charset.StandardCharsets;
|
|||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Properties;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建文件转换器
|
* 创建文件转换器
|
||||||
@@ -97,9 +97,8 @@ public class OfficePluginManager {
|
|||||||
|
|
||||||
private boolean killProcess() {
|
private boolean killProcess() {
|
||||||
boolean flag = false;
|
boolean flag = false;
|
||||||
Properties props = System.getProperties();
|
|
||||||
try {
|
try {
|
||||||
if (props.getProperty("os.name").toLowerCase().contains("windows")) {
|
if (PlatformUtils.isWindows()) {
|
||||||
Process p = Runtime.getRuntime().exec("cmd /c tasklist ");
|
Process p = Runtime.getRuntime().exec("cmd /c tasklist ");
|
||||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
InputStream os = p.getInputStream();
|
InputStream os = p.getInputStream();
|
||||||
@@ -112,6 +111,20 @@ public class OfficePluginManager {
|
|||||||
Runtime.getRuntime().exec("taskkill /im " + "soffice.bin" + " /f");
|
Runtime.getRuntime().exec("taskkill /im " + "soffice.bin" + " /f");
|
||||||
flag = true;
|
flag = true;
|
||||||
}
|
}
|
||||||
|
} else if (PlatformUtils.isLinux()) {
|
||||||
|
Process p = Runtime.getRuntime().exec(new String[]{"sh", "-c", "ps -ef | grep " + "soffice.bin" + " |grep -v grep | wc -l"});
|
||||||
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
|
InputStream os = p.getInputStream();
|
||||||
|
byte[] b = new byte[256];
|
||||||
|
while (os.read(b) > 0) {
|
||||||
|
baos.write(b);
|
||||||
|
}
|
||||||
|
String s = baos.toString();
|
||||||
|
if (!"0".equals(s)) {
|
||||||
|
String[] cmd = {"sh", "-c", "ps -ef | grep soffice.bin | grep -v grep | awk '{print \"kill -9 \"$2}' | sh"};
|
||||||
|
Runtime.getRuntime().exec(cmd);
|
||||||
|
flag = true;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
Process p = Runtime.getRuntime().exec(new String[]{"sh", "-c", "ps -ef | grep " + "soffice.bin"});
|
Process p = Runtime.getRuntime().exec(new String[]{"sh", "-c", "ps -ef | grep " + "soffice.bin"});
|
||||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package cn.keking.service;
|
package cn.keking.service;
|
||||||
|
|
||||||
|
import cn.keking.model.FileAttribute;
|
||||||
import org.artofsolving.jodconverter.OfficeDocumentConverter;
|
import org.artofsolving.jodconverter.OfficeDocumentConverter;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
@@ -20,22 +21,23 @@ public class OfficeToPdfService {
|
|||||||
this.officePluginManager = officePluginManager;
|
this.officePluginManager = officePluginManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void openOfficeToPDF(String inputFilePath, String outputFilePath) {
|
public void openOfficeToPDF(String inputFilePath, String outputFilePath, FileAttribute fileAttribute) {
|
||||||
office2pdf(inputFilePath, outputFilePath);
|
office2pdf(inputFilePath, outputFilePath, fileAttribute);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static void converterFile(File inputFile, String outputFilePath_end, OfficeDocumentConverter converter) {
|
public static void converterFile(File inputFile, String outputFilePath_end, OfficeDocumentConverter converter, FileAttribute fileAttribute) {
|
||||||
File outputFile = new File(outputFilePath_end);
|
File outputFile = new File(outputFilePath_end);
|
||||||
// 假如目标路径不存在,则新建该路径
|
// 假如目标路径不存在,则新建该路径
|
||||||
if (!outputFile.getParentFile().exists() && !outputFile.getParentFile().mkdirs()) {
|
if (!outputFile.getParentFile().exists() && !outputFile.getParentFile().mkdirs()) {
|
||||||
logger.error("创建目录【{}】失败,请检查目录权限!",outputFilePath_end);
|
logger.error("创建目录【{}】失败,请检查目录权限!",outputFilePath_end);
|
||||||
}
|
}
|
||||||
converter.convert(inputFile, outputFile);
|
|
||||||
|
converter.convert(inputFile, outputFile, fileAttribute.toFileProperties());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void office2pdf(String inputFilePath, String outputFilePath) {
|
public void office2pdf(String inputFilePath, String outputFilePath, FileAttribute fileAttribute) {
|
||||||
OfficeDocumentConverter converter = officePluginManager.getDocumentConverter();
|
OfficeDocumentConverter converter = officePluginManager.getDocumentConverter();
|
||||||
if (null != inputFilePath) {
|
if (null != inputFilePath) {
|
||||||
File inputFile = new File(inputFilePath);
|
File inputFile = new File(inputFilePath);
|
||||||
@@ -45,12 +47,12 @@ public class OfficeToPdfService {
|
|||||||
String outputFilePath_end = getOutputFilePath(inputFilePath);
|
String outputFilePath_end = getOutputFilePath(inputFilePath);
|
||||||
if (inputFile.exists()) {
|
if (inputFile.exists()) {
|
||||||
// 找不到源文件, 则返回
|
// 找不到源文件, 则返回
|
||||||
converterFile(inputFile, outputFilePath_end,converter);
|
converterFile(inputFile, outputFilePath_end, converter, fileAttribute);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (inputFile.exists()) {
|
if (inputFile.exists()) {
|
||||||
// 找不到源文件, 则返回
|
// 找不到源文件, 则返回
|
||||||
converterFile(inputFile, outputFilePath, converter);
|
converterFile(inputFile, outputFilePath, converter, fileAttribute);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,11 +3,13 @@ package cn.keking.service.impl;
|
|||||||
import cn.keking.config.ConfigConstants;
|
import cn.keking.config.ConfigConstants;
|
||||||
import cn.keking.model.FileAttribute;
|
import cn.keking.model.FileAttribute;
|
||||||
import cn.keking.model.ReturnResponse;
|
import cn.keking.model.ReturnResponse;
|
||||||
import cn.keking.service.FilePreview;
|
|
||||||
import cn.keking.utils.DownloadUtils;
|
|
||||||
import cn.keking.service.FileHandlerService;
|
import cn.keking.service.FileHandlerService;
|
||||||
|
import cn.keking.service.FilePreview;
|
||||||
import cn.keking.service.OfficeToPdfService;
|
import cn.keking.service.OfficeToPdfService;
|
||||||
|
import cn.keking.utils.DownloadUtils;
|
||||||
|
import cn.keking.utils.OfficeUtils;
|
||||||
import cn.keking.web.filter.BaseUrlFilter;
|
import cn.keking.web.filter.BaseUrlFilter;
|
||||||
|
import org.artofsolving.jodconverter.office.OfficeException;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.ui.Model;
|
import org.springframework.ui.Model;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
@@ -42,33 +44,83 @@ public class OfficeFilePreviewImpl implements FilePreview {
|
|||||||
String baseUrl = BaseUrlFilter.getBaseUrl();
|
String baseUrl = BaseUrlFilter.getBaseUrl();
|
||||||
String suffix = fileAttribute.getSuffix();
|
String suffix = fileAttribute.getSuffix();
|
||||||
String fileName = fileAttribute.getName();
|
String fileName = fileAttribute.getName();
|
||||||
|
String filePassword = fileAttribute.getFilePassword();
|
||||||
|
String userToken = fileAttribute.getUserToken();
|
||||||
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 cacheFileName = userToken == null ? pdfName : userToken + "_" + pdfName;
|
||||||
// 判断之前是否已转换过,如果转换过,直接返回,否则执行转换
|
String outFilePath = FILE_DIR + cacheFileName;
|
||||||
if (!fileHandlerService.listConvertedFiles().containsKey(pdfName) || !ConfigConstants.isCacheEnabled()) {
|
|
||||||
String filePath;
|
// 下载远程文件到本地,如果文件在本地已存在不会重复下载
|
||||||
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, null);
|
ReturnResponse<String> response = DownloadUtils.downLoad(fileAttribute, fileName);
|
||||||
if (response.isFailure()) {
|
if (response.isFailure()) {
|
||||||
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
return otherFilePreview.notSupportedFile(model, fileAttribute, response.getMsg());
|
||||||
}
|
}
|
||||||
filePath = response.getContent();
|
String filePath = response.getContent();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 1. 缓存判断-如果文件已经进行转换过,就直接返回,否则执行转换
|
||||||
|
* 2. 缓存判断-加密文件基于userToken进行缓存,如果没有就不缓存
|
||||||
|
*/
|
||||||
|
boolean isCached = false;
|
||||||
|
boolean isUseCached = false;
|
||||||
|
boolean isPwdProtectedOffice = false;
|
||||||
|
if (ConfigConstants.isCacheEnabled()) {
|
||||||
|
// 全局开启缓存
|
||||||
|
isUseCached = true;
|
||||||
|
if (fileHandlerService.listConvertedFiles().containsKey(cacheFileName)) {
|
||||||
|
// 存在缓存
|
||||||
|
isCached = true;
|
||||||
|
}
|
||||||
|
if (OfficeUtils.isPwdProtected(filePath)) {
|
||||||
|
isPwdProtectedOffice = true;
|
||||||
|
if (!StringUtils.hasLength(userToken)) {
|
||||||
|
// 不缓存没有userToken的加密文件
|
||||||
|
isUseCached = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
isPwdProtectedOffice = OfficeUtils.isPwdProtected(filePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isCached == false) {
|
||||||
|
// 没有缓存执行转换逻辑
|
||||||
|
if (isPwdProtectedOffice && !StringUtils.hasLength(filePassword)) {
|
||||||
|
// 加密文件需要密码
|
||||||
|
model.addAttribute("needFilePassword", true);
|
||||||
|
return EXEL_FILE_PREVIEW_PAGE;
|
||||||
|
} else {
|
||||||
if (StringUtils.hasText(outFilePath)) {
|
if (StringUtils.hasText(outFilePath)) {
|
||||||
officeToPdfService.openOfficeToPDF(filePath, outFilePath);
|
try {
|
||||||
|
officeToPdfService.openOfficeToPDF(filePath, outFilePath, fileAttribute);
|
||||||
|
} catch (OfficeException e) {
|
||||||
|
if (isPwdProtectedOffice && OfficeUtils.isCompatible(filePath, filePassword) == false) {
|
||||||
|
// 加密文件密码错误,提示重新输入
|
||||||
|
model.addAttribute("needFilePassword", true);
|
||||||
|
model.addAttribute("filePasswordError", true);
|
||||||
|
return EXEL_FILE_PREVIEW_PAGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return otherFilePreview.notSupportedFile(model, fileAttribute, "抱歉,该文件版本不兼容,文件版本错误。");
|
||||||
|
}
|
||||||
|
|
||||||
if (isHtml) {
|
if (isHtml) {
|
||||||
// 对转换后的文件进行操作(改变编码方式)
|
// 对转换后的文件进行操作(改变编码方式)
|
||||||
fileHandlerService.doActionConvertedFile(outFilePath);
|
fileHandlerService.doActionConvertedFile(outFilePath);
|
||||||
}
|
}
|
||||||
if (ConfigConstants.isCacheEnabled()) {
|
if (isUseCached) {
|
||||||
// 加入缓存
|
// 加入缓存
|
||||||
fileHandlerService.addConvertedFile(pdfName, fileHandlerService.getRelativePath(outFilePath));
|
fileHandlerService.addConvertedFile(cacheFileName, fileHandlerService.getRelativePath(outFilePath));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
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, otherFilePreview);
|
return getPreviewType(model, fileAttribute, officePreviewType, baseUrl, cacheFileName, outFilePath, fileHandlerService, OFFICE_PREVIEW_TYPE_IMAGE, otherFilePreview);
|
||||||
}
|
}
|
||||||
model.addAttribute("pdfUrl", pdfName);
|
|
||||||
|
model.addAttribute("pdfUrl", cacheFileName);
|
||||||
return isHtml ? EXEL_FILE_PREVIEW_PAGE : PDF_FILE_PREVIEW_PAGE;
|
return isHtml ? EXEL_FILE_PREVIEW_PAGE : PDF_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,4 +140,5 @@ public class OfficeFilePreviewImpl implements FilePreview {
|
|||||||
return PICTURE_FILE_PREVIEW_PAGE;
|
return PICTURE_FILE_PREVIEW_PAGE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,8 +48,7 @@ public class SimTextFilePreviewImpl implements FilePreview {
|
|||||||
private String textData(String baseUrll) throws IOException {
|
private String textData(String baseUrll) throws IOException {
|
||||||
File file = new File(baseUrll);
|
File file = new File(baseUrll);
|
||||||
if(!file.exists() || file.length() == 0) {
|
if(!file.exists() || file.length() == 0) {
|
||||||
String line="";
|
return "";
|
||||||
return line;
|
|
||||||
}else {
|
}else {
|
||||||
String charset = EncodingDetects.getJavaEncode(baseUrll);
|
String charset = EncodingDetects.getJavaEncode(baseUrll);
|
||||||
System.out.println(charset);
|
System.out.println(charset);
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ import cn.keking.utils.ConvertPicUtil;
|
|||||||
import cn.keking.utils.DownloadUtils;
|
import cn.keking.utils.DownloadUtils;
|
||||||
import cn.keking.utils.WebUtils;
|
import cn.keking.utils.WebUtils;
|
||||||
import cn.keking.web.filter.BaseUrlFilter;
|
import cn.keking.web.filter.BaseUrlFilter;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.ui.Model;
|
import org.springframework.ui.Model;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
@@ -18,12 +20,15 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* tiff 图片文件处理
|
* tiff 图片文件处理
|
||||||
|
*
|
||||||
* @author kl (http://kailing.pub)
|
* @author kl (http://kailing.pub)
|
||||||
* @since 2021/2/8
|
* @since 2021/2/8
|
||||||
*/
|
*/
|
||||||
@Service
|
@Service
|
||||||
public class TiffFilePreviewImpl implements FilePreview {
|
public class TiffFilePreviewImpl implements FilePreview {
|
||||||
|
|
||||||
|
private final static Logger logger = LoggerFactory.getLogger(TiffFilePreviewImpl.class);
|
||||||
|
|
||||||
private final PictureFilePreviewImpl pictureFilePreview;
|
private final PictureFilePreviewImpl pictureFilePreview;
|
||||||
private static final String INITIALIZE_MEMORY_SIZE = "initializeMemorySize";
|
private static final String INITIALIZE_MEMORY_SIZE = "initializeMemorySize";
|
||||||
//默认初始化 50MB 内存
|
//默认初始化 50MB 内存
|
||||||
@@ -78,6 +83,7 @@ public class TiffFilePreviewImpl implements FilePreview {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 如果pdf已经存在,则将url路径加入到对象中,返回给页面
|
// 如果pdf已经存在,则将url路径加入到对象中,返回给页面
|
||||||
|
assert filePdf != null;
|
||||||
if (filePdf.exists()) {
|
if (filePdf.exists()) {
|
||||||
String pdfUrl = baseUrl + inputFileNamePrefix + ".pdf";
|
String pdfUrl = baseUrl + inputFileNamePrefix + ".pdf";
|
||||||
model.addAttribute("pdfUrl", pdfUrl);
|
model.addAttribute("pdfUrl", pdfUrl);
|
||||||
@@ -101,8 +107,8 @@ public class TiffFilePreviewImpl implements FilePreview {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 转换后的tif没用了,可以删掉了
|
// 转换后的tif没用了,可以删掉了
|
||||||
if(fileTiff.exists()){
|
if (fileTiff.exists() && !fileTiff.delete()) {
|
||||||
fileTiff.delete();
|
logger.error("{} 清理失败", strLocalTif);
|
||||||
}
|
}
|
||||||
|
|
||||||
return PICTURE_FILE_PREVIEW_PAGE;
|
return PICTURE_FILE_PREVIEW_PAGE;
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ public class ConvertPicUtil {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Tif 转 JPG。
|
* Tif 转 JPG。
|
||||||
|
*
|
||||||
* @param strInputFile 输入文件的路径和文件名
|
* @param strInputFile 输入文件的路径和文件名
|
||||||
* @param strOutputFile 输出文件的路径和文件名
|
* @param strOutputFile 输出文件的路径和文件名
|
||||||
* @return boolean 是否转换成功
|
* @return boolean 是否转换成功
|
||||||
@@ -60,8 +61,8 @@ public class ConvertPicUtil {
|
|||||||
int intTifCount = imageDecoder.getNumPages();
|
int intTifCount = imageDecoder.getNumPages();
|
||||||
logger.info("该tif文件共有【" + intTifCount + "】页");
|
logger.info("该tif文件共有【" + intTifCount + "】页");
|
||||||
|
|
||||||
String strJpgPath = "";
|
String strJpgPath;
|
||||||
String strJpgUrl = "";
|
String strJpgUrl;
|
||||||
if (intTifCount == 1) {
|
if (intTifCount == 1) {
|
||||||
// 如果是单页tif文件,则转换的目标文件夹就在指定的位置
|
// 如果是单页tif文件,则转换的目标文件夹就在指定的位置
|
||||||
strJpgPath = strOutputFile.substring(0, strOutputFile.lastIndexOf("/"));
|
strJpgPath = strOutputFile.substring(0, strOutputFile.lastIndexOf("/"));
|
||||||
@@ -72,13 +73,13 @@ public class ConvertPicUtil {
|
|||||||
|
|
||||||
// 处理目标文件夹,如果不存在则自动创建
|
// 处理目标文件夹,如果不存在则自动创建
|
||||||
File fileJpgPath = new File(strJpgPath);
|
File fileJpgPath = new File(strJpgPath);
|
||||||
if (!fileJpgPath.exists()) {
|
if (!fileJpgPath.exists() && !fileJpgPath.mkdirs()) {
|
||||||
fileJpgPath.mkdirs();
|
logger.error("{} 创建失败", strJpgPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 循环,处理每页tif文件,转换为jpg
|
// 循环,处理每页tif文件,转换为jpg
|
||||||
for (int i = 0; i < intTifCount; i++) {
|
for (int i = 0; i < intTifCount; i++) {
|
||||||
String strJpg = "";
|
String strJpg;
|
||||||
if (intTifCount == 1) {
|
if (intTifCount == 1) {
|
||||||
strJpg = strJpgPath + "/" + strFilePrefix + ".jpg";
|
strJpg = strJpgPath + "/" + strFilePrefix + ".jpg";
|
||||||
strJpgUrl = strFilePrefix + ".jpg";
|
strJpgUrl = strFilePrefix + ".jpg";
|
||||||
@@ -118,21 +119,19 @@ public class ConvertPicUtil {
|
|||||||
try {
|
try {
|
||||||
fileSeekStream.close();
|
fileSeekStream.close();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
}
|
logger.error(e.getMessage(), e);
|
||||||
fileSeekStream = null;
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 将Jpg图片转换为Pdf文件
|
* 将Jpg图片转换为Pdf文件
|
||||||
*
|
*
|
||||||
* @param strJpgFile 输入的jpg的路径和文件名
|
* @param strJpgFile 输入的jpg的路径和文件名
|
||||||
* @param strPdfFile 输出的pdf的路径和文件名
|
* @param strPdfFile 输出的pdf的路径和文件名
|
||||||
* @return
|
|
||||||
*/
|
*/
|
||||||
public static File convertJpg2Pdf(String strJpgFile, String strPdfFile) {
|
public static void convertJpg2Pdf(String strJpgFile, String strPdfFile) {
|
||||||
Document document = new Document();
|
Document document = new Document();
|
||||||
// 设置文档页边距
|
// 设置文档页边距
|
||||||
document.setMargins(0, 0, 0, 0);
|
document.setMargins(0, 0, 0, 0);
|
||||||
@@ -157,23 +156,18 @@ public class ConvertPicUtil {
|
|||||||
document.add(image);
|
document.add(image);
|
||||||
} catch (Exception ioe) {
|
} catch (Exception ioe) {
|
||||||
ioe.printStackTrace();
|
ioe.printStackTrace();
|
||||||
return null;
|
|
||||||
} finally {
|
} finally {
|
||||||
//关闭文档
|
//关闭文档
|
||||||
document.close();
|
document.close();
|
||||||
try {
|
try {
|
||||||
|
assert fos != null;
|
||||||
fos.flush();
|
fos.flush();
|
||||||
fos.close();
|
fos.close();
|
||||||
|
|
||||||
File filePDF = new File(strPdfFile);
|
|
||||||
return filePDF;
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -182,7 +176,7 @@ public class ConvertPicUtil {
|
|||||||
*
|
*
|
||||||
* @param strTifFile 输入的tif的路径和文件名
|
* @param strTifFile 输入的tif的路径和文件名
|
||||||
* @param strPdfFile 输出的pdf的路径和文件名
|
* @param strPdfFile 输出的pdf的路径和文件名
|
||||||
* @return
|
* @return File
|
||||||
*/
|
*/
|
||||||
public static File convertTif2Pdf(String strTifFile, String strPdfFile) {
|
public static File convertTif2Pdf(String strTifFile, String strPdfFile) {
|
||||||
try {
|
try {
|
||||||
@@ -204,7 +198,7 @@ public class ConvertPicUtil {
|
|||||||
List<String> listPic2Jpg = convertTif2Jpg(strTifFile, strJpg);
|
List<String> listPic2Jpg = convertTif2Jpg(strTifFile, strJpg);
|
||||||
|
|
||||||
if (listPic2Jpg != null && fileJpg.exists()) {
|
if (listPic2Jpg != null && fileJpg.exists()) {
|
||||||
filePDF = convertJpg2Pdf(strJpg, strPdfFile);
|
convertJpg2Pdf(strJpg, strPdfFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
@@ -229,7 +223,7 @@ public class ConvertPicUtil {
|
|||||||
|
|
||||||
return filePDF;
|
return filePDF;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.out.println(e.toString());
|
logger.error(e.getMessage(), e);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -87,6 +87,13 @@ public class DownloadUtils {
|
|||||||
if (!dirFile.exists() && !dirFile.mkdirs()) {
|
if (!dirFile.exists() && !dirFile.mkdirs()) {
|
||||||
logger.error("创建目录【{}】失败,可能是权限不够,请检查", fileDir);
|
logger.error("创建目录【{}】失败,可能是权限不够,请检查", fileDir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 文件已在本地存在,跳过文件下载
|
||||||
|
File realFile = new File(realPath);
|
||||||
|
if (realFile.exists()) {
|
||||||
|
fileAttribute.setSkipDownLoad(true);
|
||||||
|
}
|
||||||
|
|
||||||
return realPath;
|
return realPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ import org.slf4j.LoggerFactory;
|
|||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
public class KkFileUtils {
|
public class KkFileUtils {
|
||||||
@@ -15,6 +17,33 @@ public class KkFileUtils {
|
|||||||
|
|
||||||
public static final String DEFAULT_FILE_ENCODING = "UTF-8";
|
public static final String DEFAULT_FILE_ENCODING = "UTF-8";
|
||||||
|
|
||||||
|
private static final List<String> illegalFileStrList = new ArrayList<>();
|
||||||
|
|
||||||
|
static {
|
||||||
|
illegalFileStrList.add("../");
|
||||||
|
illegalFileStrList.add("./");
|
||||||
|
illegalFileStrList.add("..\\");
|
||||||
|
illegalFileStrList.add(".\\");
|
||||||
|
illegalFileStrList.add("\\..");
|
||||||
|
illegalFileStrList.add("\\.");
|
||||||
|
illegalFileStrList.add("..");
|
||||||
|
illegalFileStrList.add("...");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检查文件名是否合规
|
||||||
|
* @param fileName 文件名
|
||||||
|
* @return 合规结果,true:不合规,false:合规
|
||||||
|
*/
|
||||||
|
public static boolean isIllegalFileName(String fileName){
|
||||||
|
for (String str: illegalFileStrList){
|
||||||
|
if(fileName.contains(str)){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断url是否是http资源
|
* 判断url是否是http资源
|
||||||
*
|
*
|
||||||
|
|||||||
62
server/src/main/java/cn/keking/utils/OfficeUtils.java
Normal file
62
server/src/main/java/cn/keking/utils/OfficeUtils.java
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
package cn.keking.utils;
|
||||||
|
|
||||||
|
import org.apache.commons.lang3.exception.ExceptionUtils;
|
||||||
|
import org.apache.poi.EncryptedDocumentException;
|
||||||
|
import org.apache.poi.extractor.ExtractorFactory;
|
||||||
|
import org.apache.poi.hssf.record.crypto.Biff8EncryptionKey;
|
||||||
|
import org.springframework.lang.Nullable;
|
||||||
|
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Office工具类
|
||||||
|
*
|
||||||
|
* @author ylyue
|
||||||
|
* @since 2022/7/5
|
||||||
|
*/
|
||||||
|
public class OfficeUtils {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 判断office(word,excel,ppt)文件是否受密码保护
|
||||||
|
*
|
||||||
|
* @param path office文件路径
|
||||||
|
* @return 是否受密码保护
|
||||||
|
*/
|
||||||
|
public static boolean isPwdProtected(String path) {
|
||||||
|
try {
|
||||||
|
ExtractorFactory.createExtractor(new FileInputStream(path));
|
||||||
|
} catch (EncryptedDocumentException e) {
|
||||||
|
return true;
|
||||||
|
} catch (Exception e) {
|
||||||
|
Throwable[] throwables = ExceptionUtils.getThrowables(e);
|
||||||
|
for (Throwable throwable : throwables) {
|
||||||
|
if (throwable instanceof EncryptedDocumentException) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 判断office文件是否可打开(兼容)
|
||||||
|
*
|
||||||
|
* @param path office文件路径
|
||||||
|
* @param password 文件密码
|
||||||
|
* @return 是否可打开(兼容)
|
||||||
|
*/
|
||||||
|
public static synchronized boolean isCompatible(String path, @Nullable String password) {
|
||||||
|
try {
|
||||||
|
Biff8EncryptionKey.setCurrentUserPassword(password);
|
||||||
|
ExtractorFactory.createExtractor(new FileInputStream(path));
|
||||||
|
} catch (Exception e) {
|
||||||
|
return false;
|
||||||
|
} finally {
|
||||||
|
Biff8EncryptionKey.setCurrentUserPassword(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,11 +1,16 @@
|
|||||||
package cn.keking.utils;
|
package cn.keking.utils;
|
||||||
|
|
||||||
import io.mola.galimatias.GalimatiasParseException;
|
import io.mola.galimatias.GalimatiasParseException;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
import org.springframework.util.Base64Utils;
|
||||||
|
|
||||||
|
import javax.servlet.ServletRequest;
|
||||||
import java.io.UnsupportedEncodingException;
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.net.URLEncoder;
|
import java.net.URLEncoder;
|
||||||
|
import java.nio.charset.Charset;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@@ -17,6 +22,7 @@ public class WebUtils {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取标准的URL
|
* 获取标准的URL
|
||||||
|
*
|
||||||
* @param urlStr url
|
* @param urlStr url
|
||||||
* @return 标准的URL
|
* @return 标准的URL
|
||||||
*/
|
*/
|
||||||
@@ -115,10 +121,22 @@ public class WebUtils {
|
|||||||
* @return 文件名编码后的url
|
* @return 文件名编码后的url
|
||||||
*/
|
*/
|
||||||
public static String encodeUrlFileName(String url) {
|
public static String encodeUrlFileName(String url) {
|
||||||
|
String encodedFileName;
|
||||||
|
String fullFileName = WebUtils.getUrlParameterReg(url, "fullfilename");
|
||||||
|
if (fullFileName != null && fullFileName.length() > 0) {
|
||||||
|
try {
|
||||||
|
encodedFileName = URLEncoder.encode(fullFileName, "UTF-8");
|
||||||
|
} catch (UnsupportedEncodingException e) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
String noQueryUrl = url.substring(0, url.indexOf("?"));
|
||||||
|
String parameterStr = url.substring(url.indexOf("?"));
|
||||||
|
parameterStr = parameterStr.replaceFirst(fullFileName, encodedFileName);
|
||||||
|
return noQueryUrl + parameterStr;
|
||||||
|
}
|
||||||
String noQueryUrl = url.substring(0, url.contains("?") ? url.indexOf("?") : url.length());
|
String noQueryUrl = url.substring(0, url.contains("?") ? url.indexOf("?") : url.length());
|
||||||
int fileNameStartIndex = noQueryUrl.lastIndexOf('/') + 1;
|
int fileNameStartIndex = noQueryUrl.lastIndexOf('/') + 1;
|
||||||
int fileNameEndIndex = noQueryUrl.lastIndexOf('.');
|
int fileNameEndIndex = noQueryUrl.lastIndexOf('.');
|
||||||
String encodedFileName;
|
|
||||||
try {
|
try {
|
||||||
encodedFileName = URLEncoder.encode(noQueryUrl.substring(fileNameStartIndex, fileNameEndIndex), "UTF-8");
|
encodedFileName = URLEncoder.encode(noQueryUrl.substring(fileNameStartIndex, fileNameEndIndex), "UTF-8");
|
||||||
} catch (UnsupportedEncodingException e) {
|
} catch (UnsupportedEncodingException e) {
|
||||||
@@ -126,4 +144,72 @@ public class WebUtils {
|
|||||||
}
|
}
|
||||||
return url.substring(0, fileNameStartIndex) + encodedFileName + url.substring(fileNameEndIndex);
|
return url.substring(0, fileNameStartIndex) + encodedFileName + url.substring(fileNameEndIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 从 ServletRequest 获取预览的源 url , 已 base64 解码
|
||||||
|
*
|
||||||
|
* @param request 请求 request
|
||||||
|
* @return url
|
||||||
|
*/
|
||||||
|
public static String getSourceUrl(ServletRequest request) {
|
||||||
|
String url = request.getParameter("url");
|
||||||
|
String urls = request.getParameter("urls");
|
||||||
|
String currentUrl = request.getParameter("currentUrl");
|
||||||
|
String urlPath = request.getParameter("urlPath");
|
||||||
|
if (StringUtils.isNotBlank(url)) {
|
||||||
|
return decodeBase64String(url);
|
||||||
|
}
|
||||||
|
if (StringUtils.isNotBlank(currentUrl)) {
|
||||||
|
return decodeBase64String(currentUrl);
|
||||||
|
}
|
||||||
|
if (StringUtils.isNotBlank(urlPath)) {
|
||||||
|
return decodeBase64String(urlPath);
|
||||||
|
}
|
||||||
|
if (StringUtils.isNotBlank(urls)) {
|
||||||
|
urls = decodeBase64String(urls);
|
||||||
|
String[] images = urls.split("\\|");
|
||||||
|
return images[0];
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 将 Base64 字符串解码,默认使用 UTF-8
|
||||||
|
* @param source 原始 Base64 字符串
|
||||||
|
* @return decoded string
|
||||||
|
*/
|
||||||
|
public static String decodeBase64String(String source) {
|
||||||
|
return decodeBase64String(source, StandardCharsets.UTF_8);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 将 Base64 字符串使用指定字符集解码
|
||||||
|
* @param source 原始 Base64 字符串
|
||||||
|
* @param charsets 字符集
|
||||||
|
* @return decoded string
|
||||||
|
*/
|
||||||
|
public static String decodeBase64String(String source, Charset charsets) {
|
||||||
|
/*
|
||||||
|
* url 传入的参数里加号会被替换成空格,导致解析出错,这里需要把空格替换回加号
|
||||||
|
* 有些 Base64 实现可能每 76 个字符插入换行符,也一并去掉
|
||||||
|
* https://github.com/kekingcn/kkFileView/pull/340
|
||||||
|
*/
|
||||||
|
return new String(Base64Utils.decodeFromString(
|
||||||
|
source.replaceAll(" ", "+").replaceAll("\n", "")
|
||||||
|
), charsets);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取 url 的 host
|
||||||
|
* @param urlStr url
|
||||||
|
* @return host
|
||||||
|
*/
|
||||||
|
public static String getHost(String urlStr) {
|
||||||
|
try {
|
||||||
|
URL url = new URL(urlStr);
|
||||||
|
return url.getHost().toLowerCase();
|
||||||
|
} catch (MalformedURLException ignored) {
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +1,33 @@
|
|||||||
package cn.keking.web.controller;
|
package cn.keking.web.controller;
|
||||||
|
|
||||||
import cn.keking.config.ConfigConstants;
|
import cn.keking.config.ConfigConstants;
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
||||||
|
|
||||||
import cn.keking.model.ReturnResponse;
|
import cn.keking.model.ReturnResponse;
|
||||||
|
import cn.keking.utils.KkFileUtils;
|
||||||
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.util.StreamUtils;
|
import org.springframework.util.StreamUtils;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestMethod;
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
import java.io.*;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.util.*;
|
|
||||||
import org.springframework.web.util.HtmlUtils;
|
import org.springframework.web.util.HtmlUtils;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author yudian-it
|
* @author yudian-it
|
||||||
* @date 2017/12/1
|
* @date 2017/12/1
|
||||||
*/
|
*/
|
||||||
@@ -33,16 +40,17 @@ public class FileController {
|
|||||||
private final String demoDir = "demo";
|
private final String demoDir = "demo";
|
||||||
private final String demoPath = demoDir + File.separator;
|
private final String demoPath = demoDir + File.separator;
|
||||||
|
|
||||||
@RequestMapping(value = "fileUpload", method = RequestMethod.POST)
|
@PostMapping("/fileUpload")
|
||||||
public String fileUpload(@RequestParam("file") MultipartFile file) throws JsonProcessingException {
|
public ReturnResponse<Object> fileUpload(@RequestParam("file") MultipartFile file) throws JsonProcessingException {
|
||||||
if (ConfigConstants.getFileUploadDisable()) {
|
if (ConfigConstants.getFileUploadDisable()) {
|
||||||
return new ObjectMapper().writeValueAsString(ReturnResponse.failure("文件传接口已禁用"));
|
return ReturnResponse.failure("文件传接口已禁用");
|
||||||
}
|
}
|
||||||
// 获取文件名
|
// 获取文件名
|
||||||
String fileName = file.getOriginalFilename();
|
String fileName = file.getOriginalFilename();
|
||||||
//判断是否为IE浏览器的文件名,IE浏览器下文件名会带有盘符信息
|
//判断是否为IE浏览器的文件名,IE浏览器下文件名会带有盘符信息
|
||||||
|
|
||||||
// escaping dangerous characters to prevent XSS
|
// escaping dangerous characters to prevent XSS
|
||||||
|
assert fileName != null;
|
||||||
fileName = HtmlUtils.htmlEscape(fileName, StandardCharsets.UTF_8.name());
|
fileName = HtmlUtils.htmlEscape(fileName, StandardCharsets.UTF_8.name());
|
||||||
|
|
||||||
// Check for Unix-style path
|
// Check for Unix-style path
|
||||||
@@ -56,7 +64,7 @@ public class FileController {
|
|||||||
}
|
}
|
||||||
// 判断是否存在同名文件
|
// 判断是否存在同名文件
|
||||||
if (existsFile(fileName)) {
|
if (existsFile(fileName)) {
|
||||||
return new ObjectMapper().writeValueAsString(ReturnResponse.failure("存在同名文件,请先删除原有文件再次上传"));
|
return ReturnResponse.failure("存在同名文件,请先删除原有文件再次上传");
|
||||||
}
|
}
|
||||||
File outFile = new File(fileDir + demoPath);
|
File outFile = new File(fileDir + demoPath);
|
||||||
if (!outFile.exists() && !outFile.mkdirs()) {
|
if (!outFile.exists() && !outFile.mkdirs()) {
|
||||||
@@ -65,28 +73,33 @@ public class FileController {
|
|||||||
logger.info("上传文件:{}", fileDir + demoPath + fileName);
|
logger.info("上传文件:{}", fileDir + demoPath + fileName);
|
||||||
try (InputStream in = file.getInputStream(); OutputStream out = new FileOutputStream(fileDir + demoPath + fileName)) {
|
try (InputStream in = file.getInputStream(); OutputStream out = new FileOutputStream(fileDir + demoPath + fileName)) {
|
||||||
StreamUtils.copy(in, out);
|
StreamUtils.copy(in, out);
|
||||||
return new ObjectMapper().writeValueAsString(ReturnResponse.success(null));
|
return ReturnResponse.success(null);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
logger.error("文件上传失败", e);
|
logger.error("文件上传失败", e);
|
||||||
return new ObjectMapper().writeValueAsString(ReturnResponse.failure());
|
return ReturnResponse.failure();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = "deleteFile", method = RequestMethod.GET)
|
@GetMapping("/deleteFile")
|
||||||
public String deleteFile(String fileName) throws JsonProcessingException {
|
public ReturnResponse<Object> deleteFile(String fileName) throws JsonProcessingException {
|
||||||
if (fileName.contains("/")) {
|
if (fileName.contains("/")) {
|
||||||
fileName = fileName.substring(fileName.lastIndexOf("/") + 1);
|
fileName = fileName.substring(fileName.lastIndexOf("/") + 1);
|
||||||
}
|
}
|
||||||
|
if (KkFileUtils.isIllegalFileName(fileName)) {
|
||||||
|
return ReturnResponse.failure("非法文件名,删除失败!");
|
||||||
|
}
|
||||||
File file = new File(fileDir + demoPath + fileName);
|
File file = new File(fileDir + demoPath + fileName);
|
||||||
logger.info("删除文件:{}", file.getAbsolutePath());
|
logger.info("删除文件:{}", file.getAbsolutePath());
|
||||||
if (file.exists() && !file.delete()) {
|
if (file.exists() && !file.delete()) {
|
||||||
logger.error("删除文件【{}】失败,请检查目录权限!",file.getPath());
|
String msg = String.format("删除文件【%s】失败,请检查目录权限!", file.getPath());
|
||||||
|
logger.error(msg);
|
||||||
|
return ReturnResponse.failure(msg);
|
||||||
}
|
}
|
||||||
return new ObjectMapper().writeValueAsString(ReturnResponse.success());
|
return ReturnResponse.success();
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = "listFiles", method = RequestMethod.GET)
|
@GetMapping("/listFiles")
|
||||||
public String getFiles() throws JsonProcessingException {
|
public List<Map<String, String>> getFiles() throws JsonProcessingException {
|
||||||
List<Map<String, String>> list = new ArrayList<>();
|
List<Map<String, String>> list = new ArrayList<>();
|
||||||
File file = new File(fileDir + demoPath);
|
File file = new File(fileDir + demoPath);
|
||||||
if (file.exists()) {
|
if (file.exists()) {
|
||||||
@@ -96,7 +109,7 @@ public class FileController {
|
|||||||
list.add(fileName);
|
list.add(fileName);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return new ObjectMapper().writeValueAsString(list);
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean existsFile(String fileName) {
|
private boolean existsFile(String fileName) {
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
package cn.keking.web.controller;
|
package cn.keking.web.controller;
|
||||||
|
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestMethod;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 页面跳转
|
* 页面跳转
|
||||||
@@ -12,12 +11,12 @@ import org.springframework.web.bind.annotation.RequestMethod;
|
|||||||
@Controller
|
@Controller
|
||||||
public class IndexController {
|
public class IndexController {
|
||||||
|
|
||||||
@RequestMapping(value = "/index", method = RequestMethod.GET)
|
@GetMapping( "/index")
|
||||||
public String go2Index(){
|
public String go2Index(){
|
||||||
return "index";
|
return "index";
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = "/", method = RequestMethod.GET)
|
@GetMapping( "/")
|
||||||
public String root() {
|
public String root() {
|
||||||
return "redirect:/index";
|
return "redirect:/index";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,37 +1,33 @@
|
|||||||
package cn.keking.web.controller;
|
package cn.keking.web.controller;
|
||||||
|
|
||||||
import cn.keking.config.ConfigConstants;
|
|
||||||
import cn.keking.model.FileAttribute;
|
import cn.keking.model.FileAttribute;
|
||||||
|
import cn.keking.service.FileHandlerService;
|
||||||
import cn.keking.service.FilePreview;
|
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.service.impl.OtherFilePreviewImpl;
|
||||||
import cn.keking.service.FileHandlerService;
|
|
||||||
import cn.keking.utils.WebUtils;
|
import cn.keking.utils.WebUtils;
|
||||||
import fr.opensagres.xdocreport.core.io.IOUtils;
|
import fr.opensagres.xdocreport.core.io.IOUtils;
|
||||||
import io.mola.galimatias.GalimatiasParseException;
|
import io.mola.galimatias.GalimatiasParseException;
|
||||||
import jodd.io.NetUtil;
|
import jodd.io.NetUtil;
|
||||||
import org.apache.commons.codec.binary.Base64;
|
import org.apache.commons.codec.binary.Base64;
|
||||||
import org.artofsolving.jodconverter.util.PlatformUtils;
|
|
||||||
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.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestMethod;
|
|
||||||
import org.springframework.web.bind.annotation.ResponseBody;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||||||
|
import org.springframework.web.util.HtmlUtils;
|
||||||
|
|
||||||
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.IOException;
|
||||||
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.net.URLDecoder;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Locale;
|
|
||||||
|
|
||||||
import static cn.keking.service.FilePreview.PICTURE_FILE_PREVIEW_PAGE;
|
import static cn.keking.service.FilePreview.PICTURE_FILE_PREVIEW_PAGE;
|
||||||
|
|
||||||
@@ -56,18 +52,15 @@ public class OnlinePreviewController {
|
|||||||
this.otherFilePreview = otherFilePreview;
|
this.otherFilePreview = otherFilePreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = "/onlinePreview")
|
@GetMapping( "/onlinePreview")
|
||||||
public String onlinePreview(String url, Model model, HttpServletRequest req) {
|
public String onlinePreview(String url, Model model, HttpServletRequest req) {
|
||||||
String fileUrl;
|
String fileUrl;
|
||||||
try {
|
try {
|
||||||
fileUrl = new String(Base64.decodeBase64(url), StandardCharsets.UTF_8);
|
fileUrl = WebUtils.decodeBase64String(url);
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
String errorMsg = String.format(BASE64_DECODE_ERROR_MSG, "url");
|
String errorMsg = String.format(BASE64_DECODE_ERROR_MSG, "url");
|
||||||
return otherFilePreview.notSupportedFile(model, errorMsg);
|
return otherFilePreview.notSupportedFile(model, errorMsg);
|
||||||
}
|
}
|
||||||
if (!allowPreview(fileUrl)) {
|
|
||||||
return otherFilePreview.notSupportedFile(model, "该文件不允许预览:" + fileUrl);
|
|
||||||
}
|
|
||||||
FileAttribute fileAttribute = fileHandlerService.getFileAttribute(fileUrl, req);
|
FileAttribute fileAttribute = fileHandlerService.getFileAttribute(fileUrl, req);
|
||||||
model.addAttribute("file", fileAttribute);
|
model.addAttribute("file", fileAttribute);
|
||||||
FilePreview filePreview = previewFactory.get(fileAttribute);
|
FilePreview filePreview = previewFactory.get(fileAttribute);
|
||||||
@@ -75,15 +68,18 @@ public class OnlinePreviewController {
|
|||||||
return filePreview.filePreviewHandle(fileUrl, model, fileAttribute);
|
return filePreview.filePreviewHandle(fileUrl, model, fileAttribute);
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = "/picturesPreview")
|
@GetMapping( "/picturesPreview")
|
||||||
public String picturesPreview(String urls, Model model, HttpServletRequest req) throws UnsupportedEncodingException {
|
public String picturesPreview(String urls, Model model, HttpServletRequest req) throws UnsupportedEncodingException {
|
||||||
String fileUrls;
|
String fileUrls;
|
||||||
try {
|
try {
|
||||||
fileUrls = new String(Base64.decodeBase64(urls));
|
fileUrls = WebUtils.decodeBase64String(urls);
|
||||||
|
// 防止XSS攻击
|
||||||
|
fileUrls = HtmlUtils.htmlEscape(fileUrls);
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
String errorMsg = String.format(BASE64_DECODE_ERROR_MSG, "urls");
|
String errorMsg = String.format(BASE64_DECODE_ERROR_MSG, "urls");
|
||||||
return otherFilePreview.notSupportedFile(model, errorMsg);
|
return otherFilePreview.notSupportedFile(model, errorMsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.info("预览文件url:{},urls:{}", fileUrls, urls);
|
logger.info("预览文件url:{},urls:{}", fileUrls, urls);
|
||||||
// 抽取文件并返回文件列表
|
// 抽取文件并返回文件列表
|
||||||
String[] images = fileUrls.split("\\|");
|
String[] images = fileUrls.split("\\|");
|
||||||
@@ -93,14 +89,8 @@ public class OnlinePreviewController {
|
|||||||
String currentUrl = req.getParameter("currentUrl");
|
String currentUrl = req.getParameter("currentUrl");
|
||||||
if (StringUtils.hasText(currentUrl)) {
|
if (StringUtils.hasText(currentUrl)) {
|
||||||
String decodedCurrentUrl = new String(Base64.decodeBase64(currentUrl));
|
String decodedCurrentUrl = new String(Base64.decodeBase64(currentUrl));
|
||||||
if (!allowPreview(decodedCurrentUrl)) {
|
|
||||||
return otherFilePreview.notSupportedFile(model, "该文件不允许预览:" + decodedCurrentUrl);
|
|
||||||
}
|
|
||||||
model.addAttribute("currentUrl", decodedCurrentUrl);
|
model.addAttribute("currentUrl", decodedCurrentUrl);
|
||||||
} else {
|
} else {
|
||||||
if (!allowPreview(imgUrls.get(0))) {
|
|
||||||
return otherFilePreview.notSupportedFile(model, "该文件不允许预览:" + imgUrls.get(0));
|
|
||||||
}
|
|
||||||
model.addAttribute("currentUrl", imgUrls.get(0));
|
model.addAttribute("currentUrl", imgUrls.get(0));
|
||||||
}
|
}
|
||||||
return PICTURE_FILE_PREVIEW_PAGE;
|
return PICTURE_FILE_PREVIEW_PAGE;
|
||||||
@@ -113,17 +103,23 @@ public class OnlinePreviewController {
|
|||||||
* @param urlPath url
|
* @param urlPath url
|
||||||
* @param response response
|
* @param response response
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value = "/getCorsFile", method = RequestMethod.GET)
|
@GetMapping("/getCorsFile")
|
||||||
public void getCorsFile(String urlPath, HttpServletResponse response) {
|
public void getCorsFile(String urlPath, HttpServletResponse response) {
|
||||||
|
try {
|
||||||
|
urlPath = WebUtils.decodeBase64String(urlPath);
|
||||||
|
} catch (Exception ex) {
|
||||||
|
logger.error(String.format(BASE64_DECODE_ERROR_MSG, urlPath),ex);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (urlPath.toLowerCase().startsWith("file:") || urlPath.toLowerCase().startsWith("file%3")
|
||||||
|
|| !urlPath.toLowerCase().startsWith("http")) {
|
||||||
|
logger.info("读取跨域文件异常,可能存在非法访问,urlPath:{}", urlPath);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
logger.info("下载跨域pdf文件url:{}", urlPath);
|
logger.info("下载跨域pdf文件url:{}", urlPath);
|
||||||
try {
|
try {
|
||||||
URL url = WebUtils.normalizedURL(urlPath);
|
URL url = WebUtils.normalizedURL(urlPath);
|
||||||
if (!allowPreview(urlPath)) {
|
|
||||||
response.setHeader("content-type", "text/html;charset=utf-8");
|
|
||||||
response.getOutputStream().println("forbidden");
|
|
||||||
response.setStatus(401);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
byte[] bytes = NetUtil.downloadBytes(url.toString());
|
byte[] bytes = NetUtil.downloadBytes(url.toString());
|
||||||
IOUtils.write(bytes, response.getOutputStream());
|
IOUtils.write(bytes, response.getOutputStream());
|
||||||
} catch (IOException | GalimatiasParseException e) {
|
} catch (IOException | GalimatiasParseException e) {
|
||||||
@@ -136,7 +132,7 @@ public class OnlinePreviewController {
|
|||||||
*
|
*
|
||||||
* @param url 请编码后在入队
|
* @param url 请编码后在入队
|
||||||
*/
|
*/
|
||||||
@RequestMapping("/addTask")
|
@GetMapping("/addTask")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public String addQueueTask(String url) {
|
public String addQueueTask(String url) {
|
||||||
logger.info("添加转码队列url:{}", url);
|
logger.info("添加转码队列url:{}", url);
|
||||||
@@ -144,24 +140,4 @@ public class OnlinePreviewController {
|
|||||||
return "success";
|
return "success";
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean allowPreview(String urlPath) {
|
|
||||||
try {
|
|
||||||
URL url = WebUtils.normalizedURL(urlPath);
|
|
||||||
if ("file".equals(url.getProtocol().toLowerCase(Locale.ROOT))) {
|
|
||||||
String filePath = URLDecoder.decode(url.getPath(), StandardCharsets.UTF_8.name());
|
|
||||||
if (PlatformUtils.isWindows()) {
|
|
||||||
filePath = filePath.replaceAll("/", "\\\\");
|
|
||||||
}
|
|
||||||
filePath = filePath.substring(1);
|
|
||||||
if (!filePath.startsWith(ConfigConstants.getFileDir()) && !filePath.startsWith(ConfigConstants.getLocalPreviewDir())) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
} catch (IOException | GalimatiasParseException e) {
|
|
||||||
logger.error("解析URL异常,url:{}", urlPath, e);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,15 +48,24 @@ public class AttributeSetFilter implements Filter {
|
|||||||
private void setWatermarkAttribute(ServletRequest request) {
|
private void setWatermarkAttribute(ServletRequest request) {
|
||||||
String watermarkTxt = request.getParameter("watermarkTxt");
|
String watermarkTxt = request.getParameter("watermarkTxt");
|
||||||
request.setAttribute("watermarkTxt", watermarkTxt != null ? watermarkTxt : WatermarkConfigConstants.getWatermarkTxt());
|
request.setAttribute("watermarkTxt", watermarkTxt != null ? watermarkTxt : WatermarkConfigConstants.getWatermarkTxt());
|
||||||
request.setAttribute("watermarkXSpace", WatermarkConfigConstants.getWatermarkXSpace());
|
String watermarkXSpace = request.getParameter("watermarkXSpace");
|
||||||
request.setAttribute("watermarkYSpace", WatermarkConfigConstants.getWatermarkYSpace());
|
request.setAttribute("watermarkXSpace", watermarkXSpace != null ? watermarkXSpace : WatermarkConfigConstants.getWatermarkXSpace());
|
||||||
request.setAttribute("watermarkFont", WatermarkConfigConstants.getWatermarkFont());
|
String watermarkYSpace = request.getParameter("watermarkYSpace");
|
||||||
request.setAttribute("watermarkFontsize", WatermarkConfigConstants.getWatermarkFontsize());
|
request.setAttribute("watermarkYSpace", watermarkYSpace != null ? watermarkYSpace : WatermarkConfigConstants.getWatermarkYSpace());
|
||||||
request.setAttribute("watermarkColor", WatermarkConfigConstants.getWatermarkColor());
|
String watermarkFont = request.getParameter("watermarkFont");
|
||||||
request.setAttribute("watermarkAlpha", WatermarkConfigConstants.getWatermarkAlpha());
|
request.setAttribute("watermarkFont", watermarkFont != null ? watermarkFont : WatermarkConfigConstants.getWatermarkFont());
|
||||||
request.setAttribute("watermarkWidth", WatermarkConfigConstants.getWatermarkWidth());
|
String watermarkFontsize = request.getParameter("watermarkFontsize");
|
||||||
request.setAttribute("watermarkHeight", WatermarkConfigConstants.getWatermarkHeight());
|
request.setAttribute("watermarkFontsize", watermarkFontsize != null ? watermarkFontsize : WatermarkConfigConstants.getWatermarkFontsize());
|
||||||
request.setAttribute("watermarkAngle", WatermarkConfigConstants.getWatermarkAngle());
|
String watermarkColor = request.getParameter("watermarkColor");
|
||||||
|
request.setAttribute("watermarkColor", watermarkColor != null ? watermarkColor : WatermarkConfigConstants.getWatermarkColor());
|
||||||
|
String watermarkAlpha = request.getParameter("watermarkAlpha");
|
||||||
|
request.setAttribute("watermarkAlpha", watermarkAlpha != null ? watermarkAlpha : WatermarkConfigConstants.getWatermarkAlpha());
|
||||||
|
String watermarkWidth = request.getParameter("watermarkWidth");
|
||||||
|
request.setAttribute("watermarkWidth", watermarkWidth != null ? watermarkWidth : WatermarkConfigConstants.getWatermarkWidth());
|
||||||
|
String watermarkHeight = request.getParameter("watermarkHeight");
|
||||||
|
request.setAttribute("watermarkHeight", watermarkHeight != null ? watermarkHeight : WatermarkConfigConstants.getWatermarkHeight());
|
||||||
|
String watermarkAngle = request.getParameter("watermarkAngle");
|
||||||
|
request.setAttribute("watermarkAngle", watermarkAngle != null ? watermarkAngle : WatermarkConfigConstants.getWatermarkAngle());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package cn.keking.web.filter;
|
package cn.keking.web.filter;
|
||||||
|
|
||||||
import cn.keking.config.ConfigConstants;
|
import cn.keking.config.ConfigConstants;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.springframework.web.context.request.RequestContextHolder;
|
import org.springframework.web.context.request.RequestContextHolder;
|
||||||
|
|
||||||
import javax.servlet.*;
|
import javax.servlet.*;
|
||||||
@@ -33,19 +34,28 @@ public class BaseUrlFilter implements Filter {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void doFilter(ServletRequest request, ServletResponse response, FilterChain filterChain) throws IOException, ServletException {
|
public void doFilter(ServletRequest request, ServletResponse response, FilterChain filterChain) throws IOException, ServletException {
|
||||||
|
|
||||||
String baseUrl;
|
String baseUrl;
|
||||||
StringBuilder pathBuilder = new StringBuilder();
|
String configBaseUrl = ConfigConstants.getBaseUrl();
|
||||||
pathBuilder.append(request.getScheme()).append("://").append(request.getServerName()).append(":")
|
|
||||||
.append(request.getServerPort()).append(((HttpServletRequest) request).getContextPath()).append("/");
|
final HttpServletRequest servletRequest = (HttpServletRequest) request;
|
||||||
String baseUrlTmp = ConfigConstants.getBaseUrl();
|
//1、支持通过 http header 中 X-Base-Url 来动态设置 baseUrl 以支持多个域名/项目的共享使用
|
||||||
if (baseUrlTmp != null && !ConfigConstants.DEFAULT_BASE_URL.equalsIgnoreCase(baseUrlTmp)) {
|
final String urlInHeader = servletRequest.getHeader("X-Base-Url");
|
||||||
if (!baseUrlTmp.endsWith("/")) {
|
if (StringUtils.isNotEmpty(urlInHeader)) {
|
||||||
baseUrlTmp = baseUrlTmp.concat("/");
|
baseUrl = urlInHeader;
|
||||||
}
|
} else if (configBaseUrl != null && !ConfigConstants.DEFAULT_BASE_URL.equalsIgnoreCase(configBaseUrl)) {
|
||||||
baseUrl = baseUrlTmp;
|
//2、如果配置文件中配置了 baseUrl 且不为 default 则以配置文件为准
|
||||||
|
baseUrl = configBaseUrl;
|
||||||
} else {
|
} else {
|
||||||
baseUrl = pathBuilder.toString();
|
//3、默认动态拼接 baseUrl
|
||||||
|
baseUrl = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
|
||||||
|
+ servletRequest.getContextPath() + "/";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!baseUrl.endsWith("/")) {
|
||||||
|
baseUrl = baseUrl.concat("/");
|
||||||
|
}
|
||||||
|
|
||||||
BASE_URL = baseUrl;
|
BASE_URL = baseUrl;
|
||||||
request.setAttribute("baseUrl", baseUrl);
|
request.setAttribute("baseUrl", baseUrl);
|
||||||
filterChain.doFilter(request, response);
|
filterChain.doFilter(request, response);
|
||||||
|
|||||||
@@ -1,65 +0,0 @@
|
|||||||
package cn.keking.web.filter;
|
|
||||||
|
|
||||||
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @author yudian-it
|
|
||||||
* @date 2017/11/30
|
|
||||||
*/
|
|
||||||
@Configuration
|
|
||||||
public class FilterConfiguration {
|
|
||||||
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public FilterRegistrationBean getChinesePathFilter() {
|
|
||||||
ChinesePathFilter filter = new ChinesePathFilter();
|
|
||||||
FilterRegistrationBean registrationBean = new FilterRegistrationBean();
|
|
||||||
registrationBean.setFilter(filter);
|
|
||||||
return registrationBean;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public FilterRegistrationBean getTrustHostFilter() {
|
|
||||||
Set<String> filterUri = new HashSet<>();
|
|
||||||
filterUri.add("/onlinePreview");
|
|
||||||
filterUri.add("/picturesPreview");
|
|
||||||
TrustHostFilter filter = new TrustHostFilter();
|
|
||||||
FilterRegistrationBean registrationBean = new FilterRegistrationBean();
|
|
||||||
registrationBean.setFilter(filter);
|
|
||||||
registrationBean.setUrlPatterns(filterUri);
|
|
||||||
return registrationBean;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public FilterRegistrationBean getBaseUrlFilter() {
|
|
||||||
Set<String> filterUri = new HashSet<>();
|
|
||||||
filterUri.add("/index");
|
|
||||||
filterUri.add("/onlinePreview");
|
|
||||||
filterUri.add("/picturesPreview");
|
|
||||||
BaseUrlFilter filter = new BaseUrlFilter();
|
|
||||||
FilterRegistrationBean registrationBean = new FilterRegistrationBean();
|
|
||||||
registrationBean.setFilter(filter);
|
|
||||||
registrationBean.setUrlPatterns(filterUri);
|
|
||||||
return registrationBean;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public FilterRegistrationBean getWatermarkConfigFilter() {
|
|
||||||
Set<String> filterUri = new HashSet<>();
|
|
||||||
filterUri.add("/index");
|
|
||||||
filterUri.add("/onlinePreview");
|
|
||||||
filterUri.add("/picturesPreview");
|
|
||||||
AttributeSetFilter filter = new AttributeSetFilter();
|
|
||||||
FilterRegistrationBean registrationBean = new FilterRegistrationBean();
|
|
||||||
registrationBean.setFilter(filter);
|
|
||||||
registrationBean.setUrlPatterns(filterUri);
|
|
||||||
return registrationBean;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
package cn.keking.web.filter;
|
||||||
|
|
||||||
|
import cn.keking.config.ConfigConstants;
|
||||||
|
import cn.keking.utils.WebUtils;
|
||||||
|
import io.mola.galimatias.GalimatiasParseException;
|
||||||
|
import org.artofsolving.jodconverter.util.PlatformUtils;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.core.io.ClassPathResource;
|
||||||
|
import org.springframework.util.FileCopyUtils;
|
||||||
|
|
||||||
|
import javax.servlet.*;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.net.URLDecoder;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.util.Locale;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author : kl (http://kailing.pub)
|
||||||
|
* @since : 2022-05-25 17:45
|
||||||
|
*/
|
||||||
|
public class TrustDirFilter implements Filter {
|
||||||
|
|
||||||
|
private String notTrustDirView;
|
||||||
|
private final Logger logger = LoggerFactory.getLogger(TrustDirFilter.class);
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void init(FilterConfig filterConfig) {
|
||||||
|
ClassPathResource classPathResource = new ClassPathResource("web/notTrustDir.html");
|
||||||
|
try {
|
||||||
|
classPathResource.getInputStream();
|
||||||
|
byte[] bytes = FileCopyUtils.copyToByteArray(classPathResource.getInputStream());
|
||||||
|
this.notTrustDirView = new String(bytes, StandardCharsets.UTF_8);
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
|
||||||
|
String url = WebUtils.getSourceUrl(request);
|
||||||
|
if (!allowPreview(url)) {
|
||||||
|
response.getWriter().write(this.notTrustDirView);
|
||||||
|
response.getWriter().close();
|
||||||
|
} else {
|
||||||
|
chain.doFilter(request, response);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void destroy() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean allowPreview(String urlPath) {
|
||||||
|
try {
|
||||||
|
URL url = WebUtils.normalizedURL(urlPath);
|
||||||
|
if ("file".equals(url.getProtocol().toLowerCase(Locale.ROOT))) {
|
||||||
|
String filePath = URLDecoder.decode(url.getPath(), StandardCharsets.UTF_8.name());
|
||||||
|
if (PlatformUtils.isWindows()) {
|
||||||
|
filePath = filePath.replaceAll("/", "\\\\");
|
||||||
|
}
|
||||||
|
return filePath.startsWith(ConfigConstants.getFileDir()) || filePath.startsWith(ConfigConstants.getLocalPreviewDir());
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
} catch (IOException | GalimatiasParseException e) {
|
||||||
|
logger.error("解析URL异常,url:{}", urlPath, e);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,16 +1,17 @@
|
|||||||
package cn.keking.web.filter;
|
package cn.keking.web.filter;
|
||||||
|
|
||||||
import cn.keking.config.ConfigConstants;
|
import cn.keking.config.ConfigConstants;
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import cn.keking.utils.WebUtils;
|
||||||
import org.springframework.core.io.ClassPathResource;
|
|
||||||
import org.springframework.util.Base64Utils;
|
|
||||||
import org.springframework.util.FileCopyUtils;
|
|
||||||
|
|
||||||
import javax.servlet.*;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.MalformedURLException;
|
|
||||||
import java.net.URL;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import javax.servlet.Filter;
|
||||||
|
import javax.servlet.FilterChain;
|
||||||
|
import javax.servlet.FilterConfig;
|
||||||
|
import javax.servlet.ServletException;
|
||||||
|
import javax.servlet.ServletRequest;
|
||||||
|
import javax.servlet.ServletResponse;
|
||||||
|
import org.springframework.core.io.ClassPathResource;
|
||||||
|
import org.springframework.util.FileCopyUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author chenjh
|
* @author chenjh
|
||||||
@@ -34,11 +35,8 @@ public class TrustHostFilter implements Filter {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
|
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
|
||||||
String url = getSourceUrl(request);
|
String url = WebUtils.getSourceUrl(request);
|
||||||
if(url != null){
|
String host = WebUtils.getHost(url);
|
||||||
url = new String(Base64Utils.decodeFromString(url), StandardCharsets.UTF_8);
|
|
||||||
}
|
|
||||||
String host = getHost(url);
|
|
||||||
if (host != null &&!ConfigConstants.getTrustHostSet().isEmpty() && !ConfigConstants.getTrustHostSet().contains(host)) {
|
if (host != null &&!ConfigConstants.getTrustHostSet().isEmpty() && !ConfigConstants.getTrustHostSet().contains(host)) {
|
||||||
String html = this.notTrustHost.replace("${current_host}", host);
|
String html = this.notTrustHost.replace("${current_host}", host);
|
||||||
response.getWriter().write(html);
|
response.getWriter().write(html);
|
||||||
@@ -52,28 +50,4 @@ public class TrustHostFilter implements Filter {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getSourceUrl(ServletRequest request) {
|
|
||||||
String url = request.getParameter("url");
|
|
||||||
String currentUrl = request.getParameter("currentUrl");
|
|
||||||
String urlPath = request.getParameter("urlPath");
|
|
||||||
if (StringUtils.isNotBlank(url)) {
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
if (StringUtils.isNotBlank(currentUrl)) {
|
|
||||||
return currentUrl;
|
|
||||||
}
|
|
||||||
if (StringUtils.isNotBlank(urlPath)) {
|
|
||||||
return urlPath;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private String getHost(String urlStr) {
|
|
||||||
try {
|
|
||||||
URL url = new URL(urlStr);
|
|
||||||
return url.getHost().toLowerCase();
|
|
||||||
} catch (MalformedURLException ignored) {
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
0
server/src/main/resources/static/favicon.ico
Normal file
0
server/src/main/resources/static/favicon.ico
Normal file
6
server/src/main/resources/static/js/bootbox.min.js
vendored
Normal file
6
server/src/main/resources/static/js/bootbox.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -2,7 +2,6 @@
|
|||||||
* Copyright 2013 I Doc View
|
* Copyright 2013 I Doc View
|
||||||
* @author Godwin <I Doc View>
|
* @author Godwin <I Doc View>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var ratio = 0.75;
|
var ratio = 0.75;
|
||||||
var pages;
|
var pages;
|
||||||
var slideUrls = new Array();
|
var slideUrls = new Array();
|
||||||
@@ -11,11 +10,9 @@ var curSlide = 1;
|
|||||||
var totalSize = 1; // PPT当前获取到的总页数
|
var totalSize = 1; // PPT当前获取到的总页数
|
||||||
var slideCount = 1; // PPT文件总页数
|
var slideCount = 1; // PPT文件总页数
|
||||||
var size = (!!$.url().param('size') ? $.url().param('size') : 0);
|
var size = (!!$.url().param('size') ? $.url().param('size') : 0);
|
||||||
$(document).ready(function() {
|
|
||||||
|
|
||||||
// async method:
|
$(document).ready(function () {
|
||||||
$.get('onlinePreview?' , params, function(data, status) {
|
var data = resultData
|
||||||
var data = JSON.parse(data);
|
|
||||||
var code = data.code;
|
var code = data.code;
|
||||||
if (1 == code) {
|
if (1 == code) {
|
||||||
uuid = data.uuid;
|
uuid = data.uuid;
|
||||||
@@ -24,7 +21,7 @@ $(document).ready(function() {
|
|||||||
slideCount = data.totalSize;
|
slideCount = data.totalSize;
|
||||||
|
|
||||||
// title
|
// title
|
||||||
$('.container-fluid:first .btn:first').after('<a class="brand lnk-file-title" style="text-decoration: none;" href="' + contextPath + '/doc/download/' + uuid + (!!queryStr ? '?' + queryStr : '') + '" title="' + data.name + '">' + data.name + '</a>');
|
$('.container-fluid:first .btn:first').after('<a class="brand lnk-file-title" style="text-decoration: none;">' + data.name + '</a>');
|
||||||
document.title = data.name;
|
document.title = data.name;
|
||||||
|
|
||||||
// set ratio
|
// set ratio
|
||||||
@@ -37,9 +34,7 @@ $(document).ready(function() {
|
|||||||
} else {
|
} else {
|
||||||
$('.container-fluid .row-fluid').html('<section><div class="alert alert-error">' + data.desc + '</div></section>');
|
$('.container-fluid .row-fluid').html('<section><div class="alert alert-error">' + data.desc + '</div></section>');
|
||||||
}
|
}
|
||||||
|
|
||||||
clearProgress();
|
clearProgress();
|
||||||
});
|
|
||||||
|
|
||||||
// 是否显示全屏按钮
|
// 是否显示全屏按钮
|
||||||
$('.fullscreen-link').toggle(screenfull.enabled);
|
$('.fullscreen-link').toggle(screenfull.enabled);
|
||||||
@@ -101,14 +96,19 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
// Swipe method is NOT supported in IE6, so it should be the last one.
|
// Swipe method is NOT supported in IE6, so it should be the last one.
|
||||||
try {
|
try {
|
||||||
$('.slide-img-container').swipeleft(function() { nextSlide(); });
|
$('.slide-img-container').swipeleft(function () {
|
||||||
$('.slide-img-container').swiperight(function() { preSlide(); });
|
nextSlide();
|
||||||
|
});
|
||||||
|
$('.slide-img-container').swiperight(function () {
|
||||||
|
preSlide();
|
||||||
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var remainContentInterval;
|
var remainContentInterval;
|
||||||
|
|
||||||
function checkRemainContent() {
|
function checkRemainContent() {
|
||||||
clearInterval(remainContentInterval);
|
clearInterval(remainContentInterval);
|
||||||
if (slideCount == totalSize) {
|
if (slideCount == totalSize) {
|
||||||
@@ -154,6 +154,7 @@ function resetContent() {
|
|||||||
var thumbnailWidth = $('.thumbnail:first').width();
|
var thumbnailWidth = $('.thumbnail:first').width();
|
||||||
var thumbnailHeight = thumbnailWidth * ratio;
|
var thumbnailHeight = thumbnailWidth * ratio;
|
||||||
$('.thumbnail').height(thumbnailHeight);
|
$('.thumbnail').height(thumbnailHeight);
|
||||||
|
$('.thumbnail>img').width(thumbnailWidth).height(thumbnailHeight);
|
||||||
|
|
||||||
var slideImgContainerWidth = $('.slide-img-container:first').width();
|
var slideImgContainerWidth = $('.slide-img-container:first').width();
|
||||||
var slideImgContainerHeight = slideImgContainerWidth * ratio;
|
var slideImgContainerHeight = slideImgContainerWidth * ratio;
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
|
<#setting classic_compatible=true>
|
||||||
|
<link rel="icon" href="./favicon.ico" type="image/x-icon">
|
||||||
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"/>
|
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"/>
|
||||||
<script src="js/jquery-3.0.0.min.js" type="text/javascript"></script>
|
<script src="js/jquery-3.0.0.min.js" type="text/javascript"></script>
|
||||||
<script src="js/jquery.form.min.js" type="text/javascript"></script>
|
<script src="js/jquery.form.min.js" type="text/javascript"></script>
|
||||||
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
|
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
|
||||||
|
<script src="js/bootbox.min.js" type="text/javascript"></script>
|
||||||
<script src="js/watermark.js" type="text/javascript"></script>
|
<script src="js/watermark.js" type="text/javascript"></script>
|
||||||
<script src="js/base64.min.js" type="text/javascript"></script>
|
<script src="js/base64.min.js" type="text/javascript"></script>
|
||||||
|
|
||||||
@@ -33,7 +34,52 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 中文环境
|
||||||
|
var locale_zh_CN = {
|
||||||
|
OK: '确定',
|
||||||
|
CONFIRM: '确认',
|
||||||
|
CANCEL: '取消'
|
||||||
|
};
|
||||||
|
bootbox.addLocale('locale_zh_CN', locale_zh_CN);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 需要文件密码
|
||||||
|
*/
|
||||||
|
function needFilePassword() {
|
||||||
|
if ('${needFilePassword}' == 'true') {
|
||||||
|
let promptTitle = "你正在预览加密文件,请输入文件密码。";
|
||||||
|
if ('${filePasswordError}' == 'true') {
|
||||||
|
promptTitle = "密码错误,请重新输入密码。";
|
||||||
|
}
|
||||||
|
|
||||||
|
bootbox.prompt({
|
||||||
|
title: promptTitle,
|
||||||
|
inputType: 'password',
|
||||||
|
centerVertical: true,
|
||||||
|
locale: 'locale_zh_CN',
|
||||||
|
callback: function (filePassword) {
|
||||||
|
if (filePassword != null) {
|
||||||
|
const locationHref = window.location.href;
|
||||||
|
const isInclude = locationHref.includes("filePassword=");
|
||||||
|
let redirectUrl = null;
|
||||||
|
if (isInclude) {
|
||||||
|
const url = new URL(locationHref);
|
||||||
|
url.searchParams.set("filePassword", filePassword);
|
||||||
|
redirectUrl = url.href;
|
||||||
|
} else {
|
||||||
|
redirectUrl = locationHref + '&filePassword=' + filePassword;
|
||||||
|
}
|
||||||
|
|
||||||
|
window.location.replace(redirectUrl);
|
||||||
|
} else {
|
||||||
|
location.reload();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@@ -44,6 +90,4 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
@@ -9,11 +8,13 @@
|
|||||||
width: 900px;
|
width: 900px;
|
||||||
background-color: #CCB;
|
background-color: #CCB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
width: 700px;
|
width: 700px;
|
||||||
height: 700px;
|
height: 700px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: auto;
|
width: auto;
|
||||||
height: auto;
|
height: auto;
|
||||||
@@ -21,6 +22,7 @@
|
|||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
padding-bottom: 36px;
|
padding-bottom: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
@@ -28,15 +30,17 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<img src="images/sorry.jpg"/>
|
<img src="images/sorry.jpg"/>
|
||||||
<span>
|
<span>
|
||||||
该文件类型(${fileType})系统暂时不支持在线预览,<b>说明</b>:
|
该(${fileType})文件,系统暂不支持在线预览,具体原因如下:
|
||||||
<p style="color: red;">${msg}</p>
|
<p style="color: red;">${msg}</p>
|
||||||
有任何疑问,请加 <a href="https://jq.qq.com/?_wv=1027&k=5c0UAtu">官方QQ群:613025121</a> 咨询
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
<script>
|
||||||
|
console.log(`有任何疑问,请加:<a href="https://jq.qq.com/?_wv=1027&k=5c0UAtu">官方QQ群:613025121</a> 咨询`);
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
@@ -4,11 +4,17 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0">
|
||||||
|
<title>文件预览</title>
|
||||||
<#include "*/commonHeader.ftl">
|
<#include "*/commonHeader.ftl">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<iframe src="${pdfUrl}" width="100%" frameborder="0"></iframe>
|
<iframe src="${pdfUrl}" width="100%" frameborder="0"></iframe>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
needFilePassword();
|
||||||
|
</script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
document.getElementsByTagName('iframe')[0].height = document.documentElement.clientHeight - 10;
|
document.getElementsByTagName('iframe')[0].height = document.documentElement.clientHeight - 10;
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0"/>
|
||||||
<title>kkFileView演示首页</title>
|
<title>kkFileView演示首页</title>
|
||||||
|
<link rel="icon" href="./favicon.ico" type="image/x-icon">
|
||||||
<link rel="stylesheet" href="css/viewer.min.css"/>
|
<link rel="stylesheet" href="css/viewer.min.css"/>
|
||||||
<link rel="stylesheet" href="css/loading.css"/>
|
<link rel="stylesheet" href="css/loading.css"/>
|
||||||
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"/>
|
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"/>
|
||||||
@@ -262,13 +263,14 @@
|
|||||||
}, {
|
}, {
|
||||||
field: 'action',
|
field: 'action',
|
||||||
title: '操作'
|
title: '操作'
|
||||||
},]
|
}]
|
||||||
}).on('pre-body.bs.table', function (e, data) {
|
}).on('pre-body.bs.table', function (e, data) {
|
||||||
// 每个data添加一列用来操作
|
// 每个data添加一列用来操作
|
||||||
$(data).each(function (index, item) {
|
$(data).each(function (index, item) {
|
||||||
item.action = "<a class='btn btn-default' target='_blank' href='${baseUrl}onlinePreview?url=" + encodeURIComponent(Base64.encode('${baseUrl}' + item.fileName)) + "'>预览</a>" +
|
item.action = "<a class='btn btn-default' target='_blank' href='${baseUrl}onlinePreview?url=" + encodeURIComponent(Base64.encode('${baseUrl}' + item.fileName)) + "'>预览</a>" +
|
||||||
"<a class='btn btn-default' href='javascript:void(0);' onclick='deleteFile(\"" + item.fileName + "\")'>删除</a>";
|
"<a class='btn btn-default' href='javascript:void(0);' onclick='deleteFile(\"" + item.fileName + "\")'>删除</a>";
|
||||||
});
|
});
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
}).on('post-body.bs.table', function (e, data) {
|
}).on('post-body.bs.table', function (e, data) {
|
||||||
return data;
|
return data;
|
||||||
@@ -281,7 +283,6 @@
|
|||||||
urlField.val(b64Encoded);
|
urlField.val(b64Encoded);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
function showLoadingDiv() {
|
function showLoadingDiv() {
|
||||||
var height = window.document.documentElement.clientHeight - 1;
|
var height = window.document.documentElement.clientHeight - 1;
|
||||||
$(".loading_container").css("height", height).show();
|
$(".loading_container").css("height", height).show();
|
||||||
@@ -307,6 +308,7 @@
|
|||||||
dataType: "json" /*设置返回值类型为文本*/
|
dataType: "json" /*设置返回值类型为文本*/
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
var gitalk = new Gitalk({
|
var gitalk = new Gitalk({
|
||||||
clientID: '525d7f16e17aab08cef5',
|
clientID: '525d7f16e17aab08cef5',
|
||||||
clientSecret: 'd1154e3aee5c8f1cbdc918b5c97a4f4157e0bfd9',
|
clientSecret: 'd1154e3aee5c8f1cbdc918b5c97a4f4157e0bfd9',
|
||||||
|
|||||||
41
server/src/main/resources/web/notTrustDir.html
Normal file
41
server/src/main/resources/web/notTrustDir.html
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 900px;
|
||||||
|
background-color: #CCB;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
width: 700px;
|
||||||
|
height: 700px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
max-width: 100%;
|
||||||
|
max-height: 100%;
|
||||||
|
padding-bottom: 36px;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
display: block;
|
||||||
|
font-size: 20px;
|
||||||
|
color: blue;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<img src="images/sorry.jpg" />
|
||||||
|
<p>
|
||||||
|
预览源文件来自未授信的目录 ,请停止访问 <br>
|
||||||
|
有任何疑问,请加 <a href="https://jq.qq.com/?_wv=1027&k=5c0UAtu">官方QQ群:613025121</a> 咨询
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
@@ -7,6 +6,7 @@
|
|||||||
<title>PDF预览</title>
|
<title>PDF预览</title>
|
||||||
<#include "*/commonHeader.ftl">
|
<#include "*/commonHeader.ftl">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<#if pdfUrl?contains("http://") || pdfUrl?contains("https://")>
|
<#if pdfUrl?contains("http://") || pdfUrl?contains("https://")>
|
||||||
<#assign finalUrl="${pdfUrl}">
|
<#assign finalUrl="${pdfUrl}">
|
||||||
@@ -20,11 +20,12 @@
|
|||||||
onclick="goForImage()"/>
|
onclick="goForImage()"/>
|
||||||
</#if>
|
</#if>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var url = '${finalUrl}';
|
var url = '${finalUrl}';
|
||||||
var baseUrl = '${baseUrl}'.endsWith('/') ? '${baseUrl}' : '${baseUrl}' + '/';
|
var baseUrl = '${baseUrl}'.endsWith('/') ? '${baseUrl}' : '${baseUrl}' + '/';
|
||||||
if (!url.startsWith(baseUrl)) {
|
if (!url.startsWith(baseUrl)) {
|
||||||
url = baseUrl + 'getCorsFile?urlPath=' + encodeURIComponent(url);
|
url = baseUrl + 'getCorsFile?urlPath=' + encodeURIComponent(Base64.encode(url));
|
||||||
}
|
}
|
||||||
document.getElementsByTagName('iframe')[0].src = "${baseUrl}pdfjs/web/viewer.html?file=" + encodeURIComponent(url) + "&disablepresentationmode=${pdfPresentationModeDisable}&disableopenfile=${pdfOpenFileDisable}&disableprint=${pdfPrintDisable}&disabledownload=${pdfDownloadDisable}&disablebookmark=${pdfBookmarkDisable}";
|
document.getElementsByTagName('iframe')[0].src = "${baseUrl}pdfjs/web/viewer.html?file=" + encodeURIComponent(url) + "&disablepresentationmode=${pdfPresentationModeDisable}&disableopenfile=${pdfOpenFileDisable}&disableprint=${pdfPrintDisable}&disabledownload=${pdfDownloadDisable}&disablebookmark=${pdfBookmarkDisable}";
|
||||||
document.getElementsByTagName('iframe')[0].height = document.documentElement.clientHeight - 10;
|
document.getElementsByTagName('iframe')[0].height = document.documentElement.clientHeight - 10;
|
||||||
|
|||||||
@@ -1,8 +1,110 @@
|
|||||||
<#if RequestParameters['name']??>
|
<!DOCTYPE html>
|
||||||
{
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<link href="pptx/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||||
|
<link href="pptx/idocv/idocv_common.min.css" rel="stylesheet">
|
||||||
|
<link href="pptx/jquery.contextMenu.css" rel="stylesheet">
|
||||||
|
|
||||||
|
<#-- 手机端预览兼容 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
var windowWidth = document.documentElement.clientWidth;
|
||||||
|
var searchStr = window.location.search.substr(1);
|
||||||
|
if ((windowWidth < 768 || (/micromessenger/.test(navigator.userAgent.toLowerCase()))) && (!searchStr || searchStr.indexOf('type=') < 0)) {
|
||||||
|
var redirectUrl = window.location.pathname + '?type=mobile' + (!!searchStr ? ('&' + searchStr) : '');
|
||||||
|
window.location.replace(redirectUrl);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
.thumbnail {
|
||||||
|
/*
|
||||||
|
max-width: 200px;
|
||||||
|
*/
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!--[if lt IE 9]>
|
||||||
|
<script src="/static/bootstrap/js/html5shiv.js"></script>
|
||||||
|
<![endif]-->
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body onload="resetImgSize();" class="ppt-body">
|
||||||
|
|
||||||
|
<div class="loading-mask" style="display: block;">
|
||||||
|
<div class="loading-zone">
|
||||||
|
<div class="text"><img src="pptx/img/loader_indicator_lite.gif">加载中...</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="navbar navbar-inverse navbar-fixed-top">
|
||||||
|
<div class="navbar-inner">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
</button>
|
||||||
|
<!-- FILE NAME HERE -->
|
||||||
|
<!-- SIGN UP & SIGN IN -->
|
||||||
|
|
||||||
|
<div class="nav-collapse collapse">
|
||||||
|
<p class="navbar-text pull-right">
|
||||||
|
<a href="#" title="全屏" class="fullscreen-link"><i class="icon-fullscreen icon-white"></i></a>
|
||||||
|
</p>
|
||||||
|
</div><!--/.nav-collapse -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="container-fluid" style="max-height: 100%;">
|
||||||
|
<div class="row-fluid">
|
||||||
|
<div class="span2 hidden-phone"
|
||||||
|
style="position: fixed; top: 60px; left: 20px; bottom: 20px; padding-right: 10px; border-right: 3px solid #c8c8c8; max-height: 100%; overflow: auto; text-align: center;">
|
||||||
|
<!--Sidebar content-->
|
||||||
|
<!--
|
||||||
|
<div class="thumbnail">
|
||||||
|
<img src="">
|
||||||
|
</div>
|
||||||
|
1/20<br />
|
||||||
|
-->
|
||||||
|
</div>
|
||||||
|
<div class="span9 offset2">
|
||||||
|
<div class="slide-img-container">
|
||||||
|
<div class="ppt-turn-left-mask"></div>
|
||||||
|
<div class="ppt-turn-right-mask"></div>
|
||||||
|
<!--
|
||||||
|
<img src="" class="img-polaroid" style="max-height: 100%;">
|
||||||
|
-->
|
||||||
|
</div>
|
||||||
|
<!-- ONLY AVAILABLE ON MOBILE -->
|
||||||
|
<div class="span12 visible-phone text-center"
|
||||||
|
style="position: fixed; bottom: 10px; left: 0px; z-index: 1000;">
|
||||||
|
<select class="select-page-selector span1" style="width: 80px; margin-top: 10px;">
|
||||||
|
<!-- PAGE NUMBERS HERE -->
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="progress progress-striped active bottom-paging-progress">
|
||||||
|
<div class="bar" style="width: 0%;"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- JavaSript ================================================== -->
|
||||||
|
<script src="pptx/jquery-3.5.1.min.js"></script>
|
||||||
|
<script src="pptx/jquery.contextMenu.js?v=11.2.5_20210128"></script>
|
||||||
|
<script src="pptx/idocv/idocv_common.min.js"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var resultData = {
|
||||||
"code": 1,
|
"code": 1,
|
||||||
"name": "PPT预览",
|
"name": "PPT预览",
|
||||||
"totalSize": 0,
|
"totalSize": ${imgurls?size},
|
||||||
"curPage": 1,
|
"curPage": 1,
|
||||||
"totalPage": 1,
|
"totalPage": 1,
|
||||||
"pageSize": 10,
|
"pageSize": 10,
|
||||||
@@ -29,121 +131,6 @@
|
|||||||
"desc": "Success"
|
"desc": "Success"
|
||||||
}
|
}
|
||||||
|
|
||||||
<#else>
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- BOOTSTRAP STYLE start -->
|
|
||||||
<!-- Le styles -->
|
|
||||||
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
||||||
<link href="pptx/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
||||||
|
|
||||||
<link href="pptx/idocv/idocv_common.min.css" rel="stylesheet">
|
|
||||||
|
|
||||||
<link href="pptx/jquery.contextMenu.css" rel="stylesheet">
|
|
||||||
|
|
||||||
<!-- BOOTSTRAP STYLE end -->
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
var windowWidth = document.documentElement.clientWidth;
|
|
||||||
var searchStr = window.location.search.substr(1);
|
|
||||||
if ((windowWidth < 768 || (/micromessenger/.test(navigator.userAgent.toLowerCase()))) && (!searchStr || searchStr.indexOf('type=') < 0)) {
|
|
||||||
var redirectUrl = window.location.pathname + '?type=mobile' + (!!searchStr ? ('&' + searchStr) : '');
|
|
||||||
window.location.replace(redirectUrl);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style type="text/css">
|
|
||||||
.thumbnail{
|
|
||||||
/*
|
|
||||||
max-width: 200px;
|
|
||||||
*/
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="/static/bootstrap/js/html5shiv.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body onload="resetImgSize();" class="ppt-body">
|
|
||||||
|
|
||||||
<div class="loading-mask" style="display: block;">
|
|
||||||
<div class="loading-zone">
|
|
||||||
<div class="text"><img src="pptx/img/loader_indicator_lite.gif">加载中...</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="navbar navbar-inverse navbar-fixed-top">
|
|
||||||
<div class="navbar-inner">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<!-- FILE NAME HERE -->
|
|
||||||
<!-- SIGN UP & SIGN IN -->
|
|
||||||
|
|
||||||
<div class="nav-collapse collapse">
|
|
||||||
<p class="navbar-text pull-right">
|
|
||||||
<a href="#" title="全屏" class="fullscreen-link"><i class="icon-fullscreen icon-white"></i></a>
|
|
||||||
</p>
|
|
||||||
</div><!--/.nav-collapse -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="container-fluid" style="max-height: 100%;">
|
|
||||||
<div class="row-fluid">
|
|
||||||
<div class="span2 hidden-phone" style="position: fixed; top: 60px; left: 20px; bottom: 20px; padding-right: 10px; border-right: 3px solid #c8c8c8; max-height: 100%; overflow: auto; text-align: center;">
|
|
||||||
<!--Sidebar content-->
|
|
||||||
<!--
|
|
||||||
<div class="thumbnail">
|
|
||||||
<img src="">
|
|
||||||
</div>
|
|
||||||
1/20<br />
|
|
||||||
-->
|
|
||||||
</div>
|
|
||||||
<div class="span9 offset2">
|
|
||||||
<div class="slide-img-container">
|
|
||||||
<div class="ppt-turn-left-mask"></div>
|
|
||||||
<div class="ppt-turn-right-mask"></div>
|
|
||||||
<!--
|
|
||||||
<img src="" class="img-polaroid" style="max-height: 100%;">
|
|
||||||
-->
|
|
||||||
</div>
|
|
||||||
<!-- ONLY AVAILABLE ON MOBILE -->
|
|
||||||
<div class="span12 visible-phone text-center" style="position: fixed; bottom: 10px; left: 0px; z-index: 1000;">
|
|
||||||
<select class="select-page-selector span1" style="width: 80px; margin-top: 10px;">
|
|
||||||
<!-- PAGE NUMBERS HERE -->
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="progress progress-striped active bottom-paging-progress">
|
|
||||||
<div class="bar" style="width: 0%;"></div>
|
|
||||||
</div>
|
|
||||||
<!-- JavaSript
|
|
||||||
================================================== -->
|
|
||||||
|
|
||||||
<script src="pptx/jquery-3.5.1.min.js"></script>
|
|
||||||
<script src="pptx/jquery.contextMenu.js?v=11.2.5_20210128"></script>
|
|
||||||
<script src="pptx/idocv/idocv_common.min.js"></script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
var contextPath = '';
|
var contextPath = '';
|
||||||
var version = '12';
|
var version = '12';
|
||||||
// var urlObj = $.url($.url().attr('source').replace(contextPath, ''));
|
// var urlObj = $.url($.url().attr('source').replace(contextPath, ''));
|
||||||
@@ -170,6 +157,3 @@
|
|||||||
<script src="pptx/ppt.js"></script>
|
<script src="pptx/ppt.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
</#if>
|
|
||||||
|
|||||||
@@ -21,4 +21,12 @@ public class WebUtilsTests {
|
|||||||
String out = "https://file.keking.cn/demo/%23hello%26world.txt?param0=0¶m1=1";
|
String out = "https://file.keking.cn/demo/%23hello%26world.txt?param0=0¶m1=1";
|
||||||
assert WebUtils.encodeUrlFileName(in).equals(out);
|
assert WebUtils.encodeUrlFileName(in).equals(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void encodeUrlFullFileNameTestWithParams() {
|
||||||
|
// 测试对URL中使用fullfilename参数的文件名部分进行UTF-8编码
|
||||||
|
String in = "https://file.keking.cn/demo/download?param0=0&fullfilename=hello#0.txt";
|
||||||
|
String out = "https://file.keking.cn/demo/download?param0=0&fullfilename=hello%230.txt";
|
||||||
|
assert WebUtils.encodeUrlFileName(in).equals(out);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user