Oaskit behaviour (oaskit v0.2.0)
View SourceThe main API to work with OpenAPI specifications.
This module can be used to define a specification module that will then be used in your Phoenix router and controllers.
Example
defmodule MyAppWeb.OpenAPISpec do
alias Oaskit.Spec.Paths
alias Oaskit.Spec.Server
use Oaskit
@impl true
def spec do
%{
openapi: "3.1.1",
info: %{title: "My App API", version: "1.0.0"},
servers: [Server.from_config(:my_app, MyAppWeb.Endpoint)],
paths: Paths.from_router(MyAppWeb.Router, filter: &String.starts_with?(&1.path, "/api/"))
}
end
end
Summary
Callbacks
This callback is used to cache the built version of the OpenAPI specification, with JSV schemas turned into validators.
This function is intended to change cache keys at runtime. The variant is any
term used as the last element of a cache_key/0
.
Returns the options that will be passed to JSV.build/2
when building the
spec for the implementation module.
This function should return the OpenAPI specification for your application.
Functions
Default options used for the JSV.build/2
function when building schemas.
Normalizes OpenAPI specification data.
Returns a JSON representation of the given OpenAPI specification module.
Types
Callbacks
@callback cache({:get, key} | {:put, key, value}) :: :ok | {:ok, value} | :error when key: {:oaskit_cache, module(), term()}, value: term()
This callback is used to cache the built version of the OpenAPI specification, with JSV schemas turned into validators.
The callback will be called with :get
to retrieve a cached build, in which
case the callback should return {:ok, cached}
or :error
. It will be called
with {:put, value}
to set the cache, in which case it must return :ok
.
Caching is very important, otherwise the spec will be built for each request
calling a controller that uses ValidateRequest
. An efficient
default implementation using :persistent_term
is automatically generated.
Override this callback if you need more control over the cache.
On custom implementations there is generally no need to wrap the key in a tagged tuple, as it is already a unique tagged tuple.
@callback cache_variant() :: term()
This function is intended to change cache keys at runtime. The variant is any
term used as the last element of a cache_key/0
.
This is useful if you need to rebuild the OpenAPI specification and its validators at runtime, when the used schemas or even routes depend on current application state. For instance, if a schema for a given entity is fetched regularly from a remote source and changes over time.
The default implementation returns nil
.
Stale cache entries are not purged automatically
If you return a new variant from this callback, cache entries stored with
previous variants in the key are not automatically cleaned. You will need to
take care of that. See cache/1
to implement a cache mechanism that you
can control.
@callback jsv_opts() :: [JSV.build_opt()]
Returns the options that will be passed to JSV.build/2
when building the
spec for the implementation module.
The default implementation delegates to Oaskit.default_jsv_opts/0
.
@callback spec() :: map()
This function should return the OpenAPI specification for your application.
It can be returned as an %Elixir.OpenAPI{}
struct, or a bare map with atoms or
binary keys (for instance by reading from a JSON file at compile time).
The returned value will be normalized, any extra data not defined in the
Oaskit.Spec...
namespace will be lost.
Functions
Default options used for the JSV.build/2
function when building schemas.
Normalizes OpenAPI specification data.
Takes specification data (raw maps or structs) and normalizes it to a JSON-compatible version (with binary keys).
Returns a JSON representation of the given OpenAPI specification module.
Options
:pretty
- A boolean to control JSON pretty printing.:validation_error_handler
- A function accepting aJSV.ValidationError
struct. The JSON generation does not fail on validation error unless you raise from that function.