123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 |
- // Copyright 2019 gf Author(https://github.com/gogf/gf). All Rights Reserved.
- //
- // This Source Code Form is subject to the terms of the MIT License.
- // If a copy of the MIT was not distributed with this file,
- // You can obtain one at https://github.com/gogf/gf.
- package gsession
- import (
- "errors"
- "github.com/gogf/gf/internal/intlog"
- "time"
- "github.com/gogf/gf/container/gmap"
- "github.com/gogf/gf/container/gvar"
- "github.com/gogf/gf/os/gtime"
- "github.com/gogf/gf/util/gconv"
- )
- // Session struct for storing single session data,
- // which is bound to a single request.
- type Session struct {
- id string // Session id.
- data *gmap.StrAnyMap // Session data.
- dirty bool // Used to mark session is modified.
- start bool // Used to mark session is started.
- manager *Manager // Parent manager.
- // idFunc is a callback function used for creating custom session id.
- // This is called if session id is empty ever when session starts.
- idFunc func(ttl time.Duration) (id string)
- }
- // init does the lazy initialization for session.
- // It here initializes real session if necessary.
- func (s *Session) init() {
- if s.start {
- return
- }
- if s.id != "" {
- var err error
- // Retrieve memory session data from manager.
- if r, _ := s.manager.sessionData.Get(s.id); r != nil {
- s.data = r.(*gmap.StrAnyMap)
- intlog.Print("session init data:", s.data)
- }
- // Retrieve stored session data from storage.
- if s.manager.storage != nil {
- if s.data, err = s.manager.storage.GetSession(s.id, s.manager.ttl, s.data); err != nil {
- intlog.Errorf("session restoring failed for id '%s': %v", s.id, err)
- }
- }
- }
- // Use custom session id creating function.
- if s.id == "" && s.idFunc != nil {
- s.id = s.idFunc(s.manager.ttl)
- }
- // Use default session id creating function of storage.
- if s.id == "" {
- s.id = s.manager.storage.New(s.manager.ttl)
- }
- // Use default session id creating function.
- if s.id == "" {
- s.id = NewSessionId()
- }
- if s.data == nil {
- s.data = gmap.NewStrAnyMap(true)
- }
- s.start = true
- }
- // Close closes current session and updates its ttl in the session manager.
- // If this session is dirty, it also exports it to storage.
- //
- // NOTE that this function must be called ever after a session request done.
- func (s *Session) Close() {
- if s.start && s.id != "" {
- size := s.data.Size()
- if s.manager.storage != nil {
- if s.dirty {
- if err := s.manager.storage.SetSession(s.id, s.data, s.manager.ttl); err != nil {
- panic(err)
- }
- } else if size > 0 {
- if err := s.manager.storage.UpdateTTL(s.id, s.manager.ttl); err != nil {
- panic(err)
- }
- }
- }
- if s.dirty || size > 0 {
- s.manager.UpdateSessionTTL(s.id, s.data)
- }
- }
- }
- // Set sets key-value pair to this session.
- func (s *Session) Set(key string, value interface{}) error {
- s.init()
- if err := s.manager.storage.Set(s.id, key, value, s.manager.ttl); err != nil {
- if err == ErrorDisabled {
- s.data.Set(key, value)
- } else {
- return err
- }
- }
- s.dirty = true
- return nil
- }
- // Sets batch sets the session using map.
- // Deprecated, use SetMap instead.
- func (s *Session) Sets(data map[string]interface{}) error {
- return s.SetMap(data)
- }
- // SetMap batch sets the session using map.
- func (s *Session) SetMap(data map[string]interface{}) error {
- s.init()
- if err := s.manager.storage.SetMap(s.id, data, s.manager.ttl); err != nil {
- if err == ErrorDisabled {
- s.data.Sets(data)
- } else {
- return err
- }
- }
- s.dirty = true
- return nil
- }
- // Remove removes key along with its value from this session.
- func (s *Session) Remove(keys ...string) error {
- if s.id == "" {
- return nil
- }
- s.init()
- for _, key := range keys {
- if err := s.manager.storage.Remove(s.id, key); err != nil {
- if err == ErrorDisabled {
- s.data.Remove(key)
- } else {
- return err
- }
- }
- }
- s.dirty = true
- return nil
- }
- // Clear is alias of RemoveAll.
- func (s *Session) Clear() error {
- return s.RemoveAll()
- }
- // RemoveAll deletes all key-value pairs from this session.
- func (s *Session) RemoveAll() error {
- if s.id == "" {
- return nil
- }
- s.init()
- if err := s.manager.storage.RemoveAll(s.id); err != nil {
- if err == ErrorDisabled {
- s.data.Clear()
- } else {
- return err
- }
- }
- s.dirty = true
- return nil
- }
- // Id returns the session id for this session.
- // It create and returns a new session id if the session id is not passed in initialization.
- func (s *Session) Id() string {
- s.init()
- return s.id
- }
- // SetId sets custom session before session starts.
- // It returns error if it is called after session starts.
- func (s *Session) SetId(id string) error {
- if s.start {
- return errors.New("session already started")
- }
- s.id = id
- return nil
- }
- // SetIdFunc sets custom session id creating function before session starts.
- // It returns error if it is called after session starts.
- func (s *Session) SetIdFunc(f func(ttl time.Duration) string) error {
- if s.start {
- return errors.New("session already started")
- }
- s.idFunc = f
- return nil
- }
- // Map returns all data as map.
- // Note that it's using value copy internally for concurrent-safe purpose.
- func (s *Session) Map() map[string]interface{} {
- if s.id != "" {
- s.init()
- if data := s.manager.storage.GetMap(s.id); data != nil {
- return data
- }
- return s.data.Map()
- }
- return nil
- }
- // Size returns the size of the session.
- func (s *Session) Size() int {
- if s.id != "" {
- s.init()
- if size := s.manager.storage.GetSize(s.id); size >= 0 {
- return size
- }
- return s.data.Size()
- }
- return 0
- }
- // Contains checks whether key exist in the session.
- func (s *Session) Contains(key string) bool {
- s.init()
- return s.Get(key) != nil
- }
- // IsDirty checks whether there's any data changes in the session.
- func (s *Session) IsDirty() bool {
- return s.dirty
- }
- // Get retrieves session value with given key.
- // It returns <def> if the key does not exist in the session if <def> is given,
- // or else it return nil.
- func (s *Session) Get(key string, def ...interface{}) interface{} {
- if s.id == "" {
- return nil
- }
- s.init()
- if v := s.manager.storage.Get(s.id, key); v != nil {
- return v
- }
- if v := s.data.Get(key); v != nil {
- return v
- }
- if len(def) > 0 {
- return def[0]
- }
- return nil
- }
- func (s *Session) GetVar(key string, def ...interface{}) *gvar.Var {
- return gvar.New(s.Get(key, def...), true)
- }
- func (s *Session) GetString(key string, def ...interface{}) string {
- return gconv.String(s.Get(key, def...))
- }
- func (s *Session) GetBool(key string, def ...interface{}) bool {
- return gconv.Bool(s.Get(key, def...))
- }
- func (s *Session) GetInt(key string, def ...interface{}) int {
- return gconv.Int(s.Get(key, def...))
- }
- func (s *Session) GetInt8(key string, def ...interface{}) int8 {
- return gconv.Int8(s.Get(key, def...))
- }
- func (s *Session) GetInt16(key string, def ...interface{}) int16 {
- return gconv.Int16(s.Get(key, def...))
- }
- func (s *Session) GetInt32(key string, def ...interface{}) int32 {
- return gconv.Int32(s.Get(key, def...))
- }
- func (s *Session) GetInt64(key string, def ...interface{}) int64 {
- return gconv.Int64(s.Get(key, def...))
- }
- func (s *Session) GetUint(key string, def ...interface{}) uint {
- return gconv.Uint(s.Get(key, def...))
- }
- func (s *Session) GetUint8(key string, def ...interface{}) uint8 {
- return gconv.Uint8(s.Get(key, def...))
- }
- func (s *Session) GetUint16(key string, def ...interface{}) uint16 {
- return gconv.Uint16(s.Get(key, def...))
- }
- func (s *Session) GetUint32(key string, def ...interface{}) uint32 {
- return gconv.Uint32(s.Get(key, def...))
- }
- func (s *Session) GetUint64(key string, def ...interface{}) uint64 {
- return gconv.Uint64(s.Get(key, def...))
- }
- func (s *Session) GetFloat32(key string, def ...interface{}) float32 {
- return gconv.Float32(s.Get(key, def...))
- }
- func (s *Session) GetFloat64(key string, def ...interface{}) float64 {
- return gconv.Float64(s.Get(key, def...))
- }
- func (s *Session) GetBytes(key string, def ...interface{}) []byte {
- return gconv.Bytes(s.Get(key, def...))
- }
- func (s *Session) GetInts(key string, def ...interface{}) []int {
- return gconv.Ints(s.Get(key, def...))
- }
- func (s *Session) GetFloats(key string, def ...interface{}) []float64 {
- return gconv.Floats(s.Get(key, def...))
- }
- func (s *Session) GetStrings(key string, def ...interface{}) []string {
- return gconv.Strings(s.Get(key, def...))
- }
- func (s *Session) GetInterfaces(key string, def ...interface{}) []interface{} {
- return gconv.Interfaces(s.Get(key, def...))
- }
- func (s *Session) GetTime(key string, format ...string) time.Time {
- return gconv.Time(s.Get(key), format...)
- }
- func (s *Session) GetGTime(key string, format ...string) *gtime.Time {
- return gconv.GTime(s.Get(key), format...)
- }
- func (s *Session) GetDuration(key string, def ...interface{}) time.Duration {
- return gconv.Duration(s.Get(key, def...))
- }
- func (s *Session) GetMap(key string, tags ...string) map[string]interface{} {
- return gconv.Map(s.Get(key), tags...)
- }
- func (s *Session) GetMapDeep(key string, tags ...string) map[string]interface{} {
- return gconv.MapDeep(s.Get(key), tags...)
- }
- func (s *Session) GetMaps(key string, tags ...string) []map[string]interface{} {
- return gconv.Maps(s.Get(key), tags...)
- }
- func (s *Session) GetMapsDeep(key string, tags ...string) []map[string]interface{} {
- return gconv.MapsDeep(s.Get(key), tags...)
- }
- func (s *Session) GetStruct(key string, pointer interface{}, mapping ...map[string]string) error {
- return gconv.Struct(s.Get(key), pointer, mapping...)
- }
- // Deprecated, use GetStruct instead.
- func (s *Session) GetStructDeep(key string, pointer interface{}, mapping ...map[string]string) error {
- return gconv.StructDeep(s.Get(key), pointer, mapping...)
- }
- func (s *Session) GetStructs(key string, pointer interface{}, mapping ...map[string]string) error {
- return gconv.Structs(s.Get(key), pointer, mapping...)
- }
- // Deprecated, use GetStructs instead.
- func (s *Session) GetStructsDeep(key string, pointer interface{}, mapping ...map[string]string) error {
- return gconv.StructsDeep(s.Get(key), pointer, mapping...)
- }
|