Automatic JSON schema validation for Bottle
Project description
bottle-jsonschema
Bottle plugin for automatically validating JSON schemas for all relevant requests.
Installation
pip install bottle_jsonschema
Usage example
import bottle
from bottle.ext.jsonschema import JSONSchemaPlugin, SchemaValidationError
bottle.install(JSONSchemaPlugin())
@bottle.error(400)
def handle_error_400(error):
# This forwards the error directly to the user, which will display a nicely
# formatted JSON object containing the validation errors.
if isinstance(error, SchemaValidationError):
return response
# Handle other error situations...
return json.dumps({"error": "invalid request"})
The error object contains a list of strings describing the validation errors. You can easily customize how the errors are displayed, here's how you can display them as a HTML list:
@bottle.error(400)
def handle_error_400(error):
if isinstance(error, SchemaValidationError):
response.content_type = "text/html"
error_list = "\n".join(
"<li>{}</li>".format(x) for x in error.validation_errors
)
return """
<h1>JSON schema validation failed</h1>
<p>Errors:</p>
<ul>{}</ul>
""".format(error_list)
return response
Output samples
Here are some samples of the output of the plugin, given the following error handler:
@bottle_app.error(400)
def handle_error_400(error):
if isinstance(error, SchemaValidationError):
return response
response.content_type = "application/json"
return json.dumps({"error": error.body})
$ curl -s -X PUT "http://127.0.0.1:1300/login" | jq .
{
"error": "content type application/json required"
}
$ curl -s -X PUT -H "Content-Type: application/json" "http://127.0.0.1:1300/login" | jq .
{
"error": "json payload required"
}
$ curl -s -X PUT -H "Content-Type: application/json" -d '{}' "http://127.0.0.1:8080/login" | jq .
{
"error": "payload failed json schema validation",
"validation_errors": [
"failed constraint: required: ['email', 'password']"
]
}
$ curl -s -X PUT -H "Content-Type: application/json" -d '{"email": "x", "password": "123"}' "http://127.0.0.1:1300/login" | jq .
{
"error": "payload failed json schema validation",
"validation_errors": [
"failed constraint: properties.password.minLength: 8",
"failed constraint: properties.email.minLength: 6"
]
}
$ curl -s -X PUT -H "Content-Type: application/json" -d '{"email": "hubro@example.net", "password": "12345678"}' "http://127.0.0.1:1300/login" | jq .
{
"code": "success"
}
More information
Here's basically everything the plugin does for every request:
- Check the HTTP method of the request. If it's one of POST, PATCH or PUT, then continue. Otherwise stop.
- Try to find a schema for the request. If a schema was found, continue, otherwise stop. The default logic for finding a schema is explained below, and can be overridden.
- Check that the request content type is "application/json". If it's not, raise a 400 Bad Request error.
- Check that the request contains a JSON parseable payload. If not, raise a 400 Bad Request error.
- Validate the payload using jsonschema. If there were no errors, stop. Otherwise raise a 400 Bad Request error.
How do I override which HTTP methods trigger schema validation?
bottle.install(JSONSchemaPlugin(methods=("GET", "POST")))
How does the plugin find schemas?
By default, the plugin finds schemas by checking your Bottle application's resource manager for "schemas/<name>.json". The default strategy for converting a route to a schema name is:
PUT /login -> schemas/login[.PUT].json
POST /admin/users -> schemas/admin.users[.POST].json
PUT /admin/users/<id:int> -> schemas/admin.users.id[.POST].json
PATCH /users/<name:re:\w(@\w)?> -> schemas/users.name[.PATCH].json
Basically, it replaces slashes with dots, replaces wildcards with the wildcard name and strips leading and trailing slashes. The HTTP method is optional, as signified by the square brackets.
You can override the naming strategy like this:
def get_schema_name():
# Generate one or more schema names for the current request.
return ["list", "of", "names", "that", "will", "be", "tried", "in", "order"]
bottle.install(JSONSchemaPlugin(schema_name=get_schema_name))
Or you can override the whole schema lookup altogether:
def find_schema():
# Find the correct schema for the current request and return it as a dict.
# Returning None will skip schema validation.
return None
bottle.install(JSONSchemaPlugin(schema_lookup=find_schema))
How do I set up the resource manager to work with this plugin?
Assuming you have a project folder layout like this:
.
├── assets
│ └── schemas
│ └── login.json
└── myapp.py
Then you just need this line:
app.resources.add_path("assets/")
Or, if you're using the default app:
bottle.default_app().resources.add_path("assets/")
Now JSONSchemaPlugin will validate requests against your schemas without any further configuration. You can make it work with any project layout by overriding the schema naming strategy as explained above, or you can skip the resource manager altogether by overriding the schema lookup function.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file bottle-jsonschema-0.0.1.tar.gz
.
File metadata
- Download URL: bottle-jsonschema-0.0.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0452abd1ceefb8b2327eee297163a9b8b3f0faa5547f2991e7acc079a421c9cb |
|
MD5 | be823f667424fbeef6f938c8898680c2 |
|
BLAKE2b-256 | 60ced07239a9b8cfa761de09672efda3edf6bd85086ec970d112e5a5d0d25ded |
File details
Details for the file bottle_jsonschema-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: bottle_jsonschema-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 721ef9029501f9e24c1f02630bc8c77e7a023867d9ef5fee8ac0287a008b37b3 |
|
MD5 | a4fb2cd71d1418d9430cb141ddc07aa5 |
|
BLAKE2b-256 | 2db1d53527c06708c0a82c60f72d3c0a6d15f5943b24b174074418b8b7d45b0e |