yesod-session-persist: SQL session backend for Yesod

[ library, mit, web ] [ Propose Tags ]

Use Persistent to store Yesod sessions


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.0.0, 0.0.0.1, 0.0.0.2
Change log CHANGELOG.md
Dependencies annotated-exception (>=0.2.0.0), base (>=4.16.4.0 && <5), base64 (>=0.4.2.4), bytestring (>=0.11.4.0), containers (>=0.6.5.1), cookie (>=0.4.6), crypton (>=0.33), exceptions (>=0.10.4), generic-arbitrary (>=1.0.1), http-types (>=0.12.3), memcache (>=0.3.0.1), mtl (>=2.2.2), persistent (>=2.14.1.0), QuickCheck (>=2.14.3), text (>=1.2.5.0), time (>=1.11.1.1), transformers (>=0.5.6.2), wai (>=3.2.3), yesod-core (>=1.6.24.2), yesod-session-persist [details]
License MIT
Author
Maintainer Freckle Education
Category Web
Home page https://github.com/freckle/yesod-session-persist#readme
Bug tracker https://github.com/freckle/yesod-session-persist/issues
Source repo head: git clone https://github.com/freckle/yesod-session-persist
Uploaded by PatrickBrisbin at 2024-03-06T03:17:47Z
Distributions NixOS:0.0.0.2
Downloads 75 total (11 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2024-03-06 [all 1 reports]

Readme for yesod-session-persist-0.0.0.2

[back to package description]

yesod-session-persist

Hackage CI

Use this package to construct a Yesod session backend for which sessions are stored in a backend data store.

Features

Key rotation

The key reason to switch from client-side sessions (Yesod's default) to server storage is to be able to rotate keys and invalidate old credentials.

With client session storage, when a user logs out, you send them a new cookie. But this does nothing to satisfy a user who is logging out because their session secret may have been compromised; the old cookie value will still be a working authentication credential. Being able to revoke authentication credentials requires storing state on the server.

Whenever user's authentication changes (but especially on logging out), users of this library should use the rotateSessionKey action to provoke a key rotation. This copies any existing session data into a new session with a different secret key, deleting the session with the old key and thus disabling any outdated credentials that an attacker may possess.

Disabling session changes

There may be some unusual circumstances in which you want to disable the effects of session management -- writes to the session backend and sending of session cookies -- for the handling of a particular request. At such times, you can use the assignSessionFreeze action to indicate whether the session should be persisted at the end of the handling of the request.

Expiration by idle timeout

The most recent access time of each session is stored. After a configurable duration has elapsed without access, a session is considered to be expired. An expired session is treated as if it did not exist.

Expiration by absolute timeout

The creation time of each session is stored. After a configurable duration has elapsed since the creation time, a session is considered to be expired, regardless of whether it is still in active use.

Approximate storage of access time

To avoid excessive database writes, updates which would only increment a session's access time by a short duration are not performed. The definition of "a short duration" is configurable; we call it the timeout resolution.

Absent features

Garbage collection

Garbage collection is supported when using memcache as the data store. Please see 'Yesod.Session.Memcache.Storage.SessionPersistence'.

The Yesod.Session.Persist module does not does not proactively seek out expired sessions for deletion. Thus, in the absence of some other intervention, your session table will grow without bound.

Prior art

serversession

This package is based on serversession + serversession-frontend-yesod + serversession-backend-persistent.

Compared to serversession, here we simplify somewhat by concretizing to Yesod and Persistent rather than supporting multiple frontends and backends.

Their sessions have a concept of "auth ID" specifying who is logged in. serversession uses this to automatically rotate keys when the auth ID changes, and to provide a means for mass invalidation of all the sessions belonging to a particular user. We do not borrow this concept, because it does not generalize well to more complex authentication situations where a session may have been authenticated as multiple principals.


CHANGELOG | LICENSE