2019-04-03 23:47:27 +08:00
|
|
|
package caddyscript
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2019-06-15 01:58:28 +08:00
|
|
|
caddyscript "github.com/caddyserver/caddy/pkg/caddyscript/lib"
|
2019-04-03 23:47:27 +08:00
|
|
|
"go.starlark.net/starlark"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MatcherEnv sets up the global context for the matcher caddyscript environment.
|
|
|
|
func MatcherEnv(r *http.Request) starlark.StringDict {
|
|
|
|
env := make(starlark.StringDict)
|
|
|
|
env["req"] = caddyscript.HTTPRequest{Req: r}
|
|
|
|
env["time"] = caddyscript.Time{}
|
|
|
|
env["regexp"] = caddyscript.Regexp{}
|
|
|
|
|
|
|
|
return env
|
|
|
|
}
|