2017-10-26 21:19:30 +00:00
|
|
|
module Examples.Headers.Main where
|
2017-07-17 23:42:13 +00:00
|
|
|
|
2017-07-18 05:31:46 +00:00
|
|
|
import Prelude
|
2017-07-17 23:42:13 +00:00
|
|
|
|
|
|
|
import Control.Monad.Eff.Console as Console
|
|
|
|
import HTTPure as HTTPure
|
2017-10-23 22:50:27 +00:00
|
|
|
import HTTPure ((!@))
|
2017-07-17 23:42:13 +00:00
|
|
|
|
|
|
|
-- | Serve the example server on this port
|
|
|
|
port :: Int
|
|
|
|
port = 8082
|
|
|
|
|
|
|
|
-- | Shortcut for `show port`
|
|
|
|
portS :: String
|
|
|
|
portS = show port
|
|
|
|
|
2017-09-26 06:08:07 +00:00
|
|
|
-- | The headers that will be included in every response.
|
|
|
|
responseHeaders :: HTTPure.Headers
|
2017-09-29 16:30:05 +00:00
|
|
|
responseHeaders = HTTPure.header "X-Example" "hello world!"
|
2017-07-18 01:51:43 +00:00
|
|
|
|
|
|
|
-- | Route to the correct handler
|
|
|
|
router :: forall e. HTTPure.Request -> HTTPure.ResponseM e
|
2017-10-23 22:50:27 +00:00
|
|
|
router { headers } = HTTPure.ok' responseHeaders $ headers !@ "X-Input"
|
2017-07-17 23:42:13 +00:00
|
|
|
|
|
|
|
-- | Boot up the server
|
|
|
|
main :: forall e. HTTPure.ServerM (console :: Console.CONSOLE | e)
|
2017-07-18 01:51:43 +00:00
|
|
|
main = HTTPure.serve port router do
|
|
|
|
Console.log $ " ┌──────────────────────────────────────────────┐"
|
|
|
|
Console.log $ " │ Server now up on port " <> portS <> " │"
|
|
|
|
Console.log $ " │ │"
|
|
|
|
Console.log $ " │ To test, run: │"
|
|
|
|
Console.log $ " │ > curl -H 'X-Input: test' -v localhost:" <> portS <> " │"
|
|
|
|
Console.log $ " │ # => ... │"
|
|
|
|
Console.log $ " │ # => ...< X-Example: hello world! │"
|
|
|
|
Console.log $ " │ # => ... │"
|
|
|
|
Console.log $ " │ # => test │"
|
|
|
|
Console.log $ " └──────────────────────────────────────────────┘"
|