42bf4475e0
* Update shell and packages * Fix code for 0.15 * Fix tests * Format * Add check-pulp command * Generate bowerfile * Add check-pulp to CI * Add nixfmt to formatting * Fixup test helpers * Take 2 * PR comments (#1) * Nix cleanup from PR * Use arrows functions * Remove unnecessary step Co-authored-by: Connor Prussin <connor@prussin.net>
30 lines
1.2 KiB
Haskell
30 lines
1.2 KiB
Haskell
module Examples.QueryParameters.Main where
|
|
|
|
import Prelude
|
|
|
|
import Effect.Console (log)
|
|
import HTTPure (Request, ResponseM, ServerM, ok, serve, (!?), (!@))
|
|
|
|
-- | Specify the routes
|
|
router :: Request -> ResponseM
|
|
router { query }
|
|
| query !? "foo" = ok "foo"
|
|
| query !@ "bar" == "test" = ok "bar"
|
|
| otherwise = ok $ query !@ "baz"
|
|
|
|
-- | Boot up the server
|
|
main :: ServerM
|
|
main =
|
|
serve 8080 router do
|
|
log " ┌───────────────────────────────────────┐"
|
|
log " │ Server now up on port 8080 │"
|
|
log " │ │"
|
|
log " │ To test, run: │"
|
|
log " │ > curl localhost:8080?foo │"
|
|
log " │ # => foo │"
|
|
log " │ > curl localhost:8080?bar=test │"
|
|
log " │ # => bar │"
|
|
log " │ > curl localhost:8080?baz=<anything> │"
|
|
log " │ # => <anything> │"
|
|
log " └───────────────────────────────────────┘"
|