forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackend.py
More file actions
45 lines (31 loc) · 1.18 KB
/
backend.py
File metadata and controls
45 lines (31 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# permissions imports
import permissions.utils
class ObjectPermissionsBackend(object):
"""Django backend for object permissions. Needs Django 1.2.
Use it together with the default ModelBackend like so::
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
'permissions.backend.ObjectPermissionsBackend',
)
Then you can use it like:
user.has_perm("view", your_object)
"""
supports_object_permissions = True
supports_anonymous_user = True
def authenticate(self, username, password):
return None
def has_perm(self, user_obj, perm, obj=None):
"""Checks whether the passed user has passed permission for passed
object (obj).
This should be the primary method to check wether a user has a certain
permission.
Parameters
==========
perm
The permission's codename which should be checked.
user_obj
The user for which the permission should be checked.
obj
The object for which the permission should be checked.
"""
return permissions.utils.has_permission(obj, user_obj, perm)