source: main/waeup.kofa/branches/henrik-transcript-workflow/src/waeup/kofa/permissions.py @ 15149

Last change on this file since 15149 was 15134, checked in by Henrik Bettermann, 6 years ago

Add ne permissions and roles.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 27.7 KB
RevLine 
[14603]1# $Id: permissions.py 15134 2018-09-09 10:36:38Z 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#
[3521]18import grok
[6157]19from zope.component import getUtilitiesFor
[6144]20from zope.interface import Interface
[6163]21from zope.securitypolicy.interfaces import IRole, IPrincipalRoleMap
[7811]22from waeup.kofa.interfaces import ILocalRolesAssignable
[3521]23
[14603]24
[4789]25class Public(grok.Permission):
[12844]26    """The Public or everyone-can-do-this-permission is being applied
27    to views/pages that are used by everyone.
[4789]28    """
29    grok.name('waeup.Public')
[6142]30
[14603]31
[5433]32class Anonymous(grok.Permission):
[12843]33    """The Anonymous permission is applied to
[12844]34    views/pages which are dedicated to anonymous users only.
35    Logged-in users can't access these views.
[5433]36    """
[6142]37    grok.name('waeup.Anonymous')
[4789]38
[14603]39
[7184]40class Authenticated(grok.Permission):
[12843]41    """The Authenticated permission is applied to pages
[12835]42    which can only be used by logged-in users and not by anonymous users.
[7184]43    """
44    grok.name('waeup.Authenticated')
[4789]45
[14603]46
[12835]47class ViewAcademics(grok.Permission):
[12843]48    """The ViewAcademics permission is applied to all
[12835]49    views of the Academic Section. Users with this permission can view but
50    not edit content in the Academic Section.
51    """
[7184]52    grok.name('waeup.viewAcademics')
53
[14603]54
[12835]55class ManageAcademics(grok.Permission):
[12844]56    """The ManageAcademics permission is applied to all edit/manage
[12835]57    pages in the Academic Section. Users who have this permission
58    can change/edit context objects.
59    """
[8367]60    grok.name('waeup.manageAcademics')
[4789]61
[14603]62
[8367]63class ManagePortal(grok.Permission):
[12843]64    """The ManagePortal permission is used for very few pages
[14603]65    (e.g. the DatacenterSettings page). Only PortalManagers have this
[12844]66    permission. It is furthermore used to control delete methods of container
[12843]67    pages in the Academic Section. The ManageAcademics permission,
[12835]68    described above, does enable users to edit content but not to
69    remove sub-containers, like faculties, departments or certificates.
[12843]70    Users must have the ManagePortal permission too to remove
[12835]71    entire containers.
72    """
[8367]73    grok.name('waeup.managePortal')
74
[14603]75
[4789]76class ManageUsers(grok.Permission):
[12843]77    """The ManageUsers permission is a real superuser permission
[12835]78    and therefore very 'dangerous'. It allows to add, remove or edit
79    user accounts. Editing a user account includes the option to assign
80    or remove roles. That means that a user with this permission can lock out
[14603]81    other users by either removing their account or by removing
[12844]82    permissions.
[12835]83    """
[4789]84    grok.name('waeup.manageUsers')
[6142]85
[14603]86
[7205]87class ShowStudents(grok.Permission):
[12843]88    """Users with this permission do not neccessarily see the 'Students' tab
89    but they can search for students at department, certificate or course
90    level. If they additionally have the ExportData permission they can
91    export the data as csv files.
[12835]92
[12844]93    Bursary or Department Officers don't have the ExportData
[12835]94    permission (see Roles section) and are only allowed to export bursary
95    or payments overview data respectively.
96    """
[7205]97    grok.name('waeup.showStudents')
98
[14603]99
[11862]100class ClearAllStudents(grok.Permission):
[12843]101    """The ClearAllStudents permission allows to clear all students
[12844]102    in a department at one sweep.
[12835]103    """
[11862]104    grok.name('waeup.clearAllStudents')
105
[14603]106
[10632]107class EditScores(grok.Permission):
[12843]108    """The EditScores permission allows to edit scores in course tickets.
[12835]109    """
[10632]110    grok.name('waeup.editScores')
111
[14603]112
[12843]113class TriggerTransition(grok.Permission):
114    """The TriggerTransition permission allows to trigger workflow transitions
115    of student and document objects.
116    """
117    grok.name('waeup.triggerTransition')
118
[14603]119
[7163]120class EditUser(grok.Permission):
[12843]121    """The EditUser permission is required for editing
[12835]122    single user accounts.
123    """
[7163]124    grok.name('waeup.editUser')
125
[14603]126
[6127]127class ManageDataCenter(grok.Permission):
[12843]128    """The ManageDataCenter permission allows to access all pages
[12844]129    in the Data Center and to upload files. It does not automatically
[12847]130    allow to process uploaded data files.
[12835]131    """
[6127]132    grok.name('waeup.manageDataCenter')
[6142]133
[14603]134
[8367]135class ImportData(grok.Permission):
[14603]136    """The ImportData permission allows to batch process (import) any kind of
[12847]137    portal data except for user data. The User Data processor
[12844]138    requires also the ManageUsers permission.
[12835]139    """
[8367]140    grok.name('waeup.importData')
141
[14603]142
[10177]143class ExportData(grok.Permission):
[12844]144    """The ExportData permission allows to export any kind of portal data.
[12835]145    """
[10177]146    grok.name('waeup.exportData')
147
[14603]148
[10279]149class ExportPaymentsOverview(grok.Permission):
150    grok.name('waeup.exportPaymentsOverview')
151
[14603]152
[10279]153class ExportBursaryData(grok.Permission):
154    grok.name('waeup.exportBursaryData')
155
[14603]156
[6907]157class ManagePortalConfiguration(grok.Permission):
[12843]158    """The ManagePortalConfiguration permission allows to
[12835]159    edit global and sessional portal configuration data.
160    """
[6907]161    grok.name('waeup.managePortalConfiguration')
[6155]162
[14603]163
[7181]164class ManageACBatches(grok.Permission):
[12843]165    """The ManageACBatches permission allows to view and
[12835]166    manage accesscodes.
167    """
[7181]168    grok.name('waeup.manageACBatches')
169
[14603]170
[11673]171class PutBiometricDataPermission(grok.Permission):
[12835]172    """This permission allows to upload/change biometric data.
[11673]173    """
174    grok.name('waeup.putBiometricData')
175
[14603]176
[11665]177class GetBiometricDataPermission(grok.Permission):
[12835]178    """This permission allows to read biometric data.
[11665]179    """
180    grok.name('waeup.getBiometricData')
181
182
[6125]183# Local Roles
[12847]184
[10226]185class ApplicationsManager(grok.Role):
[13570]186    """The local ApplicationsManager role can be assigned at applicants
[14603]187    container and at department level. At department level an Applications
188    Manager can manage all applicants which desire to study a programme
[13570]189    offered by the department (1st Choice Course of Study).
190
[14603]191    At container level (local) Applications Managers gain permissions which
192    allow to manage the container and all applicants inside the container.  At
193    container level the permission set of this local role corresonds with the
194    permission set of the same-named global role.
[12843]195    """
[10226]196    grok.name('waeup.local.ApplicationsManager')
197    grok.title(u'Applications Manager')
[13570]198    grok.permissions('waeup.viewAcademics',
199                     'waeup.manageApplication', 'waeup.viewApplication',
200                     'waeup.payApplicant')
[10226]201
[14603]202
[14992]203class DepartmentOfficer(grok.Role):
204    """The local DepartmentOfficer role can be assigned at faculty or
205    department level. The role allows to list all student data within the
206    faculty/department the local role is assigned.
207    """
208    grok.name('waeup.local.DepartmentOfficer')
209    grok.title(u'Department Officer')
210    grok.permissions('waeup.showStudents',
211                     'waeup.viewAcademics',
212                     'waeup.exportPaymentsOverview')
213
214
[7185]215class DepartmentManager(grok.Role):
[12847]216    """The local DepartmentManager role can be assigned at faculty or
217    department level. The role allows to edit all data within this container.
218    It does not automatically allow to remove sub-containers.
219
220    Department Managers (Dean of Faculty or Head of Department respectively)
221    can also list student data but not access student pages.
[12843]222    """
[7185]223    grok.name('waeup.local.DepartmentManager')
224    grok.title(u'Department Manager')
[10248]225    grok.permissions('waeup.manageAcademics',
226                     'waeup.showStudents',
227                     'waeup.exportData')
[6142]228
[14603]229
[6655]230class ClearanceOfficer(grok.Role):
[12847]231    """The local ClearanceOfficer role can be assigned at faculty or
232    department level. The role allows to list or export all student
233    data within the faculty/department the local role is assigned.
234
235    Clearance Officers can furthermore clear all students or reject clearance
236    of all students in their faculty/department. They get the
237    StudentsClearanceOfficer role for this subset of students.
[7168]238    """
[6655]239    grok.name('waeup.local.ClearanceOfficer')
240    grok.title(u'Clearance Officer')
[10248]241    grok.permissions('waeup.showStudents',
242                     'waeup.viewAcademics',
[11862]243                     'waeup.exportData',
244                     'waeup.clearAllStudents')
[6655]245
[14603]246
[10639]247class LocalStudentsManager(grok.Role):
[12847]248    """The local LocalStudentsManager role can be assigned at faculty or
249    department level. The role allows to view all data and to view or export
250    all student data within the faculty/department the local role is assigned.
251
252    Local Students Managers can furthermore manage data of students
253    in their faculty/department. They get the StudentsManager role for
254    this subset of students.
[10639]255    """
256    grok.name('waeup.local.LocalStudentsManager')
257    grok.title(u'Students Manager')
258    grok.permissions('waeup.showStudents',
259                     'waeup.viewAcademics',
260                     'waeup.exportData')
261
[14603]262
[10639]263class LocalWorkflowManager(grok.Role):
[12847]264    """The local LocalWorkflowManager role can be assigned at faculty level.
265    The role allows to view all data and to list or export
266    all student data within the faculty the local role is assigned.
267
268    Local Workflow Managers can trigger transition of students in their
269    faculty/department. They get the WorkflowManager role for
270    this subset of students.
[10639]271    """
272    grok.name('waeup.local.LocalWorkflowManager')
273    grok.title(u'Student Workflow Manager')
274    grok.permissions('waeup.showStudents',
275                     'waeup.viewAcademics',
276                     'waeup.exportData')
277
[14603]278
[8962]279class UGClearanceOfficer(grok.Role):
[12847]280    """UG Clearance Officers are regular Clearance Officers with restricted
281    dynamic permission assignment. They can only access undergraduate
282    students.
[8962]283    """
284    grok.name('waeup.local.UGClearanceOfficer')
285    grok.title(u'UG Clearance Officer')
[10248]286    grok.permissions('waeup.showStudents',
287                     'waeup.viewAcademics',
[11862]288                     'waeup.exportData',
289                     'waeup.clearAllStudents')
[8962]290
[14603]291
[8962]292class PGClearanceOfficer(grok.Role):
[12847]293    """PG Clearance Officers are regular Clearance Officers with restricted
294    dynamic permission assignment. They can only access postgraduate
295    students.
[8962]296    """
297    grok.name('waeup.local.PGClearanceOfficer')
298    grok.title(u'PG Clearance Officer')
[10248]299    grok.permissions('waeup.showStudents',
300                     'waeup.viewAcademics',
[11862]301                     'waeup.exportData',
302                     'waeup.clearAllStudents')
[8962]303
[14603]304
[7334]305class CourseAdviser100(grok.Role):
[12847]306    """The local CourseAdviser100 role can be assigned at faculty,
[14603]307    department or certificate level. The role allows to view all data and
308    to list or export all student data within the faculty, department
[12847]309    or certificate the local role is assigned.
310
311    Local Course Advisers can validate or reject course lists of students
312    in ther faculty/department/certificate at level 100.
313    They get the StudentsCourseAdviser role for this subset of students.
[7168]314    """
[7334]315    grok.name('waeup.local.CourseAdviser100')
316    grok.title(u'Course Adviser 100L')
[10248]317    grok.permissions('waeup.showStudents',
318                     'waeup.viewAcademics',
319                     'waeup.exportData')
[6655]320
[14603]321
[7334]322class CourseAdviser200(grok.Role):
[12847]323    """Same as CourseAdviser100 but for level 200.
[7334]324    """
325    grok.name('waeup.local.CourseAdviser200')
326    grok.title(u'Course Adviser 200L')
[10248]327    grok.permissions('waeup.showStudents',
328                     'waeup.viewAcademics',
329                     'waeup.exportData')
[7334]330
[14603]331
[7334]332class CourseAdviser300(grok.Role):
[12847]333    """Same as CourseAdviser100 but for level 300.
[7334]334    """
335    grok.name('waeup.local.CourseAdviser300')
336    grok.title(u'Course Adviser 300L')
[10248]337    grok.permissions('waeup.showStudents',
338                     'waeup.viewAcademics',
339                     'waeup.exportData')
[7334]340
[14603]341
[7334]342class CourseAdviser400(grok.Role):
[12847]343    """Same as CourseAdviser100 but for level 400.
[7334]344    """
345    grok.name('waeup.local.CourseAdviser400')
346    grok.title(u'Course Adviser 400L')
[10248]347    grok.permissions('waeup.showStudents',
348                     'waeup.viewAcademics',
349                     'waeup.exportData')
[7334]350
[14603]351
[7334]352class CourseAdviser500(grok.Role):
[12847]353    """Same as CourseAdviser100 but for level 500.
[7334]354    """
355    grok.name('waeup.local.CourseAdviser500')
356    grok.title(u'Course Adviser 500L')
[10248]357    grok.permissions('waeup.showStudents',
358                     'waeup.viewAcademics',
359                     'waeup.exportData')
[7334]360
[14603]361
[7334]362class CourseAdviser600(grok.Role):
[12847]363    """Same as CourseAdviser100 but for level 600.
[7334]364    """
365    grok.name('waeup.local.CourseAdviser600')
366    grok.title(u'Course Adviser 600L')
[10248]367    grok.permissions('waeup.showStudents',
368                     'waeup.viewAcademics',
369                     'waeup.exportData')
[7334]370
[14603]371
[10064]372class CourseAdviser700(grok.Role):
[12847]373    """Same as CourseAdviser100 but for level 700.
[10064]374    """
375    grok.name('waeup.local.CourseAdviser700')
376    grok.title(u'Course Adviser 700L')
[10248]377    grok.permissions('waeup.showStudents',
378                     'waeup.viewAcademics',
379                     'waeup.exportData')
[10064]380
[14603]381
[10064]382class CourseAdviser800(grok.Role):
[12847]383    """Same as CourseAdviser100 but for level 800.
[10064]384    """
385    grok.name('waeup.local.CourseAdviser800')
386    grok.title(u'Course Adviser 800L')
[10248]387    grok.permissions('waeup.showStudents',
388                     'waeup.viewAcademics',
389                     'waeup.exportData')
[10064]390
[14603]391
[15134]392class LocalTranscriptOfficer(grok.Role):
393    """The LocalTranscriptOfficer role can be assigned at faculty and
394    department level. The role allows to view, to validate and to
395    release student transcripts.
396    """
397    grok.name('waeup.local.TranscriptOfficer')
398    grok.title(u'Transcript Officer')
399    grok.permissions('waeup.viewAcademics',
400                     'waeup.viewTranscript',
401                     'waeup.processTranscript',
402                     'waeup.viewStudent',
403                     'waeup.viewStudentsContainer',
404                     )
405
406
407class LocalTranscriptSignee(grok.Role):
408    """The LocalTranscriptSignee role can be assigned at faculty and
409    department level. The role allows to view and to sign student transcripts.
410    """
411    grok.name('waeup.local.TranscriptSignee')
412    grok.title(u'Transcript Signee')
413    grok.permissions('waeup.viewAcademics',
414                     'waeup.viewTranscript',
415                     'waeup.signTranscript',
416                     'waeup.viewStudent',
417                     'waeup.viewStudentsContainer',
418                     )
419
420
[9002]421class Lecturer(grok.Role):
[12847]422    """The local Lecturer role can be assigned at course level.
[13894]423    The role allows to export some student
[13046]424    data within the course the local role is assigned. Lecturers can't access
[12847]425    student data directly but they can edit the scores in course tickets.
[9002]426    """
427    grok.name('waeup.local.Lecturer')
428    grok.title(u'Lecturer')
[13894]429    grok.permissions('waeup.editScores',
[10248]430                     'waeup.viewAcademics',
431                     'waeup.exportData')
[9002]432
[14603]433
[7163]434class Owner(grok.Role):
[12847]435    """Each user 'owns' her/his user object and gains permission to edit
436    some of the user attributes.
437    """
[7163]438    grok.name('waeup.local.Owner')
439    grok.title(u'Owner')
440    grok.permissions('waeup.editUser')
441
[14603]442
[7178]443# Site Roles
[7185]444class AcademicsOfficer(grok.Role):
[12844]445    """An Academics Officer can view but not edit data in the
[12862]446    academic section.
[12843]447
448    This is the default role which is automatically assigned to all
449    officers of the portal. A user with this role can access all display pages
450    at faculty, department, course, certificate and certificate course level.
451    """
[7185]452    grok.name('waeup.AcademicsOfficer')
[7188]453    grok.title(u'Academics Officer (view only)')
[7184]454    grok.permissions('waeup.viewAcademics')
[3521]455
[14603]456
[8367]457class AcademicsManager(grok.Role):
[12843]458    """An Academics Manager can view and edit all data in the
[12862]459    scademic section, i.e. access all manage pages
[12843]460    at faculty, department, course, certificate and certificate course level.
461    """
[8367]462    grok.name('waeup.AcademicsManager')
463    grok.title(u'Academics Manager')
[12835]464    title = u'Academics Manager'
[8367]465    grok.permissions('waeup.viewAcademics',
466                     'waeup.manageAcademics')
467
[14603]468
[7181]469class ACManager(grok.Role):
[12843]470    """This is the role for Access Code Managers.
[12847]471    An AC Manager can view and manage the Accesscodes Section, see
[12844]472    ManageACBatches permission above.
[12843]473    """
[7181]474    grok.name('waeup.ACManager')
475    grok.title(u'Access Code Manager')
476    grok.permissions('waeup.manageACBatches')
477
[14603]478
[8367]479class DataCenterManager(grok.Role):
[12843]480    """This single-permission role is dedicated to those users
481    who are charged with batch processing of portal data.
[12847]482    A Data Center Manager can access all pages in the Data Center,
[12844]483    see ManageDataCenter permission above.
[12843]484    """
[8367]485    grok.name('waeup.DataCenterManager')
486    grok.title(u'Datacenter Manager')
487    grok.permissions('waeup.manageDataCenter')
488
[14603]489
[8367]490class ImportManager(grok.Role):
[12847]491    """An Import Manager is a Data Center Manager who is also allowed
[14603]492    to batch process (import) data. All batch processors (importers) are
[12843]493    available except for the User Processor. This processor requires the
[12847]494    Users Manager role too. The ImportManager role includes the
[12844]495    DataCenterManager role but not vice versa.
[12843]496    """
[8367]497    grok.name('waeup.ImportManager')
498    grok.title(u'Import Manager')
499    grok.permissions('waeup.manageDataCenter',
500                     'waeup.importData')
501
[14603]502
[10177]503class ExportManager(grok.Role):
[12847]504    """An Export Manager is a Data Center Manager who is also allowed
[12843]505    to export all kind of portal data. The ExportManager role includes the
[12844]506    DataCenterManager role but not vice versa.
[12843]507    """
[10177]508    grok.name('waeup.ExportManager')
509    grok.title(u'Export Manager')
510    grok.permissions('waeup.manageDataCenter',
[14734]511                     'waeup.exportData',
512                     'waeup.showStudents')
[10177]513
[14603]514
[10246]515class BursaryOfficer(grok.Role):
[12847]516    """Bursary Officers can export bursary data. They can't access the
[12844]517    Data Center but see student data export buttons in the Academic Section.
[12843]518    """
[10246]519    grok.name('waeup.BursaryOfficer')
520    grok.title(u'Bursary Officer')
[10279]521    grok.permissions('waeup.showStudents',
522                     'waeup.viewAcademics',
523                     'waeup.exportBursaryData')
[10246]524
[14603]525
[8367]526class UsersManager(grok.Role):
[12847]527    """A Users Manager can add, remove or edit
[12844]528    user accounts, see ManageUsers permission for further information.
529    Be very careful with this role.
[12843]530    """
[8367]531    grok.name('waeup.UsersManager')
532    grok.title(u'Users Manager')
[9259]533    grok.permissions('waeup.manageUsers',
534                     'waeup.editUser')
[8367]535
[14603]536
[9300]537class WorkflowManager(grok.Role):
[12847]538    """The Workflow Manager can trigger workflow transitions
[12844]539    of student and document objects, see TriggerTransition permission
540    for further information.
[12843]541    """
[9300]542    grok.name('waeup.WorkflowManager')
543    grok.title(u'Workflow Manager')
[9299]544    grok.permissions('waeup.triggerTransition')
545
[14602]546
547class FingerprintReaderDeviceRole(grok.Role):
548    """Fingerprint Reader Devices.
549
550    Fingerprint readers are remote devices that can store and retrieve
[14634]551    fingerprint data.
[14602]552    """
553    grok.name('waeup.FingerprintDevice')
554    grok.title(u'Fingerprint Reader')
555    grok.permissions(
[14633]556        'waeup.getBiometricData',
557        'waeup.putBiometricData',
558    )
[14602]559
560
[4789]561class PortalManager(grok.Role):
[12847]562    """The PortalManager role is the maximum set of Kofa permissions
[12835]563    which are needed to manage the entire portal. This set must not
[12844]564    be customized. It is recommended to assign this role only
565    to a few certified Kofa administrators.
566    A less dangerous manager role is the CCOfficer role described below.
567    For the most tasks the CCOfficer role is sufficient.
[12835]568    """
[4789]569    grok.name('waeup.PortalManager')
[6159]570    grok.title(u'Portal Manager')
[9259]571    grok.permissions('waeup.managePortal',
572                     'waeup.manageUsers',
[8374]573                     'waeup.viewAcademics', 'waeup.manageAcademics',
[8367]574                     'waeup.manageACBatches',
[9259]575                     'waeup.manageDataCenter',
576                     'waeup.importData',
[10177]577                     'waeup.exportData',
[10278]578                     'waeup.viewTranscript',
[15134]579                     'waeup.processTranscript',
[12440]580                     'waeup.viewDocuments', 'waeup.manageDocuments',
[14603]581                     'waeup.managePortalConfiguration',
582                     'waeup.viewApplication',
[7184]583                     'waeup.manageApplication', 'waeup.handleApplication',
[7250]584                     'waeup.viewApplicantsTab', 'waeup.payApplicant',
[8565]585                     'waeup.viewApplicationStatistics',
[7250]586                     'waeup.viewStudent', 'waeup.manageStudent',
587                     'waeup.clearStudent', 'waeup.payStudent',
[14603]588                     'waeup.clearStudentFinancially',  # not used in base pkg
[7250]589                     'waeup.uploadStudentFile', 'waeup.showStudents',
[14949]590                     'waeup.clearAllStudents',
591                     'waeup.createStudents',
[10632]592                     'waeup.editScores',
[9273]593                     'waeup.triggerTransition',
[14166]594                     'waeup.validateStudent',
[12843]595                     'waeup.viewStudentsContainer',
[9186]596                     'waeup.handleAccommodation',
[7205]597                     'waeup.viewHostels', 'waeup.manageHostels',
[9335]598                     'waeup.editUser',
[9637]599                     'waeup.loginAsStudent',
[12900]600                     'waeup.handleReports',
[9637]601                     'waeup.manageReports',
[9645]602                     'waeup.manageJobs',
[7240]603                     )
[4789]604
[14603]605
[9259]606class CCOfficer(grok.Role):
[12843]607    """The role of the Computer Center Officer is basically a copy
[12835]608    of the the PortalManager role. Some 'dangerous' permissions are excluded
609    by commenting them out (see source code). If officers need to gain more
610    access rights than defined in this role, do not hastily switch to the
[12843]611    PortalManager role but add further manager roles instead. Additional
[12835]612    roles could be: UsersManager, ACManager, ImportManager, WorkflowManager
613    or StudentImpersonator.
[12843]614
[12844]615    CCOfficer is a base class which means that this role is subject to
616    customization. It is not used in the ``waeup.kofa`` base package.
[9259]617    """
[10346]618    grok.baseclass()
[9259]619    grok.name('waeup.CCOfficer')
620    grok.title(u'Computer Center Officer')
[14603]621    grok.permissions(
622        # 'waeup.managePortal',
623        # 'waeup.manageUsers',
624        'waeup.viewAcademics',
625        'waeup.manageAcademics',
626        # 'waeup.manageACBatches',
627        'waeup.manageDataCenter',
628        # 'waeup.importData',
629        'waeup.exportData',
630        'waeup.viewTranscript',
[15134]631        'waeup.processTranscript',
[14603]632        'waeup.viewDocuments', 'waeup.manageDocuments',
633        'waeup.managePortalConfiguration', 'waeup.viewApplication',
634        'waeup.manageApplication', 'waeup.handleApplication',
635        'waeup.viewApplicantsTab', 'waeup.payApplicant',
636        'waeup.viewApplicationStatistics',
637        'waeup.viewStudent', 'waeup.manageStudent',
638        'waeup.clearStudent', 'waeup.payStudent',
639        'waeup.uploadStudentFile', 'waeup.showStudents',
[14949]640        'waeup.clearAllStudents',
641        # 'waeup.createStudents',
[14603]642        'waeup.editScores',
643        # 'waeup.triggerTransition',
644        'waeup.validateStudent',
645        'waeup.viewStudentsContainer',
646        'waeup.handleAccommodation',
647        'waeup.viewHostels', 'waeup.manageHostels',
648        # 'waeup.editUser',
649        # 'waeup.loginAsStudent',
650        'waeup.handleReports',
651        'waeup.manageReports',
652        # 'waeup.manageJobs',
653        )
[9259]654
[14603]655
[7186]656def get_all_roles():
[6157]657    """Return a list of tuples ``<ROLE-NAME>, <ROLE>``.
658    """
659    return getUtilitiesFor(IRole)
660
[14603]661
[7186]662def get_waeup_roles(also_local=False):
[7819]663    """Get all Kofa roles.
[6157]664
[7819]665    Kofa roles are ordinary roles whose id by convention starts with
[6157]666    a ``waeup.`` prefix.
667
668    If `also_local` is ``True`` (``False`` by default), also local
[7819]669    roles are returned. Local Kofa roles are such whose id starts
[6157]670    with ``waeup.local.`` prefix (this is also a convention).
671
672    Returns a generator of the found roles.
673    """
[7186]674    for name, item in get_all_roles():
[6157]675        if not name.startswith('waeup.'):
[7819]676            # Ignore non-Kofa roles...
[4789]677            continue
[6157]678        if not also_local and name.startswith('waeup.local.'):
679            # Ignore local roles...
[6045]680            continue
[6157]681        yield item
[4789]682
[14603]683
[7186]684def get_waeup_role_names():
[7819]685    """Get the ids of all Kofa roles.
[6157]686
[7819]687    See :func:`get_waeup_roles` for what a 'KofaRole' is.
[6157]688
[7819]689    This function returns a sorted list of Kofa role names.
[6157]690    """
[7186]691    return sorted([x.id for x in get_waeup_roles()])
[6157]692
[14603]693
[6144]694class LocalRolesAssignable(grok.Adapter):
695    """Default implementation for `ILocalRolesAssignable`.
696
697    This adapter returns a list for dictionaries for objects for which
698    we want to know the roles assignable to them locally.
699
700    The returned dicts contain a ``name`` and a ``title`` entry which
701    give a role (``name``) and a description, for which kind of users
702    the permission is meant to be used (``title``).
703
704    Having this adapter registered we make sure, that for each normal
705    object we get a valid `ILocalRolesAssignable` adapter.
706
707    Objects that want to offer certain local roles, can do so by
[6162]708    setting a (preferably class-) attribute to a list of role ids.
[6144]709
710    You can also define different adapters for different contexts to
711    have different role lookup mechanisms become available. But in
712    normal cases it should be sufficient to use this basic adapter.
713    """
714    grok.context(Interface)
715    grok.provides(ILocalRolesAssignable)
716
717    _roles = []
718
719    def __init__(self, context):
720        self.context = context
[6162]721        role_ids = getattr(context, 'local_roles', self._roles)
[7186]722        self._roles = [(name, role) for name, role in get_all_roles()
[6162]723                       if name in role_ids]
[6144]724        return
725
726    def __call__(self):
727        """Get a list of dictionaries containing ``names`` (the roles to
728        assign) and ``titles`` (some description of the type of user
729        to assign each role to).
730        """
[7334]731        list_of_dict = [dict(
[6162]732                name=name,
733                title=role.title,
[6163]734                description=role.description)
[7334]735                for name, role in self._roles]
736        return sorted(list_of_dict, key=lambda x: x['name'])
[6144]737
[14603]738
[8774]739def get_all_users():
740    """Get a list of dictionaries.
741    """
742    users = sorted(grok.getSite()['users'].items(), key=lambda x: x[1].title)
743    for key, val in users:
744        yield(dict(name=key, val=val))
745
[14603]746
[6163]747def get_users_with_local_roles(context):
748    """Get a list of dicts representing the local roles set for `context`.
749
750    Each dict returns `user_name`, `user_title`, `local_role`,
751    `local_role_title`, and `setting` for each entry in the local
752    roles map of the `context` object.
753    """
[6202]754    try:
755        role_map = IPrincipalRoleMap(context)
756    except TypeError:
757        # no map no roles.
758        raise StopIteration
[6163]759    for local_role, user_name, setting in role_map.getPrincipalsAndRoles():
[14603]760        user = grok.getSite()['users'].get(user_name, None)
[7213]761        user_title = getattr(user, 'title', user_name)
[10227]762        local_role_title = getattr(
763            dict(get_all_roles()).get(local_role, None), 'title', None)
[14603]764        yield dict(user_name=user_name,
765                   user_title=user_title,
766                   local_role=local_role,
767                   local_role_title=local_role_title,
768                   setting=setting)
[9309]769
[14603]770
[9309]771def get_users_with_role(role, context):
772    """Get a list of dicts representing the usres who have been granted
773    a role for `context`.
774    """
775    try:
776        role_map = IPrincipalRoleMap(context)
777    except TypeError:
778        # no map no roles.
779        raise StopIteration
780    for user_name, setting in role_map.getPrincipalsForRole(role):
[14603]781        user = grok.getSite()['users'].get(user_name, None)
[9309]782        user_title = getattr(user, 'title', user_name)
783        user_email = getattr(user, 'email', None)
[14603]784        yield dict(user_name=user_name,
785                   user_title=user_title,
786                   user_email=user_email,
787                   setting=setting)
Note: See TracBrowser for help on using the repository browser.