-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproxy.go
76 lines (63 loc) · 1.89 KB
/
proxy.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
package main
import (
"fmt"
"net/http"
"net/http/httputil"
"net/url"
"github.com/caido/grafana-auth-proxy/pkg/extraction"
"github.com/caido/grafana-auth-proxy/pkg/identity"
"github.com/caido/grafana-auth-proxy/pkg/validation"
"github.com/dgrijalva/jwt-go"
)
const (
grafanaAuthHeader = "X-WEBAUTH-USER"
)
type RequestsHandler struct {
ServedUrl *url.URL
TokenExtractor *extraction.TokenExtractor
TokenValidator *validation.TokenValidator
IdentityProvider identity.Provider
}
func (rh *RequestsHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// Allow free access to the health API used by load balancers
if r.RequestURI == "/api/health" {
proxy := httputil.NewSingleHostReverseProxy(rh.ServedUrl)
proxy.ServeHTTP(w, r)
return
}
// Extract the token
rawToken, err := rh.TokenExtractor.Extract(r)
if err != nil {
rh.unauthorizedHandler(w, r)
return
}
// Validate the token
token, err := rh.TokenValidator.Validate(rawToken)
if err != nil {
rh.unauthorizedHandler(w, r)
return
}
rh.serveHandler(token, w, r)
}
func (rh *RequestsHandler) serveHandler(token *jwt.Token, w http.ResponseWriter, r *http.Request) {
// Get the user identity
userId, err := rh.IdentityProvider.Identify(token.Claims.(jwt.MapClaims))
if err != nil {
rh.unauthorizedHandler(w, r)
return
}
// Create the reverse proxy
proxy := httputil.NewSingleHostReverseProxy(rh.ServedUrl)
// Update the headers to allow for SSL redirection
r.URL.Host = rh.ServedUrl.Host
r.URL.Scheme = rh.ServedUrl.Scheme
r.Header.Set("X-Forwarded-Host", r.Header.Get("Host"))
r.Header.Set(grafanaAuthHeader, userId)
r.Host = rh.ServedUrl.Host
proxy.ServeHTTP(w, r)
}
func (rh *RequestsHandler) unauthorizedHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusUnauthorized)
fmt.Fprintf(w, `{"message": "Unauthorized"}`)
}