mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
56 lines
1.4 KiB
Go
56 lines
1.4 KiB
Go
package checkpoints
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/waf/requests"
|
|
"github.com/TeaOSLab/EdgeNode/internal/waf/utils"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
// RequestFormArgCheckpoint ${requestForm.arg}
|
|
type RequestFormArgCheckpoint struct {
|
|
Checkpoint
|
|
}
|
|
|
|
func (this *RequestFormArgCheckpoint) RequestValue(req requests.Request, param string, options maps.Map, ruleId int64) (value any, hasRequestBody bool, sysErr error, userErr error) {
|
|
hasRequestBody = true
|
|
|
|
if this.RequestBodyIsEmpty(req) {
|
|
value = ""
|
|
return
|
|
}
|
|
|
|
if req.WAFRaw().Body == nil {
|
|
value = ""
|
|
return
|
|
}
|
|
|
|
var bodyData = req.WAFGetCacheBody()
|
|
if len(bodyData) == 0 {
|
|
data, err := req.WAFReadBody(req.WAFMaxRequestSize()) // read body
|
|
if err != nil {
|
|
return "", hasRequestBody, err, nil
|
|
}
|
|
|
|
bodyData = data
|
|
req.WAFSetCacheBody(data)
|
|
req.WAFRestoreBody(data)
|
|
}
|
|
|
|
// TODO improve performance
|
|
values, _ := url.ParseQuery(string(bodyData))
|
|
return values.Get(param), hasRequestBody, nil, nil
|
|
}
|
|
|
|
func (this *RequestFormArgCheckpoint) ResponseValue(req requests.Request, resp *requests.Response, param string, options maps.Map, ruleId int64) (value any, hasRequestBody bool, sysErr error, userErr error) {
|
|
if this.IsRequest() {
|
|
return this.RequestValue(req, param, options, ruleId)
|
|
}
|
|
return
|
|
}
|
|
|
|
func (this *RequestFormArgCheckpoint) CacheLife() utils.CacheLife {
|
|
return utils.CacheMiddleLife
|
|
}
|