Beginnings of HTMX frontend interaction, able to request particular PWs by link names and patch the DOM appropriately
This commit is contained in:
@ -2,13 +2,20 @@ module Core.HTTP ( app ) where
|
||||
|
||||
import Core.Types
|
||||
|
||||
import Feature.Handlers as HD
|
||||
import Core.Templates (renderIndex)
|
||||
import Feature.Sharing.HTTP as Sharing
|
||||
|
||||
import Network.Wai.Middleware.RequestLogger (logStdoutDev)
|
||||
import Web.Scotty.Trans
|
||||
|
||||
app :: PurrApp ()
|
||||
app = do
|
||||
-- Middleware definition
|
||||
middleware logStdoutDev
|
||||
|
||||
get "/:id" HD.pwLookup
|
||||
-- Core Routes
|
||||
get "/" $ do
|
||||
html $ renderIndex
|
||||
|
||||
-- Feature Routes
|
||||
Sharing.routes
|
||||
|
@ -1,39 +1,13 @@
|
||||
module Core.Mongo ( mongoSetup, getAllDocs, findByLink ) where
|
||||
module Core.Mongo ( mongoSetup ) where
|
||||
|
||||
import Core.Types
|
||||
|
||||
import Control.Monad.Reader (MonadIO, lift, ask)
|
||||
import Data.Maybe
|
||||
import Data.Text (Text)
|
||||
import Data.Text (Text)
|
||||
import Database.MongoDB
|
||||
import Prelude
|
||||
|
||||
findByLink :: String -> PurrAction (Maybe Document)
|
||||
findByLink link = do
|
||||
col <- confCollection
|
||||
dataConn <- dataAccess
|
||||
dataConn $ findOne (select ["link" =: link] col)
|
||||
|
||||
getAllDocs :: PurrAction [Document]
|
||||
getAllDocs = do
|
||||
col <- confCollection
|
||||
dataConn <- dataAccess
|
||||
dataConn $ find (select [] col)
|
||||
>>= rest
|
||||
|
||||
dataAccess :: MonadIO m => PurrAction (Action m a -> m a)
|
||||
dataAccess = do
|
||||
appConfig <- lift ask
|
||||
return $ access
|
||||
(mongoPipe $ dbconn appConfig)
|
||||
(mongoAccessMode $ dbconn appConfig)
|
||||
(mongoDatabase $ dbconn appConfig)
|
||||
|
||||
confCollection :: PurrAction Text
|
||||
confCollection = do
|
||||
appConfig <- lift ask
|
||||
return $ collection $ res appConfig
|
||||
|
||||
-- Authenticates to Mongo and returns the MongoContext for the dataDB
|
||||
mongoSetup :: DhallConfig -> IO MongoContext
|
||||
mongoSetup conf = do
|
||||
|
@ -3,12 +3,14 @@
|
||||
|
||||
module Core.Templates ( renderIndex ) where
|
||||
|
||||
import Database.MongoDB (Document)
|
||||
import Text.Blaze.Html.Renderer.String (renderHtml)
|
||||
import qualified Data.Text.Lazy as LT
|
||||
|
||||
import Database.MongoDB (Document)
|
||||
import Text.Blaze.Html.Renderer.Text (renderHtml)
|
||||
import Text.Blaze.Html
|
||||
import Text.Hamlet (shamletFile)
|
||||
import Text.Hamlet (shamletFile)
|
||||
|
||||
import Prelude
|
||||
|
||||
renderIndex :: String -> Maybe String -> String
|
||||
renderIndex link password = renderHtml ( $(shamletFile "./views/index.hamlet") )
|
||||
renderIndex :: LT.Text
|
||||
renderIndex = renderHtml ( $(shamletFile "./views/index.hamlet") )
|
||||
|
@ -31,4 +31,3 @@ data DhallConfig = DhallConfig
|
||||
, mongoUsername :: Text
|
||||
, mongoPassword :: Text
|
||||
} deriving (Generic, Show)
|
||||
|
||||
|
@ -1,23 +0,0 @@
|
||||
module Feature.Handlers ( pwLookup ) where
|
||||
|
||||
import Core.Types
|
||||
import Core.Templates
|
||||
import qualified Core.Mongo as DB
|
||||
|
||||
import Control.Monad.Reader (ask, lift)
|
||||
import Data.AesonBson (aesonify)
|
||||
import Data.Bson (Document, Field (..), Value (Array, Doc), lookup)
|
||||
import qualified Data.Text as T
|
||||
import qualified Data.Text.Lazy as LT
|
||||
import Web.Scotty.Trans (html, param)
|
||||
import Prelude hiding (id, lookup)
|
||||
|
||||
pwLookup :: PurrAction ()
|
||||
pwLookup = do
|
||||
id <- param "id"
|
||||
doc <- DB.findByLink id
|
||||
html $ LT.pack $ renderIndex id (pwLook doc)
|
||||
where
|
||||
pwLook :: Maybe Document -> Maybe String
|
||||
pwLook (Just x) = (lookup "password" x) :: Maybe String
|
||||
pwLook _ = Nothing
|
32
src/Feature/Sharing/HTTP.hs
Normal file
32
src/Feature/Sharing/HTTP.hs
Normal file
@ -0,0 +1,32 @@
|
||||
module Feature.Sharing.HTTP ( routes ) where
|
||||
|
||||
import Core.Types
|
||||
|
||||
import Feature.Sharing.Templates
|
||||
import qualified Feature.Sharing.Mongo as DB
|
||||
|
||||
import qualified Data.Text as T
|
||||
import qualified Data.Text.Lazy as LT
|
||||
|
||||
import Control.Monad.Reader (ask, lift)
|
||||
import Data.AesonBson (aesonify)
|
||||
import Data.Bson (Document, Field (..), Value (..), lookup)
|
||||
import Web.Scotty.Trans
|
||||
import Prelude hiding (id, lookup)
|
||||
|
||||
routes :: PurrApp ()
|
||||
routes = do
|
||||
|
||||
get "/pw/:id" $ do
|
||||
id <- param "id"
|
||||
doc <- DB.findByLink id
|
||||
html $ renderPw id (pwLookup doc)
|
||||
|
||||
post "/pw" $ do
|
||||
id <- param "userLink"
|
||||
doc <- DB.findByLink id
|
||||
html $ renderPw id (pwLookup doc)
|
||||
|
||||
pwLookup :: Maybe Document -> Maybe String
|
||||
pwLookup (Just x) = (lookup "password" x)
|
||||
pwLookup _ = Nothing
|
35
src/Feature/Sharing/Mongo.hs
Normal file
35
src/Feature/Sharing/Mongo.hs
Normal file
@ -0,0 +1,35 @@
|
||||
module Feature.Sharing.Mongo ( getAllDocs, findByLink ) where
|
||||
|
||||
import Core.Types
|
||||
|
||||
import Control.Monad.Reader (MonadIO, lift, ask)
|
||||
import Data.Maybe
|
||||
import Data.Text (Text)
|
||||
import Database.MongoDB
|
||||
import Prelude
|
||||
|
||||
findByLink :: String -> PurrAction (Maybe Document)
|
||||
findByLink link = do
|
||||
col <- confCollection
|
||||
dataConn <- dataAccess
|
||||
dataConn $ findOne (select ["link" =: link] col)
|
||||
|
||||
getAllDocs :: PurrAction [Document]
|
||||
getAllDocs = do
|
||||
col <- confCollection
|
||||
dataConn <- dataAccess
|
||||
dataConn $ find (select [] col)
|
||||
>>= rest
|
||||
|
||||
dataAccess :: MonadIO m => PurrAction (Action m a -> m a)
|
||||
dataAccess = do
|
||||
appConfig <- lift ask
|
||||
return $ access
|
||||
(mongoPipe $ dbconn appConfig)
|
||||
(mongoAccessMode $ dbconn appConfig)
|
||||
(mongoDatabase $ dbconn appConfig)
|
||||
|
||||
confCollection :: PurrAction Text
|
||||
confCollection = do
|
||||
appConfig <- lift ask
|
||||
return $ collection $ res appConfig
|
16
src/Feature/Sharing/Templates.hs
Normal file
16
src/Feature/Sharing/Templates.hs
Normal file
@ -0,0 +1,16 @@
|
||||
{-# LANGUAGE QuasiQuotes #-}
|
||||
{-# LANGUAGE TemplateHaskell #-}
|
||||
|
||||
module Feature.Sharing.Templates ( renderPw ) where
|
||||
|
||||
import qualified Data.Text.Lazy as LT
|
||||
|
||||
import Database.MongoDB (Document)
|
||||
import Text.Blaze.Html.Renderer.Text (renderHtml)
|
||||
import Text.Blaze.Html
|
||||
import Text.Hamlet (shamletFile)
|
||||
|
||||
import Prelude
|
||||
|
||||
renderPw :: String -> Maybe String -> LT.Text
|
||||
renderPw link password = renderHtml ( $(shamletFile "./views/pw.hamlet") )
|
@ -1,6 +1,6 @@
|
||||
module Lib ( main ) where
|
||||
|
||||
import Core.Types
|
||||
import Core.Types
|
||||
import qualified Core.Configuration as Configuration
|
||||
import qualified Core.HTTP as HTTP
|
||||
import qualified Core.Mongo as DB
|
||||
|
Reference in New Issue
Block a user