forked from martini-contrib/sessions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sessions.go
179 lines (155 loc) · 4.37 KB
/
sessions.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
// Package sessions contains middleware for easy session management in Martini.
//
// package main
//
// import (
// "github.com/go-martini/martini"
// "github.com/martini-contrib/sessions"
// )
//
// func main() {
// m := martini.Classic()
//
// store := sessions.NewCookieStore([]byte("secret123"))
// m.Use(sessions.Sessions("my_session", store))
//
// m.Get("/", func(session sessions.Session) string {
// session.Set("hello", "world")
// })
// }
package sessions
import (
"github.com/go-martini/martini"
"github.com/gorilla/context"
"github.com/gorilla/sessions"
"log"
"net/http"
)
const (
errorFormat = "[sessions] ERROR! %s\n"
)
// Store is an interface for custom session stores.
type Store interface {
sessions.Store
}
// Options stores configuration for a session or session store.
//
// Fields are a subset of http.Cookie fields.
type Options struct {
Path string
Domain string
// MaxAge=0 means no 'Max-Age' attribute specified.
// MaxAge<0 means delete cookie now, equivalently 'Max-Age: 0'.
// MaxAge>0 means Max-Age attribute present and given in seconds.
MaxAge int
Secure bool
HttpOnly bool
}
// Session stores the values and optional configuration for a session.
type Session interface {
// Get returns the session value associated to the given key.
Get(key interface{}) interface{}
// Set sets the session value associated to the given key.
Set(key interface{}, val interface{})
// Delete removes the session value associated to the given key.
Delete(key interface{})
// Clear deletes all values in the session.
Clear()
// AddFlash adds a flash message to the session.
// A single variadic argument is accepted, and it is optional: it defines the flash key.
// If not defined "_flash" is used by default.
AddFlash(value interface{}, vars ...string)
// Flashes returns a slice of flash messages from the session.
// A single variadic argument is accepted, and it is optional: it defines the flash key.
// If not defined "_flash" is used by default.
Flashes(vars ...string) []interface{}
// Options sets confuguration for a session.
Options(Options)
// Returns Values
Values() map[interface{}]interface{}
// Returns Session ID
GetId() string
}
// Sessions is a Middleware that maps a session.Session service into the Martini handler chain.
// Sessions can use a number of storage solutions with the given store.
func Sessions(name string, store Store) martini.Handler {
return func(res http.ResponseWriter, r *http.Request, c martini.Context, l *log.Logger) {
// Map to the Session interface
s := &session{name, r, l, store, nil, false}
c.MapTo(s, (*Session)(nil))
// Use before hook to save out the session
rw := res.(martini.ResponseWriter)
rw.Before(func(martini.ResponseWriter) {
if s.Written() {
check(s.Session().Save(r, res), l)
}
})
// clear the context, we don't need to use
// gorilla context and we don't want memory leaks
defer context.Clear(r)
c.Next()
}
}
type session struct {
name string
request *http.Request
logger *log.Logger
store Store
session *sessions.Session
written bool
}
func (s *session) Get(key interface{}) interface{} {
return s.Session().Values[key]
}
func (s *session) Set(key interface{}, val interface{}) {
s.Session().Values[key] = val
s.written = true
}
func (s *session) Delete(key interface{}) {
delete(s.Session().Values, key)
s.written = true
}
func (s *session) Clear() {
for key := range s.Session().Values {
s.Delete(key)
}
}
func (s *session) AddFlash(value interface{}, vars ...string) {
s.Session().AddFlash(value, vars...)
s.written = true
}
func (s *session) Flashes(vars ...string) []interface{} {
s.written = true
return s.Session().Flashes(vars...)
}
func (s *session) Options(options Options) {
s.Session().Options = &sessions.Options{
Path: options.Path,
Domain: options.Domain,
MaxAge: options.MaxAge,
Secure: options.Secure,
HttpOnly: options.HttpOnly,
}
}
func (s *session) Session() *sessions.Session {
if s.session == nil {
var err error
s.session, err = s.store.Get(s.request, s.name)
check(err, s.logger)
}
return s.session
}
func (s *session) Written() bool {
return s.written
}
func (s *session) Values() map[interface{}]interface{} {
return s.session.Values
}
func (s *session) GetId() string {
return s.session.ID
}
func check(err error, l *log.Logger) {
if err != nil {
l.Printf(errorFormat, err)
}
}