2012-09-20 16:06:27 +04:00
|
|
|
"""
|
|
|
|
Handled exceptions raised by REST framework.
|
|
|
|
|
|
|
|
In addition Django's built in 403 and 404 exceptions are handled.
|
|
|
|
(`django.http.Http404` and `django.core.exceptions.PermissionDenied`)
|
|
|
|
"""
|
2013-02-05 00:55:35 +04:00
|
|
|
from __future__ import unicode_literals
|
2015-06-18 16:38:29 +03:00
|
|
|
|
|
|
|
import math
|
|
|
|
|
2018-04-03 10:16:36 +03:00
|
|
|
from django.http import JsonResponse
|
2014-12-17 16:39:35 +03:00
|
|
|
from django.utils import six
|
2014-12-04 05:11:42 +03:00
|
|
|
from django.utils.encoding import force_text
|
2015-06-25 23:55:51 +03:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from django.utils.translation import ungettext
|
2015-06-18 16:38:29 +03:00
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
from rest_framework import status
|
2018-01-30 10:45:09 +03:00
|
|
|
from rest_framework.compat import unicode_to_repr
|
2015-07-23 16:31:25 +03:00
|
|
|
from rest_framework.utils.serializer_helpers import ReturnDict, ReturnList
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
2016-10-11 12:25:21 +03:00
|
|
|
def _get_error_details(data, default_code=None):
|
2014-11-20 15:02:58 +03:00
|
|
|
"""
|
|
|
|
Descend into a nested data structure, forcing any
|
2016-10-11 12:25:21 +03:00
|
|
|
lazy translation strings or strings into `ErrorDetail`.
|
2014-11-20 15:02:58 +03:00
|
|
|
"""
|
|
|
|
if isinstance(data, list):
|
2015-07-23 16:31:25 +03:00
|
|
|
ret = [
|
2016-10-11 12:25:21 +03:00
|
|
|
_get_error_details(item, default_code) for item in data
|
2014-11-20 15:02:58 +03:00
|
|
|
]
|
2015-07-23 16:31:25 +03:00
|
|
|
if isinstance(data, ReturnList):
|
|
|
|
return ReturnList(ret, serializer=data.serializer)
|
2016-02-07 18:58:19 +03:00
|
|
|
return ret
|
2014-11-20 15:02:58 +03:00
|
|
|
elif isinstance(data, dict):
|
2015-10-17 12:00:11 +03:00
|
|
|
ret = {
|
2016-10-11 12:25:21 +03:00
|
|
|
key: _get_error_details(value, default_code)
|
2014-11-20 15:02:58 +03:00
|
|
|
for key, value in data.items()
|
2015-10-17 12:00:11 +03:00
|
|
|
}
|
2015-07-23 16:31:25 +03:00
|
|
|
if isinstance(data, ReturnDict):
|
|
|
|
return ReturnDict(ret, serializer=data.serializer)
|
2016-02-07 18:58:19 +03:00
|
|
|
return ret
|
2016-10-11 12:25:21 +03:00
|
|
|
|
|
|
|
text = force_text(data)
|
|
|
|
code = getattr(data, 'code', default_code)
|
|
|
|
return ErrorDetail(text, code)
|
|
|
|
|
|
|
|
|
|
|
|
def _get_codes(detail):
|
|
|
|
if isinstance(detail, list):
|
|
|
|
return [_get_codes(item) for item in detail]
|
|
|
|
elif isinstance(detail, dict):
|
|
|
|
return {key: _get_codes(value) for key, value in detail.items()}
|
|
|
|
return detail.code
|
|
|
|
|
|
|
|
|
|
|
|
def _get_full_details(detail):
|
|
|
|
if isinstance(detail, list):
|
|
|
|
return [_get_full_details(item) for item in detail]
|
|
|
|
elif isinstance(detail, dict):
|
|
|
|
return {key: _get_full_details(value) for key, value in detail.items()}
|
|
|
|
return {
|
|
|
|
'message': detail,
|
|
|
|
'code': detail.code
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class ErrorDetail(six.text_type):
|
|
|
|
"""
|
2017-08-31 13:19:03 +03:00
|
|
|
A string-like object that can additionally have a code.
|
2016-10-11 12:25:21 +03:00
|
|
|
"""
|
|
|
|
code = None
|
|
|
|
|
|
|
|
def __new__(cls, string, code=None):
|
|
|
|
self = super(ErrorDetail, cls).__new__(cls, string)
|
|
|
|
self.code = code
|
|
|
|
return self
|
2014-11-20 15:02:58 +03:00
|
|
|
|
2018-01-30 10:45:09 +03:00
|
|
|
def __eq__(self, other):
|
|
|
|
r = super(ErrorDetail, self).__eq__(other)
|
|
|
|
try:
|
|
|
|
return r and self.code == other.code
|
|
|
|
except AttributeError:
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
return not self.__eq__(other)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return unicode_to_repr('ErrorDetail(string=%r, code=%r)' % (
|
|
|
|
six.text_type(self),
|
|
|
|
self.code,
|
|
|
|
))
|
|
|
|
|
2018-04-20 16:32:37 +03:00
|
|
|
def __hash__(self):
|
|
|
|
return hash(str(self))
|
|
|
|
|
2014-11-20 15:02:58 +03:00
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
class APIException(Exception):
|
|
|
|
"""
|
|
|
|
Base class for REST framework exceptions.
|
2014-02-10 22:54:56 +04:00
|
|
|
Subclasses should provide `.status_code` and `.default_detail` properties.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2013-10-24 18:40:43 +04:00
|
|
|
status_code = status.HTTP_500_INTERNAL_SERVER_ERROR
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('A server error occurred.')
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'error'
|
2013-10-24 18:40:43 +04:00
|
|
|
|
2016-10-11 12:25:21 +03:00
|
|
|
def __init__(self, detail=None, code=None):
|
|
|
|
if detail is None:
|
|
|
|
detail = self.default_detail
|
|
|
|
if code is None:
|
|
|
|
code = self.default_code
|
|
|
|
|
|
|
|
self.detail = _get_error_details(detail, code)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-04-04 18:22:02 +04:00
|
|
|
def __str__(self):
|
2017-10-04 10:00:21 +03:00
|
|
|
return six.text_type(self.detail)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2016-10-11 12:25:21 +03:00
|
|
|
def get_codes(self):
|
|
|
|
"""
|
|
|
|
Return only the code part of the error details.
|
|
|
|
|
|
|
|
Eg. {"name": ["required"]}
|
|
|
|
"""
|
|
|
|
return _get_codes(self.detail)
|
|
|
|
|
|
|
|
def get_full_details(self):
|
|
|
|
"""
|
|
|
|
Return both the message & code parts of the error details.
|
|
|
|
|
|
|
|
Eg. {"name": [{"message": "This field is required.", "code": "required"}]}
|
|
|
|
"""
|
|
|
|
return _get_full_details(self.detail)
|
|
|
|
|
2014-08-19 16:28:07 +04:00
|
|
|
|
2014-10-17 16:23:14 +04:00
|
|
|
# The recommended style for using `ValidationError` is to keep it namespaced
|
|
|
|
# under `serializers`, in order to minimize potential confusion with Django's
|
|
|
|
# built in `ValidationError`. For example:
|
|
|
|
#
|
|
|
|
# from rest_framework import serializers
|
2015-01-07 21:22:30 +03:00
|
|
|
# raise serializers.ValidationError('Value was invalid')
|
2014-10-17 16:23:14 +04:00
|
|
|
|
|
|
|
class ValidationError(APIException):
|
2014-10-10 17:16:09 +04:00
|
|
|
status_code = status.HTTP_400_BAD_REQUEST
|
2016-10-11 12:25:21 +03:00
|
|
|
default_detail = _('Invalid input.')
|
|
|
|
default_code = 'invalid'
|
|
|
|
|
2017-09-26 11:24:30 +03:00
|
|
|
def __init__(self, detail=None, code=None):
|
2016-10-11 12:25:21 +03:00
|
|
|
if detail is None:
|
|
|
|
detail = self.default_detail
|
|
|
|
if code is None:
|
|
|
|
code = self.default_code
|
2014-10-10 17:16:09 +04:00
|
|
|
|
2017-07-21 00:42:51 +03:00
|
|
|
# For validation failures, we may collect many errors together,
|
|
|
|
# so the details should always be coerced to a list if not already.
|
2014-10-10 17:16:09 +04:00
|
|
|
if not isinstance(detail, dict) and not isinstance(detail, list):
|
|
|
|
detail = [detail]
|
2016-10-11 12:25:21 +03:00
|
|
|
|
|
|
|
self.detail = _get_error_details(detail, code)
|
2014-10-10 17:16:09 +04:00
|
|
|
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
class ParseError(APIException):
|
|
|
|
status_code = status.HTTP_400_BAD_REQUEST
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('Malformed request.')
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'parse_error'
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2012-10-17 17:59:37 +04:00
|
|
|
|
2012-10-17 18:23:36 +04:00
|
|
|
class AuthenticationFailed(APIException):
|
2012-10-17 18:09:20 +04:00
|
|
|
status_code = status.HTTP_401_UNAUTHORIZED
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('Incorrect authentication credentials.')
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'authentication_failed'
|
2012-10-17 18:23:36 +04:00
|
|
|
|
|
|
|
|
|
|
|
class NotAuthenticated(APIException):
|
|
|
|
status_code = status.HTTP_401_UNAUTHORIZED
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('Authentication credentials were not provided.')
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'not_authenticated'
|
2012-10-17 17:59:37 +04:00
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
class PermissionDenied(APIException):
|
|
|
|
status_code = status.HTTP_403_FORBIDDEN
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('You do not have permission to perform this action.')
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'permission_denied'
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
2014-12-17 15:41:46 +03:00
|
|
|
class NotFound(APIException):
|
|
|
|
status_code = status.HTTP_404_NOT_FOUND
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('Not found.')
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'not_found'
|
2014-12-17 15:41:46 +03:00
|
|
|
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
class MethodNotAllowed(APIException):
|
|
|
|
status_code = status.HTTP_405_METHOD_NOT_ALLOWED
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('Method "{method}" not allowed.')
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'method_not_allowed'
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2016-10-11 12:25:21 +03:00
|
|
|
def __init__(self, method, detail=None, code=None):
|
|
|
|
if detail is None:
|
|
|
|
detail = force_text(self.default_detail).format(method=method)
|
|
|
|
super(MethodNotAllowed, self).__init__(detail, code)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
|
|
|
class NotAcceptable(APIException):
|
|
|
|
status_code = status.HTTP_406_NOT_ACCEPTABLE
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('Could not satisfy the request Accept header.')
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'not_acceptable'
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2016-10-11 12:25:21 +03:00
|
|
|
def __init__(self, detail=None, code=None, available_renderers=None):
|
2012-09-20 16:06:27 +04:00
|
|
|
self.available_renderers = available_renderers
|
2016-10-11 12:25:21 +03:00
|
|
|
super(NotAcceptable, self).__init__(detail, code)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
|
|
|
class UnsupportedMediaType(APIException):
|
|
|
|
status_code = status.HTTP_415_UNSUPPORTED_MEDIA_TYPE
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('Unsupported media type "{media_type}" in request.')
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'unsupported_media_type'
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2016-10-11 12:25:21 +03:00
|
|
|
def __init__(self, media_type, detail=None, code=None):
|
|
|
|
if detail is None:
|
|
|
|
detail = force_text(self.default_detail).format(media_type=media_type)
|
|
|
|
super(UnsupportedMediaType, self).__init__(detail, code)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
|
|
|
class Throttled(APIException):
|
|
|
|
status_code = status.HTTP_429_TOO_MANY_REQUESTS
|
2015-01-07 15:46:23 +03:00
|
|
|
default_detail = _('Request was throttled.')
|
|
|
|
extra_detail_singular = 'Expected available in {wait} second.'
|
|
|
|
extra_detail_plural = 'Expected available in {wait} seconds.'
|
2016-10-11 12:25:21 +03:00
|
|
|
default_code = 'throttled'
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2016-10-11 12:25:21 +03:00
|
|
|
def __init__(self, wait=None, detail=None, code=None):
|
2016-11-01 13:38:56 +03:00
|
|
|
if detail is None:
|
|
|
|
detail = force_text(self.default_detail)
|
|
|
|
if wait is not None:
|
|
|
|
wait = math.ceil(wait)
|
|
|
|
detail = ' '.join((
|
|
|
|
detail,
|
|
|
|
force_text(ungettext(self.extra_detail_singular.format(wait=wait),
|
|
|
|
self.extra_detail_plural.format(wait=wait),
|
|
|
|
wait))))
|
|
|
|
self.wait = wait
|
2016-10-11 12:25:21 +03:00
|
|
|
super(Throttled, self).__init__(detail, code)
|
2018-04-03 10:16:36 +03:00
|
|
|
|
|
|
|
|
|
|
|
def server_error(request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Generic 500 error handler.
|
|
|
|
"""
|
|
|
|
data = {
|
|
|
|
'error': 'Server Error (500)'
|
|
|
|
}
|
|
|
|
return JsonResponse(data, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
|
|
|
|
|
|
|
|
|
|
|
|
def bad_request(request, exception, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Generic 400 error handler.
|
|
|
|
"""
|
|
|
|
data = {
|
|
|
|
'error': 'Bad Request (400)'
|
|
|
|
}
|
|
|
|
return JsonResponse(data, status=status.HTTP_400_BAD_REQUEST)
|