Maintainer | Nickolay Kudasov <nickolay@getshoptv.com> |
---|---|
Stability | experimental |
Safe Haskell | None |
Language | Haskell2010 |
Helper traversals and functions for Swagger operations manipulations. These might be useful when you already have Swagger specification generated by something else.
Synopsis
- allOperations :: Traversal' OpenApi Operation
- operationsOf :: OpenApi -> Traversal' OpenApi Operation
- applyTags :: [Tag] -> OpenApi -> OpenApi
- applyTagsFor :: Traversal' OpenApi Operation -> [Tag] -> OpenApi -> OpenApi
- setResponse :: HttpStatusCode -> Declare (Definitions Schema) Response -> OpenApi -> OpenApi
- setResponseWith :: (Response -> Response -> Response) -> HttpStatusCode -> Declare (Definitions Schema) Response -> OpenApi -> OpenApi
- setResponseFor :: Traversal' OpenApi Operation -> HttpStatusCode -> Declare (Definitions Schema) Response -> OpenApi -> OpenApi
- setResponseForWith :: Traversal' OpenApi Operation -> (Response -> Response -> Response) -> HttpStatusCode -> Declare (Definitions Schema) Response -> OpenApi -> OpenApi
- prependPath :: FilePath -> OpenApi -> OpenApi
- declareResponse :: ToSchema a => MediaType -> Proxy a -> Declare (Definitions Schema) Response
Operation traversals
allOperations :: Traversal' OpenApi Operation Source #
All operations of a Swagger spec.
operationsOf :: OpenApi -> Traversal' OpenApi Operation Source #
will traverse only those operations
that are present in operationsOf
subsub
. Note that
is determined
by both path and method.Operation
>>>
let ok = (mempty :: Operation) & at 200 ?~ "OK"
>>>
let api = (mempty :: OpenApi) & paths .~ [("/user", mempty & get ?~ ok & post ?~ ok)]
>>>
let sub = (mempty :: OpenApi) & paths .~ [("/user", mempty & get ?~ mempty)]
>>>
BSL.putStrLn $ encode api
{"openapi":"3.0.0","info":{"version":"","title":""},"paths":{"/user":{"get":{"responses":{"200":{"description":"OK"}}},"post":{"responses":{"200":{"description":"OK"}}}}},"components":{}}>>>
BSL.putStrLn $ encode $ api & operationsOf sub . at 404 ?~ "Not found"
{"openapi":"3.0.0","info":{"version":"","title":""},"paths":{"/user":{"get":{"responses":{"404":{"description":"Not found"},"200":{"description":"OK"}}},"post":{"responses":{"200":{"description":"OK"}}}}},"components":{}}
Manipulation
Tags
applyTags :: [Tag] -> OpenApi -> OpenApi Source #
Apply tags to all operations and update the global list of tags.
applyTags
=applyTagsFor
allOperations
applyTagsFor :: Traversal' OpenApi Operation -> [Tag] -> OpenApi -> OpenApi Source #
Apply tags to a part of Swagger spec and update the global list of tags.
Responses
setResponse :: HttpStatusCode -> Declare (Definitions Schema) Response -> OpenApi -> OpenApi Source #
Set response for all operations. This will also update global schema definitions.
If the response already exists it will be overwritten.
setResponse
=setResponseFor
allOperations
Example:
>>>
let api = (mempty :: OpenApi) & paths .~ [("/user", mempty & get ?~ mempty)]
>>>
let res = declareResponse "application/json" (Proxy :: Proxy Day)
>>>
BSL.putStrLn $ encode $ api & setResponse 200 res
{"openapi":"3.0.0","info":{"version":"","title":""},"paths":{"/user":{"get":{"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Day"}}},"description":""}}}}},"components":{"schemas":{"Day":{"example":"2016-07-22","format":"date","type":"string"}}}}
See also
.setResponseWith
setResponseWith :: (Response -> Response -> Response) -> HttpStatusCode -> Declare (Definitions Schema) Response -> OpenApi -> OpenApi Source #
Set or update response for all operations. This will also update global schema definitions.
If the response already exists, but it can't be dereferenced (invalid $ref
),
then just the new response is used.
setResponseWith
=setResponseForWith
allOperations
See also
.setResponse
setResponseFor :: Traversal' OpenApi Operation -> HttpStatusCode -> Declare (Definitions Schema) Response -> OpenApi -> OpenApi Source #
Set response for specified operations. This will also update global schema definitions.
If the response already exists it will be overwritten.
See also
.setResponseForWith
setResponseForWith :: Traversal' OpenApi Operation -> (Response -> Response -> Response) -> HttpStatusCode -> Declare (Definitions Schema) Response -> OpenApi -> OpenApi Source #
Set or update response for specified operations. This will also update global schema definitions.
If the response already exists, but it can't be dereferenced (invalid $ref
),
then just the new response is used.
See also
.setResponseFor
Paths
prependPath :: FilePath -> OpenApi -> OpenApi Source #
Prepend path piece to all operations of the spec. Leading and trailing slashes are trimmed/added automatically.
>>>
let api = (mempty :: OpenApi) & paths .~ [("/info", mempty)]
>>>
BSL.putStrLn $ encode $ prependPath "user/{user_id}" api ^. paths
{"/user/{user_id}/info":{}}
Miscellaneous
declareResponse :: ToSchema a => MediaType -> Proxy a -> Declare (Definitions Schema) Response Source #
Construct a response with
while declaring all
necessary schema definitions.Schema
FIXME doc
>>>
BSL.putStrLn $ encode $ runDeclare (declareResponse "application/json" (Proxy :: Proxy Day)) mempty
[{"Day":{"example":"2016-07-22","format":"date","type":"string"}},{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Day"}}}}]