source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py @ 8382

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

Use HTMLDisplayWidget for description of ApplicantsContainers?.

  • Property svn:keywords set to Id
File size: 15.6 KB
Line 
1## $Id: interfaces.py 8365 2012-05-05 15:45:47Z 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"""Interfaces of the university application package.
19"""
20from grokcore.content.interfaces import IContainer
21from zc.sourcefactory.basic import BasicSourceFactory
22from zc.sourcefactory.contextual import BasicContextualSourceFactory
23from zope import schema
24from zope.component import getUtilitiesFor, queryUtility, getUtility
25from zope.catalog.interfaces import ICatalog
26from zope.interface import Interface, Attribute, implements, directlyProvides
27from zope.schema.interfaces import (
28    ValidationError, ISource, IContextSourceBinder)
29from waeup.kofa.schema import TextLineChoice, FormattedDate
30from waeup.kofa.interfaces import (
31    IKofaObject, year_range, validate_email,
32    SimpleKofaVocabulary)
33from waeup.kofa.interfaces import MessageFactory as _
34from waeup.kofa.payments.interfaces import IOnlinePayment
35from waeup.kofa.schema import PhoneNumber
36from waeup.kofa.students.vocabularies import GenderSource
37from waeup.kofa.university.vocabularies import (
38    course_levels, AppCatSource, CertificateSource)
39
40#: Maximum upload size for applicant passport photographs (in bytes)
41MAX_UPLOAD_SIZE = 1024 * 20
42
43class RegNumInSource(ValidationError):
44    """Registration number exists already
45    """
46    # The docstring of ValidationErrors is used as error description
47    # by zope.formlib.
48    pass
49
50class RegNumberSource(object):
51    implements(ISource)
52    cat_name = 'applicants_catalog'
53    field_name = 'reg_number'
54    validation_error = RegNumInSource
55    def __init__(self, context):
56        self.context = context
57        return
58
59    def __contains__(self, value):
60        cat = queryUtility(ICatalog, self.cat_name)
61        if cat is None:
62            return True
63        kw = {self.field_name: (value, value)}
64        results = cat.searchResults(**kw)
65        for entry in results:
66            if entry.applicant_id != self.context.applicant_id:
67                # XXX: sources should simply return False.
68                #      But then we get some stupid error message in forms
69                #      when validation fails.
70                raise self.validation_error(value)
71                #return False
72        return True
73
74def contextual_reg_num_source(context):
75    source = RegNumberSource(context)
76    return source
77directlyProvides(contextual_reg_num_source, IContextSourceBinder)
78
79
80class AppCatCertificateSource(CertificateSource):
81    """An application certificate source delivers all courses which belong to
82    a certain application_category.
83    """
84    def getValues(self, context):
85        # appliction category not available when certificate was deleted.
86        # shouldn't that info be part of applicant info instead?
87        # when we cannot determine the appcat, we will display all courses.
88        appcat = getattr(getattr(context, '__parent__', None),
89                         'application_category', None)
90        catalog = getUtility(ICatalog, name='certificates_catalog')
91        result = catalog.searchResults(
92            application_category=(appcat,appcat))
93        result = sorted(result, key=lambda value: value.code)
94        curr_course = context.course1
95        if curr_course is not None and curr_course not in result:
96            # display also current course even if it is not catalogued
97            # (any more)
98            result = [curr_course,] + result
99        return result
100
101class ApplicationTypeSource(BasicContextualSourceFactory):
102    """An application type source delivers screening types defined in the
103    portal.
104    """
105    def getValues(self, context):
106        appcats_dict = getUtility(
107            IApplicantsUtils).APP_TYPES_DICT
108        return sorted(appcats_dict.keys())
109
110    def getToken(self, context, value):
111        return value
112
113    def getTitle(self, context, value):
114        appcats_dict = getUtility(
115            IApplicantsUtils).APP_TYPES_DICT
116        return appcats_dict[value][0]
117
118# Maybe Uniben still needs this ...
119#class ApplicationPinSource(BasicContextualSourceFactory):
120#    """An application pin source delivers PIN prefixes for application
121#    defined in the portal.
122#    """
123#    def getValues(self, context):
124#        apppins_dict = getUtility(
125#            IApplicantsUtils).APP_TYPES_DICT
126#        return sorted(appcats_dict.keys())
127#
128#    def getToken(self, context, value):
129#        return value
130#
131#    def getTitle(self, context, value):
132#        apppins_dict = getUtility(
133#            IApplicantsUtils).APP_TYPES_DICT
134#        return u"%s (%s)" % (
135#            apppins_dict[value][1],self.apppins_dict[value][0])
136
137application_modes_vocab = SimpleKofaVocabulary(
138    (_('Create Application Records'), 'create'),
139    (_('Update Application Records'), 'update'),
140    )
141
142class IApplicantsUtils(Interface):
143    """A collection of methods which are subject to customization.
144    """
145
146    APP_TYPES_DICT = Attribute(' dict of application types')
147
148class IApplicantsRoot(IKofaObject, IContainer):
149    """A container for university applicants containers.
150    """
151    pass
152
153class IApplicantsContainer(IKofaObject):
154    """An applicants container contains university applicants.
155
156    """
157
158    code = schema.TextLine(
159        title = _(u'Code'),
160        required = True,
161        readonly = True,
162        )
163
164    title = schema.TextLine(
165        title = _(u'Title'),
166        required = True,
167        readonly = True,
168        )
169
170    prefix = schema.Choice(
171        title = _(u'Application Target'),
172        required = True,
173        source = ApplicationTypeSource(),
174        readonly = True,
175        )
176
177    year = schema.Choice(
178        title = _(u'Year of Entrance'),
179        required = True,
180        values = year_range(),
181        readonly = True,
182        )
183
184    mode = schema.Choice(
185        title = _(u'Application Mode'),
186        vocabulary = application_modes_vocab,
187        required = True,
188        )
189
190    # Maybe Uniben still needs this ...
191    #ac_prefix = schema.Choice(
192    #    title = u'Activation code prefix',
193    #    required = True,
194    #    default = None,
195    #    source = ApplicationPinSource(),
196    #    )
197
198    application_category = schema.Choice(
199        title = _(u'Category for the grouping of certificates'),
200        required = True,
201        source = AppCatSource(),
202        )
203
204    description = schema.Text(
205        title = _(u'Human readable description in HTML format'),
206        required = False,
207        default = u'''This text can been seen by anonymous users.
208Here we put multi-lingual information about the study courses provided, the application procedure and deadlines.
209>>de<<
210Dieser Text kann von anonymen Benutzern gelesen werden.
211Hier koennen mehrsprachige Informationen fuer Antragsteller hinterlegt werden.'''
212        )
213
214    description_dict = Attribute(
215        """Content as language dictionary with values in HTML format.""")
216
217    startdate = schema.Datetime(
218        title = _(u'Application Start Date'),
219        required = False,
220        description = _('Example:') + u'2011-12-01 18:30:00+01:00',
221        )
222
223    enddate = schema.Datetime(
224        title = _(u'Application Closing Date'),
225        required = False,
226        description = _('Example:') + u'2011-12-31 23:59:59+01:00',
227        )
228
229    strict_deadline = schema.Bool(
230        title = _(u'Forbid additions after deadline (enddate)'),
231        required = False,
232        default = True,
233        )
234
235    def archive(id=None):
236        """Create on-dist archive of applicants stored in this term.
237
238        If id is `None`, all applicants are archived.
239
240        If id contains a single id string, only the respective
241        applicants are archived.
242
243        If id contains a list of id strings all of the respective
244        applicants types are saved to disk.
245        """
246
247    def clear(id=None, archive=True):
248        """Remove applicants of type given by 'id'.
249
250        Optionally archive the applicants.
251
252        If id is `None`, all applicants are archived.
253
254        If id contains a single id string, only the respective
255        applicants are archived.
256
257        If id contains a list of id strings all of the respective
258        applicant types are saved to disk.
259
260        If `archive` is ``False`` none of the archive-handling is done
261        and respective applicants are simply removed from the
262        database.
263        """
264
265class IApplicantsContainerAdd(IApplicantsContainer):
266    """An applicants container contains university applicants.
267    """
268    prefix = schema.Choice(
269        title = _(u'Application Target'),
270        required = True,
271        source = ApplicationTypeSource(),
272        readonly = False,
273        )
274
275    year = schema.Choice(
276        title = _(u'Year of Entrance'),
277        required = True,
278        values = year_range(),
279        readonly = False,
280        )
281
282IApplicantsContainerAdd[
283    'prefix'].order =  IApplicantsContainer['prefix'].order
284IApplicantsContainerAdd[
285    'year'].order =  IApplicantsContainer['year'].order
286
287class IApplicantBaseData(IKofaObject):
288    """The data for an applicant.
289
290    This is a base interface with no field
291    required. For use with processors, forms, etc., please use one of
292    the derived interfaces below, which set more fields to required
293    state, depending on use-case.
294
295    This base interface is also implemented by the
296    :class:`waeup.kofa.students.StudentApplication` class in the
297    students package. Thus, these are the data which are saved after
298    admission.
299    """
300
301    history = Attribute('Object history, a list of messages')
302    state = Attribute('The application state of an applicant')
303    display_fullname = Attribute('The fullname of an applicant')
304    application_date = Attribute('Date of submission, used for export only')
305    password = Attribute('Encrypted password of a applicant')
306    application_number = Attribute('The key under which the record is stored')
307
308    applicant_id = schema.TextLine(
309        title = _(u'Applicant Id'),
310        required = False,
311        readonly = False,
312        )
313    reg_number = TextLineChoice(
314        title = _(u'Registration Number'),
315        readonly = False,
316        required = True,
317        source = contextual_reg_num_source,
318        )
319    #access_code = schema.TextLine(
320    #    title = u'Activation Code',
321    #    required = False,
322    #    readonly = True,
323    #    )
324    firstname = schema.TextLine(
325        title = _(u'First Name'),
326        required = True,
327        )
328    middlename = schema.TextLine(
329        title = _(u'Middle Name'),
330        required = False,
331        )
332    lastname = schema.TextLine(
333        title = _(u'Last Name (Surname)'),
334        required = True,
335        )
336    date_of_birth = FormattedDate(
337        title = _(u'Date of Birth'),
338        required = True,
339        #date_format = u'%d/%m/%Y', # Use grok-instance-wide default
340        show_year = True,
341        )
342    sex = schema.Choice(
343        title = _(u'Sex'),
344        source = GenderSource(),
345        required = True,
346        )
347    email = schema.ASCIILine(
348        title = _(u'Email Address'),
349        required = False,
350        constraint=validate_email,
351        )
352    phone = PhoneNumber(
353        title = _(u'Phone'),
354        description = u'',
355        required = False,
356        )
357    course1 = schema.Choice(
358        title = _(u'1st Choice Course of Study'),
359        source = CertificateSource(),
360        required = True,
361        )
362    course2 = schema.Choice(
363        title = _(u'2nd Choice Course of Study'),
364        source = CertificateSource(),
365        required = False,
366        )
367    #school_grades = schema.List(
368    #    title = _(u'School Grades'),
369    #    value_type = ResultEntryField(),
370    #    required = False,
371    #    default = [],
372    #    )
373
374    notice = schema.Text(
375        title = _(u'Notice'),
376        required = False,
377        )
378    screening_venue = schema.TextLine(
379        title = _(u'Screening Venue'),
380        required = False,
381        )
382    screening_score = schema.Int(
383        title = _(u'Screening Score'),
384        required = False,
385        )
386    course_admitted = schema.Choice(
387        title = _(u'Admitted Course of Study'),
388        source = CertificateSource(),
389        required = False,
390        )
391    student_id = schema.TextLine(
392        title = _(u'Student Id'),
393        required = False,
394        readonly = False,
395        )
396    locked = schema.Bool(
397        title = _(u'Form locked'),
398        default = False,
399        )
400
401class IApplicant(IApplicantBaseData):
402    """An applicant.
403
404    This is basically the applicant base data. Here we repeat the
405    fields from base data if we have to set the `required` attribute
406    to True (which is the default).
407    """
408
409    def loggerInfo(ob_class, comment):
410        """Adds an INFO message to the log file
411        """
412
413    def createStudent():
414        """Create a student object from applicatnt data
415        and copy applicant object.
416        """
417
418class IApplicantEdit(IApplicant):
419    """An applicant interface for editing.
420
421    Here we can repeat the fields from base data and set the
422    `required` and `readonly` attributes to True to further restrict
423    the data access. Or we can allow only certain certificates to be
424    selected by choosing the appropriate source.
425
426    We cannot omit fields here. This has to be done in the
427    respective form page.
428    """
429
430    email = schema.ASCIILine(
431        title = _(u'Email Address'),
432        required = True,
433        constraint=validate_email,
434        )
435    course1 = schema.Choice(
436        title = _(u'1st Choice Course of Study'),
437        source = AppCatCertificateSource(),
438        required = True,
439        )
440    course2 = schema.Choice(
441        title = _(u'2nd Choice Course of Study'),
442        source = AppCatCertificateSource(),
443        required = False,
444        )
445    screening_score = schema.Int(
446        title = _(u'Screening Score'),
447        required = False,
448        readonly = True,
449        )
450    screening_venue = schema.TextLine(
451        title = _(u'Screening Venue'),
452        required = False,
453        readonly = True,
454        )
455    course_admitted = schema.Choice(
456        title = _(u'Admitted Course of Study'),
457        source = CertificateSource(),
458        required = False,
459        readonly = True,
460        )
461    notice = schema.Text(
462        title = _(u'Notice'),
463        required = False,
464        readonly = True,
465        )
466
467IApplicantEdit['email'].order = IApplicantEdit[
468    'sex'].order
469
470class IApplicantUpdateByRegNo(IApplicant):
471    """Representation of an applicant.
472
473    Skip regular reg_number validation if reg_number is used for finding
474    the applicant object.
475    """
476    reg_number = schema.TextLine(
477        title = u'Registration Number',
478        required = False,
479        )
480
481class IApplicantRegisterUpdate(IApplicant):
482    """Representation of an applicant for first-time registration.
483
484    This interface is used when apllicants use the registration page to
485    update their records.
486    """
487    reg_number = schema.TextLine(
488        title = u'Registration Number',
489        required = True,
490        )
491
492    firstname = schema.TextLine(
493        title = _(u'First Name'),
494        required = True,
495        )
496
497    email = schema.ASCIILine(
498        title = _(u'Email Address'),
499        required = True,
500        constraint=validate_email,
501        )
502
503class IApplicantOnlinePayment(IOnlinePayment):
504    """An applicant payment via payment gateways.
505
506    """
Note: See TracBrowser for help on using the repository browser.