[7192] | 1 | ## $Id: dynamicroles.py 7220 2011-11-26 22:19:41Z henrik $ |
---|
[7113] | 2 | ## |
---|
[7156] | 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
[7113] | 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. |
---|
[7192] | 8 | ## |
---|
[7113] | 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. |
---|
[7192] | 13 | ## |
---|
[7113] | 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 | """Security policy components for applicants. |
---|
| 19 | |
---|
| 20 | Applicants need special security policy treatment, as officers with |
---|
| 21 | local roles for departments and faculties might have additional |
---|
| 22 | permissions (local roles on depts/faculties) here. |
---|
| 23 | """ |
---|
| 24 | import grok |
---|
| 25 | from zope.securitypolicy.interfaces import ( |
---|
| 26 | IPrincipalRoleManager, IPrincipalPermissionManager,) |
---|
| 27 | from zope.securitypolicy.principalrole import AnnotationPrincipalRoleManager |
---|
| 28 | from zope.securitypolicy.principalpermission import ( |
---|
| 29 | AnnotationPrincipalPermissionManager,) |
---|
| 30 | from zope.securitypolicy.settings import Allow, Deny, Unset |
---|
| 31 | from waeup.sirp.applicants.interfaces import IApplicant |
---|
[7159] | 32 | from waeup.sirp.students.dynamicroles import StudentPrincipalRoleManager |
---|
[7113] | 33 | |
---|
| 34 | # All components in here have the same context: Applicant instances |
---|
| 35 | grok.context(IApplicant) |
---|
| 36 | |
---|
[7156] | 37 | class ApplicantPrincipalRoleManager(StudentPrincipalRoleManager): |
---|
[7155] | 38 | |
---|
[7113] | 39 | grok.provides(IPrincipalRoleManager) |
---|
| 40 | |
---|
[7126] | 41 | #: The attribute name to lookup for additional roles |
---|
| 42 | extra_attrib = 'course1' |
---|
[7155] | 43 | subcontainer = None |
---|
[7126] | 44 | |
---|
[7220] | 45 | # Role name mapping: |
---|
| 46 | # role name to look for in `extra_attrib` and parents |
---|
| 47 | # to |
---|
| 48 | # role to add in case this role was found |
---|
| 49 | rolename_mapping = { |
---|
| 50 | 'waeup.local.ClearanceOfficer':'waeup.ApplicationsOfficer', |
---|
| 51 | } |
---|