2020-09-06 16:19:34 +08:00
|
|
|
|
Tea.context(function () {
|
2021-01-31 16:03:52 +08:00
|
|
|
|
let isInstalling = false
|
|
|
|
|
|
|
|
|
|
|
|
this.$delay(function () {
|
|
|
|
|
|
this.reloadStatus(this.nodeId)
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
// 开始安装
|
|
|
|
|
|
this.install = function () {
|
|
|
|
|
|
isInstalling = true
|
|
|
|
|
|
|
|
|
|
|
|
this.$post("$")
|
|
|
|
|
|
.params({
|
|
|
|
|
|
nodeId: this.nodeId
|
|
|
|
|
|
})
|
|
|
|
|
|
.success(function () {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 设置节点安装状态
|
|
|
|
|
|
this.updateNodeIsInstalled = function (isInstalled) {
|
2023-03-18 16:05:46 +08:00
|
|
|
|
let msg = isInstalled ? "html:确定要将当前节点修改为<strong>已安装</strong>状态?" : "html:确定要将当前节点修改为<strong>未安装</strong>状态?"
|
|
|
|
|
|
teaweb.confirm(msg, function () {
|
2021-01-31 16:03:52 +08:00
|
|
|
|
this.$post("/clusters/cluster/node/updateInstallStatus")
|
|
|
|
|
|
.params({
|
|
|
|
|
|
nodeId: this.nodeId,
|
|
|
|
|
|
isInstalled: isInstalled ? 1 : 0
|
|
|
|
|
|
})
|
|
|
|
|
|
.refresh()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 刷新状态
|
|
|
|
|
|
this.reloadStatus = function (nodeId) {
|
|
|
|
|
|
let that = this
|
|
|
|
|
|
|
|
|
|
|
|
this.$post("/clusters/cluster/node/status")
|
|
|
|
|
|
.params({
|
|
|
|
|
|
nodeId: nodeId
|
|
|
|
|
|
})
|
|
|
|
|
|
.success(function (resp) {
|
|
|
|
|
|
this.installStatus = resp.data.installStatus
|
|
|
|
|
|
this.node.isInstalled = resp.data.isInstalled
|
|
|
|
|
|
|
|
|
|
|
|
if (!isInstalling) {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let nodeId = this.node.id
|
|
|
|
|
|
let errMsg = this.installStatus.error
|
|
|
|
|
|
|
|
|
|
|
|
if (this.installStatus.errorCode.length > 0) {
|
|
|
|
|
|
isInstalling = false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch (this.installStatus.errorCode) {
|
|
|
|
|
|
case "EMPTY_LOGIN":
|
|
|
|
|
|
case "EMPTY_SSH_HOST":
|
|
|
|
|
|
case "EMPTY_SSH_PORT":
|
|
|
|
|
|
case "EMPTY_GRANT":
|
|
|
|
|
|
teaweb.warn("需要填写SSH登录信息", function () {
|
|
|
|
|
|
teaweb.popup("/clusters/cluster/updateNodeSSH?nodeId=" + nodeId, {
|
2021-08-02 14:51:15 +08:00
|
|
|
|
height: "30em",
|
2021-01-31 16:03:52 +08:00
|
|
|
|
callback: function () {
|
|
|
|
|
|
that.install()
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
return
|
|
|
|
|
|
case "SSH_LOGIN_FAILED":
|
|
|
|
|
|
teaweb.warn("SSH登录失败,请检查设置", function () {
|
|
|
|
|
|
teaweb.popup("/clusters/cluster/updateNodeSSH?nodeId=" + nodeId, {
|
2021-08-02 14:51:15 +08:00
|
|
|
|
height: "30em",
|
2021-01-31 16:03:52 +08:00
|
|
|
|
callback: function () {
|
|
|
|
|
|
that.install()
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
return
|
|
|
|
|
|
case "CREATE_ROOT_DIRECTORY_FAILED":
|
|
|
|
|
|
teaweb.warn("创建根目录失败,请检查目录权限或者手工创建:" + errMsg)
|
|
|
|
|
|
return
|
|
|
|
|
|
case "INSTALL_HELPER_FAILED":
|
|
|
|
|
|
teaweb.warn("安装助手失败:" + errMsg)
|
|
|
|
|
|
return
|
|
|
|
|
|
case "TEST_FAILED":
|
|
|
|
|
|
teaweb.warn("环境测试失败:" + errMsg)
|
|
|
|
|
|
return
|
|
|
|
|
|
case "RPC_TEST_FAILED":
|
|
|
|
|
|
teaweb.confirm("html:要安装的节点到API服务之间的RPC通讯测试失败,具体错误:" + errMsg + ",<br/>现在修改API信息?", function () {
|
2023-06-05 09:41:52 +08:00
|
|
|
|
window.location = "/settings/api"
|
2021-01-31 16:03:52 +08:00
|
|
|
|
})
|
|
|
|
|
|
return
|
|
|
|
|
|
default:
|
|
|
|
|
|
shouldReload = true
|
|
|
|
|
|
//teaweb.warn("安装失败:" + errMsg)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
.done(function () {
|
|
|
|
|
|
this.$delay(function () {
|
|
|
|
|
|
this.reloadStatus(nodeId)
|
|
|
|
|
|
}, 1000)
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
2020-09-06 16:19:34 +08:00
|
|
|
|
})
|