2013-04-23 18:51:17 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2013-03-21 20:15:27 +01:00
|
|
|
from django.http import HttpResponse, HttpResponseNotAllowed
|
2013-06-18 23:55:55 +02:00
|
|
|
import ujson
|
2012-11-06 20:31:53 +01:00
|
|
|
|
2013-03-21 20:15:27 +01:00
|
|
|
class HttpResponseUnauthorized(HttpResponse):
|
|
|
|
status_code = 401
|
|
|
|
|
|
|
|
def __init__(self, realm):
|
|
|
|
HttpResponse.__init__(self)
|
2013-06-27 20:15:19 +02:00
|
|
|
self["WWW-Authenticate"] = 'Basic realm="%s"' % (realm,)
|
2013-03-21 20:15:27 +01:00
|
|
|
|
2013-07-30 23:20:16 +02:00
|
|
|
def json_unauthorized(message):
|
2013-12-04 19:42:57 +01:00
|
|
|
resp = HttpResponseUnauthorized("zulip")
|
2013-07-30 23:20:16 +02:00
|
|
|
resp.content = ujson.dumps({"result": "error",
|
2013-12-04 19:42:57 +01:00
|
|
|
"msg": message}) + "\n"
|
2013-07-30 23:20:16 +02:00
|
|
|
return resp
|
|
|
|
|
2013-03-21 20:15:27 +01:00
|
|
|
def json_method_not_allowed(methods):
|
|
|
|
resp = HttpResponseNotAllowed(methods)
|
2013-06-18 23:55:55 +02:00
|
|
|
resp.content = ujson.dumps({"result": "error",
|
2013-03-21 20:15:27 +01:00
|
|
|
"msg": "Method Not Allowed",
|
|
|
|
"allowed_methods": methods})
|
|
|
|
return resp
|
|
|
|
|
2012-11-06 20:31:53 +01:00
|
|
|
def json_response(res_type="success", msg="", data={}, status=200):
|
|
|
|
content = {"result": res_type, "msg": msg}
|
|
|
|
content.update(data)
|
2013-12-04 19:42:57 +01:00
|
|
|
return HttpResponse(content=ujson.dumps(content) + "\n",
|
2012-11-06 20:31:53 +01:00
|
|
|
mimetype='application/json', status=status)
|
|
|
|
|
|
|
|
def json_success(data={}):
|
|
|
|
return json_response(data=data)
|
|
|
|
|
|
|
|
def json_error(msg, data={}, status=400):
|
|
|
|
return json_response(res_type="error", msg=msg, data=data, status=status)
|
2013-12-13 21:52:20 +01:00
|
|
|
|
|
|
|
def json_unhandled_exception():
|
|
|
|
return json_response(res_type="error", msg="Internal server error", status=500)
|