Liking cljdoc? Tell your friends :D

reitit.interceptor


*max-compile-depth*clj/s


chainclj/s

(chain interceptors)
(chain interceptors data)
(chain
  interceptors
  data
  {:keys [:reitit.interceptor/transform] :or {transform identity} :as opts})

Creates a Interceptor chain out of sequence of IntoInterceptor Optionally takes route data and (Router) opts.

Creates a Interceptor chain out of sequence of IntoInterceptor
Optionally takes route data and (Router) opts.
raw docstring

compile-resultclj/s

(compile-result route opts)
(compile-result [_ {:keys [interceptors handler] :as data}]
                {:keys [:reitit.interceptor/queue] :as opts}
                _)

Contextcljs


contextclj/s

(context request)

Endpointcljs


Executorclj/s≠protocol

queueclj/s

(queue this interceptors)

takes a sequence of interceptors and compiles them to queue for the executor

takes a sequence of interceptors and compiles them to queue for the executor

executeclj/s

(execute this interceptors request)
(execute this interceptors request respond raise)

executes the interceptor chain with a request

executes the interceptor chain with a request

enqueueclj/s

(enqueue this context interceptors)

enqueues the interceptors into the queue

enqueues the interceptors into the queue

Interceptorcljs


interceptor-handlerclj/s

(interceptor-handler router)

IntoInterceptorclj/s≠protocol

into-interceptorclj/s

(into-interceptor this data opts)

routerclj/s

(router data)
(router data opts)

Creates a reitit.core/Router from raw route data and optionally an options map with support for Interceptors. See docs for details.

Example:

(router ["/api" {:interceptors [format-body oauth2]} ["/users" {:interceptors [delete] :handler get-user}]])

Options:

keydescription
:reitit.interceptor/transformFunction of [Interceptor] => [Interceptor] to transform the expanded Interceptors (default: identity).
:reitit.interceptor/registryMap of keyword => IntoInterceptor to replace keyword references into Interceptor

See router options from reitit.core/router.

Creates a [[reitit.core/Router]] from raw route data and optionally an options map with
support for Interceptors. See [docs](https://metosin.github.io/reitit/) for details.

Example:

  (router
    ["/api" {:interceptors [format-body oauth2]}
      ["/users" {:interceptors [delete]
                   :handler get-user}]])

Options:

| key                             | description
| --------------------------------|-------------
| `:reitit.interceptor/transform` | Function of [Interceptor] => [Interceptor] to transform the expanded Interceptors (default: identity).
| `:reitit.interceptor/registry`  | Map of `keyword => IntoInterceptor` to replace keyword references into Interceptor

See router options from [[reitit.core/router]].
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close