Files
EdgeNode/internal/waf/action_go_set.go

53 lines
1.1 KiB
Go
Raw Normal View History

2020-10-08 15:06:42 +08:00
package waf
import (
"github.com/TeaOSLab/EdgeNode/internal/waf/requests"
"github.com/iwind/TeaGo/logs"
"github.com/iwind/TeaGo/types"
2020-10-08 15:06:42 +08:00
"net/http"
)
type GoSetAction struct {
BaseAction
2020-10-08 15:06:42 +08:00
GroupId string `yaml:"groupId" json:"groupId"`
SetId string `yaml:"setId" json:"setId"`
}
2021-07-18 15:51:49 +08:00
func (this *GoSetAction) Init(waf *WAF) error {
return nil
}
func (this *GoSetAction) Code() string {
return ActionGoSet
}
func (this *GoSetAction) IsAttack() bool {
return false
}
func (this *GoSetAction) WillChange() bool {
return true
}
func (this *GoSetAction) Perform(waf *WAF, group *RuleGroup, set *RuleSet, request requests.Request, writer http.ResponseWriter) (allow bool) {
nextGroup := waf.FindRuleGroup(types.Int64(this.GroupId))
2021-07-18 15:51:49 +08:00
if nextGroup == nil || !nextGroup.IsOn {
2020-10-08 15:06:42 +08:00
return true
}
nextSet := nextGroup.FindRuleSet(types.Int64(this.SetId))
2021-07-18 15:51:49 +08:00
if nextSet == nil || !nextSet.IsOn {
2020-10-08 15:06:42 +08:00
return true
}
2022-07-16 17:05:37 +08:00
b, _, err := nextSet.MatchRequest(request)
2020-10-08 15:06:42 +08:00
if err != nil {
logs.Error(err)
return true
}
if !b {
return true
}
2021-07-18 15:51:49 +08:00
return nextSet.PerformActions(waf, nextGroup, request, writer)
2020-10-08 15:06:42 +08:00
}