mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 20:00:26 +08:00
110 lines
2.7 KiB
JavaScript
110 lines
2.7 KiB
JavaScript
Tea.context(function () {
|
|
this.highlightedSetId = 0
|
|
|
|
this.$delay(function () {
|
|
let that = this
|
|
sortTable(function () {
|
|
let setIds = []
|
|
document
|
|
.querySelectorAll("tbody[data-set-id]")
|
|
.forEach(function (v) {
|
|
setIds.push(v.getAttribute("data-set-id"))
|
|
})
|
|
that.$post("/servers/components/waf/sortSets")
|
|
.params({
|
|
groupId: that.group.id,
|
|
setIds: setIds
|
|
})
|
|
.success(function () {
|
|
teaweb.successToast("排序保存成功")
|
|
})
|
|
})
|
|
|
|
// 跳转到刚操作成功的记录集
|
|
let opSetId = localStorage.getItem("goHTTPFirewallRuleSet")
|
|
if (opSetId != null) {
|
|
this.highlightedSetId = opSetId
|
|
localStorage.removeItem("goHTTPFirewallRuleSet")
|
|
document.querySelector("*[data-set-id='" + opSetId + "']").scrollIntoView({behavior: 'smooth'})
|
|
}
|
|
})
|
|
|
|
// 更改分组
|
|
this.updateGroup = function (groupId) {
|
|
teaweb.popup("/servers/components/waf/updateGroupPopup?groupId=" + groupId, {
|
|
height: "20em",
|
|
callback: function () {
|
|
teaweb.success("保存成功", function () {
|
|
window.location.reload()
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
// 创建规则集
|
|
this.createSet = function (groupId) {
|
|
let that = this
|
|
teaweb.popup("/servers/components/waf/createSetPopup?firewallPolicyId=" + this.firewallPolicyId + "&groupId=" + groupId + "&type=" + this.type, {
|
|
width: "50em",
|
|
height: "40em",
|
|
callback: function (resp) {
|
|
teaweb.success("保存成功", function () {
|
|
that.goSetId(resp.data.setId)
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
// 修改规则集
|
|
this.updateSet = function (setId) {
|
|
let that = this
|
|
teaweb.popup("/servers/components/waf/updateSetPopup?firewallPolicyId=" + this.firewallPolicyId + "&groupId=" + this.group.id + "&type=" + this.type + "&setId=" + setId, {
|
|
width: "50em",
|
|
height: "40em",
|
|
callback: function () {
|
|
teaweb.success("保存成功", function () {
|
|
that.goSetId(setId)
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
// 停用|启用规则集
|
|
this.updateSetOn = function (setId, isOn) {
|
|
let that = this
|
|
this.$post("/servers/components/waf/updateSetOn")
|
|
.params({
|
|
setId: setId,
|
|
isOn: isOn ? 1 : 0
|
|
})
|
|
.success(function () {
|
|
that.goSetId(setId)
|
|
})
|
|
}
|
|
|
|
// 删除规则集
|
|
this.deleteSet = function (setId) {
|
|
let that = this
|
|
teaweb.confirm("确定要删除此规则集吗?", function () {
|
|
that.$post("/servers/components/waf/deleteSet")
|
|
.params({
|
|
groupId: this.group.id,
|
|
setId: setId
|
|
})
|
|
.refresh()
|
|
})
|
|
}
|
|
|
|
// 显示规则集代码
|
|
this.showSetCode = function (setId) {
|
|
teaweb.popup("/servers/components/waf/setCodePopup?setId=" + setId, {
|
|
height: "26em"
|
|
})
|
|
}
|
|
|
|
// 跳转到刚操作的记录集ID
|
|
this.goSetId = function (setId) {
|
|
localStorage.setItem("goHTTPFirewallRuleSet", setId)
|
|
teaweb.reload()
|
|
}
|
|
}) |