This is a set of middlewares that can be used to deserialize parameters sent in the :body of requests and serialize a Clojure data structure in the :body of a response to some string or binary representation. It natively handles JSON, MessagePack, YAML, Transit over JSON or Msgpack and Clojure (edn) but it can easily be extended to other custom formats, both string and binary. It is intended for the creation of RESTful APIs that do the right thing by default but are flexible enough to handle most special cases.
Latest stable version:
Add this to your dependencies in project.clj
.
- Ring compatible middleware, works with any web framework build on top of Ring
- Automatically parses requests and encodes responses according to Content-Type and Accept headers
- Automatically handles charset detection of requests bodies, even if the charset given by the MIME type is absent or wrong (using ICU)
- Automatically selects and uses the right charset for the response according to the request header
- Varied formats handled out of the box (JSON, MessagePack, YAML, EDN, Transit over JSON or Msgpack)
- Pluggable system makes it easy to add to the standards encoders and decoders custom ones (proprietary format, Protobuf, specific xml, csv, etc.)
Full API documentation is available.
To get automatic deserialization and serialization for all supported formats with sane defaults regarding headers and charsets, just do this:
(ns my.app
(:require [ring.middleware.format :refer [wrap-restful-format]]))
(def app
(-> handler
(wrap-restful-format)))
wrap-restful-format
accepts an optional :formats
parameter, which is a list of the formats that should be handled. The first format of the list is also the default serializer used when no other solution can be found. The defaults are:
(wrap-restful-format handler :formats [:json :edn :msgpack :msgpack-kw :yaml :yaml-in-html :transit-json :transit-msgpack])
The available formats are:
:json
JSON with string keys in:params
and:body-params
:json-kw
JSON with keywordized keys in:params
and:body-params
:msgpack
MessagePack format with string keys.:msgpack-kw
MessagePack format with kwywordized keys.:yaml
YAML format:yaml-kw
YAML format with keywordized keys in:params
and:body-params
:edn
edn (native Clojure format). It uses clojure.tools.edn and never evals code, but uses the custom tags from*data-readers*
:yaml-in-html
yaml in a html page (useful for browser debugging):transit-json
Transit over JSON format:transit-msgpack
Transit over Msgpack format
Your routes should return raw clojure data structures where everything inside can be handled by the default encoders (no Java objects or fns mostly). If a route returns a String, File, InputStream or nil, nothing will be done. If no format can be deduced from the Accept header or the format specified is unknown, the first format in the vector will be used (JSON by default).
Please note the default JSON, MessagePack, and YAML decoder do not keywordize their output keys, if this is the behaviour you want (be careful about keywordizing user input!), you should use something like:
(wrap-restful-format handler :formats [:json-kw :edn :msgpack-kw :yaml-kw :yaml-in-html :transit-json :transit-msgpack])
See also wrap-restful-format docstring for help on customizing error handling.
You can separate the params and response middlewares. This allows you to use them separately, or to customize their behaviour, with specific error handling for example. See the wrappers docstrings for more details.
(ns my.app
(:require [ring.middleware.format-params :refer [wrap-restful-params]]
[ring.middleware.format-response :refer [wrap-restful-response]]))
(def app
(-> handler
(wrap-restful-params)
(wrap-restful-response)))
These middlewares are mostly lifted from ring-json-params but generalized for arbitrary decoders. The wrap-json-params
is drop-in replacement for ring-json-params. They will decode the params in the request body, put them in a :body-params
key and merge them in the :params
key if they are a map.
There are six default wrappers:
wrap-json-params
wrap-json-kw-params
wrap-yaml-params
wrap-clojure-params
wrap-transit-json-params
wrap-transit-msgpack-params
There is also a generic wrap-format-params
on which the others depend. Each of these wrappers take 4 optional args: :decoder
, :predicate
, :binary?
and :charset
. See wrap-format-params
docstring for further details.
These middlewares will take a raw data structure returned by a route and serialize it in various formats.
There are six default wrappers:
wrap-json-response
wrap-yaml-response
wrap-yaml-in-html-response
(responds to text/html MIME type and useful to test an API in the browser)wrap-clojure-response
wrap-transit-json-response
wrap-transit-msgpack-response
There is also a generic wrap-format-response
on which the others depend. Each of these wrappers take 4 optional args: :encoders
, :predicate
, binary?
and :charset
. See wrap-format-response
docstring for further details.
You can implement custom formats in two ways:
- If you want to slightly modify an existing wrapper you can juste pass it an argument to overload the default. For exemple, this will cause all json formatted responses to be encoded in iso-latin-1:
(-> handler
(wrap-json-response :charset "ISO-8859-1"))
- You can implement the wrapper from scratch by using either or both
wrap-format-params
andwrap-format-response
. For now, see the docs of each and how the other formats were implemented for help doing this.
This module aims to be both easy to use and easy to extend to new formats. However, it does not try to help with every apect of building a RESTful API, like proper error handling and method dispatching. If that is what you are looking for, you could check the modules which function more like frameworks:
Copyright © 2011, 2012, 2013, 2014 Nils Grunwald
Copyright © 2015, 2016 Juho Teperi
Distributed under the Eclipse Public License, the same as Clojure.