simple-session: Cookie-based session management for the Simple web framework
This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.
Warnings:
- Exposed modules use unallocated top-level names: Web
Adds cookie-based session management to simple Controller
s. To add to an
application, declare the Controller setting's type an instance of
HasSession
, and wrap routes with withSession
. For example:
data AppSettings = ... instance HasSession AppSettings where ...
controllerApp settings $ withSessions $ do routeName \"posts\" $ ...
Then, in your controllers you can seemlessly get and set keys from the session:
get "/profile" $ do muserId <- sessionLookup "current_user_id" case muserIf of Nothing -> respond $ redirectTo "/login" Just userId -> [handle request]
Properties
Versions | 0.6.0, 0.7.0, 0.8.0, 0.8.0.1, 0.8.0.1, 0.8.1.0, 0.9.0.0, 0.10.0.0, 0.10.1.0, 0.10.1.1, 1.0.0, 2.0.0 |
---|---|
Change log | None available |
Dependencies | base (<6), base64-bytestring, blaze-builder, byteable, bytestring, containers, cookie, cryptohash, http-types, simple (>=0.8.0 && <0.9), transformers, wai (>=2.0) [details] |
License | LGPL-3.0-only |
Author | Amit Aryeh Levy |
Maintainer | amit@amitlevy.com |
Category | Web |
Home page | http://simple.cx |
Bug tracker | http://github.com/alevy/simple/issues |
Source repo | head: git clone http://github.com/alevy/simple.git |
Uploaded | by AmitLevy at 2014-04-14T00:40:21Z |
Modules
- Web
- Simple
- Web.Simple.Session
- Simple
Downloads
- simple-session-0.8.0.1.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
Package maintainers
For package maintainers and hackage trustees