mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-07 02:20:25 +08:00
26 lines
709 B
Go
26 lines
709 B
Go
|
|
package checkpoints
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeNode/internal/waf/requests"
|
||
|
|
)
|
||
|
|
|
||
|
|
type RequestURICheckpoint struct {
|
||
|
|
Checkpoint
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *RequestURICheckpoint) RequestValue(req *requests.Request, param string, options map[string]interface{}) (value interface{}, sysErr error, userErr error) {
|
||
|
|
if len(req.RequestURI) > 0 {
|
||
|
|
value = req.RequestURI
|
||
|
|
} else if req.URL != nil {
|
||
|
|
value = req.URL.RequestURI()
|
||
|
|
}
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *RequestURICheckpoint) ResponseValue(req *requests.Request, resp *requests.Response, param string, options map[string]interface{}) (value interface{}, sysErr error, userErr error) {
|
||
|
|
if this.IsRequest() {
|
||
|
|
return this.RequestValue(req, param, options)
|
||
|
|
}
|
||
|
|
return
|
||
|
|
}
|