This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
forked from louketo/louketo-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
misc.go
132 lines (114 loc) · 4.19 KB
/
misc.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
Copyright 2015 All rights reserved.
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 main
import (
"context"
"encoding/base64"
"fmt"
"net/http"
"path"
"time"
"github.com/gambol99/go-oidc/jose"
"go.uber.org/zap"
)
// filterCookies is responsible for censoring any cookies we don't want sent
func filterCookies(req *http.Request, filter []string) error {
// @NOTE: there doesn't appear to be a way of removing a cookie from the http.Request as
// AddCookie() just append
cookies := req.Cookies()
// @step: empty the current cookies
req.Header.Set("Cookie", "")
// @step: iterate the cookies and filter out anything we
for _, x := range cookies {
var found bool
// @step: does this cookie match our filter?
for _, n := range filter {
if x.Name == n {
req.AddCookie(&http.Cookie{Name: x.Name, Value: "censored"})
found = true
break
}
}
if !found {
req.AddCookie(x)
}
}
return nil
}
// revokeProxy is responsible to stopping the middleware from proxying the request
func (r *oauthProxy) revokeProxy(w http.ResponseWriter, req *http.Request) context.Context {
var scope *RequestScope
sc := req.Context().Value(contextScopeName)
switch sc {
case nil:
scope = &RequestScope{AccessDenied: true}
default:
scope = sc.(*RequestScope)
}
scope.AccessDenied = true
return context.WithValue(req.Context(), contextScopeName, scope)
}
// accessForbidden redirects the user to the forbidden page
func (r *oauthProxy) accessForbidden(w http.ResponseWriter, req *http.Request) context.Context {
w.WriteHeader(http.StatusForbidden)
// are we using a custom http template for 403?
if r.config.hasCustomForbiddenPage() {
name := path.Base(r.config.ForbiddenPage)
if err := r.Render(w, name, r.config.Tags); err != nil {
r.log.Error("failed to render the template", zap.Error(err), zap.String("template", name))
}
} else {
w.Write([]byte("403 Forbidden\n"))
}
return r.revokeProxy(w, req)
}
// redirectToURL redirects the user and aborts the context
func (r *oauthProxy) redirectToURL(url string, w http.ResponseWriter, req *http.Request, statusCode int) context.Context {
http.Redirect(w, req, url, statusCode)
return r.revokeProxy(w, req)
}
// redirectToAuthorization redirects the user to authorization handler
func (r *oauthProxy) redirectToAuthorization(w http.ResponseWriter, req *http.Request) context.Context {
if r.config.NoRedirects {
w.WriteHeader(http.StatusUnauthorized)
return r.revokeProxy(w, req)
}
// step: add a state referrer to the authorization page
authQuery := fmt.Sprintf("?state=%s", base64.StdEncoding.EncodeToString([]byte(req.URL.RequestURI())))
// step: if verification is switched off, we can't authorization
if r.config.SkipTokenVerification {
r.log.Error("refusing to redirection to authorization endpoint, skip token verification switched on")
w.WriteHeader(http.StatusForbidden)
return r.revokeProxy(w, req)
}
if r.config.InvalidAuthRedirectsWith303 {
r.redirectToURL(r.config.WithOAuthURI(authorizationURL+authQuery), w, req, http.StatusSeeOther)
} else {
r.redirectToURL(r.config.WithOAuthURI(authorizationURL+authQuery), w, req, http.StatusTemporaryRedirect)
}
return r.revokeProxy(w, req)
}
// getAccessCookieExpiration calucates the expiration of the access token cookie
func (r *oauthProxy) getAccessCookieExpiration(token jose.JWT, refresh string) time.Duration {
// notes: by default the duration of the access token will be the configuration option, if
// however we can decode the refresh token, we will set the duration to the duraction of the
// refresh token
duration := r.config.AccessTokenDuration
if _, ident, err := parseToken(refresh); err == nil {
delta := time.Until(ident.ExpiresAt)
if delta > 0 {
duration = delta
}
}
return duration
}