2023-01-23 15:10:14 -05:00
|
|
|
package validations
|
2021-02-03 20:47:45 +01:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type PluginRequestValidator interface {
|
|
|
|
|
// Validate performs a request validation based
|
|
|
|
|
// on the data source URL and some of the request
|
|
|
|
|
// attributes (headers, cookies, etc).
|
|
|
|
|
Validate(dsURL string, req *http.Request) error
|
|
|
|
|
}
|