Newer
Older
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
package sessionmdl
import (
"errors"
"time"
"coresls/servers/coresls/app/models"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/cachemdl"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/utiliymdl/guidmdl"
"github.com/dgrijalva/jwt-go"
)
type Session struct {
// UserID string
SessionFor string
SessionID string
}
const (
InstanceHeader = "session-instance"
)
var ValidateSession bool
var SessionInstance = guidmdl.GetGUID()
var store cachemdl.Cacher
var (
ErrSessionNotFound = errors.New("session not found")
ErrInvalidSessionInstance = errors.New("got invalid session instance id")
ErrSessionValidationFailed = errors.New("got invalid instance id")
)
// InitSessionManagerCache initializes the cache with provided configuration. Need to provide a cache type to use.
func InitSessionManagerCache(chacheType int) {
cacheConfig := cachemdl.CacheConfig{
Type: chacheType,
RedisCache: &cachemdl.RedisCache{
Addr: "", // empty takes default redis address 6379
DB: models.RedisDBSessionManager,
Prefix: models.ProjectID,
},
FastCache: &cachemdl.FastCacheHelper{
CleanupTime: 60 * time.Minute,
MaxEntries: 1000,
Expiration: -1,
},
}
store = cachemdl.GetCacheInstance(&cacheConfig)
}
func Set(userID string, s ...Session) {
i, _ := store.Get(userID)
if i == nil {
store.Set(userID, s)
return
}
sessions, ok := i.([]Session)
if !ok {
store.Set(userID, s)
return
}
store.Set(userID, append(sessions, s...))
}
func Get(userID string) ([]Session, error) {
var (
s []Session
i interface{}
ok bool
)
i, ok = store.Get(userID)
if !ok {
return s, ErrSessionNotFound
}
s, ok = i.([]Session)
if !ok {
return s, errors.New("failed to retrieve previous sessions")
}
return s, nil
}
func Delete(userId string) {
store.Delete(userId)
}
// ValidateSessionFromToken checks for session id in claims against available sessions
func ValidateSessionFromToken(claims jwt.MapClaims) error {
i, ok := claims["userId"]
if !ok {
return errors.New("\"userId\" field not found in token")
}
userId, ok := i.(string)
if !ok {
return errors.New("\"userId\" field is not string")
}
sessions, err := Get(userId)
if err != nil {
return err
}
i, ok = claims["sessionId"]
if !ok {
return errors.New("\"sessionId\" field not found in token")
}
sessionId, ok := i.(string)
if !ok {
return errors.New("\"sessionId\" field is not string")
}
var found bool
for i := range sessions {
if sessions[i].SessionID == sessionId {
found = true
break
}
}
if !found {
return ErrSessionNotFound
}
return nil
}
func CheckForSessionAvailability(userId, sessionFor string) error {
sessions, err := Get(userId)
if err != nil {
return err
}
var found bool
for i := range sessions {
if sessions[i].SessionFor == sessionFor {
found = true
break
}
}
if !found {
return ErrSessionNotFound
}
return nil
}
func DeleteSession(userId, sessionFor string) {
sessions, err := Get(userId)
if err != nil {
return
}
for i := 0; i < len(sessions); i++ {
if sessions[i].SessionFor == sessionFor {
sessions[i] = sessions[len(sessions)-1]
sessions = sessions[:len(sessions)-1]
}
}
if len(sessions) == 0 {
store.Delete(userId)
return
}
store.Set(userId, sessions)
}