mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2026-03-14 13:13:47 +08:00
!51 实现预览加密的(受密码保护)office文件
* 1. 修复getCorsFile接口高危安全漏洞 * 1. 优化密码错误提示(“密码错误,请重新输入密码。”) * 1. 修复PPT重复预览bug,此bug导致ppt每次预览会执行两次转换(请求两次onlinePreview接口),在大文件尤其耗时(双倍时… * 1. 【加密office预览】优化受密码保护的office文件检查逻辑,提升旧文件格式的兼容性 * 1. 【加密office预览】优化office文件是否受密码保护判断逻辑,避免兼容性误判 * 1. 【加密office预览】优化重新输入密码提示。 * 1. 【加密office预览】优化当密码输入错误后,不是抛出异常,而是提示用户重新输入 * 1. 优化prompt提示框的输入密码提示样式 * 1. 实现基于userToken缓存加密文件,没有userToken的加密文件不缓存 * 1. 优化docker构建方案,使用分层构建方式,采用层级缓存解决构建慢发布慢等问题。从原本5分钟左右缩短至几秒 * 1. 加密文件暂时不缓存(后续基于用户token实现,基于用户缓存) * 1. 优化office文件下载逻辑,跳过重复下载(大量节约带宽与磁盘空间)。 * 1. 修复预览不同类型的加密office文件bug * 实现预览加密的(受密码保护)office文件
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
|
||||
|
||||
<#setting classic_compatible=true>
|
||||
<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.form.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/base64.min.js" type="text/javascript"></script>
|
||||
|
||||
@@ -33,7 +33,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>
|
||||
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
@@ -44,6 +89,4 @@
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user