source: main/waeup.kofa/trunk/src/waeup/kofa/permissions.py @ 8426

Last change on this file since 8426 was 8399, checked in by Henrik Bettermann, 12 years ago

waeup.managePortalSettings does not exist.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 10.2 KB
Line 
1## $Id: permissions.py 8399 2012-05-09 16:30:13Z 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##
18import grok
19from zope.component import getUtilitiesFor
20from zope.interface import Interface
21from zope.securitypolicy.interfaces import IRole, IPrincipalRoleMap
22from waeup.kofa.interfaces import ILocalRolesAssignable
23
24class 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
36class Anonymous(grok.Permission):
37    """Only-anonymous-can-do-this-permission.
38    """
39    grok.name('waeup.Anonymous')
40
41class Authenticated(grok.Permission):
42    """Only-logged-in-users-can-do-this-permission.
43    """
44    grok.name('waeup.Authenticated')
45
46class ViewAcademicsPermission(grok.Permission):
47    grok.name('waeup.viewAcademics')
48
49class ManageAcademicsPermission(grok.Permission):
50    grok.name('waeup.manageAcademics')
51
52class ManagePortal(grok.Permission):
53    grok.name('waeup.managePortal')
54
55class ManageUsers(grok.Permission):
56    grok.name('waeup.manageUsers')
57
58class ShowStudents(grok.Permission):
59    grok.name('waeup.showStudents')
60
61class EditUser(grok.Permission):
62    grok.name('waeup.editUser')
63
64class ManageDataCenter(grok.Permission):
65    grok.name('waeup.manageDataCenter')
66
67class ImportData(grok.Permission):
68    grok.name('waeup.importData')
69
70class ManagePortalConfiguration(grok.Permission):
71    grok.name('waeup.managePortalConfiguration')
72
73class ManageACBatches(grok.Permission):
74    grok.name('waeup.manageACBatches')
75
76# Local Roles
77class DepartmentManager(grok.Role):
78    grok.name('waeup.local.DepartmentManager')
79    grok.title(u'Department Manager')
80    grok.permissions('waeup.manageAcademics','waeup.showStudents')
81
82class ClearanceOfficer(grok.Role):
83    """The clearance officer role is meant for the
84    assignment of dynamic roles only.
85    """
86    grok.name('waeup.local.ClearanceOfficer')
87    grok.title(u'Clearance Officer')
88    grok.permissions('waeup.showStudents', 'waeup.viewAcademics')
89
90class CourseAdviser100(grok.Role):
91    """The 100 level course adviser role is meant for the
92    assignment of dynamic roles only.
93    """
94    grok.name('waeup.local.CourseAdviser100')
95    grok.title(u'Course Adviser 100L')
96    grok.permissions('waeup.showStudents', 'waeup.viewAcademics')
97
98class CourseAdviser200(grok.Role):
99    """The course 200 level adviser role is meant for the
100    assignment of dynamic roles only.
101    """
102    grok.name('waeup.local.CourseAdviser200')
103    grok.title(u'Course Adviser 200L')
104    grok.permissions('waeup.showStudents', 'waeup.viewAcademics')
105
106class CourseAdviser300(grok.Role):
107    """The 300 level course adviser role is meant for the
108    assignment of dynamic roles only.
109    """
110    grok.name('waeup.local.CourseAdviser300')
111    grok.title(u'Course Adviser 300L')
112    grok.permissions('waeup.showStudents', 'waeup.viewAcademics')
113
114class CourseAdviser400(grok.Role):
115    """The 400 level course adviser role is meant for the
116    assignment of dynamic roles only.
117    """
118    grok.name('waeup.local.CourseAdviser400')
119    grok.title(u'Course Adviser 400L')
120    grok.permissions('waeup.showStudents', 'waeup.viewAcademics')
121
122class CourseAdviser500(grok.Role):
123    """The 500 level course adviser role is meant for the
124    assignment of dynamic roles only.
125    """
126    grok.name('waeup.local.CourseAdviser500')
127    grok.title(u'Course Adviser 500L')
128    grok.permissions('waeup.showStudents', 'waeup.viewAcademics')
129
130class CourseAdviser600(grok.Role):
131    """The 600 level course adviser role is meant for the
132    assignment of dynamic roles only.
133    """
134    grok.name('waeup.local.CourseAdviser600')
135    grok.title(u'Course Adviser 600L')
136    grok.permissions('waeup.showStudents', 'waeup.viewAcademics')
137
138class Owner(grok.Role):
139    grok.name('waeup.local.Owner')
140    grok.title(u'Owner')
141    grok.permissions('waeup.editUser')
142
143# Site Roles
144class AcademicsOfficer(grok.Role):
145    grok.name('waeup.AcademicsOfficer')
146    grok.title(u'Academics Officer (view only)')
147    grok.permissions('waeup.viewAcademics')
148
149class AcademicsManager(grok.Role):
150    grok.name('waeup.AcademicsManager')
151    grok.title(u'Academics Manager')
152    grok.permissions('waeup.viewAcademics',
153                     'waeup.manageAcademics')
154
155class ACManager(grok.Role):
156    grok.name('waeup.ACManager')
157    grok.title(u'Access Code Manager')
158    grok.permissions('waeup.manageACBatches')
159
160class DataCenterManager(grok.Role):
161    grok.name('waeup.DataCenterManager')
162    grok.title(u'Datacenter Manager')
163    grok.permissions('waeup.manageDataCenter')
164
165class ImportManager(grok.Role):
166    grok.name('waeup.ImportManager')
167    grok.title(u'Import Manager')
168    grok.permissions('waeup.manageDataCenter',
169                     'waeup.importData')
170
171class UsersManager(grok.Role):
172    grok.name('waeup.UsersManager')
173    grok.title(u'Users Manager')
174    grok.permissions('waeup.manageUsers')
175
176class PortalManager(grok.Role):
177    grok.name('waeup.PortalManager')
178    grok.title(u'Portal Manager')
179    grok.permissions('waeup.managePortal', 'waeup.manageUsers',
180                     'waeup.viewAcademics', 'waeup.manageAcademics',
181                     'waeup.manageACBatches',
182                     'waeup.manageDataCenter', 'waeup.importData',
183                     'waeup.managePortalConfiguration', 'waeup.viewApplication',
184                     'waeup.manageApplication', 'waeup.handleApplication',
185                     'waeup.viewApplicantsTab', 'waeup.payApplicant',
186                     'waeup.viewStudent', 'waeup.manageStudent',
187                     'waeup.clearStudent', 'waeup.payStudent',
188                     'waeup.uploadStudentFile', 'waeup.showStudents',
189                     'waeup.viewStudentsContainer','waeup.viewStudentsTab',
190                     'waeup.viewHostels', 'waeup.manageHostels',
191                     'waeup.editUser'
192                     )
193
194def get_all_roles():
195    """Return a list of tuples ``<ROLE-NAME>, <ROLE>``.
196    """
197    return getUtilitiesFor(IRole)
198
199def get_waeup_roles(also_local=False):
200    """Get all Kofa roles.
201
202    Kofa roles are ordinary roles whose id by convention starts with
203    a ``waeup.`` prefix.
204
205    If `also_local` is ``True`` (``False`` by default), also local
206    roles are returned. Local Kofa roles are such whose id starts
207    with ``waeup.local.`` prefix (this is also a convention).
208
209    Returns a generator of the found roles.
210    """
211    for name, item in get_all_roles():
212        if not name.startswith('waeup.'):
213            # Ignore non-Kofa roles...
214            continue
215        if not also_local and name.startswith('waeup.local.'):
216            # Ignore local roles...
217            continue
218        yield item
219
220def get_waeup_role_names():
221    """Get the ids of all Kofa roles.
222
223    See :func:`get_waeup_roles` for what a 'KofaRole' is.
224
225    This function returns a sorted list of Kofa role names.
226    """
227    return sorted([x.id for x in get_waeup_roles()])
228
229class LocalRolesAssignable(grok.Adapter):
230    """Default implementation for `ILocalRolesAssignable`.
231
232    This adapter returns a list for dictionaries for objects for which
233    we want to know the roles assignable to them locally.
234
235    The returned dicts contain a ``name`` and a ``title`` entry which
236    give a role (``name``) and a description, for which kind of users
237    the permission is meant to be used (``title``).
238
239    Having this adapter registered we make sure, that for each normal
240    object we get a valid `ILocalRolesAssignable` adapter.
241
242    Objects that want to offer certain local roles, can do so by
243    setting a (preferably class-) attribute to a list of role ids.
244
245    You can also define different adapters for different contexts to
246    have different role lookup mechanisms become available. But in
247    normal cases it should be sufficient to use this basic adapter.
248    """
249    grok.context(Interface)
250    grok.provides(ILocalRolesAssignable)
251
252    _roles = []
253
254    def __init__(self, context):
255        self.context = context
256        role_ids = getattr(context, 'local_roles', self._roles)
257        self._roles = [(name, role) for name, role in get_all_roles()
258                       if name in role_ids]
259        return
260
261    def __call__(self):
262        """Get a list of dictionaries containing ``names`` (the roles to
263        assign) and ``titles`` (some description of the type of user
264        to assign each role to).
265        """
266        list_of_dict = [dict(
267                name=name,
268                title=role.title,
269                description=role.description)
270                for name, role in self._roles]
271        return sorted(list_of_dict, key=lambda x: x['name'])
272
273def get_users_with_local_roles(context):
274    """Get a list of dicts representing the local roles set for `context`.
275
276    Each dict returns `user_name`, `user_title`, `local_role`,
277    `local_role_title`, and `setting` for each entry in the local
278    roles map of the `context` object.
279    """
280    try:
281        role_map = IPrincipalRoleMap(context)
282    except TypeError:
283        # no map no roles.
284        raise StopIteration
285    for local_role, user_name, setting in role_map.getPrincipalsAndRoles():
286        user = grok.getSite()['users'].get(user_name,None)
287        user_title = getattr(user, 'title', user_name)
288        local_role_title = dict(get_all_roles())[local_role].title
289        yield dict(user_name = user_name,
290                   user_title = user_title,
291                   local_role = local_role,
292                   local_role_title = local_role_title,
293                   setting = setting)
Note: See TracBrowser for help on using the repository browser.