# -*- encoding: utf8 -*-
from django import template
from django.contrib.auth.models import User
register = template.Library()
class HasRowPermNode(template.Node):
def __init__(self, user, labsite, perm, varname):
self.user = template.Variable(user)
self.labsite = template.Variable(labsite)
self.perm = perm
self.varname = varname
def __repr__(self):
return '<HasRowPerm node>'
def render(self, context):
user = self.user.resolve(context)
labsite = self.labsite.resolve(context)
context[self.varname] = user.has_row_perm(labsite, self.perm)
return ''
def _check_quoted(string):
return string[0] == '"' and string[-1] == '"'
@register.tag('has_row_perm')
def do_has_row_perm(parser, token):
"""
A has-row-perm boolean indicator tag for django templates.
Example usage:
{% has_row_perm user object "staff" as some_var %}
{% if some_var %}
...
{% endif %}
"""
try:
tokens = token.split_contents()
tag_name = tokens[0]
args = tokens[1:]
except ValueError, IndexError:
raise template.TemplateSyntaxError('%r tag requires arguments.' % tag_name)
if _check_quoted(args[0]) or _check_quoted(args[1]) or not _check_quoted(args[2]) \
or args[3] != 'as' or _check_quoted(args[4]):
raise template.TemplateSyntaxError('%r tag had invalid argument.' % tag_name)
return HasRowPermNode(args[0], args[1], args[2][1:-1], args[4])
Comments
I've been working on a Django app for per-object-permissions, if you are interested: django-authority
It has the same features of as django-granular-permissions but doesn't monkey patch the User and Group models and allows you to declaratively define permission checks.
#