Packages
phoenix_swagger_ro
0.8.3
PhoenixSwagger is the library that provides swagger integration to the phoenix web framework adding the readonly property.
Current section
Files
Jump to
Current section
Files
lib/phoenix_swagger/plug/validate_plug.ex
defmodule PhoenixSwagger.Plug.Validate do
@moduledoc """
A plug to automatically validate all requests in a given scope.
Please make sure to:
* load Swagger specs at appliction start with
`PhoenixSwagger.Validator.parse_swagger_schema/1`
* set `conn.private.phoenix_swagger.valid` to `true` to skip validation
"""
import Plug.Conn
alias PhoenixSwagger.ConnValidator
@doc """
Plug.init callback
Options:
* `:validation_failed_status` the response status to set when parameter validation fails, defaults to 400.
"""
def init(opts), do: opts
def call(%Plug.Conn{private: %{phoenix_swagger: %{valid: true}}} = conn, _opts), do: conn
def call(conn, opts) do
validation_failed_status = Keyword.get(opts, :validation_failed_status, 400)
case ConnValidator.validate(conn) do
{:ok, conn} ->
conn |> put_private(:phoenix_swagger, %{valid: true})
{:error, :no_matching_path} ->
send_error_response(conn, 404, "API does not provide resource", conn.request_path)
{:error, [{message, path} | _], _path} ->
send_error_response(conn, validation_failed_status, message, path)
{:error, message, path} ->
send_error_response(conn, validation_failed_status, message, path)
end
end
defp send_error_response(conn, status, message, path) do
response = %{
error: %{
path: path,
message: message
}
}
conn
|> put_resp_content_type("application/json")
|> send_resp(status, PhoenixSwagger.json_library().encode!(response))
|> halt()
end
end