servant/servant-examples/getting-started/GS8.hs

44 lines
1.1 KiB
Haskell
Raw Normal View History

2015-05-07 17:48:21 +02:00
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
module GS8 where
import Control.Monad.Trans.Either
import Data.Aeson
import Servant
import Servant.Client
import GS3
position :: Int -- ^ value for "x"
-> Int -- ^ value for "y"
-> EitherT ServantError IO Position
hello :: Maybe String -- ^ an optional value for "name"
-> EitherT ServantError IO HelloMessage
marketing :: ClientInfo -- ^ value for the request body
-> EitherT ServantError IO Email
2015-05-09 17:31:54 +02:00
position :<|> hello :<|> marketing = client api baseUrl
2015-05-07 17:48:21 +02:00
baseUrl :: BaseUrl
baseUrl = BaseUrl Http "localhost" 8081
queries :: EitherT ServantError IO (Position, HelloMessage, Email)
queries = do
2015-05-09 17:31:54 +02:00
pos <- position 10 10
msg <- hello (Just "servant")
em <- marketing (ClientInfo "Alp" "alp@foo.com" 26 ["haskell", "mathematics"])
2015-05-07 17:48:21 +02:00
return (pos, msg, em)
run :: IO ()
run = do
res <- runEitherT queries
case res of
Left err -> putStrLn $ "Error: " ++ show err
Right (pos, msg, em) -> do
print pos
print msg
print em