source: main/waeup.sirp/trunk/src/waeup/sirp/students/interfaces.py @ 7443

Last change on this file since 7443 was 7425, checked in by Henrik Bettermann, 13 years ago

Entry sessions must not have a default value.

  • Property svn:keywords set to Id
File size: 12.2 KB
RevLine 
[7191]1## $Id: interfaces.py 7425 2011-12-21 11:39:53Z henrik $
[6621]2##
[7191]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##
[6996]18from datetime import datetime
[7256]19from zope.interface import Attribute, Interface
[6621]20from zope import schema
[7221]21from waeup.sirp.interfaces import (
[7321]22    ISIRPObject, academic_sessions_vocab, validate_email)
[6788]23from waeup.sirp.schema import TextLineChoice
[6874]24from waeup.sirp.university.vocabularies import CourseSource, study_modes
[6648]25from waeup.sirp.students.vocabularies import (
[7214]26  CertificateSource, verdicts, StudyLevelSource,
[6996]27  contextual_reg_num_source, contextual_mat_num_source, GenderSource,
[6648]28  )
[6877]29from waeup.sirp.payments.interfaces import IPaymentsContainer, IOnlinePayment
[6621]30
[7150]31class IStudentsUtils(Interface):
32    """A collection of methods which are subject to customization.
33
34    """
[7186]35    def getPaymentDetails(category, student):
[7150]36        """Get the payment dates of a student for the payment category
37        specified.
38
39        """
40
[7186]41    def getAccommodation_details(student):
[7150]42        """Determine the accommodation dates of a student.
43
44        """
45
[7186]46    def selectBed(available_beds):
[7150]47        """Select a bed from a list of available beds.
48
49        In the standard configuration we select the first bed found,
50        but can also randomize the selection if we like.
51        """
52
[7186]53    def renderPDF(view, subject='', filename='slip.pdf',):
[7150]54        """Render pdf slips for various pages.
55
56        """
57
[7321]58class IStudentsContainer(ISIRPObject):
[7096]59    """A students container contains university students.
[6692]60
61    """
62    def addStudent(student):
63        """Add an IStudent object and subcontainers.
64
65        """
66
67    def archive(id=None):
68        """Create on-dist archive of students.
69
70        If id is `None`, all students are archived.
71
72        If id contains a single id string, only the respective
73        students are archived.
74
75        If id contains a list of id strings all of the respective
76        students types are saved to disk.
77        """
78
79    def clear(id=None, archive=True):
80        """Remove students of type given by 'id'.
81
82        Optionally archive the students.
83
84        If id is `None`, all students are archived.
85
86        If id contains a single id string, only the respective
87        students are archived.
88
89        If id contains a list of id strings all of the respective
90        student types are saved to disk.
91
92        If `archive` is ``False`` none of the archive-handling is done
93        and respective students are simply removed from the
94        database.
95        """
96
[7321]97class IStudentNavigation(ISIRPObject):
[6642]98    """Interface needed for student navigation.
[7150]99
[6642]100    """
101    def getStudent():
102        """Return student object.
[7150]103
[6642]104        """
105
[7321]106class IStudentBase(ISIRPObject):
[6631]107    """Representation of student base data.
[7150]108
[6621]109    """
[7062]110    history = Attribute('Object history, a list of messages')
[6637]111    state = Attribute('Returns the registration state of a student')
[6699]112    password = Attribute('Encrypted password of a student')
[7203]113    certcode = Attribute('The certificate code of any chosen study course')
114    depcode = Attribute('The department code of any chosen study course')
115    faccode = Attribute('The faculty code of any chosen study course')
[7062]116    current_session = Attribute('The current session of the student')
[7364]117    fullname = Attribute('All name parts separated by hyphens')
118    display_fullname = Attribute('The fullname of an applicant')
[6637]119
120    def loggerInfo(ob_class, comment):
[7150]121        """Adds an INFO message to the log file.
122
[6637]123        """
124
[6665]125    student_id = schema.TextLine(
[7240]126        title = u'Student Id',
[6849]127        required = False,
[6665]128        )
129
[7357]130    firstname = schema.TextLine(
131        title = u'First Name',
[6621]132        required = True,
133        )
134
[7357]135    middlename = schema.TextLine(
136        title = u'Middle Name',
137        required = False,
138        )
139
140    lastname = schema.TextLine(
141        title = u'Last Name (Surname)',
142        required = True,
143        )
144
[6996]145    sex = schema.Choice(
146        title = u'Sex',
147        source = GenderSource(),
148        default = u'm',
149        required = True,
150        )
151
[6788]152    reg_number = TextLineChoice(
[6696]153        title = u'Registration Number',
[6818]154        default = None,
[6696]155        required = True,
156        readonly = False,
[6788]157        source = contextual_reg_num_source,
[6696]158        )
159
[6788]160    matric_number = TextLineChoice(
[6750]161        title = u'Matriculation Number',
[6788]162        #default = u'',
[6750]163        required = False,
164        readonly = False,
[6788]165        source = contextual_mat_num_source,
[6750]166        )
167
[6769]168    adm_code = schema.TextLine(
[6935]169        title = u'PWD Activation Code',
[6769]170        default = u'',
171        required = False,
172        readonly = True,
173        )
174
[7133]175    email = schema.ASCIILine(
176        title = u'Email',
177        required = False,
178        constraint=validate_email,
179        )
[7325]180    phone = schema.TextLine(
[7133]181        title = u'Phone',
[7331]182        description = u'',
[7133]183        required = False,
184        )
185
[7321]186class IStudentClearance(ISIRPObject):
[6631]187    """Representation of student clearance data.
[7150]188
[6631]189    """
190    date_of_birth = schema.Date(
191        title = u'Date of Birth',
192        required = True,
193        )
194
[6695]195    clearance_locked = schema.Bool(
196        title = u'Clearance form locked',
197        default = False,
198        )
199
[6769]200    clr_code = schema.TextLine(
[6935]201        title = u'CLR Activation Code',
[6769]202        default = u'',
203        required = False,
204        readonly = True,
205        )
206
[7321]207class IStudentPersonal(ISIRPObject):
[6631]208    """Representation of student personal data.
[7150]209
[6631]210    """
[6651]211    perm_address = schema.Text(
[6631]212        title = u'Permanent Address',
213        required = False,
214        )
215
216class IStudent(IStudentBase,IStudentClearance,IStudentPersonal):
217    """Representation of a student.
[7150]218
[6631]219    """
220
[6849]221class IStudentUpdateByRegNo(IStudent):
222    """Representation of a student. Skip regular reg_number validation.
[7150]223
[6849]224    """
225    reg_number = schema.TextLine(
226        title = u'Registration Number',
227        default = None,
228        required = False,
229        )
230
231class IStudentUpdateByMatricNo(IStudent):
232    """Representation of a student. Skip regular matric_number validation.
[7150]233
[6849]234    """
235    matric_number = schema.TextLine(
236        title = u'Matriculation Number',
237        default = None,
238        required = False,
239        )
240
[7321]241class IStudentStudyCourse(ISIRPObject):
[6633]242    """A container for student study levels.
243
244    """
[6648]245    certificate = schema.Choice(
246        title = u'Certificate',
247        source = CertificateSource(),
248        default = None,
[7209]249        required = False,
[6633]250        )
[6635]251
[6996]252
253    entry_mode = schema.Choice(
254        title = u'Entry Mode',
255        vocabulary = study_modes,
256        default = u'ug_ft',
257        required = True,
258        readonly = False,
259        )
260
261    entry_session = schema.Choice(
262        title = u'Entry Session',
263        source = academic_sessions_vocab,
[7425]264        #default = datetime.now().year,
265        default = None,
[6996]266        required = True,
267        readonly = False,
268        )
269
[6724]270    current_session = schema.Choice(
271        title = u'Current Session',
[6744]272        source = academic_sessions_vocab,
[6724]273        default = None,
274        required = True,
[6996]275        readonly = False,
[6724]276        )
277
278    current_level = schema.Choice(
279        title = u'Current Level',
[6725]280        source = StudyLevelSource(),
[6724]281        default = None,
[6725]282        required = False,
[6996]283        readonly = False,
[6724]284        )
285
286    current_verdict = schema.Choice(
287        title = u'Current Verdict',
288        source = verdicts,
[6804]289        default = '0',
[6725]290        required = False,
[6724]291        )
292
293    previous_verdict = schema.Choice(
294        title = u'Previous Verdict',
295        source = verdicts,
[6805]296        default = '0',
[6725]297        required = False,
[6724]298        )
299
[6825]300class IStudentStudyCourseImport(IStudentStudyCourse):
301    """A container for student study levels.
302
303    """
304    current_level = schema.Int(
305        title = u'Current Level',
306        default = None,
307        )
308
[7321]309class IStudentStudyLevel(ISIRPObject):
[6774]310    """A container for course tickets.
311
312    """
313    level = Attribute('The level code')
[6793]314    validation_date = Attribute('The date of validation')
315    validated_by = Attribute('User Id of course adviser')
[6774]316
[6793]317    level_session = schema.Choice(
318        title = u'Session',
319        source = academic_sessions_vocab,
320        default = None,
321        required = True,
322        )
[6781]323
[6793]324    level_verdict = schema.Choice(
325        title = u'Verdict',
326        source = verdicts,
[6805]327        default = '0',
[6793]328        required = False,
329        )
330
[7321]331class ICourseTicket(ISIRPObject):
[6781]332    """A course ticket.
333
334    """
[6783]335    code = Attribute('code of the original course')
336    title = Attribute('title of the original course')
337    credits = Attribute('credits of the original course')
338    passmark = Attribute('passmark of the original course')
339    semester = Attribute('semester of the original course')
340    faculty = Attribute('faculty of the original course')
341    department = Attribute('department of the original course')
[7304]342    fcode = Attribute('faculty code of the original course')
343    dcode = Attribute('department code of the original course')
[6781]344
[6795]345    core_or_elective = schema.Bool(
346        title = u'Mandatory',
347        default = False,
348        required = False,
349        readonly = False,
350        )
351
[6781]352    score = schema.Int(
353        title = u'Score',
354        default = 0,
355        required = False,
356        readonly = False,
357        )
358
[6806]359    automatic = schema.Bool(
360        title = u'Automatical Creation',
361        default = False,
362        required = False,
363        readonly = True,
364        )
365
[6795]366class ICourseTicketAdd(ICourseTicket):
[7150]367    """An interface for adding course tickets.
[6795]368
369    """
370    course = schema.Choice(
371        title = u'Course',
372        source = CourseSource(),
373        readonly = False,
374        )
375
[7321]376class IStudentAccommodation(ISIRPObject):
[6635]377    """A container for student accommodation objects.
378
379    """
380
[7321]381class IBedTicket(ISIRPObject):
[6989]382    """A ticket for accommodation booking.
383
384    """
[6996]385    bed = Attribute('The bed object.')
386
387    bed_coordinates = schema.TextLine(
388        title = u'Bed Coordinates',
[6992]389        default = None,
390        required = False,
[7014]391        readonly = False,
[6992]392        )
393
[6996]394    bed_type = schema.TextLine(
395        title = u'Bed Type',
396        default = None,
397        required = False,
[7014]398        readonly = False,
[6996]399        )
400
[6992]401    booking_session = schema.Choice(
402        title = u'Session',
403        source = academic_sessions_vocab,
404        default = None,
405        required = True,
[7014]406        readonly = True,
[6992]407        )
408
409    booking_date = schema.Datetime(
410        title = u'Booking Date',
411        required = False,
[7014]412        readonly = True,
[6992]413        )
414
415    booking_code = schema.TextLine(
416        title = u'Booking Activation Code',
417        default = u'',
418        required = False,
[7014]419        readonly = True,
[6992]420        )
421
[6994]422    def getSessionString():
[7150]423        """Returns the the title of academic_sessions_vocab term.
424
[6994]425        """
[6992]426
[6860]427class IStudentPaymentsContainer(IPaymentsContainer):
[6635]428    """A container for student payment objects.
429
430    """
431
[6877]432class IStudentOnlinePayment(IOnlinePayment):
433    """A student payment via payment gateways.
434
435    """
436    p_session = schema.Choice(
437        title = u'Payment Session',
438        source = academic_sessions_vocab,
439        required = False,
440        )
441
442IStudentOnlinePayment['p_session'].order = IStudentOnlinePayment[
443    'p_item'].order
444
[6694]445# Interfaces for students only
446
447class IStudentClearanceEdit(IStudentClearance):
448    """Interface needed for restricted editing of student clearance data.
[7150]449
[6694]450    """
451
452class IStudentPersonalEdit(IStudentPersonal):
453    """Interface needed for restricted editing of student personal data.
[7150]454
[6694]455    """
[7369]456
457class IStudentChangePassword(ISIRPObject):
458    """Interface needed for change pasword page.
459
460    """
461
462    reg_number = schema.TextLine(
463        title = u'Registration Number',
464        default = None,
465        required = True,
466        readonly = False,
467        )
468
469    email = schema.ASCIILine(
470        title = u'Email',
471        required = True,
472        constraint=validate_email,
473        )
Note: See TracBrowser for help on using the repository browser.