-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsession_storer.go
64 lines (50 loc) · 1.08 KB
/
session_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
61
62
63
64
package main
import (
"fmt"
"net/http"
"github.com/gorilla/sessions"
"gopkg.in/authboss.v0"
)
const sessionCookieName = "ab_blog"
var sessionStore *sessions.CookieStore
type SessionStorer struct {
w http.ResponseWriter
r *http.Request
}
func NewSessionStorer(w http.ResponseWriter, r *http.Request) authboss.ClientStorer {
return &SessionStorer{w, r}
}
func (s SessionStorer) Get(key string) (string, bool) {
session, err := sessionStore.Get(s.r, sessionCookieName)
if err != nil {
fmt.Println(err)
return "", false
}
strInf, ok := session.Values[key]
if !ok {
return "", false
}
str, ok := strInf.(string)
if !ok {
return "", false
}
return str, true
}
func (s SessionStorer) Put(key, value string) {
session, err := sessionStore.Get(s.r, sessionCookieName)
if err != nil {
fmt.Println(err)
return
}
session.Values[key] = value
session.Save(s.r, s.w)
}
func (s SessionStorer) Del(key string) {
session, err := sessionStore.Get(s.r, sessionCookieName)
if err != nil {
fmt.Println(err)
return
}
delete(session.Values, key)
session.Save(s.r, s.w)
}