diff options
Diffstat (limited to 'src/server/Controller/Index.hs')
| -rw-r--r-- | src/server/Controller/Index.hs | 58 | 
1 files changed, 58 insertions, 0 deletions
| diff --git a/src/server/Controller/Index.hs b/src/server/Controller/Index.hs new file mode 100644 index 0000000..610c57c --- /dev/null +++ b/src/server/Controller/Index.hs @@ -0,0 +1,58 @@ +module Controller.Index +  ( getIndexAction +  , getUserName +  , signOutAction +  , getUsersAction +  , addUserAction +  , deleteUserAction +  ) where + +import Web.Scotty + +import Network.HTTP.Types.Status (ok200) + +import Database.Persist + +import Control.Monad.IO.Class (liftIO) + +import Data.Text (Text) +import Data.String (fromString) + +import qualified LoginSession + +import qualified Secure + +import Model.Database +import Model.User +import Model.Message + +import View.Page (page) + +getIndexAction :: ActionM () +getIndexAction = html page + +getUserName :: ActionM () +getUserName = +  Secure.loggedAction (\user -> do +    json . Message . userName . entityVal $ user +  ) + +signOutAction :: ActionM () +signOutAction = do +  LoginSession.delete +  status ok200 + +getUsersAction :: ActionM () +getUsersAction = do +  users <- liftIO $ runDb getUsers +  html . fromString . show $ users + +addUserAction :: Text -> Text -> ActionM () +addUserAction email name = do +  _ <- liftIO . runDb $ createUser email name +  status ok200 + +deleteUserAction :: Text -> ActionM () +deleteUserAction email = do +  _ <- liftIO . runDb $ deleteUser email +  status ok200 | 
