2019-09-11 21:19:45 +08:00
|
|
|
// 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
|
|
|
|
|
2019-09-15 12:17:44 +08:00
|
|
|
import "time"
|
|
|
|
|
2019-09-11 21:19:45 +08:00
|
|
|
type Storage interface {
|
2019-10-28 16:07:01 +08:00
|
|
|
// New creates a custom session id.
|
|
|
|
// This function can be used for custom session creation.
|
|
|
|
New(ttl time.Duration) (id string)
|
|
|
|
|
2019-09-15 11:30:38 +08:00
|
|
|
// Get retrieves session value with given key.
|
|
|
|
// It returns nil if the key does not exist in the session.
|
2019-10-25 13:49:03 +08:00
|
|
|
Get(id string, key string) interface{}
|
2019-10-28 16:07:01 +08:00
|
|
|
|
2019-09-15 11:30:38 +08:00
|
|
|
// GetMap retrieves all key-value pairs as map from storage.
|
2019-10-25 13:49:03 +08:00
|
|
|
GetMap(id string) map[string]interface{}
|
2019-10-28 16:07:01 +08:00
|
|
|
|
2019-09-15 11:30:38 +08:00
|
|
|
// GetSize retrieves the size of key-value pairs from storage.
|
|
|
|
GetSize(id string) int
|
|
|
|
|
|
|
|
// Set sets key-value session pair to the storage.
|
2019-10-28 16:07:01 +08:00
|
|
|
// The parameter <ttl> specifies the TTL for the session id (not for the key-value pair).
|
|
|
|
Set(id string, key string, value interface{}, ttl time.Duration) error
|
|
|
|
|
2019-09-15 11:30:38 +08:00
|
|
|
// SetMap batch sets key-value session pairs with map to the storage.
|
2019-10-28 16:07:01 +08:00
|
|
|
// The parameter <ttl> specifies the TTL for the session id(not for the key-value pair).
|
|
|
|
SetMap(id string, data map[string]interface{}, ttl time.Duration) error
|
2019-09-15 11:30:38 +08:00
|
|
|
|
|
|
|
// Remove deletes key with its value from storage.
|
2019-10-25 13:49:03 +08:00
|
|
|
Remove(id string, key string) error
|
2019-10-28 16:07:01 +08:00
|
|
|
|
2019-09-15 11:30:38 +08:00
|
|
|
// RemoveAll deletes all key-value pairs from storage.
|
2019-10-25 13:49:03 +08:00
|
|
|
RemoveAll(id string) error
|
2019-09-15 11:30:38 +08:00
|
|
|
|
2019-10-28 16:07:01 +08:00
|
|
|
// GetSession returns the session data as map for given session id.
|
2019-10-16 23:33:06 +08:00
|
|
|
// The parameter <ttl> specifies the TTL for this session.
|
2019-09-15 12:17:44 +08:00
|
|
|
// It returns nil if the TTL is exceeded.
|
|
|
|
GetSession(id string, ttl time.Duration) map[string]interface{}
|
2019-10-28 16:07:01 +08:00
|
|
|
|
2019-09-23 16:21:19 +08:00
|
|
|
// SetSession updates the data map for specified session id.
|
2019-10-28 16:07:01 +08:00
|
|
|
// This function is called ever after session, which is changed dirty, is closed.
|
|
|
|
// This copy all session data map from memory to storage.
|
|
|
|
SetSession(id string, data map[string]interface{}, ttl time.Duration) error
|
2019-09-15 12:17:44 +08:00
|
|
|
|
2019-09-15 11:30:38 +08:00
|
|
|
// UpdateTTL updates the TTL for specified session id.
|
2019-10-28 16:07:01 +08:00
|
|
|
// This function is called ever after session, which is not dirty, is closed.
|
|
|
|
UpdateTTL(id string, ttl time.Duration) error
|
2019-09-11 21:19:45 +08:00
|
|
|
}
|