snaplet-persistent-0.6.1: persistent snaplet for the Snap Framework

Safe HaskellNone
LanguageHaskell2010

Snap.Snaplet.Auth.Backends.Persistent

Contents

Synopsis

Documentation

initPersistAuthManager :: SnapletLens b SessionManager -> ConnectionPool -> SnapletInit b (AuthManager b) Source #

Initializer that gets AuthSettings from a config file.

initPersistAuthManager' :: AuthSettings -> SnapletLens b SessionManager -> ConnectionPool -> SnapletInit b (AuthManager b) Source #

Initializer that lets you specify AuthSettings.

authEntityDefs :: [EntityDef] Source #

The list of entity definitions this snaplet exposes. You need them so that you can append to your application's list of entity definitions and perform the migration in one block.

See how this example combined an app's own entity definitions and the auth snaplet's in one migration block:

share [mkMigrate "migrateAll"] $
   authEntityDefs ++
   $(persistFileWith lowerCaseSettings "schema.txt")

Persistent Auth Data Types

Persistent creates its own data types mirroring the database schema, so we have to export this extra layer of types and conversion to AuthUser.

data SnapAuthUser Source #

Instances
PersistFieldSql SnapAuthUser Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

(TypeError (NoUniqueKeysError SnapAuthUser) :: Constraint) => OnlyOneUniqueKey SnapAuthUser Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

(TypeError (MultipleUniqueKeysError SnapAuthUser) :: Constraint) => AtLeastOneUniqueKey SnapAuthUser Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

PersistEntity SnapAuthUser Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

PersistField SnapAuthUser Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

ToBackendKey SqlBackend SnapAuthUser Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

Eq (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

Ord (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

Read (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

Show (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

ToJSON (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

FromJSON (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

ToHttpApiData (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

FromHttpApiData (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

PathPiece (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

PersistFieldSql (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

PersistField (Key SnapAuthUser) Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

data Unique SnapAuthUser Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

data EntityField SnapAuthUser typ Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

data EntityField SnapAuthUser typ where
newtype Key SnapAuthUser Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

type PersistEntityBackend SnapAuthUser Source # 
Instance details

Defined in Snap.Snaplet.Auth.Backends.Persistent.Types

db2au :: Entity SnapAuthUser -> AuthUser Source #

Function to convert a SnapAuthUser entity into the auth snaplet's AuthUser.

dbUserSplices :: Monad n => Splices (RuntimeSplice n (Entity SnapAuthUser) -> Splice n) Source #

Splices for SnapAuthUser that are equivalent to the ones for AuthUser.

userDBKey :: AuthUser -> Maybe SnapAuthUserId Source #

Get the db key from an AuthUser