A lightweight collection of JSON helpers for Django.
Project description
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
File details
Details for the file django-argonauts-1.0.1.tar.gz
.
File metadata
- Download URL: django-argonauts-1.0.1.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f41f57a6140f8b935ad311394a50ed3a62201ce23a9bf50ff384b4d891cd5a1a |
|
MD5 | e418cce841cd28f929c6c9055f0bb7ea |
|
BLAKE2b-256 | 070e462a67552860c31bd8faa3c8ddac52d79a7b61b5850a78d16c38d99e5a06 |