source: main/waeup.ikoba/trunk/src/waeup/ikoba/permissions.txt @ 12795

Last change on this file since 12795 was 12764, checked in by Henrik Bettermann, 10 years ago

Configure permissions to view and manage payments.

File size: 2.8 KB
Line 
1Ikoba permissions and roles
2**************************
3
4Permissions and roles used in a Ikoba portal.
5
6.. :doctest:
7.. :layer: waeup.ikoba.testing.IkobaUnitTestLayer
8
9Convenience functions
10=====================
11
12:mod:`waeup.ikoba` offers some convenience functions to handle security
13roles.
14
15:func:`get_all_roles`
16---------------------
17
18Gives us all roles defined in Ikoba. 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.ikoba.permissions import get_all_roles
27    >>> get_all_roles()
28    <generator object...at 0x...>
29
30    >>> sorted(list(get_all_roles()))
31    [(u'waeup.Customer', <waeup.ikoba.customers.permissions.CustomerRole object at 0x...]
32
33:func:`get_waeup_roles`
34-----------------------
35
36Gives us all roles, except the Ikoba specific roles. We can get a list
37with or without local roles:
38
39    >>> from waeup.ikoba.permissions import get_waeup_roles
40    >>> len(list(get_waeup_roles()))
41    17
42
43    >>> len(list(get_waeup_roles(also_local=True)))
44    21
45
46
47:func:`get_waeup_role_names`
48----------------------------
49
50We can get all role names defined in Ikoba (except 'local'
51roles that are meant not to be assigned globally):
52
53    >>> from waeup.ikoba.permissions import get_waeup_role_names
54    >>> list(get_waeup_role_names())
55    [u'waeup.Customer',
56    u'waeup.CustomerImpersonator',
57    u'waeup.CustomersManager',
58    u'waeup.CustomersOfficer',
59    u'waeup.DataCenterManager',
60    u'waeup.DocumentsManager',
61    u'waeup.DocumentsOfficer',
62    u'waeup.ExportManager',
63    u'waeup.ImportManager',
64    u'waeup.PaymentsManager',
65    u'waeup.PaymentsOfficer',
66    u'waeup.PortalManager',
67    u'waeup.ProductsManager',
68    u'waeup.ProductsOfficer',
69    u'waeup.UsersManager',
70    u'waeup.WorkflowManager',
71    u'waeup.xmlrpcusers1']
72
73:func:`get_users_with_local_roles`
74----------------------------------
75
76We can get all users and their roles for a certain context
77object. This even works for objects that cannot have local roles as
78they are not stored in the ZODB:
79
80    >>> from waeup.ikoba.permissions import get_users_with_local_roles
81    >>> mycontext = object()
82    >>> people_and_roles = get_users_with_local_roles(mycontext)
83    >>> people_and_roles
84    <generator object...at 0x...>
85
86In this case, the result is empty:
87
88    >>> people_and_roles = list(people_and_roles)
89    >>> people_and_roles
90    []
91
92:func:`get_users_with_role`
93---------------------------
94
95We can get all users with a specific role for a certain context
96object:
97
98    >>> from waeup.ikoba.permissions import get_users_with_role
99    >>> mycontext = object()
100    >>> people = get_users_with_role('waeup.portalManager', mycontext)
101    >>> people
102    <generator object...at 0x...>
103
104In this case, the result is empty:
105
106    >>> people = list(people)
107    >>> people
108    []
Note: See TracBrowser for help on using the repository browser.