Skip to main content

Standardize your API error responses.

Project description

DRF Standardized Errors

Standardize your DRF API error responses.

Read the Docs GitHub Workflow Status codecov PyPI PyPI - License Code style: black

By default, the package will convert API error responses (4xx) to the following standardized format:

{
  "type": "validation_error",
  "errors": [
    {
      "detail": "This field is required.",
      "attr": "name"
    },
    {
      "detail": "Ensure this value has at most 100 characters.",
      "attr": "title",
      "b_code": 10000
    }
  ]
}
{
  "type": "client_error",
  "errors": [
    {
      "detail": "Incorrect authentication credentials.",
      "attr": null,
      "b_code": 11111
    }
  ]
}

Features

  • Highly customizable: gives you flexibility to define your own standardized error responses and override specific aspects the exception handling process without having to rewrite everything.
  • Supports nested serializers and ListSerializer errors
  • Plays nicely with error monitoring tools (like Sentry, ...)

Requirements

  • python >= 3.8
  • Django >= 3.2
  • DRF >= 3.12

Quickstart

Install with pip

pip install drf-error-handler

Add drf-error-handler to your installed apps

INSTALLED_APPS = [
    # other apps
    "drf_error_handler",
]

Register the exception handler

REST_FRAMEWORK = {
    # other settings
    "EXCEPTION_HANDLER": "drf_error_handler.handler.exception_handler"
}

Then you may override something a few settings for package

DRF_ERROR_HANDLER = {
    "EXCEPTION_RESPONSE_BUSINESS_ATTRIBUTE": "b_code"
}

This settings define, which attribute will be viewed in response body for business code. But after that, all exception classes must containt an attribute with name, which you override in EXCEPTION_RESPONSE_BUSINESS_ATTRIBUTE settings ("b_code" by default).

For standart DRF Exceptions defined business code in settings.

DRF_ERROR_HANDLER = {
    "VALIDATION_ERROR_BUSINESS_STATUS_CODE": 1001,
    "PARSE_ERROR_BUSINESS_STATUS_CODE": 1002,
    "AUTHENTICATION_FAILED_BUSINESS_STATUS_CODE": 1003,
    "NOT_AUTHENTICATION_BUSINESS_STATUS_CODE": 1004,
    "PERMISSION_DENIED_BUSINESS_STATUS_CODE": 1005,
    "NOT_FOUND_BUSINESS_STATUS_CODE": 1006,
    "METHOD_NOT_ALLOWED_BUSINESS_STATUS_CODE": 1007,
    "NOT_ACCEPTABLE_BUSINESS_STATUS_CODE": 1008,
    "UNSUPPORTED_MEDIA_TYPE_BUSINESS_STATUS_CODE": 1009,
    "THROTTLED_BUSINESS_STATUS_CODE": 1010
}

This codes will view for standart DRF and Django exceptions after handle by ErrorHandler in response body.

For create custom exception class, you should do that:

  1. Create exception class with inherit from rest_framework.exceptions.APIException
from rest_framework.exceptions import APIException

class CustomException(APIException):
    status_code = status.HTTP_400_BAD_REQUEST
    default_detail = 'You can\'t place an order at this time.'
    b_code = 1011

You must define b_code (or overriding attribute) in exception class.

  1. Raise custom exception.
def view(request):
    ...
    raise CustomException
  1. And Error Handler process this exception and return valid response.
{
  "type": "client_error",
  "errors": [
    {
      "detail": "You can't place an order at this time.",
      "attr": null,
      "b_code": 1011
    }
  ]
}

Notes

  • This package is a DRF exception handler, so it standardizes errors that reach a DRF API view. That means it cannot handle errors that happen at the middleware level for example. To handle those as well, you can customize the necessary django error views. You can find more about that in this issue.

Integration with DRF spectacular

If you plan to use drf-spectacular to generate an OpenAPI 3 schema, install with pip install drf-error-handler[openapi]. After that, check the doc page for configuring the integration.

Links

License

This project is MIT licensed.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drf_error_handler-0.14.3.tar.gz (23.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

drf_error_handler-0.14.3-py3-none-any.whl (26.7 kB view details)

Uploaded Python 3

File details

Details for the file drf_error_handler-0.14.3.tar.gz.

File metadata

  • Download URL: drf_error_handler-0.14.3.tar.gz
  • Upload date:
  • Size: 23.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for drf_error_handler-0.14.3.tar.gz
Algorithm Hash digest
SHA256 fd7c3b85791c04113f0d575ebb3ab35fd9eec0ee27038399503d046f1fcc423f
MD5 1950ec9a9d4a5232f559d008fa0bf482
BLAKE2b-256 1da9391f96b460d2a5de12f731a91ca9a84baa0977b55593c249df72c67ce689

See more details on using hashes here.

File details

Details for the file drf_error_handler-0.14.3-py3-none-any.whl.

File metadata

File hashes

Hashes for drf_error_handler-0.14.3-py3-none-any.whl
Algorithm Hash digest
SHA256 941185c9201e95570282bdc51eb8f781a0f43f9be41a700d2b93bbbd41039c3e
MD5 d4b7b387d491fea76d6ab93fdbec56bd
BLAKE2b-256 13081cc90d9460474143e3be7c659c5e0b28eced69997b50ed97d75b76550f33

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page