[7193] | 1 | ## $Id: permissions.py 12068 2014-11-27 07:48:15Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
[3521] | 18 | import grok |
---|
[6157] | 19 | from zope.component import getUtilitiesFor |
---|
[6144] | 20 | from zope.interface import Interface |
---|
[6163] | 21 | from zope.securitypolicy.interfaces import IRole, IPrincipalRoleMap |
---|
[11949] | 22 | from waeup.ikoba.interfaces import ILocalRolesAssignable |
---|
[3521] | 23 | |
---|
[4789] | 24 | class Public(grok.Permission): |
---|
| 25 | """Everyone-can-do-this-permission. |
---|
| 26 | |
---|
| 27 | This permission is meant to be applied to objects/views/pages |
---|
| 28 | etc., that should be usable/readable by everyone. |
---|
| 29 | |
---|
| 30 | We need this to be able to tune default permissions more |
---|
| 31 | restrictive and open up some dedicated objects like the front |
---|
| 32 | page. |
---|
| 33 | """ |
---|
| 34 | grok.name('waeup.Public') |
---|
[6142] | 35 | |
---|
[5433] | 36 | class Anonymous(grok.Permission): |
---|
| 37 | """Only-anonymous-can-do-this-permission. |
---|
| 38 | """ |
---|
[6142] | 39 | grok.name('waeup.Anonymous') |
---|
[4789] | 40 | |
---|
[7184] | 41 | class Authenticated(grok.Permission): |
---|
| 42 | """Only-logged-in-users-can-do-this-permission. |
---|
| 43 | """ |
---|
| 44 | grok.name('waeup.Authenticated') |
---|
[4789] | 45 | |
---|
[12065] | 46 | class ViewProducts(grok.Permission): |
---|
[11947] | 47 | grok.name('waeup.viewProducts') |
---|
[7184] | 48 | |
---|
[12065] | 49 | class ManageProducts(grok.Permission): |
---|
[11947] | 50 | grok.name('waeup.manageProducts') |
---|
[4789] | 51 | |
---|
[8367] | 52 | class ManagePortal(grok.Permission): |
---|
| 53 | grok.name('waeup.managePortal') |
---|
| 54 | |
---|
[4789] | 55 | class ManageUsers(grok.Permission): |
---|
| 56 | grok.name('waeup.manageUsers') |
---|
[6142] | 57 | |
---|
[7163] | 58 | class EditUser(grok.Permission): |
---|
| 59 | grok.name('waeup.editUser') |
---|
| 60 | |
---|
[6127] | 61 | class ManageDataCenter(grok.Permission): |
---|
| 62 | grok.name('waeup.manageDataCenter') |
---|
[6142] | 63 | |
---|
[8367] | 64 | class ImportData(grok.Permission): |
---|
| 65 | grok.name('waeup.importData') |
---|
| 66 | |
---|
[10177] | 67 | class ExportData(grok.Permission): |
---|
| 68 | grok.name('waeup.exportData') |
---|
| 69 | |
---|
[6907] | 70 | class ManagePortalConfiguration(grok.Permission): |
---|
| 71 | grok.name('waeup.managePortalConfiguration') |
---|
[6155] | 72 | |
---|
[7181] | 73 | |
---|
[6125] | 74 | # Local Roles |
---|
[10226] | 75 | |
---|
[7163] | 76 | class Owner(grok.Role): |
---|
| 77 | grok.name('waeup.local.Owner') |
---|
| 78 | grok.title(u'Owner') |
---|
| 79 | grok.permissions('waeup.editUser') |
---|
| 80 | |
---|
[12068] | 81 | class ProductManager(grok.Role): |
---|
| 82 | grok.name('waeup.local.ProductManager') |
---|
| 83 | grok.title(u'Product Manager') |
---|
| 84 | grok.permissions('waeup.manageProducts', |
---|
| 85 | 'waeup.viewProducts', |
---|
| 86 | 'waeup.exportData') |
---|
| 87 | |
---|
[7178] | 88 | # Site Roles |
---|
[11947] | 89 | class ProductsOfficer(grok.Role): |
---|
| 90 | grok.name('waeup.ProductsOfficer') |
---|
| 91 | grok.title(u'Products Officer (view only)') |
---|
| 92 | grok.permissions('waeup.viewProducts') |
---|
[3521] | 93 | |
---|
[11947] | 94 | class ProductssManager(grok.Role): |
---|
| 95 | grok.name('waeup.ProductsManager') |
---|
| 96 | grok.title(u'Products Manager') |
---|
| 97 | grok.permissions('waeup.viewProducts', |
---|
| 98 | 'waeup.manageProducts') |
---|
[8367] | 99 | |
---|
| 100 | class DataCenterManager(grok.Role): |
---|
| 101 | grok.name('waeup.DataCenterManager') |
---|
| 102 | grok.title(u'Datacenter Manager') |
---|
| 103 | grok.permissions('waeup.manageDataCenter') |
---|
| 104 | |
---|
| 105 | class ImportManager(grok.Role): |
---|
| 106 | grok.name('waeup.ImportManager') |
---|
| 107 | grok.title(u'Import Manager') |
---|
| 108 | grok.permissions('waeup.manageDataCenter', |
---|
| 109 | 'waeup.importData') |
---|
| 110 | |
---|
[10177] | 111 | class ExportManager(grok.Role): |
---|
| 112 | grok.name('waeup.ExportManager') |
---|
| 113 | grok.title(u'Export Manager') |
---|
| 114 | grok.permissions('waeup.manageDataCenter', |
---|
| 115 | 'waeup.exportData') |
---|
| 116 | |
---|
[8367] | 117 | class UsersManager(grok.Role): |
---|
| 118 | grok.name('waeup.UsersManager') |
---|
| 119 | grok.title(u'Users Manager') |
---|
[9259] | 120 | grok.permissions('waeup.manageUsers', |
---|
| 121 | 'waeup.editUser') |
---|
[8367] | 122 | |
---|
[9300] | 123 | class WorkflowManager(grok.Role): |
---|
| 124 | grok.name('waeup.WorkflowManager') |
---|
| 125 | grok.title(u'Workflow Manager') |
---|
[9299] | 126 | grok.permissions('waeup.triggerTransition') |
---|
| 127 | |
---|
[4789] | 128 | class PortalManager(grok.Role): |
---|
| 129 | grok.name('waeup.PortalManager') |
---|
[6159] | 130 | grok.title(u'Portal Manager') |
---|
[9259] | 131 | grok.permissions('waeup.managePortal', |
---|
| 132 | 'waeup.manageUsers', |
---|
[11947] | 133 | 'waeup.viewProducts', 'waeup.manageProducts', |
---|
[9259] | 134 | 'waeup.manageDataCenter', |
---|
| 135 | 'waeup.importData', |
---|
[10177] | 136 | 'waeup.exportData', |
---|
[11947] | 137 | 'waeup.managePortalConfiguration', |
---|
[9335] | 138 | 'waeup.editUser', |
---|
[9637] | 139 | 'waeup.manageReports', |
---|
[9645] | 140 | 'waeup.manageJobs', |
---|
[11958] | 141 | 'waeup.viewCustomer', 'waeup.viewCustomers', |
---|
| 142 | 'waeup.manageCustomer', 'waeup.viewCustomersContainer', |
---|
[12015] | 143 | 'waeup.editCustomerDocuments', 'waeup.uploadCustomerFile', |
---|
[11967] | 144 | 'waeup.triggerTransition', |
---|
[11958] | 145 | 'waeup.viewCustomersTab' |
---|
[7240] | 146 | ) |
---|
[4789] | 147 | |
---|
[9259] | 148 | class CCOfficer(grok.Role): |
---|
[9303] | 149 | """This is basically a copy of the the PortalManager class. We exclude some |
---|
[9262] | 150 | 'dangerous' permissions by commenting them out. |
---|
[9259] | 151 | """ |
---|
[10346] | 152 | grok.baseclass() |
---|
[9259] | 153 | grok.name('waeup.CCOfficer') |
---|
| 154 | grok.title(u'Computer Center Officer') |
---|
| 155 | grok.permissions(#'waeup.managePortal', |
---|
| 156 | #'waeup.manageUsers', |
---|
[11947] | 157 | 'waeup.viewProducts', 'waeup.manageProducts', |
---|
[9259] | 158 | #'waeup.manageACBatches', |
---|
| 159 | 'waeup.manageDataCenter', |
---|
| 160 | #'waeup.importData', |
---|
[10243] | 161 | 'waeup.exportData', |
---|
[11947] | 162 | 'waeup.managePortalConfiguration', |
---|
[9335] | 163 | #'waeup.editUser', |
---|
[9637] | 164 | 'waeup.manageReports', |
---|
[9645] | 165 | #'waeup.manageJobs', |
---|
[11958] | 166 | 'waeup.viewCustomer', 'waeup.viewCustomers', |
---|
| 167 | 'waeup.manageCustomer', 'waeup.viewCustomersContainer', |
---|
[12015] | 168 | 'waeup.editCustomerDocuments', 'waeup.uploadCustomerFile', |
---|
[11967] | 169 | 'waeup.triggerTransition', |
---|
[11958] | 170 | 'waeup.viewCustomersTab' |
---|
[9259] | 171 | ) |
---|
| 172 | |
---|
[7186] | 173 | def get_all_roles(): |
---|
[6157] | 174 | """Return a list of tuples ``<ROLE-NAME>, <ROLE>``. |
---|
| 175 | """ |
---|
| 176 | return getUtilitiesFor(IRole) |
---|
| 177 | |
---|
[7186] | 178 | def get_waeup_roles(also_local=False): |
---|
[11949] | 179 | """Get all Ikoba roles. |
---|
[6157] | 180 | |
---|
[11949] | 181 | Ikoba roles are ordinary roles whose id by convention starts with |
---|
[6157] | 182 | a ``waeup.`` prefix. |
---|
| 183 | |
---|
| 184 | If `also_local` is ``True`` (``False`` by default), also local |
---|
[11949] | 185 | roles are returned. Local Ikoba roles are such whose id starts |
---|
[6157] | 186 | with ``waeup.local.`` prefix (this is also a convention). |
---|
| 187 | |
---|
| 188 | Returns a generator of the found roles. |
---|
| 189 | """ |
---|
[7186] | 190 | for name, item in get_all_roles(): |
---|
[6157] | 191 | if not name.startswith('waeup.'): |
---|
[11949] | 192 | # Ignore non-Ikoba roles... |
---|
[4789] | 193 | continue |
---|
[6157] | 194 | if not also_local and name.startswith('waeup.local.'): |
---|
| 195 | # Ignore local roles... |
---|
[6045] | 196 | continue |
---|
[6157] | 197 | yield item |
---|
[4789] | 198 | |
---|
[7186] | 199 | def get_waeup_role_names(): |
---|
[11949] | 200 | """Get the ids of all Ikoba roles. |
---|
[6157] | 201 | |
---|
[11949] | 202 | See :func:`get_waeup_roles` for what a 'IkobaRole' is. |
---|
[6157] | 203 | |
---|
[11949] | 204 | This function returns a sorted list of Ikoba role names. |
---|
[6157] | 205 | """ |
---|
[7186] | 206 | return sorted([x.id for x in get_waeup_roles()]) |
---|
[6157] | 207 | |
---|
[6144] | 208 | class LocalRolesAssignable(grok.Adapter): |
---|
| 209 | """Default implementation for `ILocalRolesAssignable`. |
---|
| 210 | |
---|
| 211 | This adapter returns a list for dictionaries for objects for which |
---|
| 212 | we want to know the roles assignable to them locally. |
---|
| 213 | |
---|
| 214 | The returned dicts contain a ``name`` and a ``title`` entry which |
---|
| 215 | give a role (``name``) and a description, for which kind of users |
---|
| 216 | the permission is meant to be used (``title``). |
---|
| 217 | |
---|
| 218 | Having this adapter registered we make sure, that for each normal |
---|
| 219 | object we get a valid `ILocalRolesAssignable` adapter. |
---|
| 220 | |
---|
| 221 | Objects that want to offer certain local roles, can do so by |
---|
[6162] | 222 | setting a (preferably class-) attribute to a list of role ids. |
---|
[6144] | 223 | |
---|
| 224 | You can also define different adapters for different contexts to |
---|
| 225 | have different role lookup mechanisms become available. But in |
---|
| 226 | normal cases it should be sufficient to use this basic adapter. |
---|
| 227 | """ |
---|
| 228 | grok.context(Interface) |
---|
| 229 | grok.provides(ILocalRolesAssignable) |
---|
| 230 | |
---|
| 231 | _roles = [] |
---|
| 232 | |
---|
| 233 | def __init__(self, context): |
---|
| 234 | self.context = context |
---|
[6162] | 235 | role_ids = getattr(context, 'local_roles', self._roles) |
---|
[7186] | 236 | self._roles = [(name, role) for name, role in get_all_roles() |
---|
[6162] | 237 | if name in role_ids] |
---|
[6144] | 238 | return |
---|
| 239 | |
---|
| 240 | def __call__(self): |
---|
| 241 | """Get a list of dictionaries containing ``names`` (the roles to |
---|
| 242 | assign) and ``titles`` (some description of the type of user |
---|
| 243 | to assign each role to). |
---|
| 244 | """ |
---|
[7334] | 245 | list_of_dict = [dict( |
---|
[6162] | 246 | name=name, |
---|
| 247 | title=role.title, |
---|
[6163] | 248 | description=role.description) |
---|
[7334] | 249 | for name, role in self._roles] |
---|
| 250 | return sorted(list_of_dict, key=lambda x: x['name']) |
---|
[6144] | 251 | |
---|
[8774] | 252 | def get_all_users(): |
---|
| 253 | """Get a list of dictionaries. |
---|
| 254 | """ |
---|
| 255 | users = sorted(grok.getSite()['users'].items(), key=lambda x: x[1].title) |
---|
| 256 | for key, val in users: |
---|
| 257 | yield(dict(name=key, val=val)) |
---|
| 258 | |
---|
[6163] | 259 | def get_users_with_local_roles(context): |
---|
| 260 | """Get a list of dicts representing the local roles set for `context`. |
---|
| 261 | |
---|
| 262 | Each dict returns `user_name`, `user_title`, `local_role`, |
---|
| 263 | `local_role_title`, and `setting` for each entry in the local |
---|
| 264 | roles map of the `context` object. |
---|
| 265 | """ |
---|
[6202] | 266 | try: |
---|
| 267 | role_map = IPrincipalRoleMap(context) |
---|
| 268 | except TypeError: |
---|
| 269 | # no map no roles. |
---|
| 270 | raise StopIteration |
---|
[6163] | 271 | for local_role, user_name, setting in role_map.getPrincipalsAndRoles(): |
---|
| 272 | user = grok.getSite()['users'].get(user_name,None) |
---|
[7213] | 273 | user_title = getattr(user, 'title', user_name) |
---|
[10227] | 274 | local_role_title = getattr( |
---|
| 275 | dict(get_all_roles()).get(local_role, None), 'title', None) |
---|
[6163] | 276 | yield dict(user_name = user_name, |
---|
| 277 | user_title = user_title, |
---|
| 278 | local_role = local_role, |
---|
| 279 | local_role_title = local_role_title, |
---|
[9309] | 280 | setting = setting) |
---|
| 281 | |
---|
| 282 | def get_users_with_role(role, context): |
---|
| 283 | """Get a list of dicts representing the usres who have been granted |
---|
| 284 | a role for `context`. |
---|
| 285 | """ |
---|
| 286 | try: |
---|
| 287 | role_map = IPrincipalRoleMap(context) |
---|
| 288 | except TypeError: |
---|
| 289 | # no map no roles. |
---|
| 290 | raise StopIteration |
---|
| 291 | for user_name, setting in role_map.getPrincipalsForRole(role): |
---|
| 292 | user = grok.getSite()['users'].get(user_name,None) |
---|
| 293 | user_title = getattr(user, 'title', user_name) |
---|
| 294 | user_email = getattr(user, 'email', None) |
---|
| 295 | yield dict(user_name = user_name, |
---|
| 296 | user_title = user_title, |
---|
| 297 | user_email = user_email, |
---|
| 298 | setting = setting) |
---|