-
Notifications
You must be signed in to change notification settings - Fork 13
/
hostrouter.go
104 lines (87 loc) · 2 KB
/
hostrouter.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
package hostrouter
import (
"net/http"
"strings"
"github.com/go-chi/chi"
)
type Routes map[string]chi.Router
var _ chi.Routes = Routes{}
func New() Routes {
return Routes{}
}
func (hr Routes) Match(rctx *chi.Context, method, path string) bool {
return true
}
func (hr Routes) Map(host string, h chi.Router) {
hr[strings.ToLower(host)] = h
}
func (hr Routes) Unmap(host string) {
delete(hr, strings.ToLower(host))
}
func (hr Routes) ServeHTTP(w http.ResponseWriter, r *http.Request) {
host := requestHost(r)
if router, ok := hr[strings.ToLower(host)]; ok {
router.ServeHTTP(w, r)
return
}
if router, ok := hr[strings.ToLower(getWildcardHost(host))]; ok {
router.ServeHTTP(w, r)
return
}
if router, ok := hr["*"]; ok {
router.ServeHTTP(w, r)
return
}
http.Error(w, http.StatusText(404), 404)
}
func (hr Routes) Routes() []chi.Route {
return hr[""].Routes()
}
func (hr Routes) Middlewares() chi.Middlewares {
return chi.Middlewares{}
}
func requestHost(r *http.Request) (host string) {
// not standard, but most popular
host = r.Header.Get("X-Forwarded-Host")
if host != "" {
return
}
// RFC 7239
host = r.Header.Get("Forwarded")
_, _, host = parseForwarded(host)
if host != "" {
return
}
// if all else fails fall back to request host
host = r.Host
return
}
func parseForwarded(forwarded string) (addr, proto, host string) {
if forwarded == "" {
return
}
for _, forwardedPair := range strings.Split(forwarded, ";") {
if tv := strings.SplitN(forwardedPair, "=", 2); len(tv) == 2 {
token, value := tv[0], tv[1]
token = strings.TrimSpace(token)
value = strings.TrimSpace(strings.Trim(value, `"`))
switch strings.ToLower(token) {
case "for":
addr = value
case "proto":
proto = value
case "host":
host = value
}
}
}
return
}
func getWildcardHost(host string) string {
parts := strings.Split(host, ".")
if len(parts) > 1 {
wildcard := append([]string{"*"}, parts[1:]...)
return strings.Join(wildcard, ".")
}
return strings.Join(parts, ".")
}