django-rest-framework/djangorestframework/exceptions.py

63 lines
1.9 KiB
Python
Raw Normal View History

2012-08-27 02:06:52 +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`)
"""
2012-08-25 16:43:28 +04:00
from djangorestframework import status
2012-09-01 23:26:27 +04:00
class APIException(Exception):
"""
Base class for REST framework exceptions.
Subclasses should provide `.status_code` and `.detail` properties.
"""
pass
class ParseError(APIException):
2012-08-25 16:43:28 +04:00
status_code = status.HTTP_400_BAD_REQUEST
2012-08-27 02:06:52 +04:00
default_detail = 'Malformed request.'
2012-08-25 16:43:28 +04:00
def __init__(self, detail=None):
self.detail = detail or self.default_detail
2012-09-01 23:26:27 +04:00
class PermissionDenied(APIException):
2012-08-25 16:43:28 +04:00
status_code = status.HTTP_403_FORBIDDEN
2012-08-27 02:06:52 +04:00
default_detail = 'You do not have permission to access this resource.'
2012-08-25 16:43:28 +04:00
def __init__(self, detail=None):
self.detail = detail or self.default_detail
2012-09-01 23:26:27 +04:00
class MethodNotAllowed(APIException):
status_code = status.HTTP_405_METHOD_NOT_ALLOWED
2012-08-27 02:06:52 +04:00
default_detail = "Method '%s' not allowed."
2012-08-27 02:06:52 +04:00
def __init__(self, method, detail=None):
self.detail = (detail or self.default_detail) % method
2012-09-01 23:26:27 +04:00
class UnsupportedMediaType(APIException):
status_code = status.HTTP_415_UNSUPPORTED_MEDIA_TYPE
2012-08-27 02:06:52 +04:00
default_detail = "Unsupported media type '%s' in request."
2012-08-27 00:55:13 +04:00
def __init__(self, media_type, detail=None):
self.detail = (detail or self.default_detail) % media_type
2012-08-27 00:55:13 +04:00
2012-08-27 02:06:52 +04:00
2012-09-01 23:26:27 +04:00
class Throttled(APIException):
2012-08-27 02:06:52 +04:00
status_code = status.HTTP_429_TOO_MANY_REQUESTS
2012-09-05 00:58:35 +04:00
default_detail = "Request was throttled."
extra_detail = "Expected available in %d second%s."
2012-08-27 02:06:52 +04:00
2012-09-05 00:58:35 +04:00
def __init__(self, wait=None, detail=None):
2012-08-27 02:06:52 +04:00
import math
2012-09-05 00:58:35 +04:00
self.wait = wait and math.ceil(wait) or None
if wait is not None:
format = detail or self.default_detail + self.extra_detail
self.detail = format % (self.wait, self.wait != 1 and 's' or '')
else:
self.detail = detail or self.default_detail