-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
http.go
88 lines (78 loc) · 2.61 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
package goproxy
import (
"io"
"net/http"
"strings"
"sync/atomic"
)
func (proxy *ProxyHttpServer) handleHttp(w http.ResponseWriter, r *http.Request) {
ctx := &ProxyCtx{Req: r, Session: atomic.AddInt64(&proxy.sess, 1), Proxy: proxy}
var err error
ctx.Logf("Got request %v %v %v %v", r.URL.Path, r.Host, r.Method, r.URL.String())
if !r.URL.IsAbs() {
proxy.NonproxyHandler.ServeHTTP(w, r)
return
}
r, resp := proxy.filterRequest(r, ctx)
if resp == nil {
if isWebSocketRequest(r) {
ctx.Logf("Request looks like websocket upgrade.")
proxy.serveWebsocket(ctx, w, r)
}
if !proxy.KeepHeader {
RemoveProxyHeaders(ctx, r)
}
resp, err = ctx.RoundTrip(r)
if err != nil {
ctx.Error = err
resp = proxy.filterResponse(nil, ctx)
}
if resp != nil {
ctx.Logf("Received response %v", resp.Status)
}
}
var origBody io.ReadCloser
if resp != nil {
origBody = resp.Body
defer origBody.Close()
}
resp = proxy.filterResponse(resp, ctx)
if resp == nil {
var errorString string
if ctx.Error != nil {
errorString = "error read response " + r.URL.Host + " : " + ctx.Error.Error()
ctx.Logf(errorString)
http.Error(w, ctx.Error.Error(), http.StatusInternalServerError)
} else {
errorString = "error read response " + r.URL.Host
ctx.Logf(errorString)
http.Error(w, errorString, http.StatusInternalServerError)
}
return
}
ctx.Logf("Copying response to client %v [%d]", resp.Status, resp.StatusCode)
// http.ResponseWriter will take care of filling the correct response length
// Setting it now, might impose wrong value, contradicting the actual new
// body the user returned.
// We keep the original body to remove the header only if things changed.
// This will prevent problems with HEAD requests where there's no body, yet,
// the Content-Length header should be set.
if origBody != resp.Body {
resp.Header.Del("Content-Length")
}
copyHeaders(w.Header(), resp.Header, proxy.KeepDestinationHeaders)
w.WriteHeader(resp.StatusCode)
var copyWriter io.Writer = w
// Content-Type header may also contain charset definition, so here we need to check the prefix.
// Transfer-Encoding can be a list of comma separated values, so we use Contains() for it.
if strings.HasPrefix(w.Header().Get("content-type"), "text/event-stream") ||
strings.Contains(w.Header().Get("transfer-encoding"), "chunked") {
// server-side events, flush the buffered data to the client.
copyWriter = &flushWriter{w: w}
}
nr, err := io.Copy(copyWriter, resp.Body)
if err := resp.Body.Close(); err != nil {
ctx.Warnf("Can't close response body %v", err)
}
ctx.Logf("Copied %v bytes to client error=%v", nr, err)
}