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):
|
2012-08-27 01:13:26 +04:00
|
|
|
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 01:13:26 +04:00
|
|
|
|
2012-08-27 02:06:52 +04:00
|
|
|
def __init__(self, method, detail=None):
|
2012-08-27 01:13:26 +04:00
|
|
|
self.detail = (detail or self.default_detail) % method
|
|
|
|
|
|
|
|
|
2012-09-01 23:26:27 +04:00
|
|
|
class UnsupportedMediaType(APIException):
|
2012-08-27 01:13:26 +04:00
|
|
|
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
|
|
|
|
2012-08-27 01:13:26 +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
|
|
|
|
default_detail = "Request was throttled. Expected available in %d seconds."
|
|
|
|
|
|
|
|
def __init__(self, wait, detail=None):
|
|
|
|
import math
|
|
|
|
self.detail = (detail or self.default_detail) % int(math.ceil(wait))
|