purescript-httpurple/test/example/PathSegments/Main.purs

45 lines
1.7 KiB
Haskell
Raw Normal View History

2017-10-26 21:19:30 +00:00
module Examples.PathSegments.Main where
2017-09-26 06:08:07 +00:00
2022-05-22 11:30:14 +00:00
import Prelude hiding ((/))
2022-05-22 11:30:14 +00:00
import Data.Generic.Rep (class Generic)
import Data.Maybe (Maybe(..))
2023-09-30 17:51:55 +00:00
import Effect.Aff (Aff)
import Effect.Console (log)
2023-09-30 17:51:55 +00:00
import HTTPurple (Request, Response, ServerM, ok, serve)
2022-05-22 11:30:14 +00:00
import Routing.Duplex (RouteDuplex')
import Routing.Duplex as RD
import Routing.Duplex.Generic as G
import Routing.Duplex.Generic.Syntax ((/))
data Route = Segment String | ManySegments (Array String)
derive instance Generic Route _
route :: RouteDuplex' Route
route = RD.root $ G.sum
{ "Segment": "segment" / RD.segment
, "ManySegments": RD.many RD.segment :: RD.RouteDuplex' (Array String)
}
2017-09-26 06:08:07 +00:00
-- | Specify the routes
2023-09-30 17:51:55 +00:00
router :: Request Route -> Aff Response
2022-05-22 11:30:14 +00:00
router { route: Segment elem } = ok elem
router { route: ManySegments elems } = ok $ show elems
2017-09-26 06:08:07 +00:00
-- | Boot up the server
main :: ServerM
main =
2023-12-13 21:51:23 +00:00
serve { hostname: "localhost", port: 10000, onStarted } { route, router }
where
onStarted = do
log " ┌───────────────────────────────────────────────┐"
2023-12-13 21:51:23 +00:00
log " │ Server now up on port 10000 │"
log " │ │"
log " │ To test, run: │"
2023-12-13 21:51:23 +00:00
log " │ > curl localhost:10000/segment/<anything> │"
log " │ # => <anything> │"
2023-12-13 21:51:23 +00:00
log " │ > curl localhost:10000/<anything>/<else>/... │"
log " │ # => [ <anything>, <else>, ... ] │"
log " └───────────────────────────────────────────────┘"