1 | ## $Id: permissions.py 10639 2013-09-22 08:54:03Z 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 | ## |
---|
18 | import grok |
---|
19 | from zope.component import getUtilitiesFor |
---|
20 | from zope.interface import Interface |
---|
21 | from zope.securitypolicy.interfaces import IRole, IPrincipalRoleMap |
---|
22 | from waeup.kofa.interfaces import ILocalRolesAssignable |
---|
23 | |
---|
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') |
---|
35 | |
---|
36 | class Anonymous(grok.Permission): |
---|
37 | """Only-anonymous-can-do-this-permission. |
---|
38 | """ |
---|
39 | grok.name('waeup.Anonymous') |
---|
40 | |
---|
41 | class Authenticated(grok.Permission): |
---|
42 | """Only-logged-in-users-can-do-this-permission. |
---|
43 | """ |
---|
44 | grok.name('waeup.Authenticated') |
---|
45 | |
---|
46 | class ViewAcademicsPermission(grok.Permission): |
---|
47 | grok.name('waeup.viewAcademics') |
---|
48 | |
---|
49 | class ManageAcademicsPermission(grok.Permission): |
---|
50 | grok.name('waeup.manageAcademics') |
---|
51 | |
---|
52 | class ManagePortal(grok.Permission): |
---|
53 | grok.name('waeup.managePortal') |
---|
54 | |
---|
55 | class ManageUsers(grok.Permission): |
---|
56 | grok.name('waeup.manageUsers') |
---|
57 | |
---|
58 | class ShowStudents(grok.Permission): |
---|
59 | grok.name('waeup.showStudents') |
---|
60 | |
---|
61 | class EditScores(grok.Permission): |
---|
62 | grok.name('waeup.editScores') |
---|
63 | |
---|
64 | class EditUser(grok.Permission): |
---|
65 | grok.name('waeup.editUser') |
---|
66 | |
---|
67 | class ManageDataCenter(grok.Permission): |
---|
68 | grok.name('waeup.manageDataCenter') |
---|
69 | |
---|
70 | class ImportData(grok.Permission): |
---|
71 | grok.name('waeup.importData') |
---|
72 | |
---|
73 | class ExportData(grok.Permission): |
---|
74 | grok.name('waeup.exportData') |
---|
75 | |
---|
76 | class ExportPaymentsOverview(grok.Permission): |
---|
77 | grok.name('waeup.exportPaymentsOverview') |
---|
78 | |
---|
79 | class ExportBursaryData(grok.Permission): |
---|
80 | grok.name('waeup.exportBursaryData') |
---|
81 | |
---|
82 | class ViewTranscript(grok.Permission): |
---|
83 | grok.name('waeup.viewTranscript') |
---|
84 | |
---|
85 | class ManagePortalConfiguration(grok.Permission): |
---|
86 | grok.name('waeup.managePortalConfiguration') |
---|
87 | |
---|
88 | class ManageACBatches(grok.Permission): |
---|
89 | grok.name('waeup.manageACBatches') |
---|
90 | |
---|
91 | # Local Roles |
---|
92 | class ApplicationsManager(grok.Role): |
---|
93 | grok.name('waeup.local.ApplicationsManager') |
---|
94 | grok.title(u'Applications Manager') |
---|
95 | grok.permissions('waeup.viewAcademics') |
---|
96 | |
---|
97 | class DepartmentManager(grok.Role): |
---|
98 | grok.name('waeup.local.DepartmentManager') |
---|
99 | grok.title(u'Department Manager') |
---|
100 | grok.permissions('waeup.manageAcademics', |
---|
101 | 'waeup.showStudents', |
---|
102 | 'waeup.exportData') |
---|
103 | |
---|
104 | class DepartmentOfficer(grok.Role): |
---|
105 | grok.name('waeup.local.DepartmentOfficer') |
---|
106 | grok.title(u'Department Officer') |
---|
107 | grok.permissions('waeup.showStudents', |
---|
108 | 'waeup.viewAcademics', |
---|
109 | 'waeup.exportPaymentsOverview') |
---|
110 | |
---|
111 | class ClearanceOfficer(grok.Role): |
---|
112 | """The clearance officer role is meant for the |
---|
113 | assignment of dynamic roles only. |
---|
114 | """ |
---|
115 | grok.name('waeup.local.ClearanceOfficer') |
---|
116 | grok.title(u'Clearance Officer') |
---|
117 | grok.permissions('waeup.showStudents', |
---|
118 | 'waeup.viewAcademics', |
---|
119 | 'waeup.exportData') |
---|
120 | |
---|
121 | class LocalStudentsManager(grok.Role): |
---|
122 | """The local students manager role is meant for the |
---|
123 | assignment of dynamic roles only. |
---|
124 | """ |
---|
125 | grok.name('waeup.local.LocalStudentsManager') |
---|
126 | grok.title(u'Students Manager') |
---|
127 | grok.permissions('waeup.showStudents', |
---|
128 | 'waeup.viewAcademics', |
---|
129 | 'waeup.exportData') |
---|
130 | |
---|
131 | class LocalWorkflowManager(grok.Role): |
---|
132 | """The local workflow manager role is meant for the |
---|
133 | assignment of dynamic roles only. |
---|
134 | """ |
---|
135 | grok.name('waeup.local.LocalWorkflowManager') |
---|
136 | grok.title(u'Student Workflow Manager') |
---|
137 | grok.permissions('waeup.showStudents', |
---|
138 | 'waeup.viewAcademics', |
---|
139 | 'waeup.exportData') |
---|
140 | |
---|
141 | class UGClearanceOfficer(grok.Role): |
---|
142 | """The clearance officer role is meant for the |
---|
143 | assignment of dynamic roles only. |
---|
144 | """ |
---|
145 | grok.name('waeup.local.UGClearanceOfficer') |
---|
146 | grok.title(u'UG Clearance Officer') |
---|
147 | grok.permissions('waeup.showStudents', |
---|
148 | 'waeup.viewAcademics', |
---|
149 | 'waeup.exportData') |
---|
150 | |
---|
151 | class PGClearanceOfficer(grok.Role): |
---|
152 | """The clearance officer role is meant for the |
---|
153 | assignment of dynamic roles only. |
---|
154 | """ |
---|
155 | grok.name('waeup.local.PGClearanceOfficer') |
---|
156 | grok.title(u'PG Clearance Officer') |
---|
157 | grok.permissions('waeup.showStudents', |
---|
158 | 'waeup.viewAcademics', |
---|
159 | 'waeup.exportData') |
---|
160 | |
---|
161 | class CourseAdviser100(grok.Role): |
---|
162 | """The 100 level course adviser role is meant for the |
---|
163 | assignment of dynamic roles only. |
---|
164 | """ |
---|
165 | grok.name('waeup.local.CourseAdviser100') |
---|
166 | grok.title(u'Course Adviser 100L') |
---|
167 | grok.permissions('waeup.showStudents', |
---|
168 | 'waeup.viewAcademics', |
---|
169 | 'waeup.exportData') |
---|
170 | |
---|
171 | class CourseAdviser200(grok.Role): |
---|
172 | """The course 200 level adviser role is meant for the |
---|
173 | assignment of dynamic roles only. |
---|
174 | """ |
---|
175 | grok.name('waeup.local.CourseAdviser200') |
---|
176 | grok.title(u'Course Adviser 200L') |
---|
177 | grok.permissions('waeup.showStudents', |
---|
178 | 'waeup.viewAcademics', |
---|
179 | 'waeup.exportData') |
---|
180 | |
---|
181 | class CourseAdviser300(grok.Role): |
---|
182 | """The 300 level course adviser role is meant for the |
---|
183 | assignment of dynamic roles only. |
---|
184 | """ |
---|
185 | grok.name('waeup.local.CourseAdviser300') |
---|
186 | grok.title(u'Course Adviser 300L') |
---|
187 | grok.permissions('waeup.showStudents', |
---|
188 | 'waeup.viewAcademics', |
---|
189 | 'waeup.exportData') |
---|
190 | |
---|
191 | class CourseAdviser400(grok.Role): |
---|
192 | """The 400 level course adviser role is meant for the |
---|
193 | assignment of dynamic roles only. |
---|
194 | """ |
---|
195 | grok.name('waeup.local.CourseAdviser400') |
---|
196 | grok.title(u'Course Adviser 400L') |
---|
197 | grok.permissions('waeup.showStudents', |
---|
198 | 'waeup.viewAcademics', |
---|
199 | 'waeup.exportData') |
---|
200 | |
---|
201 | class CourseAdviser500(grok.Role): |
---|
202 | """The 500 level course adviser role is meant for the |
---|
203 | assignment of dynamic roles only. |
---|
204 | """ |
---|
205 | grok.name('waeup.local.CourseAdviser500') |
---|
206 | grok.title(u'Course Adviser 500L') |
---|
207 | grok.permissions('waeup.showStudents', |
---|
208 | 'waeup.viewAcademics', |
---|
209 | 'waeup.exportData') |
---|
210 | |
---|
211 | class CourseAdviser600(grok.Role): |
---|
212 | """The 600 level course adviser role is meant for the |
---|
213 | assignment of dynamic roles only. |
---|
214 | """ |
---|
215 | grok.name('waeup.local.CourseAdviser600') |
---|
216 | grok.title(u'Course Adviser 600L') |
---|
217 | grok.permissions('waeup.showStudents', |
---|
218 | 'waeup.viewAcademics', |
---|
219 | 'waeup.exportData') |
---|
220 | |
---|
221 | class CourseAdviser700(grok.Role): |
---|
222 | """The 700 level course adviser role is meant for the |
---|
223 | assignment of dynamic roles only. |
---|
224 | """ |
---|
225 | grok.name('waeup.local.CourseAdviser700') |
---|
226 | grok.title(u'Course Adviser 700L') |
---|
227 | grok.permissions('waeup.showStudents', |
---|
228 | 'waeup.viewAcademics', |
---|
229 | 'waeup.exportData') |
---|
230 | |
---|
231 | class CourseAdviser800(grok.Role): |
---|
232 | """The 800 level course adviser role is meant for the |
---|
233 | assignment of dynamic roles only. |
---|
234 | """ |
---|
235 | grok.name('waeup.local.CourseAdviser800') |
---|
236 | grok.title(u'Course Adviser 800L') |
---|
237 | grok.permissions('waeup.showStudents', |
---|
238 | 'waeup.viewAcademics', |
---|
239 | 'waeup.exportData') |
---|
240 | |
---|
241 | class Lecturer(grok.Role): |
---|
242 | """The lecturer role is meant for the |
---|
243 | assignment of dynamic roles only. |
---|
244 | """ |
---|
245 | grok.name('waeup.local.Lecturer') |
---|
246 | grok.title(u'Lecturer') |
---|
247 | grok.permissions('waeup.showStudents', |
---|
248 | 'waeup.editScores', |
---|
249 | 'waeup.viewAcademics', |
---|
250 | 'waeup.exportData') |
---|
251 | |
---|
252 | class Owner(grok.Role): |
---|
253 | grok.name('waeup.local.Owner') |
---|
254 | grok.title(u'Owner') |
---|
255 | grok.permissions('waeup.editUser') |
---|
256 | |
---|
257 | # Site Roles |
---|
258 | class AcademicsOfficer(grok.Role): |
---|
259 | grok.name('waeup.AcademicsOfficer') |
---|
260 | grok.title(u'Academics Officer (view only)') |
---|
261 | grok.permissions('waeup.viewAcademics') |
---|
262 | |
---|
263 | class AcademicsManager(grok.Role): |
---|
264 | grok.name('waeup.AcademicsManager') |
---|
265 | grok.title(u'Academics Manager') |
---|
266 | grok.permissions('waeup.viewAcademics', |
---|
267 | 'waeup.manageAcademics') |
---|
268 | |
---|
269 | class ACManager(grok.Role): |
---|
270 | grok.name('waeup.ACManager') |
---|
271 | grok.title(u'Access Code Manager') |
---|
272 | grok.permissions('waeup.manageACBatches') |
---|
273 | |
---|
274 | class DataCenterManager(grok.Role): |
---|
275 | grok.name('waeup.DataCenterManager') |
---|
276 | grok.title(u'Datacenter Manager') |
---|
277 | grok.permissions('waeup.manageDataCenter') |
---|
278 | |
---|
279 | class ImportManager(grok.Role): |
---|
280 | grok.name('waeup.ImportManager') |
---|
281 | grok.title(u'Import Manager') |
---|
282 | grok.permissions('waeup.manageDataCenter', |
---|
283 | 'waeup.importData') |
---|
284 | |
---|
285 | class ExportManager(grok.Role): |
---|
286 | grok.name('waeup.ExportManager') |
---|
287 | grok.title(u'Export Manager') |
---|
288 | grok.permissions('waeup.manageDataCenter', |
---|
289 | 'waeup.exportData') |
---|
290 | |
---|
291 | class BursaryOfficer(grok.Role): |
---|
292 | grok.name('waeup.BursaryOfficer') |
---|
293 | grok.title(u'Bursary Officer') |
---|
294 | grok.permissions('waeup.showStudents', |
---|
295 | 'waeup.viewAcademics', |
---|
296 | 'waeup.exportBursaryData') |
---|
297 | |
---|
298 | class UsersManager(grok.Role): |
---|
299 | grok.name('waeup.UsersManager') |
---|
300 | grok.title(u'Users Manager') |
---|
301 | grok.permissions('waeup.manageUsers', |
---|
302 | 'waeup.editUser') |
---|
303 | |
---|
304 | class WorkflowManager(grok.Role): |
---|
305 | grok.name('waeup.WorkflowManager') |
---|
306 | grok.title(u'Workflow Manager') |
---|
307 | grok.permissions('waeup.triggerTransition') |
---|
308 | |
---|
309 | class PortalManager(grok.Role): |
---|
310 | grok.name('waeup.PortalManager') |
---|
311 | grok.title(u'Portal Manager') |
---|
312 | grok.permissions('waeup.managePortal', |
---|
313 | 'waeup.manageUsers', |
---|
314 | 'waeup.viewAcademics', 'waeup.manageAcademics', |
---|
315 | 'waeup.manageACBatches', |
---|
316 | 'waeup.manageDataCenter', |
---|
317 | 'waeup.importData', |
---|
318 | 'waeup.exportData', |
---|
319 | 'waeup.viewTranscript', |
---|
320 | 'waeup.managePortalConfiguration', 'waeup.viewApplication', |
---|
321 | 'waeup.manageApplication', 'waeup.handleApplication', |
---|
322 | 'waeup.viewApplicantsTab', 'waeup.payApplicant', |
---|
323 | 'waeup.viewApplicationStatistics', |
---|
324 | 'waeup.viewStudent', 'waeup.manageStudent', |
---|
325 | 'waeup.clearStudent', 'waeup.payStudent', |
---|
326 | 'waeup.uploadStudentFile', 'waeup.showStudents', |
---|
327 | 'waeup.editScores', |
---|
328 | 'waeup.triggerTransition', |
---|
329 | 'waeup.viewStudentsContainer','waeup.viewStudentsTab', |
---|
330 | 'waeup.handleAccommodation', |
---|
331 | 'waeup.viewHostels', 'waeup.manageHostels', |
---|
332 | 'waeup.editUser', |
---|
333 | 'waeup.loginAsStudent', |
---|
334 | 'waeup.manageReports', |
---|
335 | 'waeup.manageJobs', |
---|
336 | ) |
---|
337 | |
---|
338 | class CCOfficer(grok.Role): |
---|
339 | """This is basically a copy of the the PortalManager class. We exclude some |
---|
340 | 'dangerous' permissions by commenting them out. |
---|
341 | """ |
---|
342 | grok.baseclass() |
---|
343 | grok.name('waeup.CCOfficer') |
---|
344 | grok.title(u'Computer Center Officer') |
---|
345 | grok.permissions(#'waeup.managePortal', |
---|
346 | #'waeup.manageUsers', |
---|
347 | 'waeup.viewAcademics', 'waeup.manageAcademics', |
---|
348 | #'waeup.manageACBatches', |
---|
349 | 'waeup.manageDataCenter', |
---|
350 | #'waeup.importData', |
---|
351 | 'waeup.exportData', |
---|
352 | 'waeup.viewTranscript', |
---|
353 | 'waeup.managePortalConfiguration', 'waeup.viewApplication', |
---|
354 | 'waeup.manageApplication', 'waeup.handleApplication', |
---|
355 | 'waeup.viewApplicantsTab', 'waeup.payApplicant', |
---|
356 | 'waeup.viewApplicationStatistics', |
---|
357 | 'waeup.viewStudent', 'waeup.manageStudent', |
---|
358 | 'waeup.clearStudent', 'waeup.payStudent', |
---|
359 | 'waeup.uploadStudentFile', 'waeup.showStudents', |
---|
360 | 'waeup.editScores', |
---|
361 | #'waeup.triggerTransition', |
---|
362 | 'waeup.viewStudentsContainer','waeup.viewStudentsTab', |
---|
363 | 'waeup.handleAccommodation', |
---|
364 | 'waeup.viewHostels', 'waeup.manageHostels', |
---|
365 | #'waeup.editUser', |
---|
366 | #'waeup.loginAsStudent', |
---|
367 | 'waeup.manageReports', |
---|
368 | #'waeup.manageJobs', |
---|
369 | ) |
---|
370 | |
---|
371 | def get_all_roles(): |
---|
372 | """Return a list of tuples ``<ROLE-NAME>, <ROLE>``. |
---|
373 | """ |
---|
374 | return getUtilitiesFor(IRole) |
---|
375 | |
---|
376 | def get_waeup_roles(also_local=False): |
---|
377 | """Get all Kofa roles. |
---|
378 | |
---|
379 | Kofa roles are ordinary roles whose id by convention starts with |
---|
380 | a ``waeup.`` prefix. |
---|
381 | |
---|
382 | If `also_local` is ``True`` (``False`` by default), also local |
---|
383 | roles are returned. Local Kofa roles are such whose id starts |
---|
384 | with ``waeup.local.`` prefix (this is also a convention). |
---|
385 | |
---|
386 | Returns a generator of the found roles. |
---|
387 | """ |
---|
388 | for name, item in get_all_roles(): |
---|
389 | if not name.startswith('waeup.'): |
---|
390 | # Ignore non-Kofa roles... |
---|
391 | continue |
---|
392 | if not also_local and name.startswith('waeup.local.'): |
---|
393 | # Ignore local roles... |
---|
394 | continue |
---|
395 | yield item |
---|
396 | |
---|
397 | def get_waeup_role_names(): |
---|
398 | """Get the ids of all Kofa roles. |
---|
399 | |
---|
400 | See :func:`get_waeup_roles` for what a 'KofaRole' is. |
---|
401 | |
---|
402 | This function returns a sorted list of Kofa role names. |
---|
403 | """ |
---|
404 | return sorted([x.id for x in get_waeup_roles()]) |
---|
405 | |
---|
406 | class LocalRolesAssignable(grok.Adapter): |
---|
407 | """Default implementation for `ILocalRolesAssignable`. |
---|
408 | |
---|
409 | This adapter returns a list for dictionaries for objects for which |
---|
410 | we want to know the roles assignable to them locally. |
---|
411 | |
---|
412 | The returned dicts contain a ``name`` and a ``title`` entry which |
---|
413 | give a role (``name``) and a description, for which kind of users |
---|
414 | the permission is meant to be used (``title``). |
---|
415 | |
---|
416 | Having this adapter registered we make sure, that for each normal |
---|
417 | object we get a valid `ILocalRolesAssignable` adapter. |
---|
418 | |
---|
419 | Objects that want to offer certain local roles, can do so by |
---|
420 | setting a (preferably class-) attribute to a list of role ids. |
---|
421 | |
---|
422 | You can also define different adapters for different contexts to |
---|
423 | have different role lookup mechanisms become available. But in |
---|
424 | normal cases it should be sufficient to use this basic adapter. |
---|
425 | """ |
---|
426 | grok.context(Interface) |
---|
427 | grok.provides(ILocalRolesAssignable) |
---|
428 | |
---|
429 | _roles = [] |
---|
430 | |
---|
431 | def __init__(self, context): |
---|
432 | self.context = context |
---|
433 | role_ids = getattr(context, 'local_roles', self._roles) |
---|
434 | self._roles = [(name, role) for name, role in get_all_roles() |
---|
435 | if name in role_ids] |
---|
436 | return |
---|
437 | |
---|
438 | def __call__(self): |
---|
439 | """Get a list of dictionaries containing ``names`` (the roles to |
---|
440 | assign) and ``titles`` (some description of the type of user |
---|
441 | to assign each role to). |
---|
442 | """ |
---|
443 | list_of_dict = [dict( |
---|
444 | name=name, |
---|
445 | title=role.title, |
---|
446 | description=role.description) |
---|
447 | for name, role in self._roles] |
---|
448 | return sorted(list_of_dict, key=lambda x: x['name']) |
---|
449 | |
---|
450 | def get_all_users(): |
---|
451 | """Get a list of dictionaries. |
---|
452 | """ |
---|
453 | users = sorted(grok.getSite()['users'].items(), key=lambda x: x[1].title) |
---|
454 | for key, val in users: |
---|
455 | yield(dict(name=key, val=val)) |
---|
456 | |
---|
457 | def get_users_with_local_roles(context): |
---|
458 | """Get a list of dicts representing the local roles set for `context`. |
---|
459 | |
---|
460 | Each dict returns `user_name`, `user_title`, `local_role`, |
---|
461 | `local_role_title`, and `setting` for each entry in the local |
---|
462 | roles map of the `context` object. |
---|
463 | """ |
---|
464 | try: |
---|
465 | role_map = IPrincipalRoleMap(context) |
---|
466 | except TypeError: |
---|
467 | # no map no roles. |
---|
468 | raise StopIteration |
---|
469 | for local_role, user_name, setting in role_map.getPrincipalsAndRoles(): |
---|
470 | user = grok.getSite()['users'].get(user_name,None) |
---|
471 | user_title = getattr(user, 'title', user_name) |
---|
472 | local_role_title = getattr( |
---|
473 | dict(get_all_roles()).get(local_role, None), 'title', None) |
---|
474 | yield dict(user_name = user_name, |
---|
475 | user_title = user_title, |
---|
476 | local_role = local_role, |
---|
477 | local_role_title = local_role_title, |
---|
478 | setting = setting) |
---|
479 | |
---|
480 | def get_users_with_role(role, context): |
---|
481 | """Get a list of dicts representing the usres who have been granted |
---|
482 | a role for `context`. |
---|
483 | """ |
---|
484 | try: |
---|
485 | role_map = IPrincipalRoleMap(context) |
---|
486 | except TypeError: |
---|
487 | # no map no roles. |
---|
488 | raise StopIteration |
---|
489 | for user_name, setting in role_map.getPrincipalsForRole(role): |
---|
490 | user = grok.getSite()['users'].get(user_name,None) |
---|
491 | user_title = getattr(user, 'title', user_name) |
---|
492 | user_email = getattr(user, 'email', None) |
---|
493 | yield dict(user_name = user_name, |
---|
494 | user_title = user_title, |
---|
495 | user_email = user_email, |
---|
496 | setting = setting) |
---|