1 | ## |
---|
2 | ## container.py |
---|
3 | ## Login : <uli@pu.smp.net> |
---|
4 | ## Started on Thu Jan 20 04:33:18 2011 Uli Fouquet |
---|
5 | ## $Id$ |
---|
6 | ## |
---|
7 | ## Copyright (C) 2011 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 | ## |
---|
22 | """ |
---|
23 | Containers for university applicants. |
---|
24 | """ |
---|
25 | import grok |
---|
26 | from waeup.sirp.applicants.interfaces import ( |
---|
27 | IApplicantsContainer, IApplicantContainerProvider, |
---|
28 | ) |
---|
29 | |
---|
30 | class ApplicantsContainer(grok.Container): |
---|
31 | """An applicants container contains university applicants. |
---|
32 | """ |
---|
33 | grok.implements(IApplicantsContainer) |
---|
34 | |
---|
35 | REQUIRES_JAMBDATA = False |
---|
36 | name = None |
---|
37 | title = u'Simple applicant container' |
---|
38 | description = u'Simple container for regular applicants' |
---|
39 | startdate = None |
---|
40 | enddate = None |
---|
41 | strict_deadline = True |
---|
42 | |
---|
43 | def archive(self, app_ids=None): |
---|
44 | """Create on-dist archive of applicants stored in this term. |
---|
45 | |
---|
46 | If app_ids is `None`, all applicants are archived. |
---|
47 | |
---|
48 | If app_ids contains a single id string, only the respective |
---|
49 | applicants are archived. |
---|
50 | |
---|
51 | If app_ids contains a list of id strings all of the respective |
---|
52 | applicants types are saved to disk. |
---|
53 | """ |
---|
54 | raise NotImplemented() |
---|
55 | |
---|
56 | def clear(self, app_ids=None, archive=True): |
---|
57 | """Remove applicants of type given by 'id'. |
---|
58 | |
---|
59 | Optionally archive the applicants. |
---|
60 | |
---|
61 | If id is `None`, all applicants are archived. |
---|
62 | |
---|
63 | If id contains a single id string, only the respective |
---|
64 | applicants are archived. |
---|
65 | |
---|
66 | If id contains a list of id strings all of the respective |
---|
67 | applicant types are saved to disk. |
---|
68 | |
---|
69 | If `archive` is ``False`` none of the archive-handling is done |
---|
70 | and respective applicants are simply removed from the |
---|
71 | database. |
---|
72 | """ |
---|
73 | raise NotImplemented() |
---|
74 | |
---|
75 | class JAMBBasedApplicantsContainer(ApplicantsContainer): |
---|
76 | """An applicants container contains university applicants. |
---|
77 | |
---|
78 | For applicants added to this container JAMB data must be available |
---|
79 | already. |
---|
80 | """ |
---|
81 | REQUIRES_JAMBDATA = True |
---|
82 | |
---|
83 | class ApplicantsContainerProvider(grok.GlobalUtility): |
---|
84 | """A utility that provides basic applicants containers. |
---|
85 | """ |
---|
86 | grok.implements(IApplicantContainerProvider) |
---|
87 | grok.name('waeup.sirp.applicant.ApplicantsContainer') |
---|
88 | |
---|
89 | factory = ApplicantsContainer |
---|