forked from louketo/louketo-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handlers.go
415 lines (352 loc) · 11.3 KB
/
handlers.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*
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 (
"bytes"
"encoding/base64"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"path"
"time"
log "github.com/Sirupsen/logrus"
"github.com/gin-gonic/gin"
)
//
// oauthAuthorizationHandler is responsible for performing the redirection to oauth provider
//
func (r *oauthProxy) oauthAuthorizationHandler(cx *gin.Context) {
// step: we can skip all of this if were not verifying the token
if r.config.SkipTokenVerification {
cx.AbortWithStatus(http.StatusNotAcceptable)
return
}
client, err := r.client.OAuthClient()
if err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("failed to retrieve the oauth client for authorization")
cx.AbortWithStatus(http.StatusInternalServerError)
return
}
// step: set the access type of the session
accessType := ""
if containedIn("offline", r.config.Scopes) {
accessType = "offline"
}
// step: generate the authorization url
redirectionURL := client.AuthCodeURL(cx.Query("state"), accessType, "")
log.WithFields(log.Fields{
"client_ip": cx.ClientIP(),
"access_type": accessType,
"redirection-url": redirectionURL,
}).Debugf("incoming authorization request from client address: %s", cx.ClientIP())
// step: if we have a custom sign in page, lets display that
if r.config.hasCustomSignInPage() {
// step: inject any custom tags into the context for the template
model := make(map[string]string, 0)
for k, v := range r.config.TagData {
model[k] = v
}
model["redirect"] = redirectionURL
cx.HTML(http.StatusOK, path.Base(r.config.SignInPage), model)
return
}
r.redirectToURL(redirectionURL, cx)
}
//
// oauthCallbackHandler is responsible for handling the response from oauth service
//
func (r *oauthProxy) oauthCallbackHandler(cx *gin.Context) {
// step: is token verification switched on?
if r.config.SkipTokenVerification {
cx.AbortWithStatus(http.StatusNotAcceptable)
return
}
// step: ensure we have a authorization code to exchange
code := cx.Request.URL.Query().Get("code")
if code == "" {
cx.AbortWithStatus(http.StatusBadRequest)
return
}
// step: exchange the authorization for a access token
response, err := exchangeAuthenticationCode(r.client, code)
if err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("unable to exchange code for access token")
r.accessForbidden(cx)
return
}
// step: parse decode the identity token
session, identity, err := parseToken(response.IDToken)
if err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("unable to parse id token for identity")
r.accessForbidden(cx)
return
}
// step: verify the token is valid
if err := verifyToken(r.client, session); err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("unable to verify the id token")
r.accessForbidden(cx)
return
}
// step: attempt to decode the access token else we default to the id token
accessToken, id, err := parseToken(response.AccessToken)
if err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("unable to parse the access token, using id token only")
} else {
session = accessToken
identity = id
}
log.WithFields(log.Fields{
"email": identity.Email,
"expires": identity.ExpiresAt.Format(time.RFC822Z),
"duration": identity.ExpiresAt.Sub(time.Now()).String(),
"idle": r.config.IdleDuration.String(),
}).Infof("issuing a new access token for user, email: %s", identity.Email)
// step: drop's a session cookie with the access token
r.dropAccessTokenCookie(cx, session.Encode(), r.config.IdleDuration)
// step: does the response has a refresh token and we are NOT ignore refresh tokens?
if r.config.EnableRefreshTokens && response.RefreshToken != "" {
// step: encrypt the refresh token
encrypted, err := encodeText(response.RefreshToken, r.config.EncryptionKey)
if err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("failed to encrypt the refresh token")
cx.AbortWithStatus(http.StatusInternalServerError)
return
}
// step: create and inject the state session
switch r.useStore() {
case true:
if err := r.StoreRefreshToken(session, encrypted); err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Warnf("failed to save the refresh token in the store")
}
default:
r.dropRefreshTokenCookie(cx, encrypted, r.config.IdleDuration*2)
}
}
// step: decode the state variable
state := "/"
if cx.Request.URL.Query().Get("state") != "" {
decoded, err := base64.StdEncoding.DecodeString(cx.Request.URL.Query().Get("state"))
if err != nil {
log.WithFields(log.Fields{
"state": cx.Request.URL.Query().Get("state"),
"error": err.Error(),
}).Warnf("unabe to decode the state parameter")
} else {
state = string(decoded)
}
}
r.redirectToURL(state, cx)
}
//
// loginHandler provide's a generic endpoint for clients to perform a user_credentials login to the provider
//
func (r *oauthProxy) loginHandler(cx *gin.Context) {
// step: parse the client credentials
username := cx.Request.PostFormValue("username")
password := cx.Request.PostFormValue("password")
if username == "" || password == "" {
log.WithFields(log.Fields{
"client_ip": cx.ClientIP(),
}).Errorf("the request does not have both username and password")
cx.AbortWithStatus(http.StatusBadRequest)
return
}
// step: get the client
client, err := r.client.OAuthClient()
if err != nil {
log.WithFields(log.Fields{
"client_ip": cx.ClientIP(),
"error": err.Error(),
}).Errorf("unable to create the oauth client for user_credentials request")
cx.AbortWithStatus(http.StatusInternalServerError)
return
}
// step: request the access token via
token, err := client.UserCredsToken(username, password)
if err != nil {
log.WithFields(log.Fields{
"client_ip": cx.ClientIP(),
"error": err.Error(),
}).Errorf("unable to request the access token via grant_type 'password'")
cx.AbortWithStatus(http.StatusInternalServerError)
return
}
// step: drop the access token
r.dropAccessTokenCookie(cx, token.AccessToken, r.config.IdleDuration)
cx.JSON(http.StatusOK, tokenResponse{
IDToken: token.IDToken,
AccessToken: token.AccessToken,
RefreshToken: token.RefreshToken,
ExpiresIn: token.Expires,
Scope: token.Scope,
})
}
//
// logoutHandler performs a logout
// - if it's just a access token, the cookie is deleted
// - if the user has a refresh token, the token is invalidated by the provider
// - optionally, the user can be redirected by to a url
//
func (r *oauthProxy) logoutHandler(cx *gin.Context) {
// the user can specify a url to redirect the back to
redirectURL := cx.Request.URL.Query().Get("redirect")
// step: drop the access token
user, err := r.getIdentity(cx)
if err != nil {
cx.AbortWithStatus(http.StatusBadRequest)
return
}
// step: can either use the id token or the refresh token
identityToken := user.token.Encode()
if refresh, err := r.retrieveRefreshToken(cx, user); err == nil {
identityToken = refresh
}
r.clearAllCookies(cx)
// step: check if the user has a state session and if so, revoke it
if r.useStore() {
go func() {
if err := r.DeleteRefreshToken(user.token); err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("unable to remove the refresh token from store")
}
}()
}
// step: do we have a revocation endpoint?
if r.config.RevocationEndpoint != "" {
client, err := r.client.OAuthClient()
if err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("unable to retrieve the openid client")
cx.AbortWithStatus(http.StatusInternalServerError)
return
}
// step: add the authentication headers
// @TODO need to add the authenticated request to go-oidc
encodedID := url.QueryEscape(r.config.ClientID)
encodedSecret := url.QueryEscape(r.config.ClientSecret)
// step: construct the url for revocation
request, err := http.NewRequest("POST", r.config.RevocationEndpoint,
bytes.NewBufferString(fmt.Sprintf("refresh_token=%s", identityToken)))
if err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("unable to construct the revocation request")
cx.AbortWithStatus(http.StatusInternalServerError)
return
}
// step: add the authentication headers and content-type
request.SetBasicAuth(encodedID, encodedSecret)
request.Header.Set("Content-Type", "application/x-www-form-urlencoded")
// step: attempt to make the
response, err := client.HttpClient().Do(request)
if err != nil {
log.WithFields(log.Fields{
"error": err.Error(),
}).Errorf("unable to post to revocation endpoint")
return
}
// step: add a log for debugging
switch response.StatusCode {
case http.StatusNoContent:
log.WithFields(log.Fields{
"user": user.email,
}).Infof("successfully logged out of the endpoint")
default:
content, _ := ioutil.ReadAll(response.Body)
log.WithFields(log.Fields{
"status": response.StatusCode,
"response": fmt.Sprintf("%s", content),
}).Errorf("invalid response from revocation endpoint")
}
}
// step: should we redirect the user
if redirectURL != "" {
r.redirectToURL(redirectURL, cx)
return
}
cx.AbortWithStatus(http.StatusOK)
}
//
// expirationHandler checks if the token has expired
//
func (r *oauthProxy) expirationHandler(cx *gin.Context) {
// step: get the access token from the request
user, err := r.getIdentity(cx)
if err != nil {
cx.AbortWithError(http.StatusUnauthorized, err)
return
}
// step: check the access is not expired
if user.isExpired() {
cx.AbortWithError(http.StatusUnauthorized, err)
return
}
cx.AbortWithStatus(http.StatusOK)
}
//
// tokenHandler display access token to screen
//
func (r *oauthProxy) tokenHandler(cx *gin.Context) {
// step: extract the access token from the request
user, err := r.getIdentity(cx)
if err != nil {
cx.AbortWithError(http.StatusBadRequest, fmt.Errorf("unable to retrieve session, error: %s", err))
return
}
// step: write the json content
cx.Writer.Header().Set("Content-Type", "application/json")
cx.String(http.StatusOK, fmt.Sprintf("%s", user.token.Payload))
}
//
// healthHandler is a health check handler for the service
//
func (r *oauthProxy) healthHandler(cx *gin.Context) {
cx.Writer.Header().Set(versionHeader, version)
cx.String(http.StatusOK, "OK\n")
}
//
// retrieveRefreshToken retrieves the refresh token from store or cookie
//
func (r *oauthProxy) retrieveRefreshToken(cx *gin.Context, user *userContext) (string, error) {
var token string
var err error
// step: get the refresh token from the store or cookie
switch r.useStore() {
case true:
token, err = r.GetRefreshToken(user.token)
default:
token, err = r.getRefreshTokenFromCookie(cx)
}
// step: decode the cookie
if err != nil {
return token, err
}
return decodeText(token, r.config.EncryptionKey)
}