[7193] | 1 | ## $Id: permissions.py 7193 2011-11-25 07:21:29Z 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 |
---|
[6144] | 22 | from waeup.sirp.interfaces import ILocalRolesAssignable |
---|
[7176] | 23 | from waeup.sirp.utils.helpers import get_user_account |
---|
[3521] | 24 | |
---|
[4789] | 25 | class Public(grok.Permission): |
---|
| 26 | """Everyone-can-do-this-permission. |
---|
| 27 | |
---|
| 28 | This permission is meant to be applied to objects/views/pages |
---|
| 29 | etc., that should be usable/readable by everyone. |
---|
| 30 | |
---|
| 31 | We need this to be able to tune default permissions more |
---|
| 32 | restrictive and open up some dedicated objects like the front |
---|
| 33 | page. |
---|
| 34 | """ |
---|
| 35 | grok.name('waeup.Public') |
---|
[6142] | 36 | |
---|
[5433] | 37 | class Anonymous(grok.Permission): |
---|
| 38 | """Only-anonymous-can-do-this-permission. |
---|
| 39 | """ |
---|
[6142] | 40 | grok.name('waeup.Anonymous') |
---|
[4789] | 41 | |
---|
[7184] | 42 | class Authenticated(grok.Permission): |
---|
| 43 | """Only-logged-in-users-can-do-this-permission. |
---|
| 44 | """ |
---|
| 45 | grok.name('waeup.Authenticated') |
---|
[4789] | 46 | |
---|
[7184] | 47 | class ViewAcademicsPermission(grok.Permission): |
---|
| 48 | grok.name('waeup.viewAcademics') |
---|
| 49 | |
---|
[4789] | 50 | class ManageUniversity(grok.Permission): |
---|
| 51 | grok.name('waeup.manageUniversity') |
---|
| 52 | |
---|
| 53 | class ManageUsers(grok.Permission): |
---|
| 54 | grok.name('waeup.manageUsers') |
---|
[6142] | 55 | |
---|
[7163] | 56 | class EditUser(grok.Permission): |
---|
| 57 | grok.name('waeup.editUser') |
---|
| 58 | |
---|
[6127] | 59 | class ManageDataCenter(grok.Permission): |
---|
| 60 | grok.name('waeup.manageDataCenter') |
---|
[6142] | 61 | |
---|
[6907] | 62 | class ManagePortalConfiguration(grok.Permission): |
---|
| 63 | grok.name('waeup.managePortalConfiguration') |
---|
[6155] | 64 | |
---|
[7181] | 65 | class ManageACBatches(grok.Permission): |
---|
| 66 | grok.name('waeup.manageACBatches') |
---|
| 67 | |
---|
[6125] | 68 | # Local Roles |
---|
[7185] | 69 | class DepartmentManager(grok.Role): |
---|
| 70 | grok.name('waeup.local.DepartmentManager') |
---|
| 71 | grok.title(u'Department Manager') |
---|
[7168] | 72 | grok.permissions('waeup.manageUniversity') |
---|
[6142] | 73 | |
---|
[6655] | 74 | class ClearanceOfficer(grok.Role): |
---|
[7168] | 75 | """The clearance officer role is meant for the |
---|
| 76 | assignment of dynamic roles only. |
---|
| 77 | """ |
---|
[6655] | 78 | grok.name('waeup.local.ClearanceOfficer') |
---|
| 79 | grok.title(u'Clearance Officer') |
---|
| 80 | |
---|
| 81 | class CourseAdviser(grok.Role): |
---|
[7168] | 82 | """The course adviser role is meant for the |
---|
| 83 | assignment of dynamic roles only. |
---|
| 84 | """ |
---|
[6655] | 85 | grok.name('waeup.local.CourseAdviser') |
---|
| 86 | grok.title(u'Course Adviser') |
---|
| 87 | |
---|
[7163] | 88 | class Owner(grok.Role): |
---|
| 89 | grok.name('waeup.local.Owner') |
---|
| 90 | grok.title(u'Owner') |
---|
| 91 | grok.permissions('waeup.editUser') |
---|
| 92 | |
---|
[7178] | 93 | # Site Roles |
---|
[7185] | 94 | class AcademicsOfficer(grok.Role): |
---|
| 95 | grok.name('waeup.AcademicsOfficer') |
---|
[7188] | 96 | grok.title(u'Academics Officer (view only)') |
---|
[7184] | 97 | grok.permissions('waeup.viewAcademics') |
---|
[3521] | 98 | |
---|
[7181] | 99 | class ACManager(grok.Role): |
---|
| 100 | grok.name('waeup.ACManager') |
---|
| 101 | grok.title(u'Access Code Manager') |
---|
| 102 | grok.permissions('waeup.manageACBatches') |
---|
| 103 | |
---|
[4789] | 104 | class PortalManager(grok.Role): |
---|
| 105 | grok.name('waeup.PortalManager') |
---|
[6159] | 106 | grok.title(u'Portal Manager') |
---|
[4789] | 107 | grok.permissions('waeup.manageUniversity', 'waeup.manageUsers', |
---|
[7184] | 108 | 'waeup.viewAcademics', 'waeup.manageACBatches', |
---|
[6198] | 109 | 'waeup.manageDataCenter','waeup.managePortalSettings', |
---|
[7184] | 110 | 'waeup.managePortalConfiguration', 'waeup.viewApplication', |
---|
| 111 | 'waeup.manageApplication', 'waeup.handleApplication', |
---|
[7148] | 112 | 'waeup.viewStudent', 'waeup.manageStudent', 'clearStudent', |
---|
[7184] | 113 | 'waeup.uploadStudentFile', 'waeup.viewStudents', |
---|
[7122] | 114 | 'waeup.viewHostels', 'waeup.manageHostels') |
---|
[4789] | 115 | |
---|
[7186] | 116 | def get_all_roles(): |
---|
[6157] | 117 | """Return a list of tuples ``<ROLE-NAME>, <ROLE>``. |
---|
| 118 | """ |
---|
| 119 | return getUtilitiesFor(IRole) |
---|
| 120 | |
---|
[7186] | 121 | def get_waeup_roles(also_local=False): |
---|
[6157] | 122 | """Get all WAeUP roles. |
---|
| 123 | |
---|
| 124 | WAeUP roles are ordinary roles whose id by convention starts with |
---|
| 125 | a ``waeup.`` prefix. |
---|
| 126 | |
---|
| 127 | If `also_local` is ``True`` (``False`` by default), also local |
---|
| 128 | roles are returned. Local WAeUP roles are such whose id starts |
---|
| 129 | with ``waeup.local.`` prefix (this is also a convention). |
---|
| 130 | |
---|
| 131 | Returns a generator of the found roles. |
---|
| 132 | """ |
---|
[7186] | 133 | for name, item in get_all_roles(): |
---|
[6157] | 134 | if not name.startswith('waeup.'): |
---|
[4789] | 135 | # Ignore non-WAeUP roles... |
---|
| 136 | continue |
---|
[6157] | 137 | if not also_local and name.startswith('waeup.local.'): |
---|
| 138 | # Ignore local roles... |
---|
[6045] | 139 | continue |
---|
[6157] | 140 | yield item |
---|
[4789] | 141 | |
---|
[7186] | 142 | def get_waeup_role_names(): |
---|
[6157] | 143 | """Get the ids of all WAeUP roles. |
---|
| 144 | |
---|
[7186] | 145 | See :func:`get_waeup_roles` for what a 'WAeUPRole' is. |
---|
[6157] | 146 | |
---|
| 147 | This function returns a sorted list of WAeUP role names. |
---|
| 148 | """ |
---|
[7186] | 149 | return sorted([x.id for x in get_waeup_roles()]) |
---|
[6157] | 150 | |
---|
[6144] | 151 | class LocalRolesAssignable(grok.Adapter): |
---|
| 152 | """Default implementation for `ILocalRolesAssignable`. |
---|
| 153 | |
---|
| 154 | This adapter returns a list for dictionaries for objects for which |
---|
| 155 | we want to know the roles assignable to them locally. |
---|
| 156 | |
---|
| 157 | The returned dicts contain a ``name`` and a ``title`` entry which |
---|
| 158 | give a role (``name``) and a description, for which kind of users |
---|
| 159 | the permission is meant to be used (``title``). |
---|
| 160 | |
---|
| 161 | Having this adapter registered we make sure, that for each normal |
---|
| 162 | object we get a valid `ILocalRolesAssignable` adapter. |
---|
| 163 | |
---|
| 164 | Objects that want to offer certain local roles, can do so by |
---|
[6162] | 165 | setting a (preferably class-) attribute to a list of role ids. |
---|
[6144] | 166 | |
---|
| 167 | You can also define different adapters for different contexts to |
---|
| 168 | have different role lookup mechanisms become available. But in |
---|
| 169 | normal cases it should be sufficient to use this basic adapter. |
---|
| 170 | """ |
---|
| 171 | grok.context(Interface) |
---|
| 172 | grok.provides(ILocalRolesAssignable) |
---|
| 173 | |
---|
| 174 | _roles = [] |
---|
| 175 | |
---|
| 176 | def __init__(self, context): |
---|
| 177 | self.context = context |
---|
[6162] | 178 | role_ids = getattr(context, 'local_roles', self._roles) |
---|
[7186] | 179 | self._roles = [(name, role) for name, role in get_all_roles() |
---|
[6162] | 180 | if name in role_ids] |
---|
[6144] | 181 | return |
---|
| 182 | |
---|
| 183 | def __call__(self): |
---|
| 184 | """Get a list of dictionaries containing ``names`` (the roles to |
---|
| 185 | assign) and ``titles`` (some description of the type of user |
---|
| 186 | to assign each role to). |
---|
| 187 | """ |
---|
[6162] | 188 | return [ |
---|
| 189 | dict( |
---|
| 190 | name=name, |
---|
| 191 | title=role.title, |
---|
[6163] | 192 | description=role.description) |
---|
[6162] | 193 | for name, role in self._roles] |
---|
[6144] | 194 | |
---|
[6163] | 195 | def get_users_with_local_roles(context): |
---|
| 196 | """Get a list of dicts representing the local roles set for `context`. |
---|
| 197 | |
---|
| 198 | Each dict returns `user_name`, `user_title`, `local_role`, |
---|
| 199 | `local_role_title`, and `setting` for each entry in the local |
---|
| 200 | roles map of the `context` object. |
---|
| 201 | """ |
---|
[6202] | 202 | try: |
---|
| 203 | role_map = IPrincipalRoleMap(context) |
---|
| 204 | except TypeError: |
---|
| 205 | # no map no roles. |
---|
| 206 | raise StopIteration |
---|
[6163] | 207 | for local_role, user_name, setting in role_map.getPrincipalsAndRoles(): |
---|
| 208 | user = grok.getSite()['users'].get(user_name,None) |
---|
| 209 | user_title = getattr(user, 'description', user_name) |
---|
[7186] | 210 | local_role_title = dict(get_all_roles())[local_role].title |
---|
[6163] | 211 | yield dict(user_name = user_name, |
---|
| 212 | user_title = user_title, |
---|
| 213 | local_role = local_role, |
---|
| 214 | local_role_title = local_role_title, |
---|
| 215 | setting = setting) |
---|