-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforward_handler.go
79 lines (74 loc) · 2.2 KB
/
forward_handler.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
package main
import (
"context"
"fmt"
"log"
"net/http"
"net/http/httputil"
"net/url"
"time"
"gcruaaron.dev/pkg/proxy"
"golang.org/x/sync/errgroup"
)
// newForwardingHandler creates a new http handler that forwards requests to fwdSvcURL.
func newForwardingHandler(
fwdSvcURL *url.URL,
dialCtxFunc proxy.DialContextFunc,
waitFunc proxy.ForwardWaitFunc,
waitTimeout time.Duration,
respTimeout time.Duration,
) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx, done := context.WithTimeout(r.Context(), waitTimeout)
defer done()
grp, _ := errgroup.WithContext(ctx)
grp.Go(func() error {
return waitFunc(ctx)
})
if err := grp.Wait(); err != nil {
log.Printf("Error, not forwarding request: %s", err)
w.WriteHeader(502)
w.Write([]byte(fmt.Sprintf("error on backend (%s)", err)))
return
}
log.Printf("forwarding request to %#v", *fwdSvcURL)
forwardRequest(w, r, dialCtxFunc, respTimeout, fwdSvcURL)
})
}
// forwardRequest sets up a proxy and forwards the request to fwdSvcURL
func forwardRequest(
w http.ResponseWriter,
r *http.Request,
dialCtxFunc proxy.DialContextFunc,
respHeaderTimeout time.Duration,
fwdSvcURL *url.URL,
) {
roundTripper := &http.Transport{
Proxy: http.ProxyFromEnvironment,
DialContext: dialCtxFunc,
ForceAttemptHTTP2: true,
MaxIdleConns: 100,
IdleConnTimeout: 90 * time.Second,
TLSHandshakeTimeout: 10 * time.Second,
ExpectContinueTimeout: 1 * time.Second,
ResponseHeaderTimeout: respHeaderTimeout,
}
proxy := httputil.NewSingleHostReverseProxy(fwdSvcURL)
proxy.Transport = roundTripper
proxy.Director = func(req *http.Request) {
log.Printf("forwarding request %#v", *req)
req.URL = fwdSvcURL
req.Host = fwdSvcURL.Host
req.URL.Path = r.URL.Path
req.URL.RawQuery = r.URL.RawQuery
// delete the incoming X-Forwarded-For header so the proxy
// puts its own in. This is also important to prevent IP spoofing
req.Header.Del("X-Forwarded-For ")
}
proxy.ErrorHandler = func(w http.ResponseWriter, r *http.Request, err error) {
w.WriteHeader(502)
errMsg := fmt.Errorf("error on backend (%w)", err).Error()
w.Write([]byte(errMsg))
}
proxy.ServeHTTP(w, r)
}