forked from krakend/krakend-martian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
martian.go
173 lines (151 loc) · 5.42 KB
/
martian.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
package martian
import (
"bytes"
"context"
"encoding/json"
"errors"
"io/ioutil"
"net/http"
"github.com/luraproject/lura/v2/config"
"github.com/luraproject/lura/v2/logging"
"github.com/luraproject/lura/v2/proxy"
"github.com/luraproject/lura/v2/transport/http/client"
// import the required martian packages so they can be used
"github.com/google/martian"
_ "github.com/google/martian/body"
_ "github.com/google/martian/cookie"
_ "github.com/google/martian/fifo"
_ "github.com/google/martian/header"
_ "github.com/google/martian/martianurl"
"github.com/google/martian/parse"
_ "github.com/google/martian/port"
_ "github.com/google/martian/priority"
_ "github.com/google/martian/stash"
_ "github.com/google/martian/status"
)
type requestExecutorFactory func(*config.Backend) client.HTTPRequestExecutor
// NewBackendFactory creates a proxy.BackendFactory with the martian request executor wrapping the injected one.
// If there is any problem parsing the extra config data, it just uses the injected request executor.
func NewBackendFactory(logger logging.Logger, re client.HTTPRequestExecutor) proxy.BackendFactory {
return NewConfiguredBackendFactory(logger, func(_ *config.Backend) client.HTTPRequestExecutor { return re })
}
// NewConfiguredBackendFactory creates a proxy.BackendFactory with the martian request executor wrapping the injected one.
// If there is any problem parsing the extra config data, it just uses the injected request executor.
func NewConfiguredBackendFactory(logger logging.Logger, ref requestExecutorFactory) proxy.BackendFactory {
ref = NewRequestExecutorFactory(logger, ref)
return func(remote *config.Backend) proxy.Proxy {
return proxy.NewHTTPProxyWithHTTPExecutor(remote, ref(remote), remote.Decoder)
}
}
// NewRequestExecutorFactory creates a request executor factory that takes as input the config.Backend wrapping the injected one.
// If there is any problem parsing the extra config data, it just uses the injected request executor.
func NewRequestExecutorFactory(logger logging.Logger, ref requestExecutorFactory) requestExecutorFactory {
parse.Register("static.Modifier", staticModifierFromJSON)
return func(remote *config.Backend) client.HTTPRequestExecutor {
re := ref(remote)
result, ok := ConfigGetter(remote.ExtraConfig).(Result)
if !ok {
return re
}
switch result.Err {
case nil:
return HTTPRequestExecutor(result.Result, re)
case ErrEmptyValue:
return re
default:
logger.Error(result, remote.ExtraConfig)
return re
}
}
}
// HTTPRequestExecutor creates a wrapper over the received request executor, so the martian modifiers can be
// executed before and after the execution of the request
func HTTPRequestExecutor(result *parse.Result, re client.HTTPRequestExecutor) client.HTTPRequestExecutor {
return func(ctx context.Context, req *http.Request) (resp *http.Response, err error) {
if err = modifyRequest(result.RequestModifier(), req); err != nil {
return
}
mctx, ok := req.Context().(*Context)
if !ok || !mctx.SkippingRoundTrip() {
resp, err = re(ctx, req)
if err != nil {
return
}
if resp == nil {
err = ErrEmptyResponse
return
}
} else if resp == nil {
resp = &http.Response{
Request: req,
Header: http.Header{},
StatusCode: http.StatusOK,
Body: ioutil.NopCloser(bytes.NewBufferString("")),
}
}
err = modifyResponse(result.ResponseModifier(), resp)
return
}
}
func modifyRequest(mod martian.RequestModifier, req *http.Request) error {
if req.Body == nil {
req.Body = ioutil.NopCloser(bytes.NewBufferString(""))
}
if req.Header == nil {
req.Header = http.Header{}
}
if mod == nil {
return nil
}
return mod.ModifyRequest(req)
}
func modifyResponse(mod martian.ResponseModifier, resp *http.Response) error {
if resp.Body == nil {
resp.Body = ioutil.NopCloser(bytes.NewBufferString(""))
}
if resp.Header == nil {
resp.Header = http.Header{}
}
if resp.StatusCode == 0 {
resp.StatusCode = http.StatusOK
}
if mod == nil {
return nil
}
return mod.ModifyResponse(resp)
}
// Namespace is the key to look for extra configuration details
const Namespace = "github.com/devopsfaith/krakend-martian"
// Result is a simple wrapper over the parse.FromJSON response tuple
type Result struct {
Result *parse.Result
Err error
}
// ConfigGetter implements the config.ConfigGetter interface. It parses the extra config for the
// martian adapter and returns a Result wrapping the results.
func ConfigGetter(e config.ExtraConfig) interface{} {
cfg, ok := e[Namespace]
if !ok {
return Result{nil, ErrEmptyValue}
}
data, ok := cfg.(map[string]interface{})
if !ok {
return Result{nil, ErrBadValue}
}
raw, err := json.Marshal(data)
if err != nil {
return Result{nil, ErrMarshallingValue}
}
r, err := parse.FromJSON(raw)
return Result{r, err}
}
var (
// ErrEmptyValue is the error returned when there is no config under the namespace
ErrEmptyValue = errors.New("getting the extra config for the martian module")
// ErrBadValue is the error returned when the config is not a map
ErrBadValue = errors.New("casting the extra config for the martian module")
// ErrMarshallingValue is the error returned when the config map can not be marshalled again
ErrMarshallingValue = errors.New("marshalling the extra config for the martian module")
// ErrEmptyResponse is the error returned when the modifier receives a nil response
ErrEmptyResponse = errors.New("getting the http response from the request executor")
)