FireTail validates incoming requests for conformance with the schemas described in the swagger specification.
Request parameters will be provided to the handler functions as keyword arguments if they are included in the function’s signature, otherwise, body parameters can be accessed from firetail.request.json and query parameters can be accessed from firetail.request.args.
Both the request body and parameters are validated against the specification, using jsonschema.
If the request doesn’t match the specification FireTail will return a 400 error.
FireTail automatically maps the parameters defined in your endpoint specification to arguments of your Python views as named parameters and with value casting whenever possible. All you need to do is define the endpoint’s parameters with matching names with your views arguments.
As an example, you have an endpoint specified as:
And the view function:
In this example, FireTail will automatically identify that your view function expects an argument-named message and will assign the value of the endpoint parameter message to your view function.
FireTail will also use default values if they are provided.
If you want to use a parameter name that collides with a Python built-in, you can enable the pythonic_params option:
With this option enabled, FireTail first converts CamelCase names to snake_case. Then, it looks to see if the name matches a known built-in and if it does it appends an underscore to the name.
As an example, you have an endpoint specified as:
And the view function:
In the OpenAPI 3.x.x spec, the requestBody does not have a name. By default, it will be passed in as ‘body’. You can optionally provide the x-body-name parameter in your operation (or legacy position within the requestBody schema) to override the name of the parameter that will be passed to your handler function.
Warning
When you have a parameter defined as not required at your endpoint and your Python view has a non-named argument, when you call this endpoint without the parameter you will get an exception of missing positional argument.
Whenever possible FireTail will try to parse your argument values and do type casting to related Python native values. The current available type castings are:
For more details about collectionFormats, visit the official OpenAPI 2.0 Specification.
In the OpenAPI 2.0 Specification if you use the array type, you can define the collectionFormat to set the deserialization behavior. FireTail currently supports “pipes” and “csv” as collection formats. The default format is “csv”.
FireTail is opinionated about how the URI is parsed for array types. The default behavior for query parameters that have been defined multiple times is to join them all together. For example, if you provide a URI with the query string ?letters=a,b,c&letters=d,e,f, FireTail will set letters = ['a', 'b', 'c', 'd', 'e', 'f'].
You can override this behavior by specifying the URI parser in the app or API options.
You can implement your own URI parsing behavior by inheriting from firetail.decorators.uri_parsing.AbstractURIParser.
There are a handful of URI parsers included with the connection.
FireTail can apply strict parameter validation for query and form data parameters. When this is enabled, requests that include parameters not defined in the swagger spec return a 400 error. You can enable it when adding the API to your application:
Sometimes your API should explicitly accept nullable parameters. However OpenAPI specification currently does not support officially a way to serve this use case, FireTail adds the x-nullable vendor extension to parameter definitions. Its usage would be:
It is supported by FireTail in all parameter types: body, query, formData, and path. Nullable values are the strings null and None.
Warning
Be careful on nullable parameters for sensitive data where the strings “null” or “None” can be valid values.
Note
This extension will be removed as soon as OpenAPI/Swagger Specification provides an official way of supporting nullable values.
Currently, header parameters are not passed to the handler functions as parameters. However, they can be accessed through the underlying firetail.request.headers object which aliases the flask.request.headers object.
By default, body and parameters contents are validated against OpenAPI schema via firetail.decorators.validation.RequestBodyValidator or firetail.decorators.validation.ParameterValidator, if you want to change the validation, you can override the defaults with:
See a custom validator example in examples/enforcedefaults.