Added support for matrix parameters
This commit is contained in:
parent
330e9abcaa
commit
d81704abc7
2 changed files with 48 additions and 14 deletions
|
@ -36,6 +36,13 @@ instance ToParam (QueryParam "capital" Bool) where
|
||||||
"Get the greeting message in uppercase (true) or not (false). Default is false."
|
"Get the greeting message in uppercase (true) or not (false). Default is false."
|
||||||
Normal
|
Normal
|
||||||
|
|
||||||
|
instance ToParam (MatrixParam "lang" String) where
|
||||||
|
toParam _ =
|
||||||
|
DocQueryParam "lang"
|
||||||
|
["en", "sv", "fr"]
|
||||||
|
"Get the greeting message selected language. Default is en."
|
||||||
|
Normal
|
||||||
|
|
||||||
instance ToSample Greet where
|
instance ToSample Greet where
|
||||||
toSample = Just $ Greet "Hello, haskeller!"
|
toSample = Just $ Greet "Hello, haskeller!"
|
||||||
|
|
||||||
|
@ -47,7 +54,7 @@ instance ToSample Greet where
|
||||||
-- API specification
|
-- API specification
|
||||||
type TestApi =
|
type TestApi =
|
||||||
-- GET /hello/:name?capital={true, false} returns a Greet as JSON
|
-- GET /hello/:name?capital={true, false} returns a Greet as JSON
|
||||||
"hello" :> Capture "name" Text :> QueryParam "capital" Bool :> Get Greet
|
"hello" :> MatrixParam "lang" String :> Capture "name" Text :> QueryParam "capital" Bool :> Get Greet
|
||||||
|
|
||||||
-- POST /greet with a Greet as JSON in the request body,
|
-- POST /greet with a Greet as JSON in the request body,
|
||||||
-- returns a Greet as JSON
|
-- returns a Greet as JSON
|
||||||
|
|
|
@ -216,6 +216,7 @@ data DocQueryParam = DocQueryParam
|
||||||
, _paramKind :: ParamKind
|
, _paramKind :: ParamKind
|
||||||
} deriving (Eq, Show)
|
} deriving (Eq, Show)
|
||||||
|
|
||||||
|
|
||||||
-- | Type of GET parameter:
|
-- | Type of GET parameter:
|
||||||
--
|
--
|
||||||
-- - Normal corresponds to @QueryParam@, i.e your usual GET parameter
|
-- - Normal corresponds to @QueryParam@, i.e your usual GET parameter
|
||||||
|
@ -268,6 +269,7 @@ data Action = Action
|
||||||
{ _captures :: [DocCapture] -- type collected + user supplied info
|
{ _captures :: [DocCapture] -- type collected + user supplied info
|
||||||
, _headers :: [Text] -- type collected
|
, _headers :: [Text] -- type collected
|
||||||
, _params :: [DocQueryParam] -- type collected + user supplied info
|
, _params :: [DocQueryParam] -- type collected + user supplied info
|
||||||
|
, _mxParams :: [(String, [DocQueryParam])] -- type collected + user supplied info
|
||||||
, _rqbody :: Maybe ByteString -- user supplied
|
, _rqbody :: Maybe ByteString -- user supplied
|
||||||
, _response :: Response -- user supplied
|
, _response :: Response -- user supplied
|
||||||
} deriving (Eq, Show)
|
} deriving (Eq, Show)
|
||||||
|
@ -278,12 +280,13 @@ data Action = Action
|
||||||
-- Tweakable with lenses.
|
-- Tweakable with lenses.
|
||||||
--
|
--
|
||||||
-- > λ> defAction
|
-- > λ> defAction
|
||||||
-- > Action {_captures = [], _params = [], _rqbody = Nothing, _response = Response {_respStatus = 200, _respBody = Nothing}}
|
-- > Action {_captures = [], _headers = [], _params = [], _mxParams = [], _rqbody = Nothing, _response = Response {_respStatus = 200, _respBody = Nothing}}
|
||||||
-- > λ> defAction & response.respStatus .~ 201
|
-- > λ> defAction & response.respStatus .~ 201
|
||||||
-- > Action {_captures = [], _params = [], _rqbody = Nothing, _response = Response {_respStatus = 201, _respBody = Nothing}}
|
-- > Action {_captures = [], _headers = [], _params = [], _mxParams = [], _rqbody = Nothing, _response = Response {_respStatus = 201, _respBody = Nothing}}
|
||||||
defAction :: Action
|
defAction :: Action
|
||||||
defAction =
|
defAction =
|
||||||
Action []
|
Action []
|
||||||
|
[]
|
||||||
[]
|
[]
|
||||||
[]
|
[]
|
||||||
Nothing
|
Nothing
|
||||||
|
@ -393,6 +396,7 @@ markdown = unlines . concat . map (uncurry printEndpoint) . HM.toList
|
||||||
replicate len '-' :
|
replicate len '-' :
|
||||||
"" :
|
"" :
|
||||||
capturesStr (action ^. captures) ++
|
capturesStr (action ^. captures) ++
|
||||||
|
mxParamsStr (action ^. mxParams) ++
|
||||||
headersStr (action ^. headers) ++
|
headersStr (action ^. headers) ++
|
||||||
paramsStr (action ^. params) ++
|
paramsStr (action ^. params) ++
|
||||||
rqbodyStr (action ^. rqbody) ++
|
rqbodyStr (action ^. rqbody) ++
|
||||||
|
@ -413,6 +417,22 @@ markdown = unlines . concat . map (uncurry printEndpoint) . HM.toList
|
||||||
captureStr cap =
|
captureStr cap =
|
||||||
"- *" ++ (cap ^. capSymbol) ++ "*: " ++ (cap ^. capDesc)
|
"- *" ++ (cap ^. capSymbol) ++ "*: " ++ (cap ^. capDesc)
|
||||||
|
|
||||||
|
mxParamsStr :: [(String, [DocQueryParam])] -> [String]
|
||||||
|
mxParamsStr [] = []
|
||||||
|
mxParamsStr l =
|
||||||
|
"**Matrix Parameters**: " :
|
||||||
|
"" :
|
||||||
|
map segmentStr l ++
|
||||||
|
"" :
|
||||||
|
[]
|
||||||
|
segmentStr :: (String, [DocQueryParam]) -> String
|
||||||
|
segmentStr (segment, l) = unlines $
|
||||||
|
("**" ++ segment ++ "**: ") :
|
||||||
|
"" :
|
||||||
|
map paramStr l ++
|
||||||
|
"" :
|
||||||
|
[]
|
||||||
|
|
||||||
headersStr :: [Text] -> [String]
|
headersStr :: [Text] -> [String]
|
||||||
headersStr [] = []
|
headersStr [] = []
|
||||||
headersStr l = [""] ++ map headerStr l ++ [""]
|
headersStr l = [""] ++ map headerStr l ++ [""]
|
||||||
|
@ -584,15 +604,23 @@ instance (KnownSymbol sym, ToParam (QueryFlag sym), HasDocs sublayout)
|
||||||
action' = over params (|> toParam paramP) action
|
action' = over params (|> toParam paramP) action
|
||||||
|
|
||||||
|
|
||||||
instance (KnownSymbol sym, {- ToParam (MatrixParam sym a), -} HasDocs sublayout)
|
instance (KnownSymbol sym, ToParam (MatrixParam sym a), HasDocs sublayout)
|
||||||
=> HasDocs (MatrixParam sym a :> sublayout) where
|
=> HasDocs (MatrixParam sym a :> sublayout) where
|
||||||
|
|
||||||
docsFor Proxy (endpoint, action) =
|
docsFor Proxy (endpoint, action) =
|
||||||
docsFor sublayoutP (endpoint', action)
|
docsFor sublayoutP (endpoint', action')
|
||||||
|
|
||||||
where sublayoutP = Proxy :: Proxy sublayout
|
where sublayoutP = Proxy :: Proxy sublayout
|
||||||
|
paramP = Proxy :: Proxy (MatrixParam sym a)
|
||||||
|
segment = endpoint ^. (path._last)
|
||||||
|
segment' = action ^. (mxParams._last._1)
|
||||||
|
endpoint' = over (path._last) (\p -> p ++ ";" ++ symbolVal symP ++ "=<value>") endpoint
|
||||||
|
|
||||||
endpoint' = over path (\p -> p++";"++symbolVal symP) endpoint
|
action' = if segment' /= segment
|
||||||
|
-- This is the first matrix parameter for this segment, insert a new entry into the mxParams list
|
||||||
|
then over mxParams (|> (segment, [toParam paramP])) action
|
||||||
|
-- We've already inserted a matrix parameter for this segment, append to the existing list
|
||||||
|
else action & mxParams._last._2 <>~ [toParam paramP]
|
||||||
symP = Proxy :: Proxy sym
|
symP = Proxy :: Proxy sym
|
||||||
|
|
||||||
|
|
||||||
|
@ -603,8 +631,7 @@ instance (KnownSymbol sym, {- ToParam (MatrixParams sym a), -} HasDocs sublayout
|
||||||
docsFor sublayoutP (endpoint', action)
|
docsFor sublayoutP (endpoint', action)
|
||||||
|
|
||||||
where sublayoutP = Proxy :: Proxy sublayout
|
where sublayoutP = Proxy :: Proxy sublayout
|
||||||
|
endpoint' = over path (\p -> p ++ [";" ++ symbolVal symP ++ "=<value>"]) endpoint
|
||||||
endpoint' = over path (\p -> p++";"++symbolVal symP) endpoint
|
|
||||||
symP = Proxy :: Proxy sym
|
symP = Proxy :: Proxy sym
|
||||||
|
|
||||||
|
|
||||||
|
@ -616,7 +643,7 @@ instance (KnownSymbol sym, {- ToParam (MatrixFlag sym), -} HasDocs sublayout)
|
||||||
|
|
||||||
where sublayoutP = Proxy :: Proxy sublayout
|
where sublayoutP = Proxy :: Proxy sublayout
|
||||||
|
|
||||||
endpoint' = over path (\p -> p++";"++symbolVal symP) endpoint
|
endpoint' = over path (\p -> p ++ [";" ++ symbolVal symP]) endpoint
|
||||||
symP = Proxy :: Proxy sym
|
symP = Proxy :: Proxy sym
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue