1 | Permissions and Roles |
---|
2 | ********************* |
---|
3 | |
---|
4 | Permissions and roles used in a Kofa portal. |
---|
5 | |
---|
6 | .. :doctest: |
---|
7 | .. :layer: waeup.kofa.testing.KofaUnitTestLayer |
---|
8 | |
---|
9 | Convenience Functions |
---|
10 | ===================== |
---|
11 | |
---|
12 | :mod:`waeup.kofa` offers some convenience functions to handle security |
---|
13 | roles. |
---|
14 | |
---|
15 | :func:`get_all_roles` |
---|
16 | --------------------- |
---|
17 | |
---|
18 | Gives us all roles defined in Kofa. We get tuples of |
---|
19 | kind |
---|
20 | |
---|
21 | ``(<ROLE-NAME>, <ROLE>)`` |
---|
22 | |
---|
23 | where ``<ROLE-NAME>`` is the name under which a role was registered |
---|
24 | with 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 | |
---|
36 | Gives us all roles, except the Kofa specific roles. We can get a list |
---|
37 | with or without local roles: |
---|
38 | |
---|
39 | >>> from waeup.kofa.permissions import get_waeup_roles |
---|
40 | >>> len(list(get_waeup_roles())) |
---|
41 | 30 |
---|
42 | |
---|
43 | >>> len(list(get_waeup_roles(also_local=True))) |
---|
44 | 55 |
---|
45 | |
---|
46 | |
---|
47 | :func:`get_waeup_role_names` |
---|
48 | ---------------------------- |
---|
49 | |
---|
50 | We can get all role names defined in Kofa (except 'local' |
---|
51 | roles 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.AccommodationViewer', |
---|
60 | u'waeup.Applicant', |
---|
61 | u'waeup.ApplicationsManager', |
---|
62 | u'waeup.ApplicationsOfficer', |
---|
63 | u'waeup.BursaryOfficer', |
---|
64 | u'waeup.DataCenterManager', |
---|
65 | u'waeup.DocumentsManager', |
---|
66 | u'waeup.DocumentsOfficer', |
---|
67 | u'waeup.ExportManager', |
---|
68 | u'waeup.FingerprintDevice', |
---|
69 | u'waeup.ImportManager', |
---|
70 | u'waeup.PortalManager', |
---|
71 | u'waeup.ReportsManager', |
---|
72 | u'waeup.ReportsOfficer', |
---|
73 | u'waeup.Student', |
---|
74 | u'waeup.StudentImpersonator', |
---|
75 | u'waeup.StudentsClearanceOfficer', |
---|
76 | u'waeup.StudentsCourseAdviser', |
---|
77 | u'waeup.StudentsCreator', |
---|
78 | u'waeup.StudentsManager', |
---|
79 | u'waeup.StudentsOfficer', |
---|
80 | u'waeup.TranscriptOfficer', |
---|
81 | u'waeup.TranscriptSignee', |
---|
82 | u'waeup.UsersManager', |
---|
83 | u'waeup.WorkflowManager', |
---|
84 | u'waeup.xmlrpcusers1'] |
---|
85 | |
---|
86 | :func:`get_users_with_local_roles` |
---|
87 | ---------------------------------- |
---|
88 | |
---|
89 | We can get all users and their roles for a certain context |
---|
90 | object. This even works for objects that cannot have local roles as |
---|
91 | they are not stored in the ZODB: |
---|
92 | |
---|
93 | >>> from waeup.kofa.permissions import get_users_with_local_roles |
---|
94 | >>> mycontext = object() |
---|
95 | >>> people_and_roles = get_users_with_local_roles(mycontext) |
---|
96 | >>> people_and_roles |
---|
97 | <generator object...at 0x...> |
---|
98 | |
---|
99 | In this case, the result is empty: |
---|
100 | |
---|
101 | >>> people_and_roles = list(people_and_roles) |
---|
102 | >>> people_and_roles |
---|
103 | [] |
---|
104 | |
---|
105 | :func:`get_users_with_role` |
---|
106 | --------------------------- |
---|
107 | |
---|
108 | We can get all users with a specific role for a certain context |
---|
109 | object: |
---|
110 | |
---|
111 | >>> from waeup.kofa.permissions import get_users_with_role |
---|
112 | >>> mycontext = object() |
---|
113 | >>> people = get_users_with_role('waeup.portalManager', mycontext) |
---|
114 | >>> people |
---|
115 | <generator object...at 0x...> |
---|
116 | |
---|
117 | In this case, the result is empty: |
---|
118 | |
---|
119 | >>> people = list(people) |
---|
120 | >>> people |
---|
121 | [] |
---|