mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-08 03:00:27 +08:00
51 lines
1.3 KiB
Go
51 lines
1.3 KiB
Go
package checkpoints
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeNode/internal/waf/requests"
|
|
"github.com/TeaOSLab/EdgeNode/internal/waf/utils"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
// RequestBodyCheckpoint ${requestBody}
|
|
type RequestBodyCheckpoint struct {
|
|
Checkpoint
|
|
}
|
|
|
|
func (this *RequestBodyCheckpoint) RequestValue(req requests.Request, param string, options maps.Map, ruleId int64) (value any, hasRequestBody bool, sysErr error, userErr error) {
|
|
if this.RequestBodyIsEmpty(req) {
|
|
value = ""
|
|
return
|
|
}
|
|
|
|
if req.WAFRaw().Body == nil {
|
|
value = ""
|
|
return
|
|
}
|
|
|
|
var bodyData = req.WAFGetCacheBody()
|
|
hasRequestBody = true
|
|
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)
|
|
}
|
|
|
|
return bodyData, hasRequestBody, nil, nil
|
|
}
|
|
|
|
func (this *RequestBodyCheckpoint) 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 *RequestBodyCheckpoint) CacheLife() utils.CacheLife {
|
|
return utils.CacheDisabled
|
|
}
|