-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxy.go
More file actions
127 lines (107 loc) · 3.94 KB
/
proxy.go
File metadata and controls
127 lines (107 loc) · 3.94 KB
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
120
121
122
123
124
125
126
127
/*
Copyright 2024 BlackRock, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package proxy
import (
"net/http"
"net/http/httputil"
"net/url"
"path"
"strings"
"github.com/tinymultiverse/tinyapp/gateway/auth"
"github.com/tinymultiverse/tinyapp/gateway/internal"
"github.com/tinymultiverse/tinyapp/gateway/util/metrics"
"go.uber.org/zap"
)
type proxyServerConfig struct {
Proxy *httputil.ReverseProxy
SecondaryProxy *httputil.ReverseProxy
SecondaryTargetPattern string
URLSubPath string
authenticator *auth.LDAPAuthenticator
}
func NewProxyServerConfig(envVars internal.EnvVars) (*proxyServerConfig, error) {
targetURL, err := url.Parse("http://127.0.0.1:" + envVars.PrimaryTargetPort)
if err != nil {
return nil, err
}
proxy := httputil.NewSingleHostReverseProxy(targetURL)
var secondaryProxy *httputil.ReverseProxy
if envVars.SecondaryTargetPattern != "" && envVars.SecondaryTargetPort != "" {
secondaryTargetUrl := &url.URL{
Scheme: "http",
Host: "127.0.0.1:" + envVars.SecondaryTargetPort,
}
secondaryProxy = httputil.NewSingleHostReverseProxy(secondaryTargetUrl)
}
authenticator := auth.NewLDAPAuthenticator(envVars)
return &proxyServerConfig{
Proxy: proxy,
SecondaryProxy: secondaryProxy,
SecondaryTargetPattern: envVars.SecondaryTargetPattern,
URLSubPath: envVars.URLSubPath,
authenticator: authenticator,
}, nil
}
func (p *proxyServerConfig) ServeHTTP(res http.ResponseWriter, req *http.Request) {
zap.S().Debugw("got a request", "host", req.Host, "method", req.Method, "requestURL", req.URL.String())
username, err := p.authenticator.Authenticate(req)
if err != nil {
zap.S().Warnw("authentication failed", "username", username, "error", err, "remoteAddr", req.RemoteAddr)
p.authenticator.RequireAuth(res)
return
}
zap.S().Infow("authenticated user", "username", username)
err = p.authenticator.AuthorizeUser(username)
if err != nil {
zap.S().Warnw("authorization failed", "username", username, "error", err, "remoteAddr", req.RemoteAddr)
p.sendUnauthorizedResponse(res, username)
return
}
if p.SecondaryProxy != nil && strings.Contains(req.URL.Path, p.SecondaryTargetPattern) {
zap.S().Debugw("routing to secondary proxy", "path", req.URL.Path, "user", username)
p.SecondaryProxy.ServeHTTP(res, req)
return
}
// Only increment user count if the request URL is app homepage
if path.Clean(req.URL.Path) == path.Clean(p.URLSubPath) {
zap.S().Infow("Incrementing user count", "user", username)
metrics.UsernameCounter.WithLabelValues(username).Inc()
}
p.Proxy.ServeHTTP(res, req)
}
// sendUnauthorizedResponse sends an HTML response for unauthorized users
func (p *proxyServerConfig) sendUnauthorizedResponse(res http.ResponseWriter, username string) {
res.Header().Set("Content-Type", "text/html")
res.WriteHeader(http.StatusForbidden)
html := `<!DOCTYPE html>
<html>
<head>
<title>Access Denied</title>
<style>
body { font-family: Arial, sans-serif; margin: 50px; text-align: center; }
.container { max-width: 500px; margin: 0 auto; }
h1 { color: #d32f2f; }
p { color: #666; margin: 20px 0; }
</style>
</head>
<body>
<div class="container">
<h1>Access Denied</h1>
<p>You do not have access to this app.</p>
<p>User: ` + username + `</p>
<p>Please contact your administrator if you believe this is an error.</p>
</div>
</body>
</html>`
res.Write([]byte(html))
}