-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathhttp.go
119 lines (101 loc) · 3.27 KB
/
http.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
package proxy
import (
"context"
"fmt"
"melody/config"
"melody/encoding"
"melody/transport/http/client"
"net/http"
"strconv"
)
// HTTPResponseParser 将http.Response -> proxy.Response
type HTTPResponseParser func(context.Context, *http.Response) (*Response, error)
func HTTPProxyFactory(client *http.Client) BackendFactory {
return CustomHTTPProxyFactory(func(_ context.Context) *http.Client { return client })
}
func CustomHTTPProxyFactory(cf client.HTTPClientFactory) BackendFactory {
return func(backend *config.Backend) Proxy {
return NewHTTPProxy(backend, cf, backend.Decoder)
}
}
func NewHTTPProxy(remote *config.Backend, cf client.HTTPClientFactory, decode encoding.Decoder) Proxy {
return NewHTTPProxyWithHTTPRequestExecutor(remote, client.DefaultHTTPRequestExecutor(cf), decode)
}
// NewHTTProxyWithHTTPRequestExecutor 将HTTPRequestExecutor封装,返回一个Proxy实例
func NewHTTPProxyWithHTTPRequestExecutor(remote *config.Backend, executor client.HTTPRequestExecutor, decoder encoding.Decoder) Proxy {
if remote.Encoding == encoding.NOOP {
return NewHTTPProxyDetailed(remote, executor, client.NoOpHTTPStatusHandler, NoOpHTTPResponseParser)
}
formatter := NewEntityFormatter(remote)
responseParser := DefaultHTTPResponseParserFactory(HTTPResponseParserConfig{
Decoder: decoder,
EntityFormatter: formatter,
})
return NewHTTPProxyDetailed(remote, executor, client.GetHTTPStatusHandler(remote), responseParser)
}
func NewHTTPProxyDetailed(remote *config.Backend, re client.HTTPRequestExecutor, ch client.HTTPStatusHandler, rp HTTPResponseParser) Proxy {
return func(ctx context.Context, request *Request) (*Response, error) {
requestToBackend, err := http.NewRequest(request.Method, request.URL.String(), request.Body)
if err != nil {
return nil, err
}
requestToBackend.Header = make(map[string][]string, len(request.Headers))
for k, vs := range request.Headers {
temp := make([]string, len(vs))
copy(temp, vs)
requestToBackend.Header[k] = temp
}
if request.Body != nil {
if v, ok := request.Headers["Content-Length"]; ok && len(v) == 1 && v[0] != "chunked" {
if size, err := strconv.Atoi(v[0]); err == nil {
requestToBackend.ContentLength = int64(size)
}
}
}
// **真正发送请求的地方**
resp, err := re(ctx, requestToBackend)
if requestToBackend.Body != nil {
requestToBackend.Body.Close()
}
select {
case <-ctx.Done():
return nil, ctx.Err()
default:
}
if err != nil {
return nil, err
}
// response的成功或者错误处理
resp, err = ch(ctx, resp)
if err != nil {
if t, ok := err.(responseError); ok {
return &Response{
Data: map[string]interface{}{
fmt.Sprintf("error_%s", t.Name()): t,
},
Metadata: Metadata{StatusCode: t.StatusCode()},
}, nil
}
return nil, err
}
return rp(ctx, resp)
}
}
func NewRequestBuilderMiddleware(backend *config.Backend) Middleware {
return func(proxy ...Proxy) Proxy {
if len(proxy) > 1 {
panic(ErrTooManyProxies)
}
return func(ctx context.Context, request *Request) (response *Response, e error) {
r := request.Clone()
r.GeneratePath(backend.URLPattern)
r.Method = backend.Method
return proxy[0](ctx, &r)
}
}
}
type responseError interface {
Error() string
Name() string
StatusCode() int
}