-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcookie.go
119 lines (100 loc) · 2.53 KB
/
cookie.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
package traefik_oidc_auth
import (
"fmt"
"net/http"
"strconv"
"time"
)
func (toa *TraefikOidcAuth) setChunkedCookies(rw http.ResponseWriter, cookieName string, cookieValue string) {
cookieChunks := ChunkString(cookieValue, 3072)
baseCookie := toa.createSessionCookie()
baseCookie.Name = cookieName
// Set the cookie
if len(cookieChunks) == 1 {
c := baseCookie
c.Value = cookieValue
http.SetCookie(rw, c)
} else {
c := baseCookie
c.Name = cookieName + "Chunks"
c.Value = fmt.Sprintf("%d", len(cookieChunks))
http.SetCookie(rw, c)
for index, chunk := range cookieChunks {
c.Name = fmt.Sprintf("%s%d", cookieName, index+1)
c.Value = chunk
http.SetCookie(rw, c)
}
}
}
func (toa *TraefikOidcAuth) readChunkedCookie(req *http.Request, cookieName string) (string, error) {
chunkCount, err := getChunkedCookieCount(req, cookieName)
if err != nil {
return "", err
}
if chunkCount == 0 {
cookie, err := req.Cookie(cookieName)
if err != nil {
return "", err
}
return cookie.Value, nil
}
value := ""
for i := 0; i < chunkCount; i++ {
cookie, err := req.Cookie(fmt.Sprintf("%s%d", cookieName, i+1))
if err != nil {
return "", err
}
value += cookie.Value
}
return value, nil
}
func getChunkedCookieCount(req *http.Request, cookieName string) (int, error) {
chunksCookie, err := req.Cookie(fmt.Sprintf("%sChunks", cookieName))
if err != nil {
return 0, nil
}
chunkCount, err := strconv.Atoi(chunksCookie.Value)
if err != nil {
return 0, err
}
return chunkCount, nil
}
func (toa *TraefikOidcAuth) clearChunkedCookie(rw http.ResponseWriter, req *http.Request, cookieName string) error {
chunkCount, err := getChunkedCookieCount(req, cookieName)
if err != nil {
return err
}
baseCookie := toa.createSessionCookie()
baseCookie.Name = cookieName
baseCookie.Value = ""
makeCookieExpireImmediately(baseCookie)
if chunkCount == 0 {
http.SetCookie(rw, baseCookie)
} else {
c := baseCookie
c.Name = cookieName + "Chunks"
http.SetCookie(rw, c)
for i := 0; i < chunkCount; i++ {
c.Name = fmt.Sprintf("%s%d", cookieName, i+1)
http.SetCookie(rw, c)
}
}
return nil
}
func parseCookieSameSite(sameSite string) http.SameSite {
switch sameSite {
case "none":
return http.SameSiteNoneMode
case "lax":
return http.SameSiteLaxMode
case "strict":
return http.SameSiteStrictMode
default:
return http.SameSiteDefaultMode
}
}
func makeCookieExpireImmediately(cookie *http.Cookie) *http.Cookie {
cookie.Expires = time.Now().Add(-24 * time.Hour)
cookie.MaxAge = -1
return cookie
}