-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstore.go
411 lines (365 loc) · 8.91 KB
/
store.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
package redis
import (
"context"
"strconv"
"time"
"github.com/redis/go-redis/v9"
)
var (
// Error codes for store errors. This should match the codes
// defined in the /simplesessions package exactly.
ErrInvalidSession = &Err{code: 1, msg: "invalid session"}
ErrNil = &Err{code: 2, msg: "nil returned"}
ErrAssertType = &Err{code: 3, msg: "assertion failed"}
)
type Err struct {
code int
msg string
}
func (e *Err) Error() string {
return e.msg
}
func (e *Err) Code() int {
return e.code
}
// Store represents redis session store for simple sessions.
// Each session is stored as redis hashmap.
type Store struct {
// Maximum lifetime sessions has to be persisted.
ttl time.Duration
// extend TTL on update.
extendTTL bool
// Prefix for session id.
prefix string
// Redis client
client redis.UniversalClient
clientCtx context.Context
}
const (
// Default prefix used to store session redis
defaultPrefix = "session:"
// Default key used when session is created.
// Its not possible to have empty map in Redis.
defaultSessKey = "_ss"
)
// New creates a new Redis store instance.
func New(ctx context.Context, client redis.UniversalClient) *Store {
return &Store{
clientCtx: ctx,
client: client,
prefix: defaultPrefix,
}
}
// SetPrefix sets session id prefix in backend
func (s *Store) SetPrefix(val string) {
s.prefix = val
}
// SetTTL sets TTL for session in redis.
// if isExtend is true then ttl is updated on all set/setmulti.
// otherwise its set only on create().
func (s *Store) SetTTL(d time.Duration, extend bool) {
s.ttl = d
s.extendTTL = extend
}
// Create returns a new session id but doesn't stores it in redis since empty hashmap can't be created.
func (s *Store) Create(id string) error {
// Create the session in backend with default session key since
// Redis doesn't support empty hashmap and its impossible to
// check if the session exist or not.
p := s.client.TxPipeline()
p.HSet(s.clientCtx, s.prefix+id, defaultSessKey, "1")
if s.ttl > 0 {
p.Expire(s.clientCtx, s.prefix+id, s.ttl)
}
_, err := p.Exec(s.clientCtx)
return err
}
// Get gets a field in hashmap. If field is nill then ErrFieldNotFound is raised
func (s *Store) Get(id, key string) (interface{}, error) {
vals, err := s.client.HMGet(s.clientCtx, s.prefix+id, defaultSessKey, key).Result()
if err != nil {
return nil, err
}
if vals[0] == nil {
return nil, ErrInvalidSession
}
return vals[1], nil
}
// GetMulti gets a map for values for multiple keys. If key is not found then its set as nil.
func (s *Store) GetMulti(id string, keys ...string) (map[string]interface{}, error) {
allKeys := append([]string{defaultSessKey}, keys...)
vals, err := s.client.HMGet(s.clientCtx, s.prefix+id, allKeys...).Result()
if err != nil {
return nil, err
}
if vals[0] == nil {
return nil, ErrInvalidSession
}
// Form a map with returned results
res := make(map[string]interface{})
for i, k := range allKeys {
if k != defaultSessKey {
res[k] = vals[i]
}
}
return res, err
}
// GetAll gets all fields from hashmap.
func (s *Store) GetAll(id string) (map[string]interface{}, error) {
vals, err := s.client.HGetAll(s.clientCtx, s.prefix+id).Result()
if err != nil {
return nil, err
}
// Convert results to type `map[string]interface{}`
out := make(map[string]interface{})
for k, v := range vals {
if k != defaultSessKey {
out[k] = v
}
}
return out, nil
}
// Set sets a value to given session.
// If session is not present in backend then its still written.
func (s *Store) Set(id, key string, val interface{}) error {
p := s.client.TxPipeline()
p.HSet(s.clientCtx, s.prefix+id, key, val)
p.HSet(s.clientCtx, s.prefix+id, defaultSessKey, "1")
// Set expiry of key only if 'ttl' is set, this is to
// ensure that the key remains valid indefinitely like
// how redis handles it by default
if s.ttl > 0 && s.extendTTL {
p.Expire(s.clientCtx, s.prefix+id, s.ttl)
}
_, err := p.Exec(s.clientCtx)
return err
}
// Set sets a value to given session.
func (s *Store) SetMulti(id string, data map[string]interface{}) error {
// Make slice of arguments to be passed in HGETALL command
args := []interface{}{defaultSessKey, "1"}
for k, v := range data {
args = append(args, k, v)
}
p := s.client.TxPipeline()
p.HMSet(s.clientCtx, s.prefix+id, args...)
// Set expiry of key only if 'ttl' is set, this is to
// ensure that the key remains valid indefinitely like
// how redis handles it by default
if s.ttl > 0 && s.extendTTL {
p.Expire(s.clientCtx, s.prefix+id, s.ttl)
}
_, err := p.Exec(s.clientCtx)
return err
}
// Delete deletes a key from redis session hashmap.
func (s *Store) Delete(id string, keys ...string) error {
return s.client.HDel(s.clientCtx, s.prefix+id, keys...).Err()
}
// Clear clears session in redis.
func (s *Store) Clear(id string) error {
p := s.client.TxPipeline()
p.Del(s.clientCtx, s.prefix+id).Err()
p.HSet(s.clientCtx, s.prefix+id, defaultSessKey, "1")
if s.ttl > 0 {
p.Expire(s.clientCtx, s.prefix+id, s.ttl)
}
_, err := p.Exec(s.clientCtx)
return err
}
// Destroy deletes the entire session from backend.
func (s *Store) Destroy(id string) error {
return s.client.Del(s.clientCtx, s.prefix+id).Err()
}
// Int converts interface to integer.
func (s *Store) Int(r interface{}, err error) (int, error) {
if err != nil {
return 0, err
}
switch r := r.(type) {
case int:
return r, nil
case int64:
if x := int(r); int64(x) != r {
return 0, ErrAssertType
} else {
return x, nil
}
case []byte:
if n, err := strconv.ParseInt(string(r), 10, 0); err != nil {
return 0, ErrAssertType
} else {
return int(n), nil
}
case string:
if n, err := strconv.ParseInt(r, 10, 0); err != nil {
return 0, ErrAssertType
} else {
return int(n), nil
}
case nil:
return 0, ErrNil
case error:
return 0, r
}
return 0, ErrAssertType
}
// Int64 converts interface to Int64.
func (s *Store) Int64(r interface{}, err error) (int64, error) {
if err != nil {
return 0, err
}
switch r := r.(type) {
case int:
return int64(r), nil
case int64:
return r, nil
case []byte:
if n, err := strconv.ParseInt(string(r), 10, 64); err != nil {
return 0, ErrAssertType
} else {
return n, nil
}
case string:
if n, err := strconv.ParseInt(r, 10, 64); err != nil {
return 0, ErrAssertType
} else {
return n, nil
}
case nil:
return 0, ErrNil
case error:
return 0, r
}
return 0, ErrAssertType
}
// UInt64 converts interface to UInt64.
func (s *Store) UInt64(r interface{}, err error) (uint64, error) {
if err != nil {
return 0, err
}
switch r := r.(type) {
case uint64:
return r, nil
case int:
if r < 0 {
return 0, ErrAssertType
}
return uint64(r), nil
case int64:
if r < 0 {
return 0, ErrAssertType
}
return uint64(r), nil
case []byte:
if n, err := strconv.ParseUint(string(r), 10, 64); err != nil {
return 0, ErrAssertType
} else {
return n, nil
}
case string:
if n, err := strconv.ParseUint(r, 10, 64); err != nil {
return 0, ErrAssertType
} else {
return n, nil
}
case nil:
return 0, ErrNil
case error:
return 0, r
}
return 0, ErrAssertType
}
// Float64 converts interface to Float64.
func (s *Store) Float64(r interface{}, err error) (float64, error) {
if err != nil {
return 0, err
}
switch r := r.(type) {
case float64:
return r, err
case []byte:
if n, err := strconv.ParseFloat(string(r), 64); err != nil {
return 0, ErrAssertType
} else {
return n, nil
}
case string:
if n, err := strconv.ParseFloat(r, 64); err != nil {
return 0, ErrAssertType
} else {
return n, nil
}
case nil:
return 0, ErrNil
case error:
return 0, r
}
return 0, ErrAssertType
}
// String converts interface to String.
func (s *Store) String(r interface{}, err error) (string, error) {
if err != nil {
return "", err
}
switch r := r.(type) {
case []byte:
return string(r), nil
case string:
return r, nil
case nil:
return "", ErrNil
case error:
return "", r
}
return "", ErrAssertType
}
// Bytes converts interface to Bytes.
func (s *Store) Bytes(r interface{}, err error) ([]byte, error) {
if err != nil {
return nil, err
}
switch r := r.(type) {
case []byte:
return r, nil
case string:
return []byte(r), nil
case nil:
return nil, ErrNil
case error:
return nil, r
}
return nil, ErrAssertType
}
// Bool converts interface to Bool.
func (s *Store) Bool(r interface{}, err error) (bool, error) {
if err != nil {
return false, err
}
switch r := r.(type) {
case bool:
return r, err
// Very common in redis to reply int64 with 0 for bool flag.
case int:
return r != 0, nil
case int64:
return r != 0, nil
case []byte:
if n, err := strconv.ParseBool(string(r)); err != nil {
return false, ErrAssertType
} else {
return n, nil
}
case string:
if n, err := strconv.ParseBool(r); err != nil {
return false, ErrAssertType
} else {
return n, nil
}
case nil:
return false, ErrNil
case error:
return false, r
}
return false, ErrAssertType
}