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

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

Remove unused imports.

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