[7193] | 1 | ## $Id: permissions.py 9208 2012-09-20 08:22:52Z uli $ |
---|
| 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 |
---|
[7811] | 22 | from waeup.kofa.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 | |
---|
[7184] | 46 | class ViewAcademicsPermission(grok.Permission): |
---|
| 47 | grok.name('waeup.viewAcademics') |
---|
| 48 | |
---|
[8367] | 49 | class ManageAcademicsPermission(grok.Permission): |
---|
| 50 | grok.name('waeup.manageAcademics') |
---|
[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 | |
---|
[7205] | 58 | class ShowStudents(grok.Permission): |
---|
| 59 | grok.name('waeup.showStudents') |
---|
| 60 | |
---|
[7163] | 61 | class EditUser(grok.Permission): |
---|
| 62 | grok.name('waeup.editUser') |
---|
| 63 | |
---|
[6127] | 64 | class ManageDataCenter(grok.Permission): |
---|
| 65 | grok.name('waeup.manageDataCenter') |
---|
[6142] | 66 | |
---|
[8367] | 67 | class ImportData(grok.Permission): |
---|
| 68 | grok.name('waeup.importData') |
---|
| 69 | |
---|
[6907] | 70 | class ManagePortalConfiguration(grok.Permission): |
---|
| 71 | grok.name('waeup.managePortalConfiguration') |
---|
[6155] | 72 | |
---|
[7181] | 73 | class ManageACBatches(grok.Permission): |
---|
| 74 | grok.name('waeup.manageACBatches') |
---|
| 75 | |
---|
[6125] | 76 | # Local Roles |
---|
[7185] | 77 | class DepartmentManager(grok.Role): |
---|
| 78 | grok.name('waeup.local.DepartmentManager') |
---|
| 79 | grok.title(u'Department Manager') |
---|
[8367] | 80 | grok.permissions('waeup.manageAcademics','waeup.showStudents') |
---|
[6142] | 81 | |
---|
[6655] | 82 | class ClearanceOfficer(grok.Role): |
---|
[7168] | 83 | """The clearance officer role is meant for the |
---|
| 84 | assignment of dynamic roles only. |
---|
| 85 | """ |
---|
[6655] | 86 | grok.name('waeup.local.ClearanceOfficer') |
---|
| 87 | grok.title(u'Clearance Officer') |
---|
[7217] | 88 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
[6655] | 89 | |
---|
[9169] | 90 | class UGClearanceOfficer(grok.Role): |
---|
| 91 | """The clearance officer role is meant for the |
---|
| 92 | assignment of dynamic roles only. |
---|
| 93 | """ |
---|
| 94 | grok.name('waeup.local.UGClearanceOfficer') |
---|
| 95 | grok.title(u'UG Clearance Officer') |
---|
| 96 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
| 97 | |
---|
| 98 | class PGClearanceOfficer(grok.Role): |
---|
| 99 | """The clearance officer role is meant for the |
---|
| 100 | assignment of dynamic roles only. |
---|
| 101 | """ |
---|
| 102 | grok.name('waeup.local.PGClearanceOfficer') |
---|
| 103 | grok.title(u'PG Clearance Officer') |
---|
| 104 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
| 105 | |
---|
[7334] | 106 | class CourseAdviser100(grok.Role): |
---|
[7335] | 107 | """The 100 level course adviser role is meant for the |
---|
[7168] | 108 | assignment of dynamic roles only. |
---|
| 109 | """ |
---|
[7334] | 110 | grok.name('waeup.local.CourseAdviser100') |
---|
| 111 | grok.title(u'Course Adviser 100L') |
---|
| 112 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
[6655] | 113 | |
---|
[7334] | 114 | class CourseAdviser200(grok.Role): |
---|
[7335] | 115 | """The course 200 level adviser role is meant for the |
---|
[7334] | 116 | assignment of dynamic roles only. |
---|
| 117 | """ |
---|
| 118 | grok.name('waeup.local.CourseAdviser200') |
---|
| 119 | grok.title(u'Course Adviser 200L') |
---|
| 120 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
| 121 | |
---|
| 122 | class CourseAdviser300(grok.Role): |
---|
[7335] | 123 | """The 300 level course adviser role is meant for the |
---|
[7334] | 124 | assignment of dynamic roles only. |
---|
| 125 | """ |
---|
| 126 | grok.name('waeup.local.CourseAdviser300') |
---|
| 127 | grok.title(u'Course Adviser 300L') |
---|
| 128 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
| 129 | |
---|
| 130 | class CourseAdviser400(grok.Role): |
---|
[7335] | 131 | """The 400 level course adviser role is meant for the |
---|
[7334] | 132 | assignment of dynamic roles only. |
---|
| 133 | """ |
---|
| 134 | grok.name('waeup.local.CourseAdviser400') |
---|
| 135 | grok.title(u'Course Adviser 400L') |
---|
| 136 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
| 137 | |
---|
| 138 | class CourseAdviser500(grok.Role): |
---|
[7335] | 139 | """The 500 level course adviser role is meant for the |
---|
[7334] | 140 | assignment of dynamic roles only. |
---|
| 141 | """ |
---|
| 142 | grok.name('waeup.local.CourseAdviser500') |
---|
| 143 | grok.title(u'Course Adviser 500L') |
---|
| 144 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
| 145 | |
---|
| 146 | class CourseAdviser600(grok.Role): |
---|
[7335] | 147 | """The 600 level course adviser role is meant for the |
---|
[7334] | 148 | assignment of dynamic roles only. |
---|
| 149 | """ |
---|
| 150 | grok.name('waeup.local.CourseAdviser600') |
---|
| 151 | grok.title(u'Course Adviser 600L') |
---|
| 152 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
| 153 | |
---|
[9169] | 154 | class Lecturer(grok.Role): |
---|
| 155 | """The lecturer role is meant for the |
---|
| 156 | assignment of dynamic roles only. |
---|
| 157 | """ |
---|
| 158 | grok.name('waeup.local.Lecturer') |
---|
| 159 | grok.title(u'Lecturer') |
---|
| 160 | grok.permissions('waeup.showStudents', 'waeup.viewAcademics') |
---|
| 161 | |
---|
[7163] | 162 | class Owner(grok.Role): |
---|
| 163 | grok.name('waeup.local.Owner') |
---|
| 164 | grok.title(u'Owner') |
---|
| 165 | grok.permissions('waeup.editUser') |
---|
| 166 | |
---|
[7178] | 167 | # Site Roles |
---|
[7185] | 168 | class AcademicsOfficer(grok.Role): |
---|
| 169 | grok.name('waeup.AcademicsOfficer') |
---|
[7188] | 170 | grok.title(u'Academics Officer (view only)') |
---|
[7184] | 171 | grok.permissions('waeup.viewAcademics') |
---|
[3521] | 172 | |
---|
[8367] | 173 | class AcademicsManager(grok.Role): |
---|
| 174 | grok.name('waeup.AcademicsManager') |
---|
| 175 | grok.title(u'Academics Manager') |
---|
| 176 | grok.permissions('waeup.viewAcademics', |
---|
| 177 | 'waeup.manageAcademics') |
---|
| 178 | |
---|
[7181] | 179 | class ACManager(grok.Role): |
---|
| 180 | grok.name('waeup.ACManager') |
---|
| 181 | grok.title(u'Access Code Manager') |
---|
| 182 | grok.permissions('waeup.manageACBatches') |
---|
| 183 | |
---|
[8367] | 184 | class DataCenterManager(grok.Role): |
---|
| 185 | grok.name('waeup.DataCenterManager') |
---|
| 186 | grok.title(u'Datacenter Manager') |
---|
| 187 | grok.permissions('waeup.manageDataCenter') |
---|
| 188 | |
---|
| 189 | class ImportManager(grok.Role): |
---|
| 190 | grok.name('waeup.ImportManager') |
---|
| 191 | grok.title(u'Import Manager') |
---|
| 192 | grok.permissions('waeup.manageDataCenter', |
---|
| 193 | 'waeup.importData') |
---|
| 194 | |
---|
| 195 | class UsersManager(grok.Role): |
---|
| 196 | grok.name('waeup.UsersManager') |
---|
| 197 | grok.title(u'Users Manager') |
---|
| 198 | grok.permissions('waeup.manageUsers') |
---|
| 199 | |
---|
[4789] | 200 | class PortalManager(grok.Role): |
---|
| 201 | grok.name('waeup.PortalManager') |
---|
[6159] | 202 | grok.title(u'Portal Manager') |
---|
[8367] | 203 | grok.permissions('waeup.managePortal', 'waeup.manageUsers', |
---|
[8374] | 204 | 'waeup.viewAcademics', 'waeup.manageAcademics', |
---|
[8367] | 205 | 'waeup.manageACBatches', |
---|
[8399] | 206 | 'waeup.manageDataCenter', 'waeup.importData', |
---|
[7184] | 207 | 'waeup.managePortalConfiguration', 'waeup.viewApplication', |
---|
| 208 | 'waeup.manageApplication', 'waeup.handleApplication', |
---|
[7250] | 209 | 'waeup.viewApplicantsTab', 'waeup.payApplicant', |
---|
[8565] | 210 | 'waeup.viewApplicationStatistics', |
---|
[7250] | 211 | 'waeup.viewStudent', 'waeup.manageStudent', |
---|
| 212 | 'waeup.clearStudent', 'waeup.payStudent', |
---|
| 213 | 'waeup.uploadStudentFile', 'waeup.showStudents', |
---|
| 214 | 'waeup.viewStudentsContainer','waeup.viewStudentsTab', |
---|
[9208] | 215 | 'waeup.handleAccommodation', |
---|
[7205] | 216 | 'waeup.viewHostels', 'waeup.manageHostels', |
---|
[8068] | 217 | 'waeup.editUser' |
---|
[7240] | 218 | ) |
---|
[4789] | 219 | |
---|
[7186] | 220 | def get_all_roles(): |
---|
[6157] | 221 | """Return a list of tuples ``<ROLE-NAME>, <ROLE>``. |
---|
| 222 | """ |
---|
| 223 | return getUtilitiesFor(IRole) |
---|
| 224 | |
---|
[7186] | 225 | def get_waeup_roles(also_local=False): |
---|
[7819] | 226 | """Get all Kofa roles. |
---|
[6157] | 227 | |
---|
[7819] | 228 | Kofa roles are ordinary roles whose id by convention starts with |
---|
[6157] | 229 | a ``waeup.`` prefix. |
---|
| 230 | |
---|
| 231 | If `also_local` is ``True`` (``False`` by default), also local |
---|
[7819] | 232 | roles are returned. Local Kofa roles are such whose id starts |
---|
[6157] | 233 | with ``waeup.local.`` prefix (this is also a convention). |
---|
| 234 | |
---|
| 235 | Returns a generator of the found roles. |
---|
| 236 | """ |
---|
[7186] | 237 | for name, item in get_all_roles(): |
---|
[6157] | 238 | if not name.startswith('waeup.'): |
---|
[7819] | 239 | # Ignore non-Kofa roles... |
---|
[4789] | 240 | continue |
---|
[6157] | 241 | if not also_local and name.startswith('waeup.local.'): |
---|
| 242 | # Ignore local roles... |
---|
[6045] | 243 | continue |
---|
[6157] | 244 | yield item |
---|
[4789] | 245 | |
---|
[7186] | 246 | def get_waeup_role_names(): |
---|
[7819] | 247 | """Get the ids of all Kofa roles. |
---|
[6157] | 248 | |
---|
[7819] | 249 | See :func:`get_waeup_roles` for what a 'KofaRole' is. |
---|
[6157] | 250 | |
---|
[7819] | 251 | This function returns a sorted list of Kofa role names. |
---|
[6157] | 252 | """ |
---|
[7186] | 253 | return sorted([x.id for x in get_waeup_roles()]) |
---|
[6157] | 254 | |
---|
[6144] | 255 | class LocalRolesAssignable(grok.Adapter): |
---|
| 256 | """Default implementation for `ILocalRolesAssignable`. |
---|
| 257 | |
---|
| 258 | This adapter returns a list for dictionaries for objects for which |
---|
| 259 | we want to know the roles assignable to them locally. |
---|
| 260 | |
---|
| 261 | The returned dicts contain a ``name`` and a ``title`` entry which |
---|
| 262 | give a role (``name``) and a description, for which kind of users |
---|
| 263 | the permission is meant to be used (``title``). |
---|
| 264 | |
---|
| 265 | Having this adapter registered we make sure, that for each normal |
---|
| 266 | object we get a valid `ILocalRolesAssignable` adapter. |
---|
| 267 | |
---|
| 268 | Objects that want to offer certain local roles, can do so by |
---|
[6162] | 269 | setting a (preferably class-) attribute to a list of role ids. |
---|
[6144] | 270 | |
---|
| 271 | You can also define different adapters for different contexts to |
---|
| 272 | have different role lookup mechanisms become available. But in |
---|
| 273 | normal cases it should be sufficient to use this basic adapter. |
---|
| 274 | """ |
---|
| 275 | grok.context(Interface) |
---|
| 276 | grok.provides(ILocalRolesAssignable) |
---|
| 277 | |
---|
| 278 | _roles = [] |
---|
| 279 | |
---|
| 280 | def __init__(self, context): |
---|
| 281 | self.context = context |
---|
[6162] | 282 | role_ids = getattr(context, 'local_roles', self._roles) |
---|
[7186] | 283 | self._roles = [(name, role) for name, role in get_all_roles() |
---|
[6162] | 284 | if name in role_ids] |
---|
[6144] | 285 | return |
---|
| 286 | |
---|
| 287 | def __call__(self): |
---|
| 288 | """Get a list of dictionaries containing ``names`` (the roles to |
---|
| 289 | assign) and ``titles`` (some description of the type of user |
---|
| 290 | to assign each role to). |
---|
| 291 | """ |
---|
[7334] | 292 | list_of_dict = [dict( |
---|
[6162] | 293 | name=name, |
---|
| 294 | title=role.title, |
---|
[6163] | 295 | description=role.description) |
---|
[7334] | 296 | for name, role in self._roles] |
---|
| 297 | return sorted(list_of_dict, key=lambda x: x['name']) |
---|
[6144] | 298 | |
---|
[8774] | 299 | def get_all_users(): |
---|
| 300 | """Get a list of dictionaries. |
---|
| 301 | """ |
---|
| 302 | users = sorted(grok.getSite()['users'].items(), key=lambda x: x[1].title) |
---|
| 303 | for key, val in users: |
---|
| 304 | yield(dict(name=key, val=val)) |
---|
| 305 | |
---|
[6163] | 306 | def get_users_with_local_roles(context): |
---|
| 307 | """Get a list of dicts representing the local roles set for `context`. |
---|
| 308 | |
---|
| 309 | Each dict returns `user_name`, `user_title`, `local_role`, |
---|
| 310 | `local_role_title`, and `setting` for each entry in the local |
---|
| 311 | roles map of the `context` object. |
---|
| 312 | """ |
---|
[6202] | 313 | try: |
---|
| 314 | role_map = IPrincipalRoleMap(context) |
---|
| 315 | except TypeError: |
---|
| 316 | # no map no roles. |
---|
| 317 | raise StopIteration |
---|
[6163] | 318 | for local_role, user_name, setting in role_map.getPrincipalsAndRoles(): |
---|
| 319 | user = grok.getSite()['users'].get(user_name,None) |
---|
[7213] | 320 | user_title = getattr(user, 'title', user_name) |
---|
[7186] | 321 | local_role_title = dict(get_all_roles())[local_role].title |
---|
[6163] | 322 | yield dict(user_name = user_name, |
---|
| 323 | user_title = user_title, |
---|
| 324 | local_role = local_role, |
---|
| 325 | local_role_title = local_role_title, |
---|
[8774] | 326 | setting = setting) |
---|