[12993] | 1 | Permissions and Roles |
---|
| 2 | ********************* |
---|
[4127] | 3 | |
---|
[11949] | 4 | Permissions and roles used in a Ikoba portal. |
---|
[4127] | 5 | |
---|
[5140] | 6 | .. :doctest: |
---|
[11949] | 7 | .. :layer: waeup.ikoba.testing.IkobaUnitTestLayer |
---|
[4127] | 8 | |
---|
[12993] | 9 | Convenience Functions |
---|
[6157] | 10 | ===================== |
---|
[4127] | 11 | |
---|
[11949] | 12 | :mod:`waeup.ikoba` offers some convenience functions to handle security |
---|
[6157] | 13 | roles. |
---|
| 14 | |
---|
[7186] | 15 | :func:`get_all_roles` |
---|
| 16 | --------------------- |
---|
[6157] | 17 | |
---|
[11949] | 18 | Gives us all roles defined in Ikoba. We get tuples of |
---|
[6157] | 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 | |
---|
[11949] | 26 | >>> from waeup.ikoba.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())) |
---|
[11958] | 31 | [(u'waeup.Customer', <waeup.ikoba.customers.permissions.CustomerRole object at 0x...] |
---|
[6157] | 32 | |
---|
[7186] | 33 | :func:`get_waeup_roles` |
---|
| 34 | ----------------------- |
---|
[6157] | 35 | |
---|
[11949] | 36 | Gives us all roles, except the Ikoba specific roles. We can get a list |
---|
[6157] | 37 | with or without local roles: |
---|
| 38 | |
---|
[11949] | 39 | >>> from waeup.ikoba.permissions import get_waeup_roles |
---|
[7186] | 40 | >>> len(list(get_waeup_roles())) |
---|
[12986] | 41 | 18 |
---|
[6157] | 42 | |
---|
[7186] | 43 | >>> len(list(get_waeup_roles(also_local=True))) |
---|
[12986] | 44 | 22 |
---|
[6157] | 45 | |
---|
| 46 | |
---|
[7186] | 47 | :func:`get_waeup_role_names` |
---|
| 48 | ---------------------------- |
---|
[6157] | 49 | |
---|
[11949] | 50 | We can get all role names defined in Ikoba (except 'local' |
---|
[6157] | 51 | roles that are meant not to be assigned globally): |
---|
| 52 | |
---|
[11949] | 53 | >>> from waeup.ikoba.permissions import get_waeup_role_names |
---|
[7186] | 54 | >>> list(get_waeup_role_names()) |
---|
[11958] | 55 | [u'waeup.Customer', |
---|
| 56 | u'waeup.CustomerImpersonator', |
---|
| 57 | u'waeup.CustomersManager', |
---|
| 58 | u'waeup.CustomersOfficer', |
---|
| 59 | u'waeup.DataCenterManager', |
---|
[12207] | 60 | u'waeup.DocumentsManager', |
---|
| 61 | u'waeup.DocumentsOfficer', |
---|
[11947] | 62 | u'waeup.ExportManager', |
---|
| 63 | u'waeup.ImportManager', |
---|
[12764] | 64 | u'waeup.PaymentsManager', |
---|
| 65 | u'waeup.PaymentsOfficer', |
---|
[11947] | 66 | u'waeup.PortalManager', |
---|
| 67 | u'waeup.ProductsManager', |
---|
| 68 | u'waeup.ProductsOfficer', |
---|
[12986] | 69 | u'waeup.ReportsManager', |
---|
[11947] | 70 | u'waeup.UsersManager', |
---|
| 71 | u'waeup.WorkflowManager', |
---|
| 72 | u'waeup.xmlrpcusers1'] |
---|
[6202] | 73 | |
---|
| 74 | :func:`get_users_with_local_roles` |
---|
| 75 | ---------------------------------- |
---|
| 76 | |
---|
| 77 | We can get all users and their roles for a certain context |
---|
| 78 | object. This even works for objects that cannot have local roles as |
---|
| 79 | they are not stored in the ZODB: |
---|
| 80 | |
---|
[11949] | 81 | >>> from waeup.ikoba.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 | |
---|
| 87 | In 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 | |
---|
| 96 | We can get all users with a specific role for a certain context |
---|
| 97 | object: |
---|
| 98 | |
---|
[11949] | 99 | >>> from waeup.ikoba.permissions import get_users_with_role |
---|
[9309] | 100 | >>> mycontext = object() |
---|
| 101 | >>> people = get_users_with_role('waeup.portalManager', mycontext) |
---|
| 102 | >>> people |
---|
| 103 | <generator object...at 0x...> |
---|
| 104 | |
---|
| 105 | In this case, the result is empty: |
---|
| 106 | |
---|
| 107 | >>> people = list(people) |
---|
| 108 | >>> people |
---|
[10013] | 109 | [] |
---|