ngrunwald.ring-middleware-format

https://github.com/ngrunwald/ring-middleware-format.git

git clone 'https://github.com/ngrunwald/ring-middleware-format.git'

(ql:quickload :ngrunwald.ring-middleware-format)
164

ring-middleware-format Continuous Integration status Dependencies Status

NOTICE: For modern HTTP content negotiation, encoding and decoding library, check Muuntaja. Currently there are not plans to implement big changes to Ring-middleware-format.

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.

Installation

Latest stable version:

Clojars Project

Add this to your dependencies in project.clj.

Features

API Documentation

API Documentation is not available online. You can clone the repository and run lein codox yourself.

Summary

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: clojure (wrap-restful-format handler :formats [:json :edn :msgpack :msgpack-kw :yaml :yaml-in-html :transit-json :transit-msgpack])

The available formats are:

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: clojure (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.

It is possible to configure the behavior of various decoders by passing :response-options or :params-options parameters to (wrap-restful-format); these options are structured as a map from the type of decoder to the options to use for that format. For example, to pretty-print JSON responses these options could be used: clojure (wrap-restful-format handler :formats [:json-kw] :response-options {:json-kw {:pretty true}})

Usage

Detailed Usage

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)))

Params Format Middleware

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:

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.

Response Format Middleware

These middlewares will take a raw data structure returned by a route and serialize it in various formats.

There are six default wrappers:

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.

Custom formats

You can implement custom formats in two ways:

(-> handler
  (wrap-json-response :charset "ISO-8859-1"))

Charset detection

Icu4j can be used to guess request charset for requests where Content-type header doesn't define charset, and middleware :charset option hasn't been used to set static charset. To use this feature, add dependency:

[com.ibm.icu/icu4j "63.1"]

Note that icu4j is quite large dependency and will increase your uberjar size by 10MB.

And require separate guess-charset namespace which provides function you can use with wrap-params :charset option:

(ns example
  (:require [ring.middleware.format-params.guess-charset :as guess-charset]
            ...))

(wrap-restful-params ... {:charset guess-charset/get-or-default-charset})

Future Work

See Also

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:

License

Copyright © 2011, 2012, 2013, 2014 Nils Grunwald
Copyright © 2015-2019 Juho Teperi

Distributed under the Eclipse Public License, the same as Clojure.