mirror of
https://github.com/astaxie/beego.git
synced 2025-06-12 08:40:39 +00:00
Adapter: session module
This commit is contained in:
86
pkg/adapter/session/ledis/ledis_session.go
Normal file
86
pkg/adapter/session/ledis/ledis_session.go
Normal file
@ -0,0 +1,86 @@
|
||||
// Package ledis provide session Provider
|
||||
package ledis
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
|
||||
"github.com/astaxie/beego/pkg/adapter/session"
|
||||
beeLedis "github.com/astaxie/beego/pkg/infrastructure/session/ledis"
|
||||
)
|
||||
|
||||
// SessionStore ledis session store
|
||||
type SessionStore beeLedis.SessionStore
|
||||
|
||||
// Set value in ledis session
|
||||
func (ls *SessionStore) Set(key, value interface{}) error {
|
||||
return (*beeLedis.SessionStore)(ls).Set(context.Background(), key, value)
|
||||
}
|
||||
|
||||
// Get value in ledis session
|
||||
func (ls *SessionStore) Get(key interface{}) interface{} {
|
||||
return (*beeLedis.SessionStore)(ls).Get(context.Background(), key)
|
||||
}
|
||||
|
||||
// Delete value in ledis session
|
||||
func (ls *SessionStore) Delete(key interface{}) error {
|
||||
return (*beeLedis.SessionStore)(ls).Delete(context.Background(), key)
|
||||
}
|
||||
|
||||
// Flush clear all values in ledis session
|
||||
func (ls *SessionStore) Flush() error {
|
||||
return (*beeLedis.SessionStore)(ls).Flush(context.Background())
|
||||
}
|
||||
|
||||
// SessionID get ledis session id
|
||||
func (ls *SessionStore) SessionID() string {
|
||||
return (*beeLedis.SessionStore)(ls).SessionID(context.Background())
|
||||
}
|
||||
|
||||
// SessionRelease save session values to ledis
|
||||
func (ls *SessionStore) SessionRelease(w http.ResponseWriter) {
|
||||
(*beeLedis.SessionStore)(ls).SessionRelease(context.Background(), w)
|
||||
}
|
||||
|
||||
// Provider ledis session provider
|
||||
type Provider beeLedis.Provider
|
||||
|
||||
// SessionInit init ledis session
|
||||
// savepath like ledis server saveDataPath,pool size
|
||||
// e.g. 127.0.0.1:6379,100,astaxie
|
||||
func (lp *Provider) SessionInit(maxlifetime int64, savePath string) error {
|
||||
return (*beeLedis.Provider)(lp).SessionInit(context.Background(), maxlifetime, savePath)
|
||||
}
|
||||
|
||||
// SessionRead read ledis session by sid
|
||||
func (lp *Provider) SessionRead(sid string) (session.Store, error) {
|
||||
s, err := (*beeLedis.Provider)(lp).SessionRead(context.Background(), sid)
|
||||
return session.CreateNewToOldStoreAdapter(s), err
|
||||
}
|
||||
|
||||
// SessionExist check ledis session exist by sid
|
||||
func (lp *Provider) SessionExist(sid string) bool {
|
||||
res, _ := (*beeLedis.Provider)(lp).SessionExist(context.Background(), sid)
|
||||
return res
|
||||
}
|
||||
|
||||
// SessionRegenerate generate new sid for ledis session
|
||||
func (lp *Provider) SessionRegenerate(oldsid, sid string) (session.Store, error) {
|
||||
s, err := (*beeLedis.Provider)(lp).SessionRegenerate(context.Background(), oldsid, sid)
|
||||
return session.CreateNewToOldStoreAdapter(s), err
|
||||
}
|
||||
|
||||
// SessionDestroy delete ledis session by id
|
||||
func (lp *Provider) SessionDestroy(sid string) error {
|
||||
return (*beeLedis.Provider)(lp).SessionDestroy(context.Background(), sid)
|
||||
}
|
||||
|
||||
// SessionGC Impelment method, no used.
|
||||
func (lp *Provider) SessionGC() {
|
||||
(*beeLedis.Provider)(lp).SessionGC(context.Background())
|
||||
}
|
||||
|
||||
// SessionAll return all active session
|
||||
func (lp *Provider) SessionAll() int {
|
||||
return (*beeLedis.Provider)(lp).SessionAll(context.Background())
|
||||
}
|
Reference in New Issue
Block a user