In a previous post, I wrote about a way to keep track of user permissions on a model instance. For example, I suggested that each model have a permissions subclass that could be instantiated with a user instance passed as a constructor argument. Methods on that permissions class could then be called to determine if that user has permission to perform various actions.
I also suggested that the threadlocals module could then be used to pass in the user instance to the permissions object in the Django template. However, from various readings, I get the impression that threadlocals may not be the best thing for passing arguments in a template function. Therefore, I decided to use a more traditional route of creating a template tag to do something similar.
I created a template tag that lets you surround a block of HTML code to hide or show the contents based on the return value of the permission function. The tag below basically says, "if the logged in user has 'can_edit_group' permission on the given 'group' object instance, then display the Edit link".
Reference the original post for details.
In the Django template
Here is the templatetag definition that fits the example above.
In templatetags/permissions_tags.py
This tag currently works like an 'if' template tag and shows/hides anything wrapped between the permission and endpermission tags. A future goal may be to make this work like an if/else tag so I can specify an else condition.
I also suggested that the threadlocals module could then be used to pass in the user instance to the permissions object in the Django template. However, from various readings, I get the impression that threadlocals may not be the best thing for passing arguments in a template function. Therefore, I decided to use a more traditional route of creating a template tag to do something similar.
I created a template tag that lets you surround a block of HTML code to hide or show the contents based on the return value of the permission function. The tag below basically says, "if the logged in user has 'can_edit_group' permission on the given 'group' object instance, then display the Edit link".
Reference the original post for details.
In the Django template
{% load permission_tags %} {% permission request.user can_edit_group on group %} <a href="">Edit</a> {% endpermission %}
Here is the templatetag definition that fits the example above.
In templatetags/permissions_tags.py
from django import template register = template.Library() def permission(parser, token): try: # get the arguments passed to the template tag; # first argument is the tag name tag_name, username, permission, onkeyword, object = token.split_contents() except ValueError: raise template.TemplateSyntaxError("%r tag requires exactly 4 arguments" % token.contents.split()[0]) # look for the 'endpermission' terminator tag nodelist = parser.parse(('endpermission',)) parser.delete_first_token() return PermissionNode(nodelist, username, permission, object) class PermissionNode(template.Node): def __init__(self, nodelist, user, permission, object): self.nodelist = nodelist # evaluate the user instance as a variable and store self.user = template.Variable(user) # store the permission string self.permission = permission # evaluate the object instance as a variable and store self.object = template.Variable(object) def render(self, context): user_inst = self.user.resolve(context) object_inst = self.object.resolve(context) # create a new permissions object by calling a permissions # factory method of the model class permissions_obj = object_inst.permissions(user_inst) content = self.nodelist.render(context) if hasattr(permissions_obj, self.permission): # check to see if the permissions object has the permissions method # provided in the template tag perm_func = getattr(permissions_obj, self.permission) # execute that permissions method if perm_func(): return content return "" register.tag('permission', permission)
This tag currently works like an 'if' template tag and shows/hides anything wrapped between the permission and endpermission tags. A future goal may be to make this work like an if/else tag so I can specify an else condition.
I think it should be called
ReplyDelete{% permission request.user "can_edit_group" on group %}
and then one can pass a variable with a permission name...
I like that idea. Would make it much more flexible. Thank you!
ReplyDelete