Skip to main content

A lightweight collection of JSON helpers for Django.

Project description

Building Status

A lightweight collection of JSON helpers for Django. Includes a template filter for safely outputing JSON, views that encode and decode JSON, and a helper for writing simple REST views.

A special JSON encoder is used to serialize QuerySets and objects with to_json methods.

Filter

You can serialize an object in JSON using the |json filter. This is useful to generate safe javascript:

{% load argonauts %}
<script type="application/javascript">
  (function (document) {
      var object_list = {{ object_list|json }};
      var list = document.createElement("ul");
      for (var i in object_list) {
          if (object_list.hasOwnProperty(i)) {
              var item = document.createElement("li");
              item.appendChild(document.createTextNode(object_list[i]);
              list.appendChild(paragraph);
          }
      }
      document.body.appendChild(list);
  })(document);
</script>

|json is safe to use anywhere in XML or XHTML except in an attribute. It’s import to use this tag rather than dumping the output of json.dumps into HTML, because an attacker could output a closing tag and effect an XSS attack. For example, if we output json.dumps("</script><script>console.log('xss'); //") in template like this:

<script>
  var somedata = {{ somedata_as_json }};
</script>

We get:

<script>
  var somedata = "</script>
<script>
  console.log('xss'); //";
</script>

This allows the attacker to inject their own JavaScript. The |json tag prevents this by encoding the closing </script> tag with JSON’s unicode escapes.

Views

JsonResponseMixin

JsonResponseMixin implements render_to_response method that serialize an object into a JSON response. Thus it is compatible with generic Django views:

from django.views.generic.detail import BaseDetailView
from argonauts.views import JsonResponseMixin

class JsonDetailView(JsonResponseMixin, BaseDetailView):
    """
    Detail view returning object serialized in JSON
    """
    pass

JsonRequestMixin

JsonRequestMixin gives access to the request data through data() method.

from django.views.generic.base import View
from argonauts.views import JsonRequestMixin:
from argonauts.http import JsonResponse

class JsonView(JsonRequestMixin, View):
    def dispatch(self, *args, **kwargs):
        return JsonResponse(self.data())

RestView

RestView is an abstract class. Subclasses should implement auth() for handlering authentication. And at least one HTTP method.

RestView implements OPTIONS http method, and inherits from JsonRequestMixin.

from django.core.exceptions import PermissionDenied
from argonauts.views import RestView
from argonauts.http import JsonResponse
from .utils import get_action

class CrazyRestView(RestView):

    def auth(self, *args, **kwargs):
        try:
            if self.data()['username'] == 'admin':
                return
        except KeyError:
            pass
        raise PermissionDenied

    def post(self, *args, **kwargs):
        action = kwargs.pop('action')
        action_func = get_action(action)
        return JsonResponse(action_func(self.data()))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-argonauts-1.0.1.tar.gz (7.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page