feat(rewriter): pass structured url to ease request rewriting
Cadoles/bouncer/pipeline/head This commit looks good
Details
Cadoles/bouncer/pipeline/head This commit looks good
Details
This commit is contained in:
parent
3c1939f418
commit
c73fe8cca5
|
@ -66,7 +66,21 @@ La requête en cours de traitement.
|
||||||
{
|
{
|
||||||
method: "string", // Méthode HTTP
|
method: "string", // Méthode HTTP
|
||||||
host: "string", // Nom d'hôte (`Host`) associé à la requête
|
host: "string", // Nom d'hôte (`Host`) associé à la requête
|
||||||
url: "string", // URL associée à la requête
|
url: { // URL associée à la requête sous sa forme structurée
|
||||||
|
"scheme": "string", // Schéma HTTP de l'URL
|
||||||
|
"opaque": "string", // Données opaque de l'URL
|
||||||
|
"user": { // Identifiants d'URL (Basic Auth)
|
||||||
|
"username": "",
|
||||||
|
"password": ""
|
||||||
|
},
|
||||||
|
"host": "string", // Nom d'hôte (<domaine>:<port>) de l'URL
|
||||||
|
"path": "string", // Chemin de l'URL (format assaini)
|
||||||
|
"rawPath": "string", // Chemin de l'URL (format brut)
|
||||||
|
"rawQuery": "string", // Variables d'URL (format brut)
|
||||||
|
"fragment" : "string", // Fragment d'URL (format assaini)
|
||||||
|
"rawFragment" : "string" // Fragment d'URL (format brut)
|
||||||
|
},
|
||||||
|
rawUrl: "string", // URL associée à la requête (format assaini)
|
||||||
proto: "string", // Numéro de version du protocole utilisé
|
proto: "string", // Numéro de version du protocole utilisé
|
||||||
protoMajor: "int", // Numéro de version majeure du protocole utilisé
|
protoMajor: "int", // Numéro de version majeure du protocole utilisé
|
||||||
protoMinor: "int", // Numéro de version mineur du protocole utilisé
|
protoMinor: "int", // Numéro de version mineur du protocole utilisé
|
||||||
|
|
|
@ -74,7 +74,7 @@ func (l *Layer) ResponseTransformer(layer *store.Layer) proxy.ResponseTransforme
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func New() *Layer {
|
func New(funcs ...OptionFunc) *Layer {
|
||||||
return &Layer{}
|
return &Layer{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
package rewriter
|
||||||
|
|
||||||
|
type Options struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
type OptionFunc func(opts *Options)
|
||||||
|
|
||||||
|
func NewOptions(funcs ...OptionFunc) *Options {
|
||||||
|
opts := &Options{}
|
||||||
|
|
||||||
|
for _, fn := range funcs {
|
||||||
|
fn(opts)
|
||||||
|
}
|
||||||
|
|
||||||
|
return opts
|
||||||
|
}
|
|
@ -12,9 +12,27 @@ type RequestEnv struct {
|
||||||
Request RequestInfo `expr:"request"`
|
Request RequestInfo `expr:"request"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type URLEnv struct {
|
||||||
|
Scheme string `expr:"scheme"`
|
||||||
|
Opaque string `expr:"opaque"`
|
||||||
|
User UserInfoEnv `expr:"user"`
|
||||||
|
Host string `expr:"host"`
|
||||||
|
Path string `expr:"path"`
|
||||||
|
RawPath string `expr:"rawPath"`
|
||||||
|
RawQuery string `expr:"rawQuery"`
|
||||||
|
Fragment string `expr:"fragment"`
|
||||||
|
RawFragment string `expr:"rawFragment"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type UserInfoEnv struct {
|
||||||
|
Username string `expr:"username"`
|
||||||
|
Password string `expr:"password"`
|
||||||
|
}
|
||||||
|
|
||||||
type RequestInfo struct {
|
type RequestInfo struct {
|
||||||
Method string `expr:"method"`
|
Method string `expr:"method"`
|
||||||
URL string `expr:"url"`
|
URL URLEnv `expr:"url"`
|
||||||
|
RawURL string `expr:"rawUrl"`
|
||||||
Proto string `expr:"proto"`
|
Proto string `expr:"proto"`
|
||||||
ProtoMajor int `expr:"protoMajor"`
|
ProtoMajor int `expr:"protoMajor"`
|
||||||
ProtoMinor int `expr:"protoMinor"`
|
ProtoMinor int `expr:"protoMinor"`
|
||||||
|
@ -33,10 +51,7 @@ func (l *Layer) applyRequestRules(r *http.Request, options *LayerOptions) error
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
engine, err := rule.NewEngine[*RequestEnv](
|
engine, err := l.getRequestRuleEngine(r, options)
|
||||||
ruleHTTP.WithRequestFuncs(r),
|
|
||||||
rule.WithRules(options.Rules.Request...),
|
|
||||||
)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.WithStack(err)
|
return errors.WithStack(err)
|
||||||
}
|
}
|
||||||
|
@ -44,7 +59,24 @@ func (l *Layer) applyRequestRules(r *http.Request, options *LayerOptions) error
|
||||||
env := &RequestEnv{
|
env := &RequestEnv{
|
||||||
Request: RequestInfo{
|
Request: RequestInfo{
|
||||||
Method: r.Method,
|
Method: r.Method,
|
||||||
URL: r.URL.String(),
|
URL: URLEnv{
|
||||||
|
Scheme: r.URL.Scheme,
|
||||||
|
Opaque: r.URL.Opaque,
|
||||||
|
User: UserInfoEnv{
|
||||||
|
Username: r.URL.User.Username(),
|
||||||
|
Password: func() string {
|
||||||
|
passwd, _ := r.URL.User.Password()
|
||||||
|
return passwd
|
||||||
|
}(),
|
||||||
|
},
|
||||||
|
Host: r.URL.Host,
|
||||||
|
Path: r.URL.Path,
|
||||||
|
RawPath: r.URL.RawPath,
|
||||||
|
RawQuery: r.URL.RawQuery,
|
||||||
|
Fragment: r.URL.Fragment,
|
||||||
|
RawFragment: r.URL.RawFragment,
|
||||||
|
},
|
||||||
|
RawURL: r.URL.String(),
|
||||||
Proto: r.Proto,
|
Proto: r.Proto,
|
||||||
ProtoMajor: r.ProtoMajor,
|
ProtoMajor: r.ProtoMajor,
|
||||||
ProtoMinor: r.ProtoMinor,
|
ProtoMinor: r.ProtoMinor,
|
||||||
|
@ -65,6 +97,18 @@ func (l *Layer) applyRequestRules(r *http.Request, options *LayerOptions) error
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (l *Layer) getRequestRuleEngine(r *http.Request, options *LayerOptions) (*rule.Engine[*RequestEnv], error) {
|
||||||
|
engine, err := rule.NewEngine[*RequestEnv](
|
||||||
|
rule.WithRules(options.Rules.Request...),
|
||||||
|
ruleHTTP.WithRequestFuncs(r),
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return engine, nil
|
||||||
|
}
|
||||||
|
|
||||||
type ResponseEnv struct {
|
type ResponseEnv struct {
|
||||||
Request RequestInfo `expr:"request"`
|
Request RequestInfo `expr:"request"`
|
||||||
Response ResponseInfo `expr:"response"`
|
Response ResponseInfo `expr:"response"`
|
||||||
|
@ -84,15 +128,12 @@ type ResponseInfo struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Layer) applyResponseRules(r *http.Response, options *LayerOptions) error {
|
func (l *Layer) applyResponseRules(r *http.Response, options *LayerOptions) error {
|
||||||
rules := options.Rules.Request
|
rules := options.Rules.Response
|
||||||
if len(rules) == 0 {
|
if len(rules) == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
engine, err := rule.NewEngine[*ResponseEnv](
|
engine, err := l.getResponseRuleEngine(r, options)
|
||||||
rule.WithRules(options.Rules.Response...),
|
|
||||||
ruleHTTP.WithResponseFuncs(r),
|
|
||||||
)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.WithStack(err)
|
return errors.WithStack(err)
|
||||||
}
|
}
|
||||||
|
@ -100,7 +141,24 @@ func (l *Layer) applyResponseRules(r *http.Response, options *LayerOptions) erro
|
||||||
env := &ResponseEnv{
|
env := &ResponseEnv{
|
||||||
Request: RequestInfo{
|
Request: RequestInfo{
|
||||||
Method: r.Request.Method,
|
Method: r.Request.Method,
|
||||||
URL: r.Request.URL.String(),
|
URL: URLEnv{
|
||||||
|
Scheme: r.Request.URL.Scheme,
|
||||||
|
Opaque: r.Request.URL.Opaque,
|
||||||
|
User: UserInfoEnv{
|
||||||
|
Username: r.Request.URL.User.Username(),
|
||||||
|
Password: func() string {
|
||||||
|
passwd, _ := r.Request.URL.User.Password()
|
||||||
|
return passwd
|
||||||
|
}(),
|
||||||
|
},
|
||||||
|
Host: r.Request.URL.Host,
|
||||||
|
Path: r.Request.URL.Path,
|
||||||
|
RawPath: r.Request.URL.RawPath,
|
||||||
|
RawQuery: r.Request.URL.RawQuery,
|
||||||
|
Fragment: r.Request.URL.Fragment,
|
||||||
|
RawFragment: r.Request.URL.RawFragment,
|
||||||
|
},
|
||||||
|
RawURL: r.Request.URL.String(),
|
||||||
Proto: r.Request.Proto,
|
Proto: r.Request.Proto,
|
||||||
ProtoMajor: r.Request.ProtoMajor,
|
ProtoMajor: r.Request.ProtoMajor,
|
||||||
ProtoMinor: r.Request.ProtoMinor,
|
ProtoMinor: r.Request.ProtoMinor,
|
||||||
|
@ -131,3 +189,15 @@ func (l *Layer) applyResponseRules(r *http.Response, options *LayerOptions) erro
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (l *Layer) getResponseRuleEngine(r *http.Response, options *LayerOptions) (*rule.Engine[*ResponseEnv], error) {
|
||||||
|
engine, err := rule.NewEngine[*ResponseEnv](
|
||||||
|
rule.WithRules(options.Rules.Response...),
|
||||||
|
ruleHTTP.WithResponseFuncs(r),
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return engine, nil
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue