source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/interfaces.py @ 6601

Last change on this file since 6601 was 6594, checked in by uli, 13 years ago

Remove unnecessary return. We use createWAeUPImageFile in order to get
an image file with an image id as data and not the raw binary file
data. Creating a WAeUPImageFile directly (WAeUPImageFile(filename,
filedata)) would mean to store the binary image data in the
WAeUPImageFile itself (and therefore in the ZODB).

File size: 16.9 KB
Line 
1##
2## interfaces.py
3## Login : <uli@pu.smp.net>
4## Started on  Sun Jan 16 15:30:01 2011 Uli Fouquet
5## $Id$
6##
7## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
8## This program is free software; you can redistribute it and/or modify
9## it under the terms of the GNU General Public License as published by
10## the Free Software Foundation; either version 2 of the License, or
11## (at your option) any later version.
12##
13## This program is distributed in the hope that it will be useful,
14## but WITHOUT ANY WARRANTY; without even the implied warranty of
15## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16## GNU General Public License for more details.
17##
18## You should have received a copy of the GNU General Public License
19## along with this program; if not, write to the Free Software
20## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21##
22"""Interfaces of the university application package.
23"""
24import os
25import re
26import waeup.sirp.browser
27
28from grokcore.content.interfaces import IContainer
29
30from zope import schema
31from zope.interface import Interface, Attribute, provider
32from zope.component import getUtilitiesFor
33from zope.pluggableauth.interfaces import IPrincipalInfo
34from zope.security.interfaces import IGroupClosureAwarePrincipal as IPrincipal
35from zc.sourcefactory.basic import BasicSourceFactory
36from waeup.sirp.image import createWAeUPImageFile
37from waeup.sirp.image.schema import ImageFile
38from waeup.sirp.interfaces import IWAeUPObject
39from waeup.sirp.university.vocabularies import application_categories
40from waeup.sirp.applicants.vocabularies import (
41  year_range, application_types_vocab, application_pins_vocab,
42  lgas_vocab, CertificateSource, AppCatCertificateSource, GenderSource,
43  )
44
45IMAGE_PATH = os.path.join(
46    os.path.dirname(waeup.sirp.browser.__file__),
47    'static'
48    )
49DEFAULT_PASSPORT_IMAGE_MALE = open(
50    os.path.join(IMAGE_PATH, 'placeholder_m.jpg')).read()
51DEFAULT_PASSPORT_IMAGE_FEMALE = open(
52    os.path.join(IMAGE_PATH, 'placeholder_f.jpg')).read()
53
54# Define a valiation method for email addresses
55class NotAnEmailAddress(schema.ValidationError):
56    __doc__ = u"Invalid email address"
57
58check_email = re.compile(
59    r"[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+.)*[a-zA-Z]{2,4}").match
60def validate_email(value):
61    if not check_email(value):
62        raise NotAnEmailAddress(value)
63    return True
64
65@provider(schema.interfaces.IContextAwareDefaultFactory)
66def default_passport_image(context):
67    """A default value factory for ImageFile fields.
68
69    Returns some default image as WAeUPImageFile. We cannot set the
70    default directly in ImageFile fields, as, if we want to set
71    max_size or min_size as well, some utility lookups are needed
72    which are not possible during startup.
73
74    Developers which use IContextAwareDefaultFactories like this one
75    always should make sure that the delivered default meets all
76    constraints of the field that makes use of this default value
77    provider.
78    """
79    imagefile = createWAeUPImageFile(
80        'placeholder_m.jpg',
81        open(os.path.join(IMAGE_PATH, 'placeholder_m.jpg'), 'r')
82        )
83    return imagefile
84
85class ApplicantContainerProviderSource(BasicSourceFactory):
86    """A source offering all available applicants container types.
87
88    The values returned by this source are names of utilities that can
89    create :class:`ApplicantContainer` instances. So, if you get a
90    name like ``'myactype'`` from this source, then you can do:
91
92      >>> from zope.component import getUtility
93      >>> p = getUtility(IApplicantsContainerProvider, name=myactype)
94      >>> my_applicants_container = p.factory()
95
96    Or you can access class-attributes like
97
98      >>> my_applicants_container.container_title
99      'Pretty'
100
101    """
102    def getValues(self):
103        """Returns a list of ``(<name>, <provider>)`` tuples.
104
105        Here ``<name>`` is the name under which an
106        :class:``ApplicantContainerProvider`` was registered as a
107        utility and ``<provider>`` is the utility itself.
108        """
109        return getUtilitiesFor(IApplicantsContainerProvider)
110
111    def getToken(self, value):
112        """Return the name of the ``(<name>, <provider>)`` tuple.
113        """
114        return value[0]
115
116    def getTitle(self, value):
117        """Get a 'title - description' string for a container type.
118        """
119        factory = value[1].factory
120        return "%s - %s" % (
121            factory.container_title, factory.container_description)
122
123class IResultEntry(IWAeUPObject):
124    subject = schema.TextLine(
125        title = u'Subject',
126        description = u'The subject',
127        required=False,
128        )
129    score = schema.TextLine(
130        title = u'Score',
131        description = u'The score',
132        required=False,
133        )
134
135class IApplicantsRoot(IWAeUPObject, IContainer):
136    """A container for university applicants containers.
137    """
138    pass
139
140class IApplicantsContainer(IWAeUPObject):
141    """An applicants container contains university applicants.
142
143    """
144
145    container_title = Attribute(
146        u'classattribute: title for type of container')
147    container_description = Attribute(
148        u'classattribute: description for type of container')
149
150
151    code = schema.TextLine(
152        title = u'Code',
153        default = u'-',
154        required = True,
155        readonly = True,
156        )
157
158    title = schema.TextLine(
159        title = u'Title',
160        required = True,
161        default = u'-',
162        readonly = True,
163        )
164
165    prefix = schema.Choice(
166        title = u'Application target',
167        required = True,
168        default = None,
169        source = application_types_vocab,
170        readonly = True,
171        )
172
173    year = schema.Choice(
174        title = u'Year of entrance',
175        required = True,
176        default = None,
177        values = year_range(),
178        readonly = True,
179        )
180
181    provider = schema.Choice(
182        title = u'Applicants container type',
183        required = True,
184        default = None,
185        source = ApplicantContainerProviderSource(),
186        readonly = True,
187        )
188
189    ac_prefix = schema.Choice(
190        title = u'Access code prefix',
191        required = True,
192        default = None,
193        source = application_pins_vocab,
194        )
195
196    application_category = schema.Choice(
197        title = u'Category for the grouping of certificates',
198        required = True,
199        default = None,
200        source = application_categories,
201        )
202
203    description = schema.Text(
204        title = u'Human readable description in reST format',
205        required = False,
206        default = u'''This text can been seen by anonymous users.
207Here we put information about the study courses provided, the application procedure and deadlines.'''
208        )
209
210    startdate = schema.Date(
211        title = u'Application start date',
212        required = False,
213        default = None,
214        )
215
216    enddate = schema.Date(
217        title = u'Application closing date',
218        required = False,
219        default = None,
220        )
221
222    strict_deadline = schema.Bool(
223        title = u'Forbid additions after deadline (enddate)',
224        required = True,
225        default = True,
226        )
227
228    def archive(id=None):
229        """Create on-dist archive of applicants stored in this term.
230
231        If id is `None`, all applicants are archived.
232
233        If id contains a single id string, only the respective
234        applicants are archived.
235
236        If id contains a list of id strings all of the respective
237        applicants types are saved to disk.
238        """
239
240    def clear(id=None, archive=True):
241        """Remove applicants of type given by 'id'.
242
243        Optionally archive the applicants.
244
245        If id is `None`, all applicants are archived.
246
247        If id contains a single id string, only the respective
248        applicants are archived.
249
250        If id contains a list of id strings all of the respective
251        applicant types are saved to disk.
252
253        If `archive` is ``False`` none of the archive-handling is done
254        and respective applicants are simply removed from the
255        database.
256        """
257
258class IApplicantsContainerAdd(IApplicantsContainer):
259    """An applicants container contains university applicants.
260    """
261    prefix = schema.Choice(
262        title = u'Application target',
263        required = True,
264        default = None,
265        source = application_types_vocab,
266        readonly = False,
267        )
268
269    year = schema.Choice(
270        title = u'Year of entrance',
271        required = True,
272        default = None,
273        values = year_range(),
274        readonly = False,
275        )
276
277    provider = schema.Choice(
278        title = u'Applicants container type',
279        required = True,
280        default = None,
281        source = ApplicantContainerProviderSource(),
282        readonly = False,
283        )
284
285IApplicantsContainerAdd[
286    'prefix'].order =  IApplicantsContainer['prefix'].order
287IApplicantsContainerAdd[
288    'year'].order =  IApplicantsContainer['year'].order
289IApplicantsContainerAdd[
290    'provider'].order =  IApplicantsContainer['provider'].order
291
292class IApplicantBaseData(IWAeUPObject):
293    """The data for an applicant.
294
295    This is a base interface with no field (except ``reg_no``)
296    required. For use with importers, forms, etc., please use one of
297    the derived interfaces below, which set more fields to required
298    state, depending on use-case.
299    """
300    history = Attribute('Object history, a list of messages.')
301    state = Attribute('Returns the application state of an applicant')
302    application_date = Attribute('Date of submission, used for export only')
303
304    #def getApplicantsRootLogger():
305    #    """Returns the logger from the applicants root object
306    #    """
307
308    def loggerInfo(ob_class, comment):
309        """Adds an INFO message to the log file
310        """
311
312    reg_no = schema.TextLine(
313        title = u'JAMB Registration Number',
314        readonly = True,
315        )
316    access_code = schema.TextLine(
317        title = u'Access Code',
318        required = False,
319        readonly = True,
320        )
321    course1 = schema.Choice(
322        title = u'1st Choice Course of Study',
323        source = AppCatCertificateSource(),
324        required = True,
325        )
326    course2 = schema.Choice(
327        title = u'2nd Choice Course of Study',
328        source = AppCatCertificateSource(),
329        required = False,
330        )
331    firstname = schema.TextLine(
332        title = u'First Name',
333        required = True,
334        )
335    middlenames = schema.TextLine(
336        title = u'Middle Names',
337        required = False,
338        )
339    lastname = schema.TextLine(
340        title = u'Last Name (Surname)',
341        required = True,
342        )
343    date_of_birth = schema.Date(
344        title = u'Date of Birth',
345        required = True,
346        )
347    lga = schema.Choice(
348        source = lgas_vocab,
349        title = u'State/LGA',
350        default = 'foreigner',
351        required = True,
352        )
353    sex = schema.Choice(
354        title = u'Sex',
355        source = GenderSource(),
356        default = u'm',
357        required = True,
358        )
359    email = schema.ASCIILine(
360        title = u'Email',
361        required = False,
362        constraint=validate_email,
363        )
364    phone = schema.Int(
365        title = u'Phone',
366        description = u'Enter phone number with country code and without spaces.',
367        required = False,
368        )
369    passport = ImageFile(
370        title = u'Passport Photograph',
371        #default = DEFAULT_PASSPORT_IMAGE_MALE,
372        defaultFactory = default_passport_image,
373        description = u'Maximun file size is 20 kB.',
374        required = True,
375        max_size = 20480,
376        )
377
378    #
379    # Process Data
380    #
381    screening_score = schema.Int(
382        title = u'Screening Score',
383        required = False,
384        )
385    screening_venue = schema.TextLine(
386        title = u'Screening Venue',
387        required = False,
388        )
389    course_admitted = schema.Choice(
390        title = u'Admitted Course of Study',
391        source = CertificateSource(),
392        default = None,
393        required = False,
394        )
395    notice = schema.Text(
396        title = u'Notice',
397        required = False,
398        )
399    student_id = schema.TextLine(
400        title = u'Student ID',
401        required = False,
402        readonly = True,
403        )
404    locked = schema.Bool(
405        title = u'Form locked',
406        default = False,
407        )
408
409class IApplicant(IApplicantBaseData):
410    """An applicant.
411
412    This is basically the applicant base data. Here we repeat the
413    fields from base data if we have to set the `required` attribute
414    to True (which is the default).
415    """
416
417class IApplicantEdit(IApplicantBaseData):
418    """An applicant.
419
420    Here we can repeat the fields from base data and set the
421    `required` and `readonly` attributes to True to further restrict
422    the data access. We cannot omit fields. This has to be done in the
423    respective form page.
424    """
425    screening_score = schema.Int(
426        title = u'Screening Score',
427        required = False,
428        readonly = True,
429        )
430    screening_venue = schema.TextLine(
431        title = u'Screening Venue',
432        required = False,
433        readonly = True,
434        )
435    course_admitted = schema.Choice(
436        title = u'Admitted Course of Study',
437        source = CertificateSource(),
438        default = None,
439        required = False,
440        readonly = True,
441        )
442    # entry_session is inherited from the container
443    #entry_session = schema.Choice(
444    #    source = entry_session_vocab,
445    #    title = u'Entry Session',
446    #    required = False,
447    #    readonly = True
448    #    )
449    notice = schema.Text(
450        title = u'Notice',
451        required = False,
452        readonly = True,
453        )
454
455class IApplicantPrincipalInfo(IPrincipalInfo):
456    """Infos about principals that are applicants.
457    """
458    access_code = Attribute("The Access Code the user purchased")
459
460class IApplicantPrincipal(IPrincipal):
461    """A principal that is an applicant.
462
463    This interface extends zope.security.interfaces.IPrincipal and
464    requires also an `id` and other attributes defined there.
465    """
466    access_code = schema.TextLine(
467        title = u'Access Code',
468        description = u'The access code purchased by the user.',
469        required = True,
470        readonly = True)
471
472class IApplicantsFormChallenger(Interface):
473    """A challenger that uses a browser form to collect applicant
474       credentials.
475    """
476    loginpagename = schema.TextLine(
477        title = u'Loginpagename',
478        description = u"""Name of the login form used by challenger.
479
480        The form must provide an ``access_code`` input field.
481        """)
482
483    accesscode_field = schema.TextLine(
484        title = u'Access code field',
485        description = u'''Field of the login page which is looked up for
486                          access_code''',
487        default = u'access_code',
488        )
489
490
491class IApplicantSessionCredentials(Interface):
492    """Interface for storing and accessing applicant credentials in a
493       session.
494    """
495
496    def __init__(access_code):
497        """Create applicant session credentials."""
498
499    def getAccessCode():
500        """Return the access code."""
501
502
503class IApplicantsContainerProvider(Interface):
504    """A provider for applicants containers.
505
506    Applicants container providers are meant to be looked up as
507    utilities. This way we can find all applicant container types
508    defined somewhere.
509
510    Each applicants container provider registered as utility provides
511    one container type and one should be able to call the `factory`
512    attribute to create an instance of the requested container type.
513
514    .. THE FOLLOWING SHOULD GO INTO SPHINX DOCS (and be tested)
515
516    Samples:
517
518    Given, you had an IApplicantsContainer implementation somewhere
519    and you would like to make it findable on request, then you would
520    normally create an appropriate provider utility like this::
521
522      import grok
523      from waeup.sirp.applicants.interfaces import IApplicantsContainerProvider
524
525      class MyContainerProvider(grok.GlobalUtility):
526          grok.implements(IApplicantsContainerProvider)
527          grok.name('MyContainerProvider') # Must be unique
528          factory = MyContainer # A class implementing IApplicantsContainer
529                                # or derivations thereof.
530
531    This utility would be registered on startup and could then be used
532    like this:
533
534      >>> from zope.component import getAllUtilitiesRegisteredFor
535      >>> from waeup.sirp.applicants.interfaces import (
536      ...     IApplicantsContainerProvider)
537      >>> all_providers = getAllUtilitiesRegisteredFor(
538      ...     IApplicantsContainerProvider)
539      >>> all_providers
540      [<MyContainerProvider object at 0x...>]
541
542    You could look up this specific provider by name:
543
544      >>> from zope.component import getUtility
545      >>> p = getUtility(IApplicantsContainerProvider, name='MyProvider')
546      >>> p
547      <MyContainerProvider object at 0x...>
548
549    An applicants container would then be created like this:
550
551      >>> provider = all_providers[0]
552      >>> container = provider.factory()
553      >>> container
554      <MyContainer object at 0x...>
555
556    """
557    factory = Attribute("A class that can create instances of the "
558                        "requested container type")
Note: See TracBrowser for help on using the repository browser.