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

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

Sort user list.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 10.5 KB
Line 
1## $Id: permissions.py 8774 2012-06-22 10:40:31Z 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.viewApplicationStatistics',
187                     'waeup.viewStudent', 'waeup.manageStudent',
188                     'waeup.clearStudent', 'waeup.payStudent',
189                     'waeup.uploadStudentFile', 'waeup.showStudents',
190                     'waeup.viewStudentsContainer','waeup.viewStudentsTab',
191                     'waeup.viewHostels', 'waeup.manageHostels',
192                     'waeup.editUser'
193                     )
194
195def get_all_roles():
196    """Return a list of tuples ``<ROLE-NAME>, <ROLE>``.
197    """
198    return getUtilitiesFor(IRole)
199
200def get_waeup_roles(also_local=False):
201    """Get all Kofa roles.
202
203    Kofa roles are ordinary roles whose id by convention starts with
204    a ``waeup.`` prefix.
205
206    If `also_local` is ``True`` (``False`` by default), also local
207    roles are returned. Local Kofa roles are such whose id starts
208    with ``waeup.local.`` prefix (this is also a convention).
209
210    Returns a generator of the found roles.
211    """
212    for name, item in get_all_roles():
213        if not name.startswith('waeup.'):
214            # Ignore non-Kofa roles...
215            continue
216        if not also_local and name.startswith('waeup.local.'):
217            # Ignore local roles...
218            continue
219        yield item
220
221def get_waeup_role_names():
222    """Get the ids of all Kofa roles.
223
224    See :func:`get_waeup_roles` for what a 'KofaRole' is.
225
226    This function returns a sorted list of Kofa role names.
227    """
228    return sorted([x.id for x in get_waeup_roles()])
229
230class LocalRolesAssignable(grok.Adapter):
231    """Default implementation for `ILocalRolesAssignable`.
232
233    This adapter returns a list for dictionaries for objects for which
234    we want to know the roles assignable to them locally.
235
236    The returned dicts contain a ``name`` and a ``title`` entry which
237    give a role (``name``) and a description, for which kind of users
238    the permission is meant to be used (``title``).
239
240    Having this adapter registered we make sure, that for each normal
241    object we get a valid `ILocalRolesAssignable` adapter.
242
243    Objects that want to offer certain local roles, can do so by
244    setting a (preferably class-) attribute to a list of role ids.
245
246    You can also define different adapters for different contexts to
247    have different role lookup mechanisms become available. But in
248    normal cases it should be sufficient to use this basic adapter.
249    """
250    grok.context(Interface)
251    grok.provides(ILocalRolesAssignable)
252
253    _roles = []
254
255    def __init__(self, context):
256        self.context = context
257        role_ids = getattr(context, 'local_roles', self._roles)
258        self._roles = [(name, role) for name, role in get_all_roles()
259                       if name in role_ids]
260        return
261
262    def __call__(self):
263        """Get a list of dictionaries containing ``names`` (the roles to
264        assign) and ``titles`` (some description of the type of user
265        to assign each role to).
266        """
267        list_of_dict = [dict(
268                name=name,
269                title=role.title,
270                description=role.description)
271                for name, role in self._roles]
272        return sorted(list_of_dict, key=lambda x: x['name'])
273
274def get_all_users():
275    """Get a list of dictionaries.
276    """
277    users = sorted(grok.getSite()['users'].items(), key=lambda x: x[1].title)
278    for key, val in users:
279        yield(dict(name=key, val=val))
280
281def get_users_with_local_roles(context):
282    """Get a list of dicts representing the local roles set for `context`.
283
284    Each dict returns `user_name`, `user_title`, `local_role`,
285    `local_role_title`, and `setting` for each entry in the local
286    roles map of the `context` object.
287    """
288    try:
289        role_map = IPrincipalRoleMap(context)
290    except TypeError:
291        # no map no roles.
292        raise StopIteration
293    for local_role, user_name, setting in role_map.getPrincipalsAndRoles():
294        user = grok.getSite()['users'].get(user_name,None)
295        user_title = getattr(user, 'title', user_name)
296        local_role_title = dict(get_all_roles())[local_role].title
297        yield dict(user_name = user_name,
298                   user_title = user_title,
299                   local_role = local_role,
300                   local_role_title = local_role_title,
301                   setting = setting)
Note: See TracBrowser for help on using the repository browser.