forked from joestump/django-ajax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexceptions.py
50 lines (39 loc) · 1.26 KB
/
exceptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from django.utils import simplejson as json
from django.utils.encoding import smart_str
from django.http import HttpResponse, HttpResponseNotFound, \
HttpResponseForbidden, HttpResponseNotAllowed, HttpResponseServerError, \
HttpResponseBadRequest
class AlreadyRegistered(Exception):
pass
class NotRegistered(Exception):
pass
class PrimaryKeyMissing(Exception):
pass
class AJAXError(Exception):
RESPONSES = {
400: HttpResponseBadRequest,
403: HttpResponseForbidden,
404: HttpResponseNotFound,
405: HttpResponseNotAllowed,
500: HttpResponseServerError,
}
def __init__(self, code, msg, **kwargs):
self.code = code
self.msg = msg
self.extra = kwargs # Any kwargs will be appended to the output.
def get_response(self):
try:
msg = smart_str(self.msg.decode())
except (AttributeError,):
msg = smart_str(self.msg)
error = {
'success': False,
'data': {
'code': self.code,
'message': msg
}
}
error.update(self.extra)
response = self.RESPONSES[self.code]()
response.content = json.dumps(error, separators=(',', ':'))
return response