Session
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.
Installation
- Add the dependency to your - shard.yml:- dependencies: session: github: azutoolkit/session
- Run - shards install
Configuration
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}" }
endSession Stores
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.
Cookie Store
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|
  ...
  s.secret = "Secret key for encryption"
  ...
endAfter the secret is defined, you can instantiate the CookieStore provider
module MyApp
  class_getter session = Session::CookieStore(UserSession).provider
endMemory Store
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.
module MyApp
  class_getter session = Session::MemoryStore(UserSession).provider
endRedis Store
The RedisStore is recommended for production use as it is highly scalable and is shareable across multiple processes.
module MyApp
  class_getter session = Session::RedisStore(UserSession).provider(client: Redis.new)
endAccessing Session Data
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.
Databag Object
To define a Databag object
# Type safe session contents
struct UserSession
  include Session::Databag
  property username : String? = "example"
endTo 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 propertyThe Session API
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 storeNote: Session also offers a HTTP Handler
Session::SessionHandlerto automatically enable session management for the Application. Each request that passes through the Session Handlers resets the timeout for the cookie
Session HTTP Handler
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
endRoadmap - Help Wanted
Contributing
Contributions, issues, and feature requests are welcome! Give a ⭐️ if you like this project!
- 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 
Contributors
- Elias J. Perez - creator and maintainer 
Last updated
Was this helpful?