2009-10-11 12:47:39 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
2010-01-29 11:20:24 +00:00
|
|
|
from django.http import HttpResponse, Http404
|
2010-01-22 23:06:33 +00:00
|
|
|
try:
|
|
|
|
import simplejson
|
|
|
|
except ImportError:
|
|
|
|
from django.utils import simplejson
|
2009-10-11 12:47:39 +00:00
|
|
|
from django.conf import settings
|
|
|
|
|
2010-01-26 13:55:01 +00:00
|
|
|
def render_to_json_response(dictionary, content_type="text/json", status=200):
|
2009-10-11 12:47:39 +00:00
|
|
|
indent=None
|
|
|
|
if settings.DEBUG:
|
|
|
|
content_type = "text/javascript"
|
|
|
|
indent = 2
|
2010-01-29 11:20:24 +00:00
|
|
|
if settings.JSON_DEBUG:
|
|
|
|
print simplejson.dumps(dictionary, indent=2)
|
2010-01-26 13:55:01 +00:00
|
|
|
if 'status' in dictionary and 'code' in dictionary['status']:
|
|
|
|
status = dictionary['status']['code']
|
2010-01-29 11:20:24 +00:00
|
|
|
return HttpResponse(simplejson.dumps(dictionary, indent=indent),
|
|
|
|
content_type=content_type, status=status)
|
2009-10-11 12:47:39 +00:00
|
|
|
|
2010-01-29 11:20:24 +00:00
|
|
|
def get_object_or_404_json(klass, *args, **kwargs):
|
|
|
|
from django.shortcuts import _get_queryset
|
|
|
|
queryset = _get_queryset(klass)
|
|
|
|
try:
|
|
|
|
return queryset.get(*args, **kwargs)
|
|
|
|
except queryset.model.DoesNotExist:
|
|
|
|
#FIXME: how to raise exception that will only output given result
|
|
|
|
results = simplejson.dumps({'status': {'code': 404,
|
|
|
|
'text': '%s not found' % queryset.model._meta.object_name}})
|
|
|
|
raise Http404(results)
|