mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-11 18:30:25 +08:00
WAF阻止动作也增加最大封禁时长
This commit is contained in:
@@ -73,6 +73,7 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
|
|
||||||
// 动作参数
|
// 动作参数
|
||||||
blockTimeout: "",
|
blockTimeout: "",
|
||||||
|
blockTimeoutMax: "",
|
||||||
blockScope: "global",
|
blockScope: "global",
|
||||||
|
|
||||||
captchaLife: "",
|
captchaLife: "",
|
||||||
@@ -122,6 +123,14 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
this.actionOptions["timeout"] = v
|
this.actionOptions["timeout"] = v
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
blockTimeoutMax: function (v) {
|
||||||
|
v = parseInt(v)
|
||||||
|
if (isNaN(v)) {
|
||||||
|
this.actionOptions["timeoutMax"] = 0
|
||||||
|
} else {
|
||||||
|
this.actionOptions["timeoutMax"] = v
|
||||||
|
}
|
||||||
|
},
|
||||||
blockScope: function (v) {
|
blockScope: function (v) {
|
||||||
this.actionOptions["scope"] = v
|
this.actionOptions["scope"] = v
|
||||||
},
|
},
|
||||||
@@ -237,6 +246,7 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
|
|
||||||
// 动作参数
|
// 动作参数
|
||||||
this.blockTimeout = ""
|
this.blockTimeout = ""
|
||||||
|
this.blockTimeoutMax = ""
|
||||||
this.blockScope = "global"
|
this.blockScope = "global"
|
||||||
|
|
||||||
this.captchaLife = ""
|
this.captchaLife = ""
|
||||||
@@ -298,9 +308,13 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
switch (config.code) {
|
switch (config.code) {
|
||||||
case "block":
|
case "block":
|
||||||
this.blockTimeout = ""
|
this.blockTimeout = ""
|
||||||
|
this.blockTimeoutMax = ""
|
||||||
if (config.options.timeout != null || config.options.timeout > 0) {
|
if (config.options.timeout != null || config.options.timeout > 0) {
|
||||||
this.blockTimeout = config.options.timeout.toString()
|
this.blockTimeout = config.options.timeout.toString()
|
||||||
}
|
}
|
||||||
|
if (config.options.timeoutMax != null || config.options.timeoutMax > 0) {
|
||||||
|
this.blockTimeoutMax = config.options.timeoutMax.toString()
|
||||||
|
}
|
||||||
if (config.options.scope != null && config.options.scope.length > 0) {
|
if (config.options.scope != null && config.options.scope.length > 0) {
|
||||||
this.blockScope = config.options.scope
|
this.blockScope = config.options.scope
|
||||||
} else {
|
} else {
|
||||||
@@ -584,7 +598,7 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
{{config.name}} <span class="small">({{config.code.toUpperCase()}})</span>
|
{{config.name}} <span class="small">({{config.code.toUpperCase()}})</span>
|
||||||
|
|
||||||
<!-- block -->
|
<!-- block -->
|
||||||
<span v-if="config.code == 'block' && config.options.timeout > 0">:有效期{{config.options.timeout}}秒</span>
|
<span v-if="config.code == 'block' && config.options.timeout > 0">:封禁时长{{config.options.timeout}}<span v-if="config.options.timeoutMax > config.options.timeout">-{{config.options.timeoutMax}}</span>秒</span>
|
||||||
|
|
||||||
<!-- captcha -->
|
<!-- captcha -->
|
||||||
<span v-if="config.code == 'captcha' && config.options.life > 0">:有效期{{config.options.life}}秒
|
<span v-if="config.code == 'captcha' && config.options.life > 0">:有效期{{config.options.life}}秒
|
||||||
@@ -642,6 +656,17 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<!-- block -->
|
<!-- block -->
|
||||||
|
<tr v-if="actionCode == 'block'">
|
||||||
|
<td>封禁范围</td>
|
||||||
|
<td>
|
||||||
|
<select class="ui dropdown auto-width" v-model="blockScope">
|
||||||
|
<option value="service">当前服务</option>
|
||||||
|
<option value="global">所有服务</option>
|
||||||
|
</select>
|
||||||
|
<p class="comment" v-if="blockScope == 'service'">只封禁用户对当前网站服务的访问,其他服务不受影响。</p>
|
||||||
|
<p class="comment" v-if="blockScope =='global'">封禁用户对所有网站服务的访问。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr v-if="actionCode == 'block'">
|
<tr v-if="actionCode == 'block'">
|
||||||
<td>封禁时长</td>
|
<td>封禁时长</td>
|
||||||
<td>
|
<td>
|
||||||
@@ -652,14 +677,13 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr v-if="actionCode == 'block'">
|
<tr v-if="actionCode == 'block'">
|
||||||
<td>封禁范围</td>
|
<td>最大封禁时长</td>
|
||||||
<td>
|
<td>
|
||||||
<select class="ui dropdown auto-width" v-model="blockScope">
|
<div class="ui input right labeled">
|
||||||
<option value="service">当前服务</option>
|
<input type="text" style="width: 5em" maxlength="9" v-model="blockTimeoutMax" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
<option value="global">所有服务</option>
|
<span class="ui label">秒</span>
|
||||||
</select>
|
</div>
|
||||||
<p class="comment" v-if="blockScope == 'service'">只封禁用户对当前网站服务的访问,其他服务不受影响。</p>
|
<p class="comment">选填项。如果同时填写了封禁时长和最大封禁时长,则会在两者之间随机选择一个数字作为最终的封禁时长。</p>
|
||||||
<p class="comment" v-if="blockScope =='global'">封禁用户对所有网站服务的访问。</p>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user