WAF人机识别实现点击验证和滑动解锁验证/单个网站可以设置默认的人机识别方式

This commit is contained in:
GoEdgeLab
2023-11-15 15:12:08 +08:00
parent 9af6080607
commit d36dee39fe
4 changed files with 74 additions and 2 deletions

View File

@@ -1,10 +1,21 @@
package firewallconfigs
type ServerCaptchaType = string
const (
ServerCaptchaTypeNone ServerCaptchaType = "none" // 不设置表示策略整体配置
ServerCaptchaTypeDefault ServerCaptchaType = CaptchaTypeDefault
ServerCaptchaTypeOneClick ServerCaptchaType = CaptchaTypeOneClick
ServerCaptchaTypeSlide ServerCaptchaType = CaptchaTypeSlide
)
type HTTPFirewallRef struct {
IsPrior bool `yaml:"isPrior" json:"isPrior"`
IsOn bool `yaml:"isOn" json:"isOn"`
FirewallPolicyId int64 `yaml:"firewallPolicyId" json:"firewallPolicyId"`
IgnoreGlobalRules bool `yaml:"ignoreGlobalRules" json:"ignoreGlobalRules"` // 忽略系统定义的全局规则
DefaultCaptchaType ServerCaptchaType `yaml:"defaultCaptchaType" json:"defaultCaptchaType"` // 默认人机识别方式
}
func (this *HTTPFirewallRef) Init() error {