[7191] | 1 | ## $Id: student.py 7671 2012-02-20 08:56:44Z henrik $ |
---|
| 2 | ## |
---|
[6621] | 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 | """ |
---|
| 19 | Container for the various objects owned by students. |
---|
| 20 | """ |
---|
[7097] | 21 | import os |
---|
[6621] | 22 | import grok |
---|
[7359] | 23 | from zope.component import getUtility |
---|
[6749] | 24 | from zope.component.interfaces import IFactory |
---|
[6621] | 25 | from zope.interface import implementedBy |
---|
[6838] | 26 | from hurry.workflow.interfaces import IWorkflowState, IWorkflowInfo |
---|
| 27 | from zope.securitypolicy.interfaces import IPrincipalRoleManager |
---|
[7097] | 28 | from waeup.sirp.interfaces import ( |
---|
[7359] | 29 | IObjectHistory, IUserAccount, IFileStoreNameChooser, IFileStoreHandler, |
---|
[7671] | 30 | ISIRPUtils, CLEARANCE) |
---|
[7321] | 31 | from waeup.sirp.image import SIRPImageFile |
---|
[7097] | 32 | from waeup.sirp.imagestorage import DefaultFileStoreHandler |
---|
[7538] | 33 | from waeup.sirp.students.interfaces import IStudent, IStudentNavigation |
---|
[6838] | 34 | from waeup.sirp.students.studycourse import StudentStudyCourse |
---|
[6859] | 35 | from waeup.sirp.students.payments import StudentPaymentsContainer |
---|
[6838] | 36 | from waeup.sirp.students.accommodation import StudentAccommodation |
---|
[7652] | 37 | from waeup.sirp.utils.helpers import attrs_to_fields |
---|
[6651] | 38 | from waeup.sirp.students.utils import generate_student_id |
---|
[6621] | 39 | |
---|
| 40 | class Student(grok.Container): |
---|
| 41 | """This is a student container for the various objects |
---|
| 42 | owned by students. |
---|
| 43 | """ |
---|
[7538] | 44 | grok.implements(IStudent, IStudentNavigation) |
---|
[6621] | 45 | grok.provides(IStudent) |
---|
| 46 | |
---|
| 47 | def __init__(self): |
---|
| 48 | super(Student, self).__init__() |
---|
[6749] | 49 | # The site doesn't exist in unit tests |
---|
[6652] | 50 | try: |
---|
[6749] | 51 | students = grok.getSite()['students'] |
---|
| 52 | self.student_id = generate_student_id(students,'?') |
---|
| 53 | except TypeError: |
---|
[6666] | 54 | self.student_id = u'Z654321' |
---|
[6699] | 55 | self.password = None |
---|
[6621] | 56 | return |
---|
| 57 | |
---|
[6637] | 58 | def loggerInfo(self, ob_class, comment=None): |
---|
| 59 | target = self.__name__ |
---|
| 60 | return grok.getSite()['students'].logger_info(ob_class,target,comment) |
---|
| 61 | |
---|
| 62 | @property |
---|
[7364] | 63 | def display_fullname(self): |
---|
[7357] | 64 | middlename = getattr(self, 'middlename', None) |
---|
[7359] | 65 | sirp_utils = getUtility(ISIRPUtils) |
---|
| 66 | return sirp_utils.fullname(self.firstname, self.lastname, middlename) |
---|
[7357] | 67 | |
---|
| 68 | @property |
---|
[7364] | 69 | def fullname(self): |
---|
| 70 | middlename = getattr(self, 'middlename', None) |
---|
| 71 | if middlename: |
---|
| 72 | return '%s-%s-%s' % (self.firstname.lower(), |
---|
| 73 | middlename.lower(), self.lastname.lower()) |
---|
| 74 | else: |
---|
| 75 | return '%s-%s' % (self.firstname.lower(), self.lastname.lower()) |
---|
| 76 | |
---|
| 77 | @property |
---|
[6637] | 78 | def state(self): |
---|
| 79 | state = IWorkflowState(self).getState() |
---|
| 80 | return state |
---|
| 81 | |
---|
| 82 | @property |
---|
| 83 | def history(self): |
---|
| 84 | history = IObjectHistory(self) |
---|
| 85 | return history |
---|
| 86 | |
---|
[6642] | 87 | def getStudent(self): |
---|
| 88 | return self |
---|
| 89 | |
---|
[6814] | 90 | @property |
---|
[7203] | 91 | def certcode(self): |
---|
[6814] | 92 | cert = getattr(self.get('studycourse', None), 'certificate', None) |
---|
[7203] | 93 | if cert is not None: |
---|
| 94 | return cert.code |
---|
| 95 | return |
---|
[6814] | 96 | |
---|
[7062] | 97 | @property |
---|
[7203] | 98 | def faccode(self): |
---|
| 99 | cert = getattr(self.get('studycourse', None), 'certificate', None) |
---|
| 100 | if cert is not None: |
---|
| 101 | return cert.__parent__.__parent__.__parent__.code |
---|
| 102 | return |
---|
| 103 | |
---|
| 104 | @property |
---|
| 105 | def depcode(self): |
---|
| 106 | cert = getattr(self.get('studycourse', None), 'certificate', None) |
---|
| 107 | if cert is not None: |
---|
| 108 | return cert.__parent__.__parent__.code |
---|
| 109 | return |
---|
| 110 | |
---|
| 111 | @property |
---|
[7062] | 112 | def current_session(self): |
---|
[7641] | 113 | session = getattr(self.get('studycourse', None), 'current_session', None) |
---|
| 114 | return session |
---|
[7062] | 115 | |
---|
[7641] | 116 | @property |
---|
| 117 | def current_mode(self): |
---|
| 118 | certificate = getattr(self.get('studycourse', None), 'certificate', None) |
---|
| 119 | if certificate is not None: |
---|
| 120 | return certificate.study_mode |
---|
| 121 | return |
---|
| 122 | |
---|
[6621] | 123 | # Set all attributes of Student required in IStudent as field |
---|
| 124 | # properties. Doing this, we do not have to set initial attributes |
---|
| 125 | # ourselves and as a bonus we get free validation when an attribute is |
---|
| 126 | # set. |
---|
| 127 | Student = attrs_to_fields(Student) |
---|
| 128 | |
---|
| 129 | class StudentFactory(grok.GlobalUtility): |
---|
| 130 | """A factory for students. |
---|
| 131 | """ |
---|
| 132 | grok.implements(IFactory) |
---|
| 133 | grok.name(u'waeup.Student') |
---|
| 134 | title = u"Create a new student.", |
---|
| 135 | description = u"This factory instantiates new student instances." |
---|
| 136 | |
---|
| 137 | def __call__(self, *args, **kw): |
---|
| 138 | return Student() |
---|
| 139 | |
---|
| 140 | def getInterfaces(self): |
---|
| 141 | return implementedBy(Student) |
---|
[6836] | 142 | |
---|
[6838] | 143 | @grok.subscribe(IStudent, grok.IObjectAddedEvent) |
---|
[6839] | 144 | def handle_student_added(student, event): |
---|
[6838] | 145 | """If a student is added all subcontainers are automatically added |
---|
| 146 | and the transition create is fired. The latter produces a logging message. |
---|
| 147 | """ |
---|
[7527] | 148 | reg_state = IWorkflowState(student).getState() |
---|
[7671] | 149 | if reg_state == CLEARANCE: |
---|
[7527] | 150 | student.clearance_locked = False |
---|
| 151 | else: |
---|
| 152 | student.clearance_locked = True |
---|
[6838] | 153 | studycourse = StudentStudyCourse() |
---|
| 154 | student['studycourse'] = studycourse |
---|
[6859] | 155 | payments = StudentPaymentsContainer() |
---|
[6838] | 156 | student['payments'] = payments |
---|
| 157 | accommodation = StudentAccommodation() |
---|
| 158 | student['accommodation'] = accommodation |
---|
| 159 | # Assign global student role for new student |
---|
| 160 | account = IUserAccount(student) |
---|
| 161 | account.roles = ['waeup.Student'] |
---|
| 162 | # Assign local StudentRecordOwner role |
---|
| 163 | role_manager = IPrincipalRoleManager(student) |
---|
| 164 | role_manager.assignRoleToPrincipal( |
---|
| 165 | 'waeup.local.StudentRecordOwner', student.student_id) |
---|
[7527] | 166 | if reg_state is None: |
---|
[7513] | 167 | IWorkflowInfo(student).fireTransition('create') |
---|
[6838] | 168 | return |
---|
| 169 | |
---|
[6836] | 170 | @grok.subscribe(IStudent, grok.IObjectRemovedEvent) |
---|
[6839] | 171 | def handle_student_removed(student, event): |
---|
[6836] | 172 | """If a student is removed a message is logged. |
---|
| 173 | """ |
---|
| 174 | comment = 'Student record removed' |
---|
| 175 | target = student.student_id |
---|
[6841] | 176 | try: |
---|
[7652] | 177 | grok.getSite()['students'].logger.info('%s - %s' % ( |
---|
| 178 | target, comment)) |
---|
[7212] | 179 | except KeyError: |
---|
| 180 | # If we delete an entire university instance there won't be |
---|
| 181 | # a students subcontainer |
---|
| 182 | return |
---|
[7097] | 183 | return |
---|
| 184 | |
---|
| 185 | #: The file id marker for student files |
---|
| 186 | STUDENT_FILE_STORE_NAME = 'file-student' |
---|
| 187 | |
---|
| 188 | class StudentFileNameChooser(grok.Adapter): |
---|
[7099] | 189 | """A file id chooser for :class:`Student` objects. |
---|
[7097] | 190 | |
---|
[7099] | 191 | `context` is an :class:`Student` instance. |
---|
[7097] | 192 | |
---|
[7099] | 193 | The :class:`StudentImageNameChooser` can build/check file ids for |
---|
| 194 | :class:`Student` objects suitable for use with |
---|
[7097] | 195 | :class:`ExtFileStore` instances. The delivered file_id contains |
---|
[7099] | 196 | the file id marker for :class:`Student` object and the student id |
---|
| 197 | of the context student. |
---|
[7097] | 198 | |
---|
| 199 | This chooser is registered as an adapter providing |
---|
| 200 | :class:`waeup.sirp.interfaces.IFileStoreNameChooser`. |
---|
| 201 | |
---|
| 202 | File store name choosers like this one are only convenience |
---|
[7099] | 203 | components to ease the task of creating file ids for student |
---|
[7097] | 204 | objects. You are nevertheless encouraged to use them instead of |
---|
[7099] | 205 | manually setting up filenames for students. |
---|
[7097] | 206 | |
---|
| 207 | .. seealso:: :mod:`waeup.sirp.imagestorage` |
---|
| 208 | |
---|
| 209 | """ |
---|
| 210 | grok.context(IStudent) |
---|
| 211 | grok.implements(IFileStoreNameChooser) |
---|
| 212 | |
---|
| 213 | def checkName(self, name=None, attr=None): |
---|
| 214 | """Check whether the given name is a valid file id for the context. |
---|
| 215 | |
---|
| 216 | Returns ``True`` only if `name` equals the result of |
---|
| 217 | :meth:`chooseName`. |
---|
| 218 | |
---|
| 219 | """ |
---|
| 220 | return name == self.chooseName() |
---|
| 221 | |
---|
[7106] | 222 | def chooseName(self, attr, name=None): |
---|
[7097] | 223 | """Get a valid file id for student context. |
---|
| 224 | |
---|
| 225 | *Example:* |
---|
| 226 | |
---|
[7105] | 227 | For a student with student id ``'A123456'`` and |
---|
[7106] | 228 | with attr ``'nice_image.jpeg'`` stored in |
---|
[7097] | 229 | the students container this chooser would create: |
---|
| 230 | |
---|
[7106] | 231 | ``'__file-student__students/A/A123456/nice_image_A123456.jpeg'`` |
---|
[7097] | 232 | |
---|
| 233 | meaning that the nice image of this applicant would be |
---|
| 234 | stored in the site-wide file storage in path: |
---|
| 235 | |
---|
[7106] | 236 | ``students/A/A123456/nice_image_A123456.jpeg`` |
---|
[7097] | 237 | |
---|
| 238 | """ |
---|
[7106] | 239 | basename, ext = os.path.splitext(attr) |
---|
[7099] | 240 | stud_id = self.context.student_id |
---|
[7106] | 241 | marked_filename = '__%s__%s/%s/%s_%s%s' % ( |
---|
| 242 | STUDENT_FILE_STORE_NAME, stud_id[0], stud_id, basename, stud_id, ext) |
---|
[7097] | 243 | return marked_filename |
---|
| 244 | |
---|
| 245 | |
---|
| 246 | class StudentFileStoreHandler(DefaultFileStoreHandler, grok.GlobalUtility): |
---|
| 247 | """Student specific file handling. |
---|
| 248 | |
---|
| 249 | This handler knows in which path in a filestore to store student |
---|
| 250 | files and how to turn this kind of data into some (browsable) |
---|
| 251 | file object. |
---|
| 252 | |
---|
| 253 | It is called from the global file storage, when it wants to |
---|
| 254 | get/store a file with a file id starting with |
---|
| 255 | ``__file-student__`` (the marker string for student files). |
---|
| 256 | |
---|
| 257 | Like each other file store handler it does not handle the files |
---|
| 258 | really (this is done by the global file store) but only computes |
---|
| 259 | paths and things like this. |
---|
| 260 | """ |
---|
| 261 | grok.implements(IFileStoreHandler) |
---|
| 262 | grok.name(STUDENT_FILE_STORE_NAME) |
---|
| 263 | |
---|
| 264 | def pathFromFileID(self, store, root, file_id): |
---|
[7099] | 265 | """All student files are put in directory ``students``. |
---|
[7097] | 266 | """ |
---|
| 267 | marker, filename, basename, ext = store.extractMarker(file_id) |
---|
[7122] | 268 | sub_root = os.path.join(root, 'students') |
---|
| 269 | return super(StudentFileStoreHandler, self).pathFromFileID( |
---|
| 270 | store, sub_root, basename) |
---|
[7097] | 271 | |
---|
| 272 | def createFile(self, store, root, filename, file_id, file): |
---|
| 273 | """Create a browsable file-like object. |
---|
| 274 | """ |
---|
[7122] | 275 | # call super method to ensure that any old files with |
---|
| 276 | # different filename extension are deleted. |
---|
| 277 | file, path, file_obj = super( |
---|
| 278 | StudentFileStoreHandler, self).createFile( |
---|
| 279 | store, root, filename, file_id, file) |
---|
[7321] | 280 | return file, path, SIRPImageFile( |
---|
[7122] | 281 | file_obj.filename, file_obj.data) |
---|