A Strongly typed Session Management library to manage application sessions and state.
HTTP is a stateless protocol, and by default, HTTP requests are independent messages that don't retain user values. However, Session shard implements several approaches to bind and store user state data between requests.
-
Add the dependency to your
shard.yml
:dependencies: session: github: azutoolkit/session
-
Run
shards install
require "session"
Session.configure do |c|
c.timeout = 1.hour
c.session_key = "_session"
s.secret = "Secret key for encryption"
c.on_started = ->(sid : String, data : Databag) { puts "Session started - #{sid}" }
c.on_deleted = ->(sid : String, data : Databag) { puts "Session Revoke - #{sid}" }
end
The Session shard uses a store maintained by the app to persist data across requests from a client. The session data is backed by a cache and considered ephemeral data.
Recommendation: The site should continue to function without the session data. Critical application data should be stored in the user database and cached in session only as a performance optimization.
The Session shard ships with three forms of session storage out of the box;
CookieStore, MemoryStore, and RedisStore.
The CookieStore is based on a Verifier and Encryptor, which encrypts and signs each cookie to ensure it can't be read or tampered with.
Since this store uses crypto features, you must set the secret
field in the configuration.
Session.configure do |c|
c.timeout = 1.hour
c.secret = "Secret key for encryption"
c.session_key = "myapp.session"
c.provider = Session::CookieStore(Sessions::UserSession).provider
c.on_started = ->(sid : String, data : Session::Databag) { puts "Session started - #{sid}" }
c.on_deleted = ->(sid : String, data : Session::Databag) { puts "Session Revoke - #{sid}" }
end
After the secret is defined, you can instantiate the CookieStore provider
module MyApp
def self.session
Session.session?.not_nil!
end
end
The memory store uses server memory and is the default for the session configuration.
We don't recommend using this store in production. Every session will be stored in MEMORY, and the shard will not remove session entries upon expiration unless you create a task responsible for cleaning up expired entries.
Also, multiple servers cannot share the stored sessions.
Session.configure do |c|
c.provider = Session::MemoryStore(UserSession).provider
end
The RedisStore is recommended for production use as it is highly scalable and is shareable across multiple processes.
Session.configure do |c|
c.provider = Session::RedisStore(UserSession).provider(client: Redis.new)
end
The Session shard offers type-safe access to the values stored in the session, meaning that to store values in the session, you must first define the object.
The shard calls this object a Databag.
To define a Databag object
# Type safe session contents
struct UserSession
include Session::Databag
property username : String? = "example"
end
To write and read to and from the current_session
MyApp.session.data.username # Reads the value of the username property
MyApp.session.data.username = "Dark Vader" # Sets the value of the username property
MyApp.session.create # Creates a new session
MyApp.session.storage # Storage Type RedisStore or MemoryStore
MyApp.session.load_from # Loads session from Cookie
MyApp.session.current_session # Returns the current session
MyApp.session.session_id # Returns the current session id
MyApp.session.delete # Deletes the current session
MyApp.session.valid? # Returns true if session has not expired
MyApp.session.cookie # Returns a session cookie that can be sent to clients
MyApp.session[] # Gets session by Session Id or raises an exception
MyApp.session[]? # Gets session by Session Id or returns nil
MyApp.session.clear # Removes all the sessions from store
Note: Session also offers a HTTP Handler
Session::SessionHandler
to automatically enable session management for the Application. Each request that passes through the Session Handlers resets the timeout for the cookie
A very simple HTTP handler enables session management for an HTTP application that writes and reads session cookies.
module Session
class SessionHandler
include HTTP::Handler
def initialize(@session : Session::Provider)
end
def call(context : HTTP::Server::Context)
@session.load_from context.request.cookies
call_next(context)
@session.set_cookies context.response.cookies
end
end
end
- DbStore - Add Database session storage for PG, MySQL
- MongoStore - Add Mongo Database session storage
- CookieStore - Add Cookie Storage session storage (Must encrypt/decrypt value)
- Session Created Event - Add event on session created
- Session Deleted Event - Add event on session deleted
Contributions, issues, and feature requests are welcome! Give a ⭐️ if you like this project!
- Fork it (https://github.com/azutoolkit/session/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Elias J. Perez - creator and maintainer