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
|
package handlers
import (
"context"
"errors"
"net/http"
)
func (h *Handlers) GetSession(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
sessionCookie, err := r.Cookie("session_token")
if err != nil {
msg := "auth failed; failed to get session token from cookies"
h.log.Debug(msg, "error", err)
next.ServeHTTP(w, r)
return
}
sessionToken := ""
if sessionCookie.Value == "" {
sessionToken = sessionCookie.Value
}
userSession, err := h.cacheGetSession(sessionCookie.Value)
if err != nil {
msg := "auth failed; session does not exists"
err = errors.New(msg)
h.log.Debug(msg, "error", err)
next.ServeHTTP(w, r)
return
}
if userSession.IsExpired() {
h.mc.RemoveKey(sessionToken)
msg := "session is expired"
h.log.Debug(msg, "error", err, "token", sessionToken)
next.ServeHTTP(w, r)
return
}
ctx := context.WithValue(r.Context(),
"username", userSession.Username)
if err := h.cacheSetSession(sessionToken,
userSession); err != nil {
msg := "failed to marshal user session"
h.log.Warn(msg, "error", err)
next.ServeHTTP(w, r)
return
}
next.ServeHTTP(w, r.WithContext(ctx))
})
}
|