gsession_storage.go 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
  2. //
  3. // This Source Code Form is subject to the terms of the MIT License.
  4. // If a copy of the MIT was not distributed with this file,
  5. // You can obtain one at https://github.com/gogf/gf.
  6. package gsession
  7. import (
  8. "context"
  9. "github.com/gogf/gf/container/gmap"
  10. "time"
  11. )
  12. // Storage is the interface definition for session storage.
  13. type Storage interface {
  14. // New creates a custom session id.
  15. // This function can be used for custom session creation.
  16. New(ctx context.Context, ttl time.Duration) (id string, err error)
  17. // Get retrieves and returns session value with given key.
  18. // It returns nil if the key does not exist in the session.
  19. Get(ctx context.Context, id string, key string) (value interface{}, err error)
  20. // GetMap retrieves all key-value pairs as map from storage.
  21. GetMap(ctx context.Context, id string) (data map[string]interface{}, err error)
  22. // GetSize retrieves and returns the size of key-value pairs from storage.
  23. GetSize(ctx context.Context, id string) (size int, err error)
  24. // Set sets one key-value session pair to the storage.
  25. // The parameter `ttl` specifies the TTL for the session id.
  26. Set(ctx context.Context, id string, key string, value interface{}, ttl time.Duration) error
  27. // SetMap batch sets key-value session pairs as map to the storage.
  28. // The parameter `ttl` specifies the TTL for the session id.
  29. SetMap(ctx context.Context, id string, data map[string]interface{}, ttl time.Duration) error
  30. // Remove deletes key with its value from storage.
  31. Remove(ctx context.Context, id string, key string) error
  32. // RemoveAll deletes all key-value pairs from storage.
  33. RemoveAll(ctx context.Context, id string) error
  34. // GetSession returns the session data as `*gmap.StrAnyMap` for given session id from storage.
  35. //
  36. // The parameter `ttl` specifies the TTL for this session.
  37. // The parameter `data` is the current old session data stored in memory,
  38. // and for some storage it might be nil if memory storage is disabled.
  39. //
  40. // This function is called ever when session starts. It returns nil if the TTL is exceeded.
  41. GetSession(ctx context.Context, id string, ttl time.Duration, data *gmap.StrAnyMap) (*gmap.StrAnyMap, error)
  42. // SetSession updates the data for specified session id.
  43. // This function is called ever after session, which is changed dirty, is closed.
  44. // This copy all session data map from memory to storage.
  45. SetSession(ctx context.Context, id string, data *gmap.StrAnyMap, ttl time.Duration) error
  46. // UpdateTTL updates the TTL for specified session id.
  47. // This function is called ever after session, which is not dirty, is closed.
  48. UpdateTTL(ctx context.Context, id string, ttl time.Duration) error
  49. }