2020-07-22 14:50:08 +00:00
|
|
|
// Copyright 2014 beego Author. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
// Package redis for session provider
|
|
|
|
//
|
|
|
|
// depend on github.com/gomodule/redigo/redis
|
|
|
|
//
|
|
|
|
// go install github.com/gomodule/redigo/redis
|
|
|
|
//
|
|
|
|
// Usage:
|
|
|
|
// import(
|
|
|
|
// _ "github.com/astaxie/beego/session/redis"
|
|
|
|
// "github.com/astaxie/beego/session"
|
|
|
|
// )
|
|
|
|
//
|
|
|
|
// func init() {
|
|
|
|
// globalSessions, _ = session.NewManager("redis", ``{"cookieName":"gosessionid","gclifetime":3600,"ProviderConfig":"127.0.0.1:7070"}``)
|
|
|
|
// go globalSessions.GC()
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// more docs: http://beego.me/docs/module/session.md
|
|
|
|
package redis
|
|
|
|
|
|
|
|
import (
|
2020-08-30 15:39:07 +00:00
|
|
|
"context"
|
2020-07-22 14:50:08 +00:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2020-08-06 09:14:36 +00:00
|
|
|
"github.com/go-redis/redis/v7"
|
2020-10-08 09:17:15 +00:00
|
|
|
|
|
|
|
"github.com/astaxie/beego/server/web/session"
|
2020-07-22 14:50:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var redispder = &Provider{}
|
|
|
|
|
|
|
|
// MaxPoolSize redis max pool size
|
|
|
|
var MaxPoolSize = 100
|
|
|
|
|
|
|
|
// SessionStore redis session store
|
|
|
|
type SessionStore struct {
|
2020-08-06 09:14:36 +00:00
|
|
|
p *redis.Client
|
2020-07-22 14:50:08 +00:00
|
|
|
sid string
|
|
|
|
lock sync.RWMutex
|
|
|
|
values map[interface{}]interface{}
|
|
|
|
maxlifetime int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set value in redis session
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rs *SessionStore) Set(ctx context.Context, key, value interface{}) error {
|
2020-07-22 14:50:08 +00:00
|
|
|
rs.lock.Lock()
|
|
|
|
defer rs.lock.Unlock()
|
|
|
|
rs.values[key] = value
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get value in redis session
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rs *SessionStore) Get(ctx context.Context, key interface{}) interface{} {
|
2020-07-22 14:50:08 +00:00
|
|
|
rs.lock.RLock()
|
|
|
|
defer rs.lock.RUnlock()
|
|
|
|
if v, ok := rs.values[key]; ok {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete value in redis session
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rs *SessionStore) Delete(ctx context.Context, key interface{}) error {
|
2020-07-22 14:50:08 +00:00
|
|
|
rs.lock.Lock()
|
|
|
|
defer rs.lock.Unlock()
|
|
|
|
delete(rs.values, key)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flush clear all values in redis session
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rs *SessionStore) Flush(context.Context) error {
|
2020-07-22 14:50:08 +00:00
|
|
|
rs.lock.Lock()
|
|
|
|
defer rs.lock.Unlock()
|
|
|
|
rs.values = make(map[interface{}]interface{})
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SessionID get redis session id
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rs *SessionStore) SessionID(context.Context) string {
|
2020-07-22 14:50:08 +00:00
|
|
|
return rs.sid
|
|
|
|
}
|
|
|
|
|
|
|
|
// SessionRelease save session values to redis
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rs *SessionStore) SessionRelease(ctx context.Context, w http.ResponseWriter) {
|
2020-07-22 14:50:08 +00:00
|
|
|
b, err := session.EncodeGob(rs.values)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-08-06 09:14:36 +00:00
|
|
|
c := rs.p
|
|
|
|
c.Set(rs.sid, string(b), time.Duration(rs.maxlifetime)*time.Second)
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Provider redis session provider
|
|
|
|
type Provider struct {
|
2020-08-11 14:09:29 +00:00
|
|
|
maxlifetime int64
|
|
|
|
savePath string
|
|
|
|
poolsize int
|
|
|
|
password string
|
|
|
|
dbNum int
|
|
|
|
idleTimeout time.Duration
|
|
|
|
idleCheckFrequency time.Duration
|
|
|
|
maxRetries int
|
|
|
|
poollist *redis.Client
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SessionInit init redis session
|
|
|
|
// savepath like redis server addr,pool size,password,dbnum,IdleTimeout second
|
|
|
|
// e.g. 127.0.0.1:6379,100,astaxie,0,30
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rp *Provider) SessionInit(ctx context.Context, maxlifetime int64, savePath string) error {
|
2020-07-22 14:50:08 +00:00
|
|
|
rp.maxlifetime = maxlifetime
|
|
|
|
configs := strings.Split(savePath, ",")
|
|
|
|
if len(configs) > 0 {
|
|
|
|
rp.savePath = configs[0]
|
|
|
|
}
|
|
|
|
if len(configs) > 1 {
|
|
|
|
poolsize, err := strconv.Atoi(configs[1])
|
|
|
|
if err != nil || poolsize < 0 {
|
|
|
|
rp.poolsize = MaxPoolSize
|
|
|
|
} else {
|
|
|
|
rp.poolsize = poolsize
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rp.poolsize = MaxPoolSize
|
|
|
|
}
|
|
|
|
if len(configs) > 2 {
|
|
|
|
rp.password = configs[2]
|
|
|
|
}
|
|
|
|
if len(configs) > 3 {
|
|
|
|
dbnum, err := strconv.Atoi(configs[3])
|
|
|
|
if err != nil || dbnum < 0 {
|
|
|
|
rp.dbNum = 0
|
|
|
|
} else {
|
|
|
|
rp.dbNum = dbnum
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rp.dbNum = 0
|
|
|
|
}
|
|
|
|
if len(configs) > 4 {
|
|
|
|
timeout, err := strconv.Atoi(configs[4])
|
|
|
|
if err == nil && timeout > 0 {
|
2020-08-11 14:09:29 +00:00
|
|
|
rp.idleTimeout = time.Duration(timeout) * time.Second
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-06 09:14:36 +00:00
|
|
|
if len(configs) > 5 {
|
|
|
|
checkFrequency, err := strconv.Atoi(configs[5])
|
|
|
|
if err == nil && checkFrequency > 0 {
|
2020-08-11 14:09:29 +00:00
|
|
|
rp.idleCheckFrequency = time.Duration(checkFrequency) * time.Second
|
2020-08-06 09:14:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(configs) > 6 {
|
|
|
|
retries, err := strconv.Atoi(configs[6])
|
|
|
|
if err == nil && retries > 0 {
|
2020-08-11 14:09:29 +00:00
|
|
|
rp.maxRetries = retries
|
2020-08-06 09:14:36 +00:00
|
|
|
}
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
|
|
|
|
2020-08-06 09:14:36 +00:00
|
|
|
rp.poollist = redis.NewClient(&redis.Options{
|
|
|
|
Addr: rp.savePath,
|
|
|
|
Password: rp.password,
|
|
|
|
PoolSize: rp.poolsize,
|
|
|
|
DB: rp.dbNum,
|
2020-08-11 14:09:29 +00:00
|
|
|
IdleTimeout: rp.idleTimeout,
|
|
|
|
IdleCheckFrequency: rp.idleCheckFrequency,
|
|
|
|
MaxRetries: rp.maxRetries,
|
2020-08-06 09:14:36 +00:00
|
|
|
})
|
2020-07-22 14:50:08 +00:00
|
|
|
|
2020-08-06 09:14:36 +00:00
|
|
|
return rp.poollist.Ping().Err()
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SessionRead read redis session by sid
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rp *Provider) SessionRead(ctx context.Context, sid string) (session.Store, error) {
|
2020-07-22 14:50:08 +00:00
|
|
|
var kv map[interface{}]interface{}
|
|
|
|
|
2020-08-06 09:14:36 +00:00
|
|
|
kvs, err := rp.poollist.Get(sid).Result()
|
|
|
|
if err != nil && err != redis.Nil {
|
2020-07-22 14:50:08 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(kvs) == 0 {
|
|
|
|
kv = make(map[interface{}]interface{})
|
|
|
|
} else {
|
|
|
|
if kv, err = session.DecodeGob([]byte(kvs)); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rs := &SessionStore{p: rp.poollist, sid: sid, values: kv, maxlifetime: rp.maxlifetime}
|
|
|
|
return rs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SessionExist check redis session exist by sid
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rp *Provider) SessionExist(ctx context.Context, sid string) (bool, error) {
|
2020-08-06 09:14:36 +00:00
|
|
|
c := rp.poollist
|
2020-07-22 14:50:08 +00:00
|
|
|
|
2020-08-06 09:14:36 +00:00
|
|
|
if existed, err := c.Exists(sid).Result(); err != nil || existed == 0 {
|
2020-08-05 16:29:22 +00:00
|
|
|
return false, err
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
2020-08-05 16:29:22 +00:00
|
|
|
return true, nil
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SessionRegenerate generate new sid for redis session
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rp *Provider) SessionRegenerate(ctx context.Context, oldsid, sid string) (session.Store, error) {
|
2020-08-06 09:14:36 +00:00
|
|
|
c := rp.poollist
|
|
|
|
if existed, _ := c.Exists(oldsid).Result(); existed == 0 {
|
2020-07-22 14:50:08 +00:00
|
|
|
// oldsid doesn't exists, set the new sid directly
|
|
|
|
// ignore error here, since if it return error
|
|
|
|
// the existed value will be 0
|
2020-08-06 09:14:36 +00:00
|
|
|
c.Do(c.Context(), "SET", sid, "", "EX", rp.maxlifetime)
|
2020-07-22 14:50:08 +00:00
|
|
|
} else {
|
2020-08-06 09:14:36 +00:00
|
|
|
c.Rename(oldsid, sid)
|
2020-08-18 14:31:06 +00:00
|
|
|
c.Expire(sid, time.Duration(rp.maxlifetime)*time.Second)
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
2020-08-30 15:39:07 +00:00
|
|
|
return rp.SessionRead(context.Background(), sid)
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SessionDestroy delete redis session by id
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rp *Provider) SessionDestroy(ctx context.Context, sid string) error {
|
2020-08-06 09:14:36 +00:00
|
|
|
c := rp.poollist
|
2020-07-22 14:50:08 +00:00
|
|
|
|
2020-08-06 09:14:36 +00:00
|
|
|
c.Del(sid)
|
2020-07-22 14:50:08 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SessionGC Impelment method, no used.
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rp *Provider) SessionGC(context.Context) {
|
2020-07-22 14:50:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SessionAll return all activeSession
|
2020-08-30 15:39:07 +00:00
|
|
|
func (rp *Provider) SessionAll(context.Context) int {
|
2020-07-22 14:50:08 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
session.Register("redis", redispder)
|
|
|
|
}
|