-
Notifications
You must be signed in to change notification settings - Fork 0
/
memorysession.go
235 lines (185 loc) · 4.6 KB
/
memorysession.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
package httpwaymid
import (
"crypto/md5"
"crypto/rand"
"encoding/binary"
"encoding/hex"
"net/http"
"sync"
"time"
"github.com/corneldamian/httpway"
)
//session
type Session struct {
id string
data map[string]interface{}
dataSync *sync.RWMutex
creationTime time.Time
accessTime time.Time
}
func NewSession(id string) *Session {
return &Session{
id: id,
data: make(map[string]interface{}),
dataSync: &sync.RWMutex{},
creationTime: time.Now(),
accessTime: time.Now(),
}
}
func (s *Session) Id() string {
return s.id
}
func (s *Session) IsAuth() bool {
s.dataSync.RLock()
defer s.dataSync.RUnlock()
v, ok := s.data["_isAuth"]
if !ok {
return false
}
return v.(bool)
}
func (s *Session) SetAuth(isAuth bool) {
s.dataSync.Lock()
defer s.dataSync.Unlock()
s.data["_isAuth"] = isAuth
}
func (s *Session) Username() string {
s.dataSync.RLock()
defer s.dataSync.RUnlock()
v, ok := s.data["_username"]
if !ok {
return ""
}
return v.(string)
}
func (s *Session) SetUsername(username string) {
s.dataSync.Lock()
defer s.dataSync.Unlock()
s.data["_username"] = username
}
func (s *Session) Set(key string, val interface{}) {
s.dataSync.Lock()
defer s.dataSync.Unlock()
s.data[key] = val
}
func (s *Session) Get(key string) interface{} {
s.dataSync.RLock()
defer s.dataSync.RUnlock()
return s.data[key]
}
func (s *Session) GetInt(key string) int {
s.dataSync.RLock()
defer s.dataSync.RUnlock()
v, ok := s.data[key]
if !ok {
return 0
}
return v.(int)
}
func (s *Session) GetString(key string) string {
s.dataSync.RLock()
defer s.dataSync.RUnlock()
v, ok := s.data[key]
if !ok {
return ""
}
return v.(string)
}
//sessions manager
type SessionManager struct {
sessions map[string]*Session
sessionsSync *sync.RWMutex
}
// create a new session manager
func NewSessionManager(timeout, expiration int, log httpway.Logger) *SessionManager {
sm := &SessionManager{
sessions: make(map[string]*Session),
sessionsSync: &sync.RWMutex{},
}
go sm.gc(time.Duration(timeout)*time.Second, time.Duration(expiration)*time.Second, log)
return sm
}
func (sm *SessionManager) gc(timeout, expiration time.Duration, log httpway.Logger) {
for {
time.Sleep(60 * time.Second)
deleteList := make([]string, 0, 100)
sm.sessionsSync.RLock()
for k, v := range sm.sessions {
if expiration > 0 {
if time.Since(v.creationTime) > expiration {
deleteList = append(deleteList, k)
continue
}
}
if timeout > 0 {
if time.Since(v.accessTime) > timeout {
deleteList = append(deleteList, k)
}
}
}
sm.sessionsSync.RUnlock()
if len(deleteList) > 0 {
log.Debug("Going to delete %d sessions from memory", len(deleteList))
sm.sessionsSync.Lock()
for _, k := range deleteList {
delete(sm.sessions, k)
}
sm.sessionsSync.Unlock()
}
}
}
//will get the session or create it if not found, cookie will be set with the new session
func (sm *SessionManager) Get(w http.ResponseWriter, r *http.Request, log httpway.Logger) httpway.Session {
sessionId := ""
cook, err := r.Cookie("_s")
if err == nil {
sessionId = cook.Value
}
return sm.GetById(sessionId, w, r, log)
}
func (sm *SessionManager) GetById(sessionId string, w http.ResponseWriter, r *http.Request, log httpway.Logger) httpway.Session {
sm.sessionsSync.RLock()
s, found := sm.sessions[sessionId]
sm.sessionsSync.RUnlock()
if found {
s.accessTime = time.Now()
log.Debug("Session %s found, created on: %s last access on: %s", s.id, s.creationTime, s.accessTime)
return s
}
s = sm.newSession(w)
log.Debug("New session %s created", s.id)
return s
}
func (sm *SessionManager) Has(sessionId string) bool {
sm.sessionsSync.RLock()
defer sm.sessionsSync.RUnlock()
_, ok := sm.sessions[sessionId]
return ok
}
func (sm *SessionManager) Set(w http.ResponseWriter, r *http.Request, session httpway.Session, log httpway.Logger) {
sm.sessionsSync.Lock()
sm.sessions[session.Id()] = session.(*Session)
sm.sessionsSync.Unlock()
log.Debug("Session %s set", session.Id())
}
func (sm *SessionManager) newSession(w http.ResponseWriter) *Session {
b := make([]byte, 32)
n, err := rand.Read(b)
id := ""
if n != len(b) || err != nil {
t := make([]byte, 32)
binary.LittleEndian.PutUint64(t, uint64(time.Now().UnixNano()))
hasher := md5.New()
hasher.Write(t)
id = hex.EncodeToString(hasher.Sum(nil))
} else {
id = hex.EncodeToString(b)
}
s := NewSession(id)
sm.sessionsSync.Lock()
sm.sessions[s.id] = s
sm.sessionsSync.Unlock()
newCook := &http.Cookie{Name: "_s", Value: s.Id(), Path: "/"}
http.SetCookie(w, newCook)
return s
}