-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookie_storer.go
60 lines (49 loc) · 1.02 KB
/
cookie_storer.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
package main
import (
"fmt"
"net/http"
"time"
"github.com/gorilla/securecookie"
"gopkg.in/authboss.v0"
)
var cookieStore *securecookie.SecureCookie
type CookieStorer struct {
w http.ResponseWriter
r *http.Request
}
func NewCookieStorer(w http.ResponseWriter, r *http.Request) authboss.ClientStorer {
return &CookieStorer{w, r}
}
func (s CookieStorer) Get(key string) (string, bool) {
cookie, err := s.r.Cookie(key)
if err != nil {
return "", false
}
var value string
err = cookieStore.Decode(key, cookie.Value, &value)
if err != nil {
return "", false
}
return value, true
}
func (s CookieStorer) Put(key, value string) {
encoded, err := cookieStore.Encode(key, value)
if err != nil {
fmt.Println(err)
}
cookie := &http.Cookie{
Expires: time.Now().UTC().AddDate(1, 0, 0),
Name: key,
Value: encoded,
Path: "/",
}
http.SetCookie(s.w, cookie)
}
func (s CookieStorer) Del(key string) {
cookie := &http.Cookie{
MaxAge: -1,
Name: key,
Path: "/",
}
http.SetCookie(s.w, cookie)
}