123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- package sessions
- import (
- "sync"
- "time"
- "github.com/kataras/iris/core/errors"
- "github.com/kataras/iris/core/memstore"
- )
- // ErrNotImplemented is returned when a particular feature is not yet implemented yet.
- // It can be matched directly, i.e: `isNotImplementedError := sessions.ErrNotImplemented.Equal(err)`.
- var ErrNotImplemented = errors.New("not implemented yet")
- // Database is the interface which all session databases should implement
- // By design it doesn't support any type of cookie session like other frameworks.
- // I want to protect you, believe me.
- // The scope of the database is to store somewhere the sessions in order to
- // keep them after restarting the server, nothing more.
- //
- // Synchronization are made automatically, you can register one using `UseDatabase`.
- //
- // Look the `sessiondb` folder for databases implementations.
- type Database interface {
- // Acquire receives a session's lifetime from the database,
- // if the return value is LifeTime{} then the session manager sets the life time based on the expiration duration lives in configuration.
- Acquire(sid string, expires time.Duration) LifeTime
- // OnUpdateExpiration should re-set the expiration (ttl) of the session entry inside the database,
- // it is fired on `ShiftExpiration` and `UpdateExpiration`.
- // If the database does not support change of ttl then the session entry will be cloned to another one
- // and the old one will be removed, it depends on the chosen database storage.
- //
- // Check of error is required, if error returned then the rest session's keys are not proceed.
- //
- // If a database does not support this feature then an `ErrNotImplemented` will be returned instead.
- OnUpdateExpiration(sid string, newExpires time.Duration) error
- // Set sets a key value of a specific session.
- // The "immutable" input argument depends on the store, it may not implement it at all.
- Set(sid string, lifetime LifeTime, key string, value interface{}, immutable bool)
- // Get retrieves a session value based on the key.
- Get(sid string, key string) interface{}
- // Visit loops through all session keys and values.
- Visit(sid string, cb func(key string, value interface{}))
- // Len returns the length of the session's entries (keys).
- Len(sid string) int
- // Delete removes a session key value based on its key.
- Delete(sid string, key string) (deleted bool)
- // Clear removes all session key values but it keeps the session entry.
- Clear(sid string)
- // Release destroys the session, it clears and removes the session entry,
- // session manager will create a new session ID on the next request after this call.
- Release(sid string)
- }
- type mem struct {
- values map[string]*memstore.Store
- mu sync.RWMutex
- }
- var _ Database = (*mem)(nil)
- func newMemDB() Database { return &mem{values: make(map[string]*memstore.Store)} }
- func (s *mem) Acquire(sid string, expires time.Duration) LifeTime {
- s.mu.Lock()
- s.values[sid] = new(memstore.Store)
- s.mu.Unlock()
- return LifeTime{}
- }
- // Do nothing, the `LifeTime` of the Session will be managed by the callers automatically on memory-based storage.
- func (s *mem) OnUpdateExpiration(string, time.Duration) error { return nil }
- // immutable depends on the store, it may not implement it at all.
- func (s *mem) Set(sid string, lifetime LifeTime, key string, value interface{}, immutable bool) {
- s.mu.RLock()
- s.values[sid].Save(key, value, immutable)
- s.mu.RUnlock()
- }
- func (s *mem) Get(sid string, key string) interface{} {
- s.mu.RLock()
- v := s.values[sid].Get(key)
- s.mu.RUnlock()
- return v
- }
- func (s *mem) Visit(sid string, cb func(key string, value interface{})) {
- s.values[sid].Visit(cb)
- }
- func (s *mem) Len(sid string) int {
- s.mu.RLock()
- n := s.values[sid].Len()
- s.mu.RUnlock()
- return n
- }
- func (s *mem) Delete(sid string, key string) (deleted bool) {
- s.mu.RLock()
- deleted = s.values[sid].Remove(key)
- s.mu.RUnlock()
- return
- }
- func (s *mem) Clear(sid string) {
- s.mu.Lock()
- s.values[sid].Reset()
- s.mu.Unlock()
- }
- func (s *mem) Release(sid string) {
- s.mu.Lock()
- delete(s.values, sid)
- s.mu.Unlock()
- }
|