1 | ## $Id: container.py 8601 2012-06-02 11:25:33Z 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 | """ |
---|
19 | Containers for university applicants. |
---|
20 | """ |
---|
21 | from random import SystemRandom as r |
---|
22 | import grok |
---|
23 | from zope.component.factory import Factory |
---|
24 | from zope.component.interfaces import IFactory |
---|
25 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
26 | from waeup.kofa.applicants.interfaces import ( |
---|
27 | IApplicantsContainer, IApplicantsContainerAdd, IApplicant |
---|
28 | ) |
---|
29 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
30 | from waeup.kofa.applicants.workflow import (INITIALIZED, |
---|
31 | STARTED, PAID, ADMITTED, NOT_ADMITTED, SUBMITTED, CREATED) |
---|
32 | |
---|
33 | def generate_applicant_id(container=None): |
---|
34 | if container is not None: |
---|
35 | key = r().randint(99999,1000000) |
---|
36 | while str(key) in container.keys(): |
---|
37 | key = r().randint(99999,1000000) |
---|
38 | return u"%s_%d" % (container.code, key) |
---|
39 | else: |
---|
40 | # In some tests we don't use containers |
---|
41 | return u"xxx_1234" |
---|
42 | |
---|
43 | class ApplicantsContainer(grok.Container): |
---|
44 | """An applicants container contains university applicants. |
---|
45 | """ |
---|
46 | grok.implements(IApplicantsContainer,IApplicantsContainerAdd) |
---|
47 | |
---|
48 | #: A dictionary to hold per language translations of description string. |
---|
49 | description_dict = {} |
---|
50 | |
---|
51 | @property |
---|
52 | def local_roles(self): |
---|
53 | return [] |
---|
54 | |
---|
55 | def archive(self, app_ids=None): |
---|
56 | """Create on-dist archive of applicants stored in this term. |
---|
57 | |
---|
58 | If app_ids is `None`, all applicants are archived. |
---|
59 | |
---|
60 | If app_ids contains a single id string, only the respective |
---|
61 | applicants are archived. |
---|
62 | |
---|
63 | If app_ids contains a list of id strings all of the respective |
---|
64 | applicants types are saved to disk. |
---|
65 | """ |
---|
66 | raise NotImplementedError() |
---|
67 | |
---|
68 | def clear(self, app_ids=None, archive=True): |
---|
69 | """Remove applicants of type given by 'id'. |
---|
70 | |
---|
71 | Optionally archive the applicants. |
---|
72 | |
---|
73 | If id is `None`, all applicants are archived. |
---|
74 | |
---|
75 | If id contains a single id string, only the respective |
---|
76 | applicants are archived. |
---|
77 | |
---|
78 | If id contains a list of id strings all of the respective |
---|
79 | applicant types are saved to disk. |
---|
80 | |
---|
81 | If `archive` is ``False`` none of the archive-handling is done |
---|
82 | and respective applicants are simply removed from the |
---|
83 | database. |
---|
84 | """ |
---|
85 | raise NotImplementedError() |
---|
86 | |
---|
87 | def addApplicant(self, applicant): |
---|
88 | """Add an applicant. |
---|
89 | """ |
---|
90 | if not IApplicant.providedBy(applicant): |
---|
91 | raise TypeError( |
---|
92 | 'ApplicantsContainers contain only IApplicant instances') |
---|
93 | if applicant.applicant_id is None: |
---|
94 | applicant_id = generate_applicant_id(container=self) |
---|
95 | applicant.applicant_id = applicant_id |
---|
96 | self[applicant.application_number] = applicant |
---|
97 | return |
---|
98 | |
---|
99 | @property |
---|
100 | def statistics(self): |
---|
101 | state_stats = {INITIALIZED:0, STARTED:0, PAID:0, SUBMITTED:0, |
---|
102 | ADMITTED:0, NOT_ADMITTED:0, CREATED:0} |
---|
103 | faculty_keys = grok.getSite()['faculties'].keys() |
---|
104 | fac_stats = dict([(i,0) for i in faculty_keys]) |
---|
105 | for key in self.keys(): |
---|
106 | state = self[key].state |
---|
107 | state_stats[state] += 1 |
---|
108 | cert = getattr(self[key],'course1',None) |
---|
109 | if cert is not None and state == SUBMITTED: |
---|
110 | faculty = cert.__parent__.__parent__.__parent__ |
---|
111 | fac_stats[faculty.__name__] += 1 |
---|
112 | return state_stats, fac_stats |
---|
113 | |
---|
114 | ApplicantsContainer = attrs_to_fields(ApplicantsContainer) |
---|
115 | |
---|
116 | # ApplicantsContainers must be importable. So we need a factory. |
---|
117 | class ApplicantsContainerFactory(grok.GlobalUtility): |
---|
118 | """A factory for student online payments. |
---|
119 | """ |
---|
120 | grok.implements(IFactory) |
---|
121 | grok.name(u'waeup.ApplicantsContainer') |
---|
122 | title = u"Create a new container for applicants.", |
---|
123 | description = u"This factory instantiates new IApplicantsContainer instances." |
---|
124 | |
---|
125 | def __call__(self, *args, **kw): |
---|
126 | return ApplicantsContainer() |
---|
127 | |
---|
128 | def getInterfaces(self): |
---|
129 | return implementedBy(ApplicantsContainer) |
---|