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

Last change on this file since 6469 was 6348, checked in by Henrik Bettermann, 14 years ago

First test implementation for applicants logger. Uli, please check.

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