source: main/waeup.kofa/trunk/src/waeup/kofa/students/student.py @ 13066

Last change on this file since 13066 was 13028, checked in by Henrik Bettermann, 10 years ago

More docs.

  • Property svn:keywords set to Id
File size: 20.2 KB
Line 
1## $Id: student.py 13028 2015-06-03 11:11:39Z 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##
18"""
19Container for the various objects owned by students.
20"""
21import os
22import re
23import shutil
24import grok
25from datetime import datetime, timedelta
26from hurry.workflow.interfaces import IWorkflowState, IWorkflowInfo
27from zope.password.interfaces import IPasswordManager
28from zope.component import getUtility, createObject
29from zope.component.interfaces import IFactory
30from zope.interface import implementedBy
31from zope.securitypolicy.interfaces import IPrincipalRoleManager
32from zope.schema.interfaces import ConstraintNotSatisfied
33
34from waeup.kofa.image import KofaImageFile
35from waeup.kofa.imagestorage import DefaultFileStoreHandler
36from waeup.kofa.interfaces import (
37    IObjectHistory, IUserAccount, IFileStoreNameChooser, IFileStoreHandler,
38    IKofaUtils, registration_states_vocab, IExtFileStore,
39    CREATED, ADMITTED, CLEARANCE, PAID, REGISTERED, VALIDATED, RETURNING)
40from waeup.kofa.students.accommodation import StudentAccommodation
41from waeup.kofa.students.interfaces import (
42    IStudent, IStudentNavigation, IStudentPersonalEdit, ICSVStudentExporter,
43    IStudentsUtils)
44from waeup.kofa.students.payments import StudentPaymentsContainer
45from waeup.kofa.students.utils import generate_student_id
46from waeup.kofa.utils.helpers import attrs_to_fields, now, copy_filesystem_tree
47
48RE_STUDID_NON_NUM = re.compile('[^\d]+')
49
50class Student(grok.Container):
51    """This is a student container for the various objects
52    owned by students.
53    """
54    grok.implements(IStudent, IStudentNavigation, IStudentPersonalEdit)
55    grok.provides(IStudent)
56
57    temp_password_minutes = 10
58
59    def __init__(self):
60        super(Student, self).__init__()
61        # The site doesn't exist in unit tests
62        try:
63            self.student_id = generate_student_id()
64        except TypeError:
65            self.student_id = u'Z654321'
66        self.password = None
67        self.temp_password = None
68        return
69
70    def setTempPassword(self, user, password):
71        """Set a temporary password (LDAP-compatible) SSHA encoded for
72        officers.
73        """
74        passwordmanager = getUtility(IPasswordManager, 'SSHA')
75        self.temp_password = {}
76        self.temp_password[
77            'password'] = passwordmanager.encodePassword(password)
78        self.temp_password['user'] = user
79        self.temp_password['timestamp'] = datetime.utcnow() # offset-naive datetime
80
81    def getTempPassword(self):
82        """Check if a temporary password has been set and if it
83        is not expired.
84
85        Return the temporary password if valid,
86        None otherwise. Unset the temporary password if expired.
87        """
88        temp_password_dict = getattr(self, 'temp_password', None)
89        if temp_password_dict is not None:
90            delta = timedelta(minutes=self.temp_password_minutes)
91            now = datetime.utcnow()
92            if now < temp_password_dict.get('timestamp') + delta:
93                return temp_password_dict.get('password')
94            else:
95                # Unset temporary password if expired
96                self.temp_password = None
97        return None
98
99    def writeLogMessage(self, view, message):
100        ob_class = view.__implemented__.__name__.replace('waeup.kofa.','')
101        self.__parent__.logger.info(
102            '%s - %s - %s' % (ob_class, self.__name__, message))
103        return
104
105    @property
106    def display_fullname(self):
107        middlename = getattr(self, 'middlename', None)
108        kofa_utils = getUtility(IKofaUtils)
109        return kofa_utils.fullname(self.firstname, self.lastname, middlename)
110
111    @property
112    def fullname(self):
113        middlename = getattr(self, 'middlename', None)
114        if middlename:
115            return '%s-%s-%s' % (self.firstname.lower(),
116                middlename.lower(), self.lastname.lower())
117        else:
118            return '%s-%s' % (self.firstname.lower(), self.lastname.lower())
119
120    @property
121    def state(self):
122        state = IWorkflowState(self).getState()
123        return state
124
125    @property
126    def translated_state(self):
127        state = registration_states_vocab.getTermByToken(
128            self.state).title
129        return state
130
131    @property
132    def history(self):
133        history = IObjectHistory(self)
134        return history
135
136    @property
137    def student(self):
138        return self
139
140    @property
141    def certcode(self):
142        cert = getattr(self.get('studycourse', None), 'certificate', None)
143        if cert is not None:
144            return cert.code
145        return
146
147    @property
148    def faccode(self):
149        cert = getattr(self.get('studycourse', None), 'certificate', None)
150        if cert is not None:
151            return cert.__parent__.__parent__.__parent__.code
152        return
153
154    @property
155    def depcode(self):
156        cert = getattr(self.get('studycourse', None), 'certificate', None)
157        if cert is not None:
158            return cert.__parent__.__parent__.code
159        return
160
161    @property
162    def current_session(self):
163        session = getattr(
164            self.get('studycourse', None), 'current_session', None)
165        return session
166
167    @property
168    def entry_session(self):
169        session = getattr(
170            self.get('studycourse', None), 'entry_session', None)
171        return session
172
173    @property
174    def entry_mode(self):
175        session = getattr(
176            self.get('studycourse', None), 'entry_mode', None)
177        return session
178
179    @property
180    def current_level(self):
181        level = getattr(
182            self.get('studycourse', None), 'current_level', None)
183        return level
184
185    @property
186    def current_verdict(self):
187        level = getattr(
188            self.get('studycourse', None), 'current_verdict', None)
189        return level
190
191    @property
192    def current_mode(self):
193        certificate = getattr(
194            self.get('studycourse', None), 'certificate', None)
195        if certificate is not None:
196            return certificate.study_mode
197        return None
198
199    @property
200    def is_postgrad(self):
201        is_postgrad = getattr(
202            self.get('studycourse', None), 'is_postgrad', False)
203        return is_postgrad
204
205    @property
206    def is_special_postgrad(self):
207        is_special_postgrad = getattr(
208            self.get('studycourse', None), 'is_special_postgrad', False)
209        return is_special_postgrad
210
211    @property
212    def is_fresh(self):
213        return self.current_session == self.entry_session
214
215    @property
216    def before_payment(self):
217        non_fresh_states = (PAID, REGISTERED, VALIDATED, RETURNING, )
218        if self.is_fresh and self.state not in non_fresh_states:
219            return True
220        return False
221
222    @property
223    def personal_data_expired(self):
224        if self.state in (CREATED, ADMITTED,):
225            return False
226        now = datetime.utcnow()
227        if self.personal_updated is None:
228            return True
229        days_ago = getattr(now - self.personal_updated, 'days')
230        if days_ago > 180:
231            return True
232        return False
233
234    @property
235    def transcript_enabled(self):
236        return True
237
238    def transfer(self, certificate, current_session=None,
239        current_level=None, current_verdict=None, previous_verdict=None):
240        """ Creates a new studycourse and backups the old one.
241        """
242        newcourse = createObject(u'waeup.StudentStudyCourse')
243        try:
244            newcourse.certificate = certificate
245            newcourse.entry_mode = 'transfer'
246            newcourse.current_session = current_session
247            newcourse.current_level = current_level
248            newcourse.current_verdict = current_verdict
249            newcourse.previous_verdict = previous_verdict
250        except ConstraintNotSatisfied:
251            return -1
252        oldcourse = self['studycourse']
253        if getattr(oldcourse, 'entry_session', None) is None or\
254            getattr(oldcourse, 'certificate', None) is None:
255            return -2
256        newcourse.entry_session = oldcourse.entry_session
257        # Students can be transferred only two times.
258        if 'studycourse_1' in self.keys():
259            if 'studycourse_2' in self.keys():
260                return -3
261            self['studycourse_2'] = oldcourse
262        else:
263            self['studycourse_1'] = oldcourse
264        del self['studycourse']
265        self['studycourse'] = newcourse
266        self.__parent__.logger.info(
267            '%s - transferred from %s to %s' % (
268            self.student_id,
269            oldcourse.certificate.code,
270            newcourse.certificate.code))
271        history = IObjectHistory(self)
272        history.addMessage('Transferred from %s to %s' % (
273            oldcourse.certificate.code, newcourse.certificate.code))
274        return
275
276    def revert_transfer(self):
277        """ Revert previous transfer.
278
279        """
280        if not self.has_key('studycourse_1'):
281            return -1
282        del self['studycourse']
283        if 'studycourse_2' in self.keys():
284            studycourse = self['studycourse_2']
285            self['studycourse'] = studycourse
286            del self['studycourse_2']
287        else:
288            studycourse = self['studycourse_1']
289            self['studycourse'] = studycourse
290            del self['studycourse_1']
291        self.__parent__.logger.info(
292            '%s - transfer reverted' % self.student_id)
293        history = IObjectHistory(self)
294        history.addMessage('Transfer reverted')
295        return
296
297# Set all attributes of Student required in IStudent as field
298# properties. Doing this, we do not have to set initial attributes
299# ourselves and as a bonus we get free validation when an attribute is
300# set.
301Student = attrs_to_fields(Student)
302
303class StudentFactory(grok.GlobalUtility):
304    """A factory for students.
305    """
306    grok.implements(IFactory)
307    grok.name(u'waeup.Student')
308    title = u"Create a new student.",
309    description = u"This factory instantiates new student instances."
310
311    def __call__(self, *args, **kw):
312        return Student()
313
314    def getInterfaces(self):
315        return implementedBy(Student)
316
317@grok.subscribe(IStudent, grok.IObjectAddedEvent)
318def handle_student_added(student, event):
319    """If a student is added all subcontainers are automatically added
320    and the transition create is fired. The latter produces a logging
321    message.
322    """
323    if student.state == CLEARANCE:
324        student.clearance_locked = False
325    else:
326        student.clearance_locked = True
327    studycourse = createObject(u'waeup.StudentStudyCourse')
328    student['studycourse'] = studycourse
329    payments = StudentPaymentsContainer()
330    student['payments'] = payments
331    accommodation = StudentAccommodation()
332    student['accommodation'] = accommodation
333    # Assign global student role for new student
334    account = IUserAccount(student)
335    account.roles = ['waeup.Student']
336    # Assign local StudentRecordOwner role
337    role_manager = IPrincipalRoleManager(student)
338    role_manager.assignRoleToPrincipal(
339        'waeup.local.StudentRecordOwner', student.student_id)
340    if student.state is None:
341        IWorkflowInfo(student).fireTransition('create')
342    return
343
344def path_from_studid(student_id):
345    """Convert a student_id into a predictable relative folder path.
346
347    Used for storing files.
348
349    Returns the name of folder in which files for a particular student
350    should be stored. This is a relative path, relative to any general
351    students folder with 5 zero-padded digits (except when student_id
352    is overlong).
353
354    We normally map 1,000 different student ids into one single
355    path. For instance ``K1000000`` will give ``01000/K1000000``,
356    ``K1234567`` will give ``0123/K1234567`` and ``K12345678`` will
357    result in ``1234/K12345678``.
358
359    For lower numbers < 10**6 we return the same path for up to 10,000
360    student_ids. So for instance ``KM123456`` will result in
361    ``00120/KM123456`` (there will be no path starting with
362    ``00123``).
363
364    Works also with overlong number: here the leading zeros will be
365    missing but ``K123456789`` will give reliably
366    ``12345/K123456789`` as expected.
367    """
368    # remove all non numeric characters and turn this into an int.
369    num = int(RE_STUDID_NON_NUM.sub('', student_id))
370    if num < 10**6:
371        # store max. of 10000 studs per folder and correct num for 5 digits
372        num = num / 10000 * 10
373    else:
374        # store max. of 1000 studs per folder
375        num = num / 1000
376    # format folder name to have 5 zero-padded digits
377    folder_name = u'%05d' % num
378    folder_name = os.path.join(folder_name, student_id)
379    return folder_name
380
381def move_student_files(student, del_dir):
382    """Move files belonging to `student` to `del_dir`.
383
384    `del_dir` is expected to be the path to the site-wide directory
385    for storing backup data.
386
387    The current files of the student are removed after backup.
388
389    If the student has no associated files stored, nothing is done.
390    """
391    stud_id = student.student_id
392
393    src = getUtility(IExtFileStore).root
394    src = os.path.join(src, 'students', path_from_studid(stud_id))
395
396    dst = os.path.join(
397        del_dir, 'media', 'students', path_from_studid(stud_id))
398
399    if not os.path.isdir(src):
400        # Do not copy if no files were stored.
401        return
402    if not os.path.exists(dst):
403        os.makedirs(dst, 0755)
404    copy_filesystem_tree(src, dst)
405    shutil.rmtree(src)
406    return
407
408def update_student_deletion_csvs(student, del_dir):
409    """Update deletion CSV files with data from student.
410
411    `del_dir` is expected to be the path to the site-wide directory
412    for storing backup data.
413
414    Each exporter available for students (and their many subobjects)
415    is called in order to export CSV data of the given student to csv
416    files in the site-wide backup directory for object data (see
417    DataCenter).
418
419    Each exported row is appended a column giving the deletion date
420    (column `del_date`) as a UTC timestamp.
421    """
422
423    STUDENT_BACKUP_EXPORTER_NAMES = getUtility(
424        IStudentsUtils).STUDENT_BACKUP_EXPORTER_NAMES
425
426    for name in STUDENT_BACKUP_EXPORTER_NAMES:
427        exporter = getUtility(ICSVStudentExporter, name=name)
428        csv_data = exporter.export_student(student)
429        csv_data = csv_data.split('\r\n')
430
431        # append a deletion timestamp on each data row
432        timestamp = str(now().replace(microsecond=0)) # store UTC timestamp
433        for num, row in enumerate(csv_data[1:-1]):
434            csv_data[num+1] = csv_data[num+1] + ',' + timestamp
435        csv_path = os.path.join(del_dir, '%s.csv' % name)
436
437        # write data to CSV file
438        if not os.path.exists(csv_path):
439            # create new CSV file (including header line)
440            csv_data[0] = csv_data[0] + ',del_date'
441            open(csv_path, 'wb').write('\r\n'.join(csv_data))
442        else:
443            # append existing CSV file (omitting headerline)
444            open(csv_path, 'a').write('\r\n'.join(csv_data[1:]))
445    return
446
447@grok.subscribe(IStudent, grok.IObjectRemovedEvent)
448def handle_student_removed(student, event):
449    """If a student is removed a message is logged and data is put
450       into a backup location.
451
452    The data of the removed student is appended to CSV files in local
453    datacenter and any existing external files (passport images, etc.)
454    are copied over to this location as well.
455
456    Documents in the file storage refering to the given student are
457    removed afterwards (if they exist). Please make no assumptions
458    about how the deletion takes place. Files might be deleted
459    individually (leaving the students file directory intact) or the
460    whole student directory might be deleted completely.
461
462    All CSV rows created/appended contain a timestamp with the
463    datetime of removal in an additional `del_date` column.
464
465    XXX: blocking of used student_ids yet not implemented.
466    """
467    comment = 'Student record removed'
468    target = student.student_id
469    try:
470        site = grok.getSite()
471        site['students'].logger.info('%s - %s' % (
472            target, comment))
473    except KeyError:
474        # If we delete an entire university instance there won't be
475        # a students subcontainer
476        return
477
478    del_dir = site['datacenter'].deleted_path
479
480    # save files of the student
481    move_student_files(student, del_dir)
482
483    # update CSV files
484    update_student_deletion_csvs(student, del_dir)
485    return
486
487#: The file id marker for student files
488STUDENT_FILE_STORE_NAME = 'file-student'
489
490class StudentFileNameChooser(grok.Adapter):
491    """A file id chooser for :class:`Student` objects.
492
493    `context` is an :class:`Student` instance.
494
495    The :class:`StudentImageNameChooser` can build/check file ids for
496    :class:`Student` objects suitable for use with
497    :class:`ExtFileStore` instances. The delivered file_id contains
498    the file id marker for :class:`Student` object and the student id
499    of the context student.
500
501    This chooser is registered as an adapter providing
502    :class:`waeup.kofa.interfaces.IFileStoreNameChooser`.
503
504    File store name choosers like this one are only convenience
505    components to ease the task of creating file ids for student
506    objects. You are nevertheless encouraged to use them instead of
507    manually setting up filenames for students.
508
509    .. seealso:: :mod:`waeup.kofa.imagestorage`
510
511    """
512    grok.context(IStudent)
513    grok.implements(IFileStoreNameChooser)
514
515    def checkName(self, name=None, attr=None):
516        """Check whether the given name is a valid file id for the context.
517
518        Returns ``True`` only if `name` equals the result of
519        :meth:`chooseName`.
520
521        """
522        return name == self.chooseName()
523
524    def chooseName(self, attr, name=None):
525        """Get a valid file id for student context.
526
527        *Example:*
528
529        For a student with student id ``'A123456'`` and
530        with attr ``'nice_image.jpeg'`` stored in
531        the students container this chooser would create:
532
533          ``'__file-student__students/A/A123456/nice_image_A123456.jpeg'``
534
535        meaning that the nice image of this applicant would be
536        stored in the site-wide file storage in path:
537
538          ``students/A/A123456/nice_image_A123456.jpeg``
539
540        """
541        basename, ext = os.path.splitext(attr)
542        stud_id = self.context.student_id
543        marked_filename = '__%s__%s/%s_%s%s' % (
544            STUDENT_FILE_STORE_NAME, path_from_studid(stud_id), basename,
545            stud_id, ext)
546        return marked_filename
547
548
549class StudentFileStoreHandler(DefaultFileStoreHandler, grok.GlobalUtility):
550    """Student specific file handling.
551
552    This handler knows in which path in a filestore to store student
553    files and how to turn this kind of data into some (browsable)
554    file object.
555
556    It is called from the global file storage, when it wants to
557    get/store a file with a file id starting with
558    ``__file-student__`` (the marker string for student files).
559
560    Like each other file store handler it does not handle the files
561    really (this is done by the global file store) but only computes
562    paths and things like this.
563    """
564    grok.implements(IFileStoreHandler)
565    grok.name(STUDENT_FILE_STORE_NAME)
566
567    def pathFromFileID(self, store, root, file_id):
568        """All student files are put in directory ``students``.
569        """
570        marker, filename, basename, ext = store.extractMarker(file_id)
571        sub_root = os.path.join(root, 'students')
572        return super(StudentFileStoreHandler, self).pathFromFileID(
573            store, sub_root, basename)
574
575    def createFile(self, store, root, filename, file_id, file):
576        """Create a browsable file-like object.
577        """
578        # call super method to ensure that any old files with
579        # different filename extension are deleted.
580        file, path, file_obj =  super(
581            StudentFileStoreHandler, self).createFile(
582            store, root,  filename, file_id, file)
583        return file, path, KofaImageFile(
584            file_obj.filename, file_obj.data)
Note: See TracBrowser for help on using the repository browser.