I've found 3 row-level permission solutions for Django 1.2+
Could someone tell if there is any recommended more than the others, what are their main differences, etc.?
I've found 3 row-level permission solutions for Django 1.2+
Could someone tell if there is any recommended more than the others, what are their main differences, etc.?
As for Aug '13, django-object-permissions has been superseded by django-permission. The 3 projects are on active development.
Personally, I prefer authority or permission, which uses methods for checking permissions (runtime), rather than django-guardian which uses database to keep the permissions (attached upon object creation, f.e.).
-- EDIT --
Examples from the docs.
django-guardian
You assign the permission and keep it in database.
django-authority
Declaration:
Usage:
It also wraps standard django permissions, but you can see the flexibility in the above custom permission which -AFAIK- you cannot do in guardian.
Common Usecase
A Student can belong to Classroom(s).
guardian:
'attend_classroom'
to Student over Classroom object.'attend_classroom'
permission to Student over Classroom object.'attend_classroom'
permission.authority:
ClassroomPermission.can_attend_classroom()
, which will query if Student belongs to Classroom.ClassroomPermission.can_attend_classroom()
Authority keeps the checking logic in a separate file. Guardian needs attach/detaching permissions though the rest of the code.
I'll start this by saying we use none of these for object level permission - we use our own custom method and I really wish we hadn't. If you can avoid object level permissions at all, do so, they are a pain to organise.
This is how I evaluate the 3 apps you've mentioned.
Active Development:
API
The above are in order by the way.
I'd recommend guardian purely on API alone, but the fact that it is still being developed where the others aren't usually means a big win.