source: main/waeup.kofa/trunk/src/waeup/kofa/permissions.txt @ 10232

Last change on this file since 10232 was 10226, checked in by Henrik Bettermann, 12 years ago

Add local and global ApplicationsManager? role. Assign role dynamically.

File size: 3.0 KB
Line 
1Kofa permissions and roles
2**************************
3
4Permissions and roles used in a Kofa portal.
5
6.. :doctest:
7.. :layer: waeup.kofa.testing.KofaUnitTestLayer
8
9Convenience functions
10=====================
11
12:mod:`waeup.kofa` offers some convenience functions to handle security
13roles.
14
15:func:`get_all_roles`
16---------------------
17
18Gives us all roles defined in Kofa. We get tuples of
19kind
20
21  ``(<ROLE-NAME>, <ROLE>)``
22
23where ``<ROLE-NAME>`` is the name under which a role was registered
24with the ZCA (a string) and ``<ROLE>`` is the real role object.
25
26    >>> from waeup.kofa.permissions import get_all_roles
27    >>> get_all_roles()
28    <generator object...at 0x...>
29
30    >>> sorted(list(get_all_roles()))
31    [(u'waeup.ACManager', <waeup.kofa.permissions.ACManager object at 0x...]
32
33:func:`get_waeup_roles`
34-----------------------
35
36Gives us all roles, except the Kofa specific roles. We can get a list
37with or without local roles:
38
39    >>> from waeup.kofa.permissions import get_waeup_roles
40    >>> len(list(get_waeup_roles()))
41    21
42
43    >>> len(list(get_waeup_roles(also_local=True)))
44    38
45
46
47:func:`get_waeup_role_names`
48----------------------------
49
50We can get all role names defined in Kofa (except 'local'
51roles that are meant not to be assigned globally):
52
53    >>> from waeup.kofa.permissions import get_waeup_role_names
54    >>> list(get_waeup_role_names())
55    [u'waeup.ACManager',
56     u'waeup.AcademicsManager',
57     u'waeup.AcademicsOfficer',
58     u'waeup.AccommodationOfficer',
59     u'waeup.Applicant',
60     u'waeup.ApplicationsManager',
61     u'waeup.ApplicationsOfficer',
62     u'waeup.CCOfficer',
63     u'waeup.DataCenterManager',
64     u'waeup.ExportManager',
65     u'waeup.ImportManager',
66     u'waeup.PortalManager',
67     u'waeup.Student',
68     u'waeup.StudentImpersonator',
69     u'waeup.StudentsClearanceOfficer',
70     u'waeup.StudentsCourseAdviser',
71     u'waeup.StudentsManager',
72     u'waeup.StudentsOfficer',
73     u'waeup.UsersManager',
74     u'waeup.WorkflowManager',
75     u'waeup.xmlrpcusers1']
76
77:func:`get_users_with_local_roles`
78----------------------------------
79
80We can get all users and their roles for a certain context
81object. This even works for objects that cannot have local roles as
82they are not stored in the ZODB:
83
84    >>> from waeup.kofa.permissions import get_users_with_local_roles
85    >>> mycontext = object()
86    >>> people_and_roles = get_users_with_local_roles(mycontext)
87    >>> people_and_roles
88    <generator object...at 0x...>
89
90In this case, the result is empty:
91
92    >>> people_and_roles = list(people_and_roles)
93    >>> people_and_roles
94    []
95
96:func:`get_users_with_role`
97---------------------------
98
99We can get all users with a specific role for a certain context
100object:
101
102    >>> from waeup.kofa.permissions import get_users_with_role
103    >>> mycontext = object()
104    >>> people = get_users_with_role('waeup.portalManager', mycontext)
105    >>> people
106    <generator object...at 0x...>
107
108In this case, the result is empty:
109
110    >>> people = list(people)
111    >>> people
112    []
Note: See TracBrowser for help on using the repository browser.