Skip to content

Commit

Permalink
2.1.1 版本更新
Browse files Browse the repository at this point in the history
- 为 WebUI 添加了一个关机按钮的支持,并将断开连接按钮图标进行修改。
  • Loading branch information
BeardedManZhao committed Sep 10, 2024
1 parent 3605316 commit 971802b
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 19 deletions.
1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ const indexConfig = {

## 更新记录

### 2.1.1 版本发布

- 为 WebUI 添加了一个关机按钮的支持,并将断开连接按钮图标进行修改。

### 2.1.0 版本发布

- 修正新建文件时,文章编辑器自动生成名称不合法的问题
Expand Down
3 changes: 2 additions & 1 deletion web/FileExplorer.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@
<label>
<input class="input" id="diskMirrorSearch" placeholder=" 搜索文件">
</label>
<a class="status_bar" href="#"></a>
<a class="status_bar" href="#" title="关闭客户端与服务器的连接"></a>
<a class="status_bar" title="通过客户端直接关闭服务器(谨慎使用,这会导致服务器关机)"></a>
</div>
<!-- <div class="div6"></div>-->
<!-- <div class="div7"></div>-->
Expand Down
39 changes: 37 additions & 2 deletions web/js/diskMirror.js
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ class DiskMirror {
/**
* 获取指定空间的已使用容量 单位是 字节
* @param userId {int} 需要被检索的空间id
* @param type {string} 需要被检索的文件类型
* @param type {'Binary'|'TEXT'} 需要被检索的文件类型
* @param okFun {function} 操作成功之后的回调函数 输入是计算出来的已使用容量
* @param errorFun {function} 操作失败之后的回调函数 输入是错误信息
*/
Expand Down Expand Up @@ -696,7 +696,7 @@ class DiskMirror {
} else {
console.error(err);
}
return
return;
}
if (checkFun !== undefined && !checkFun(userId)) {
return;
Expand Down Expand Up @@ -728,4 +728,39 @@ class DiskMirror {
});
}

/**
* 将当前客户端连接的服务器关机(如果服务器端受支持的话,则会返回关机或有效信息)
*
* @param password {string} 关机操作的校验码,如果校验码不正确,则无法处理关机请求
* @param okFun {function} 操作成功之后的回调函数 输入是被文件进度的json对象
* @param errorFun {function} 操作失败之后的回调函数 输入是错误信息
*/
shutdown(password, okFun = undefined, errorFun = (e) => 'res' in e ? alert(e['res']) : alert(e)) {
axios.defaults.withCredentials = true;
// 开始获取
axios(
{
method: 'post',
url: this.diskMirrorUrl + this.getController() + '/shutdown',
params: {
password: password
}
}
).then(function (res) {
// 处理成功
if (okFun !== undefined) {
okFun(res.data);
} else {
console.info(res.data);
}
}).catch(function (err) {
// 处理错误
if (errorFun !== undefined) {
errorFun(err);
} else {
console.error(err);
}
});
}

}
2 changes: 1 addition & 1 deletion web/js/diskMirror.min.js

Large diffs are not rendered by default.

44 changes: 30 additions & 14 deletions web/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ function uploadAfter(fileName) {
}
}

showMessage(" 正在获取服务器连接中...")

function transferDeposit() {
const s = prompt("请输入您要转存的文件的 url", "https://xxx");
if (s) {
Expand Down Expand Up @@ -263,19 +261,37 @@ window.onload = function () {
// 获取状态灯
const status_bar = document.getElementsByClassName("status_bar");

for (let statusBarElement of status_bar) {
statusBarElement.addEventListener("click", function () {
if (statusBarElement.style.color === 'red') {
// 代表停止 在这里重新连接
diskMirror.setController('/FsCrud');
jokerBoxPopUp.show("正在重新连接服务器...");
} else {
// 代表启动 在这里断开连接
diskMirror.setController("---------------");
jokerBoxPopUp.show("正在断开服务器连接...");
// 设置第一个指示灯
status_bar[0].addEventListener("click", function () {
if (status_bar[0].style.color === 'red') {
// 代表停止 在这里重新连接
diskMirror.setController('/FsCrud');
jokerBoxPopUp.show("正在重新连接服务器...");
} else {
// 代表启动 在这里断开连接
diskMirror.setController("---------------");
jokerBoxPopUp.show("正在断开服务器连接...");
}
})
// 设置第二个指示灯
status_bar[1].addEventListener("click", function () {
if (status_bar[1].style.color === 'red') {
// 代表停止 无法开机
jokerBoxPopUp.show("如果您的服务器已经关机,无法开机!如果您只是断开连接但没关服务器,您可以再次点击信号标志重新连接!");
} else {
// 代表已经启动 在这里关机
const s = window.prompt("请您输入您的关机密钥(请注意,您现在的操作是关掉 diskMirror 服务器!)", "");
if (s) {
diskMirror.shutdown(s, (r) => {
showMessage(" " + r)
}, (e) => {
showMessage("⚠ 关机失败!" + e)
});
} else if (s.length === 0) {
showMessage("⚠ 请您输入密钥哦,没有密钥是不可以关机的!");
}
})
}
}
})

// 设置logo点击查询版本
document.querySelector("#bigLogoImage").addEventListener("click", function () {
Expand Down

0 comments on commit 971802b

Please sign in to comment.