Stuff on top of Compojure for making sweet web apis.
- Schema for input & output data coercion
- Swagger 2.0 for api documentation, via ring-swagger
- simple extendable DSL via metadata handlers
- bundled middleware for common api behavior (exception mapping, data formats & serialization)
- route macros for putting things together, including the Swagger-UI via ring-swagger-ui
If you are upgrading your existing pre 0.20.0 compojure-api app to use 0.20.0 or later, you have to migrate the Swagger models
from 1.2 to 2.0. See Migration guide for details.
(ns examples.thingie
(:require [ring.util.http-response :refer :all]
[compojure.api.sweet :refer :all]
[schema.core :as s]))
;;
;; Schemas
;;
(s/defschema Thingie
{:id Long
:hot Boolean
:tag (s/enum :kikka :kukka)
:chief [{:name String
:type #{{:id String}}}]})
;;
;; Routes
;;
(defroutes* legacy-route
(GET* "/legacy/:value" [value]
(ok {:value value})))
(defapi app
(swagger-ui)
(swagger-docs
{:info {:title "Sample api"}})
(context* "/api" []
:tags ["thingie"]
(GET* "/plus" []
:return Long
:query-params [x :- Long, {y :- Long 1}]
:summary "x+y with query-parameters. y defaults to 1."
(ok (+ x y)))
(POST* "/minus" []
:return Long
:body-params [x :- Long, y :- Long]
:summary "x-y with body-parameters."
(ok (- x y)))
(GET* "/times/:x/:y" []
:return Long
:path-params [x :- Long, y :- Long]
:summary "x*y with path-parameters"
(ok (* x y)))
(POST* "/divide" []
:return Double
:form-params [x :- Long, y :- Long]
:summary "x/y with form-parameters"
(ok (/ x y)))
(GET* "/power" []
:return Long
:header-params [x :- Long, y :- Long]
:summary "x^y with header-parameters"
(ok (long (Math/pow x y))))
legacy-route
(PUT* "/echo" []
:return [{:hot Boolean}]
:body [body [{:hot Boolean}]]
:summary "echoes a vector of anonymous hotties"
(ok body))
(POST* "/echo" []
:return (s/maybe Thingie)
:body [thingie (s/maybe Thingie)]
:summary "echoes a Thingie from json-body"
(ok thingie)))
(context* "/context" []
:tags ["context*"]
:summary "summary inherited from context"
(context* "/:kikka" []
:path-params [kikka :- s/Str]
:query-params [kukka :- s/Str]
(GET* "/:kakka" []
:path-params [kakka :- s/Str]
(ok {:kikka kikka
:kukka kukka
:kakka kakka})))))To try it yourself, clone this repository and type
lein start-thingie(Jetty)lein http-kit-thingie(Http-kit)
Clone the examples-repository.
Use a Leiningen template, with or without tests:
lein new compojure-api my-api
lein new compojure-api my-api +midje
lein new compojure-api my-api +clojure-test
There is prepackaged middleware compojure.api.middleware/api-middleware for common web api usage. It's a enhanced version of compojure.handler/api adding the following:
- catching slingshotted http-errors (
ring.middleware.http-response/catch-response) - catching model validation errors (
ring.swagger.middleware/catch-validation-errors) - support for different protocols via
ring.middleware.format-params/wrap-restful-paramsandring.middleware.format-response/wrap-restful-response- default supported protocols are:
:json-kw,:yaml-kw,:edn,:transit-jsonand:transit-msgpack
- default supported protocols are:
To help setting up custom middleware there is a middlewares macro:
(ns example
(:require [ring.util.http-response :refer [ok]]
[compojure.api.middleware :refer [api-middleware]]
[compojure.api.core :refer [middlewares]]
[compojure.api.routes :refer [api-root]]]
[compojure.core :refer :all]))
(defroutes app
(middlewares [api-middleware]
(api-root
(context "/api" []
(GET "/ping" [] (ok {:ping "pong"})))))There is also defapi as a short form for the common case of defining routes with api-middleware. It also adds
compojure.api.routes/api-root, which is the actual macro responsible for generating the route-tree:
(ns example2
(:require [ring.util.http-response :refer [ok]]
[compojure.api.core :refer [defapi]]
[compojure.core :refer :all]))
(defapi app
(context "/api" []
(GET "/ping" [] (ok {:ping "pong"}))))defapi takes a bunch of options for api parametrization (and passed them 1:1 to api-middleware).
See api-middleware documentation for details.
(defapi app
{:format {:formats [:json-kw :yaml-kw :edn :transit-json :transit-msgpack]
:params-opts {}
:response-opts {}}
:validation-errors {:error-handler nil
:catch-core-errors? nil}
:exceptions {:exception-handler default-exception-handler}}
...)Middlewares (and other handlers) can publish their capabilities to consume & produce different wire-formats. This information is passed to ring-swagger and added to swagger-docs & is available in the swagger-ui.
The default middlewares on Compojure-API includes ring-middleware-format which supports multiple formats. If the first element of defapi body is a map it will be used to pass parameters to api-middleware, e.g. the formats which should be enabled.
(defapi app
{:formats [:transit-json :edn]}
(context "/api" [] ...))One can add own format middlewares (XML etc.) and add expose their capabilities by adding the
supported content-type into request under keys [:meta :consumes] and [:meta :produces] accordingly.
You can use vanilla Compojure routes or their enhanced versions from compojure.api.core. Enhanced versions have * in their name (GET*, POST*, context*, defroutes* etc.) so that they don't get mixed up with the originals. Enhanced version can be used exactly as their ancestors but have also new behavior, more on that later.
Namespace compojure.api.sweet is a public entry point for all routing - importing Vars from compojure.api.core, compojure.api.swagger and compojure.core.
There is also compojure.api.legacy namespace which contains rest of the public vars from compojure.core (the GET, POST etc. endpoint macros which are not contained in sweet). Using sweet in conjunction with legacy should provide a drop-in-replacement for compojure.core - with new new route goodies.
(ns example3
(:require [ring.util.http-response :refer [ok]]
[compojure.api.sweet :refer :all]))
(defapi app
(context* "/api" []
(GET* "/user/:id" [id] (ok {:id id}))
(POST* "/echo" {body :body-params} (ok body))))Compojure-api uses Swagger for route documentation.
Enabling Swagger route documentation in your application is done by:
- defining your api via
compojure.api.core/defapidefapiusescompojure.api.routes/api-rootto initialize an empty route tree to your namespace and assigns the static route tree for your app to it.- uses macro-peeling & source linking to reconstruct the route tree from route macros at macro-expansion time (~no runtime penalty)
- if you intend to split your routes behind multiple Vars via
defroutes, usedefroutes*instead so that their routes get also collected. Note: since0.20.0thedefroutes*are automatically referenced over a Var to get smoother development flow.
- to group your endpoints in the swagger-ui, you can
:tagsmetadata to routes - mounting
compojure.api.swagger/swagger-docsto publish the swagger spec - optionally mounting
compojure.api.swagger/swagger-uito add the Swagger-UI to the web app
Currently, there can be only one defapi or with-routes per namespace.
(ns example4
(:require [ring.util.http-response :refer [ok]]
[compojure.api.sweet :refer :all]))
(defroutes* legacy-route
(GET* "/ping/:id" [id]
(ok {:id id})))
(defapi app
(swagger-ui)
(swagger-docs)
(context "/api" []
legacy-route
(POST* "/echo" {body :body-params} (ok body))))By default, Swagger-UI is mounted to the root / and api-listing to /swagger.json.
The resulting swagger-spec data (published by the swagger-docs) is combined from three sources:
- Compile-time route & schema information, generated for you by the lib
- Run-time extra information from the middlewares, passed in with the request
- User-set custom information
Having a defapi in the same namespace as the swagger-docs does this for you.
Currently, only the application wire-format serialization capabilities (:produces and :consumes)
are injected in from compojure.api.middleware.wrap-publish-swagger-formats middleware.
In future, there should be a extendable interface for external middlewares to contribute information this way.
The swagger-docs can be used without parameters, but one can set any valid root-level Swagger Data via it.
(swagger-docs)(swagger-docs
{:info {:version "1.0.0"
:title "Sausages"
:description "Sausage description"
:termsOfService "http://helloreverb.com/terms/"
:contact {:name "My API Team"
:email "[email protected]"
:url "http://www.metosin.fi"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}}
:tags [{:name "kikka", :description "kukka"}]})See the Swagger-spec for more details.
As one might accidentally pass invalid swagger data in, you should validate the end results. See wiki for details.
Compojure-api uses the Schema-based modeling, backed up by ring-swagger for mapping the models int Swagger/JSON Schemas. For Map-based schemas, Keyword keys should be used instead of Strings.
Two coercers are available (and automatically selected with smart destructuring): one for json and another for string-based formats (query-parameters & path-parameters). See Ring-Swagger for more details.
(require '[ring.swagger.schema :refer [coerce!])
(require '[schema.core :as s])
(s/defschema Thingie {:id Long
:tag (s/enum :kikka :kukka)})
(coerce! Thingie {:id 123, :tag "kikka"})
; => {:id 123 :tag :kikka}
(coerce! Thingie {:id 123, :tags "kakka"})
; => ExceptionInfo throw+: {:type :ring.swagger.schema/validation, :error {:tags disallowed-key, :tag missing-required-key}} ring.swagger.schema/coerce! (schema.clj:88)The enhanced route-macros allow you to define extra meta-data by adding a) meta-data as a map or b) as pair of keyword-values in Liberator-style. With meta-data you can set both input and return models and some Swagger-specific data like nickname and summary. Input models have smart schema-aware destructuring and do automatic data coercion.
(POST* "/echo" []
:return FlatThingie
:query [flat-thingie FlatThingie]
:summary "echoes a FlatThingie from query-params"
:operationId "echoFlatThingiePost"
(ok flat-thingie)) ;; here be coerced thingie (GET* "/echo" []
:return Thingie
:query [thingie Thingie]
:summary "echoes a thingie from query-params"
:operationId "echoThingieQuery"
(ok thingie)) ;; here be coerced thingieYou can also wrap models in containers (vector and set) and add extra metadata:
(POST* "/echos" []
:return [Thingie]
:body [thingies (describe #{Thingie} "set on thingies")]
(ok thingies))Schema-predicate wrappings work too:
(POST* "/nachos" []
:return (s/maybe {:a s/Str})
(ok nil))And anonoymous schemas:
(PUT* "/echos" []
:return [{:id Long, :name String}]
:body [body #{{:id Long, :name String}}]
(ok body))All parameters can also be destructured using the Plumbing syntax with optional type-annotations:
(GET* "/sum" []
:query-params [x :- Long, y :- Long]
(ok {:total (+ x y)}))
(GET* "/times/:x/:y" []
:path-params [x :- Long, y :- Long]
(ok {:total (* x y)}))
(POST* "/divide" []
:return Double
:form-params [x :- Long, y :- Long]
(ok {:total (/ x y)}))
(POST* "/minus" []
:body-params [x :- Long, y :- Long]
(ok {:total (- x y)}))
(POST* "/power" []
:header-params [x :- Long, y :- Long]
(ok {:total (long (Math/pow x y))})Raw values / primitives (e.g. not sequences or maps) can be returned when a :return -metadata is set. Swagger,
ECMA-404 and ECMA-262 allow this
(while RFC4627 forbids it).
note setting a :return value as String allows you to return raw strings (as JSON or whatever protocols your
app supports), opposed to the Ring Spec.
(context "/primitives" []
(GET* "/plus" []
:return Long
:query-params [x :- Long {y :- Long 1}]
:summary "x+y with query-parameters. y defaults to 1."
(ok (+ x y)))
(GET* "/datetime-now" []
:return org.joda.time.DateTime
:summary "current datetime"
(ok (org.joda.time.DateTime.)))
(GET* "/hello" []
:return String
:query-params [name :- String]
:notes "<h1>hello world.</h1>"
:summary "echoes a string from query-params"
(ok (str "hello, " name))))Key :responses takes a map of http-status-code -> model map, which translates to both return model coercion and
to swagger responseMessages description. Models can be decorated with :message meta-data.
(POST* "/number" []
:query-params [x :- Long y :- Long]
:responses {403 ^{:message "Underflow"} ErrorEnvelope}
:return Long
:summary "x-y with body-parameters."
(let [total (- x y)]
(if (pos? total)
(ok total)
(forbidden {:message "difference is negative"}))))Key :middlewares takes a vector of middlewares to be applied to the route.
Note that the middlewares don't see any restructured bindings from within the route body.
They are executed inside the route so you can safely edit request etc. and the changes
won't leak to other routes in the same context.
(DELETE* "/user/:id" []
:middlewares [audit-support (for-roles :admin)]
(ok {:name "Pertti"}))Compojure-api handles the route metadata by calling the multimethod compojure.api.meta/restructure-param with
metadata key as a dispatch value.
Multimethods take three parameters:
- metadata key
- metadata value
- accumulator map with keys
:lets, a vector of let bindings applied first before the actual body:letks, a vector of letk bindings applied second before the actual body:middlewares, a vector of route specific middlewares (applied from left to right):parameters, meta-data of a route (without the key & value for the current multimethod):body, a sequence of the actual route body
.. and should return the modified accumulator. Multimethod calls are reduced to produce the final accumulator for
code generation. Defined key-value -based metadatas for routes are guaranteed to run on top-to-bottom order of the so
all the potential let and letk variable overrides can be solved by the client. Default implementation is to keep
the key & value as a route metadata.
You can add your own metadata-handlers by implementing the multimethod:
(defmethod compojure.api.meta/restructure-param :auth
[_ token {:keys [parameters lets body middlewares] :as acc}]
"Make sure the request has X-AccessToken header and that it's value is 123. Binds the value into a variable"
(-> acc
(update-in [:lets] into [{{token "x-accesstoken"} :headers} '+compojure-api-request+])
(assoc :body `((if (= ~token "123")
(do ~@body)
(ring.util.http-response/forbidden "Auth required"))))))Using it:
(GET* "/current-session" []
:auth token
(ok {:token token}))macroexpanding-1 it too see what's get generated:
(clojure.pprint/pprint
(macroexpand-1 `(GET* "/current-session" []
:auth token
(ok {:token token}))))
(compojure.core/GET
"/current-session"
[:as +compojure-api-request+]
(clojure.core/let
[{{examples.thingie/token "x-accesstoken"} :headers}
+compojure-api-request+]
(do
(if
(clojure.core/= examples.thingie/token "123")
(do (ring.util.http-response/ok {:token examples.thingie/token}))
(ring.util.http-response/forbidden "Auth required")))))lein start-samples
- All routes are collected at compile-time
- there is basically no runtime penalty for describing your apis
- all runtime code between route-macros are ignored when macro-peeling route-trees. See tests
api-rootpeels the macros until it reachescompojure.coreVars. You can write your own DSL-macros on top of those
- don't pollute api namespaces with
+routes+var, use lexically/dynamically scoped route tree instead - type-safe
:paramsdestructuring url-forfor endpoints (bidi, bidi, bidi)
Copyright © 2014-2015 Metosin Oy
Distributed under the Eclipse Public License, the same as Clojure.
