Last active
April 2, 2023 12:07
-
-
Save eckyputrady/4cfa4eb0eb8370cb50c7ffaa92d33e2c to your computer and use it in GitHub Desktop.
Revisions
-
eckyputrady revised this gist
Oct 2, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,10 +6,10 @@ type UserId = Text type User = Text class (Monad m) => UserRepo m where getUserById :: UserId -> m User class (Monad m) => SessionRepo m where getUserIdBySession :: SessionId -> m UserId getUser :: (UserRepo m, SessionRepo m) => SessionId -> m User -
eckyputrady revised this gist
Oct 2, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -37,11 +37,11 @@ acquireConnection :: IO Connection acquireConnection = ... getUserById :: (Reader Connection m) => Domain.UserId -> m Domain.User getUserById = ... getUserIdBySession :: (Reader Connection m) => Domain.Session -> m Domain.UserId getUserIdBySession = ... ----------------------------- -
eckyputrady created this gist
Oct 2, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,68 @@ ----------------------------- -- Domain.hs type SessionId = Text type UserId = Text type User = Text class (Monad m) => UserRepo m where getUserById :: UserId -> User class (Monad m) => SessionRepo m where getUserIdBySession :: SessionId -> UserId getUser :: (UserRepo m, SessionRepo m) => SessionId -> m User getUser sId = getUserIdBySession sId >>= getUserById ----------------------------- -- Routes.hs import qualified Domain routes :: (Domain.UserRepo m, Domain.SessionRepo m) => m () routes = get "/user" $ do sId <- parseSessionFromCookiesSomehow user <- Domain.getUser sId displayUserSomeHow user ----------------------------- -- Redis.hs import qualified Domain acquireConnection :: IO Connection acquireConnection = ... getUserById :: (Reader Connection m) => Domain.UserId -> Domain.User getUserById = ... getUserIdBySession :: (Reader Connection m) => Domain.Session -> Domain.UserId getUserIdBySession = ... ----------------------------- -- Main.hs import qualified Domain import qualified Redis import qualified Routes newtype App a = App { unApp :: ReaderT Connection IO a } deriving ( Applicative, Functor, Monad , MonadReader Connection, MonadIO ) instance Domain.UserRepo App where getUserById = Redis.getUserById instance Domain.SessionRepo App where getUserIdBySession = Redis.getUserIdBySession main = do conn <- Redis.acquireConnection flip runReaderT conn . unApp $ Routes.routes