如何使用Happstack创建JSON Rest API? JSON身体?

时间:2012-01-14 22:16:57

标签: haskell happstack

我正在尝试使用Happstack创建JSON REST API。它应该允许带有JSON主体的POSTS。我怎样才能做到这一点? happstack的API中的所有函数似乎都根据参数名称查找。它认为身体总是经过网址编码。

如果Happstack不可能,我应该使用哪个框架?

1 个答案:

答案 0 :(得分:9)

好的,这就是我想到的。

{-# LANGUAGE OverloadedStrings, DeriveDataTypeable #-}
import qualified Data.ByteString.Lazy.Char8 as L
import Happstack.Server
import Happstack.Server.Types
import Control.Monad.IO.Class (liftIO)

import Data.Data (Data, Typeable)

-- easiest to serialize/deserialize objects
data Unit = Unit { x :: Int, y :: Int } deriving (Show, Eq, Data, Typeable)

-- put this function in a library somewhere
getBody :: ServerPart L.ByteString
getBody = do
    req  <- askRq 
    body <- liftIO $ takeRequestBody req 
    case body of 
        Just rqbody -> return . unBody $ rqbody 
        Nothing     -> return "" 

myRoute :: ServerPart Response
myRoute = do
    body <- getBody -- it's a ByteString
    let unit = fromJust $ A.decode body :: Unit -- how to parse json
    ok $ toResponse $ A.encode unit -- how to send json back.