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

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

Rename 'getApplicationState' to 'state'. Properties are always named like
attributes (lowe_case_with_underscores; they appear as attributes in the

interface) and not like methods (camelCase).

File size: 3.7 KB
Line 
1##
2## applicants.py
3## Login : <uli@pu.smp.net>
4## Started on  Fri Jul 16 11:46:55 2010 Uli Fouquet
5## $Id$
6##
7## Copyright (C) 2010 Uli Fouquet
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##
22import grok
23from grok import index
24from datetime import datetime
25from zope.component.interfaces import IFactory
26from zope.interface import implementedBy
27from zope.schema.fieldproperty import FieldProperty
28from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState
29from waeup.sirp.interfaces import IWAeUPSIRPPluggable
30from waeup.sirp.app import University
31from waeup.sirp.applicants.interfaces import (
32    IResultEntry, IApplicant, IApplicantEdit, default_passport_image,
33    )
34from waeup.sirp.utils.helpers import attrs_to_fields
35
36class ResultEntry(grok.Context):
37    grok.implements(IResultEntry)
38
39    def __init__(self, subject=None, score=None):
40        self.subject = subject
41        self.score = score
42
43class Applicant(grok.Model):
44    grok.implements(IApplicant,IApplicantEdit)
45    grok.provides(IApplicant)
46
47    def __init__(self):
48        super(Applicant, self).__init__()
49        IWorkflowInfo(self).fireTransition('init')
50        return
51
52    @property
53    def state(self):
54        state = IWorkflowState(self).getState()
55        return state
56
57# Set all attributes of Applicant required in IApplicant as field
58# properties. Doing this, we do not have to set initial attributes
59# ourselves and as a bonus we get free validation when an attribute is
60# set.
61Applicant = attrs_to_fields(Applicant)
62
63class ApplicantCatalog(grok.Indexes):
64    """A catalog indexing :class:`Applicant` instances in the ZODB.
65    """
66    grok.site(University)
67    grok.name('applicants_catalog')
68    grok.context(IApplicant)
69
70    access_code = index.Field(attribute='access_code')
71
72class ApplicantTraverser(grok.Traverser):
73    """Get image of the context applicant.
74
75    Each applicant can provide a passport photograph which will be
76    returned by this traverser if:
77
78    - we request the exact filename of the picture or
79
80    - ask for a picture named 'passport.jpg'.
81
82    If no picture was stored yet, we get a placeholder image when
83    asking for `passport.jpg`.
84
85    If none of the above applies, we return ``None``, most probably
86    resulting a :exc:`NotFound` exception.
87
88    """
89    grok.context(IApplicant)
90    def traverse(self, name):
91        passport_filename = getattr(self.context.passport, 'filename', None)
92        if name == passport_filename:
93            return self.context.passport
94        if name == 'passport.jpg':
95            if self.context.passport is not None:
96                return self.context.passport
97            return default_passport_image(self.context)
98        return
99
100class ApplicantFactory(grok.GlobalUtility):
101    """A factory for faculty containers.
102    """
103    grok.implements(IFactory)
104    grok.name(u'waeup.Applicant')
105    title = u"Create a new applicant.",
106    description = u"This factory instantiates new applicant instances."
107
108    def __call__(self, *args, **kw):
109        return Applicant()
110
111    def getInterfaces(self):
112        return implementedBy(Applicant)
Note: See TracBrowser for help on using the repository browser.