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

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

ApplicantAccount? can't reuse checkPassword.

Add new role and permission.

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