1 | ## $Id: workflow.py 10358 2013-06-23 06:03:07Z 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 | """Workflow for applicants. |
---|
19 | """ |
---|
20 | import grok |
---|
21 | from hurry.workflow.workflow import Transition, WorkflowState, NullCondition |
---|
22 | from hurry.workflow.interfaces import IWorkflowState, IWorkflowTransitionEvent |
---|
23 | from waeup.kofa.applicants.interfaces import IApplicantBaseData |
---|
24 | from waeup.kofa.interfaces import IObjectHistory, IKofaWorkflowInfo, IKofaUtils |
---|
25 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
26 | from waeup.kofa.workflow import KofaWorkflow, KofaWorkflowInfo |
---|
27 | |
---|
28 | INITIALIZED = 'initialized' |
---|
29 | STARTED = 'started' |
---|
30 | PAID = 'paid' |
---|
31 | SUBMITTED = 'submitted' |
---|
32 | ADMITTED = 'admitted' |
---|
33 | NOT_ADMITTED = 'not admitted' |
---|
34 | CREATED = 'created' |
---|
35 | |
---|
36 | IMPORTABLE_STATES = (INITIALIZED, STARTED, PAID, SUBMITTED, ADMITTED, NOT_ADMITTED) |
---|
37 | |
---|
38 | application_states_dict = { |
---|
39 | INITIALIZED: _('initialized'), |
---|
40 | STARTED: _('started'), |
---|
41 | PAID: _('paid'), |
---|
42 | SUBMITTED: _('submitted'), |
---|
43 | ADMITTED: _('admitted'), |
---|
44 | NOT_ADMITTED: _('not admitted'), |
---|
45 | CREATED: _('created'), |
---|
46 | } |
---|
47 | |
---|
48 | APPLICATION_TRANSITIONS = ( |
---|
49 | Transition( |
---|
50 | transition_id = 'init', |
---|
51 | title = _('Initialize application'), |
---|
52 | source = None, |
---|
53 | condition = NullCondition, |
---|
54 | msg = _('Application initialized'), |
---|
55 | destination = INITIALIZED), |
---|
56 | |
---|
57 | Transition( |
---|
58 | transition_id = 'start', |
---|
59 | title = _('Start application'), |
---|
60 | msg = _('Application started'), |
---|
61 | source = INITIALIZED, |
---|
62 | destination = STARTED), |
---|
63 | |
---|
64 | Transition( |
---|
65 | transition_id = 'pay', |
---|
66 | title = _('Pay application fee'), |
---|
67 | msg = _('Payment made'), |
---|
68 | source = STARTED, |
---|
69 | destination = PAID), |
---|
70 | |
---|
71 | Transition( |
---|
72 | transition_id = 'approve', |
---|
73 | title = _('Approve payment'), |
---|
74 | msg = _('Payment approved'), |
---|
75 | source = STARTED, |
---|
76 | destination = PAID), |
---|
77 | |
---|
78 | Transition( |
---|
79 | transition_id = 'submit', |
---|
80 | title = _('Submit application'), |
---|
81 | msg = _('Application submitted'), |
---|
82 | source = PAID, |
---|
83 | destination = SUBMITTED), |
---|
84 | |
---|
85 | Transition( |
---|
86 | transition_id = 'admit', |
---|
87 | title = _('Admit applicant'), |
---|
88 | msg = _('Applicant admitted'), |
---|
89 | source = SUBMITTED, |
---|
90 | destination = ADMITTED), |
---|
91 | |
---|
92 | Transition( |
---|
93 | transition_id = 'refuse1', |
---|
94 | title = _('Refuse application'), |
---|
95 | msg = _('Application refused'), |
---|
96 | source = SUBMITTED, |
---|
97 | destination = NOT_ADMITTED), |
---|
98 | |
---|
99 | Transition( |
---|
100 | transition_id = 'refuse2', |
---|
101 | title = _('Refuse application'), |
---|
102 | msg = _('Application refused'), |
---|
103 | source = ADMITTED, |
---|
104 | destination = NOT_ADMITTED), |
---|
105 | |
---|
106 | Transition( |
---|
107 | transition_id = 'create', |
---|
108 | title = _('Create student record'), |
---|
109 | msg = _('Student record created'), |
---|
110 | source = ADMITTED, |
---|
111 | destination = CREATED), |
---|
112 | |
---|
113 | Transition( |
---|
114 | transition_id = 'reset1', |
---|
115 | title = _('Reset application to started'), |
---|
116 | msg = _('Application reset'), |
---|
117 | source = SUBMITTED, |
---|
118 | destination = STARTED), |
---|
119 | |
---|
120 | Transition( |
---|
121 | transition_id = 'reset2', |
---|
122 | title = _('Reset application to started'), |
---|
123 | msg = _('Application reset'), |
---|
124 | source = ADMITTED, |
---|
125 | destination = STARTED), |
---|
126 | |
---|
127 | Transition( |
---|
128 | transition_id = 'reset3', |
---|
129 | title = _('Reset application to started'), |
---|
130 | msg = _('Application reset'), |
---|
131 | source = NOT_ADMITTED, |
---|
132 | destination = STARTED), |
---|
133 | |
---|
134 | Transition( |
---|
135 | transition_id = 'reset4', |
---|
136 | title = _('Reset application to started'), |
---|
137 | msg = _('Application reset'), |
---|
138 | source = CREATED, |
---|
139 | destination = STARTED), |
---|
140 | |
---|
141 | Transition( |
---|
142 | transition_id = 'reset5', |
---|
143 | title = _('Reset application to paid'), |
---|
144 | msg = _('Application reset to paid'), |
---|
145 | source = SUBMITTED, |
---|
146 | destination = PAID), |
---|
147 | |
---|
148 | Transition( |
---|
149 | transition_id = 'reset6', |
---|
150 | title = _('Reset application to started'), |
---|
151 | msg = _('Application reset'), |
---|
152 | source = PAID, |
---|
153 | destination = STARTED), |
---|
154 | |
---|
155 | Transition( |
---|
156 | transition_id = 'reset7', |
---|
157 | title = _('Reset application to admitted'), |
---|
158 | msg = _('Application reset to admitted'), |
---|
159 | source = CREATED, |
---|
160 | destination = ADMITTED), |
---|
161 | ) |
---|
162 | |
---|
163 | application_workflow = KofaWorkflow(APPLICATION_TRANSITIONS) |
---|
164 | |
---|
165 | class ApplicationWorkflowState(WorkflowState, grok.Adapter): |
---|
166 | """An adapter to adapt Applicant objects to workflow states. |
---|
167 | """ |
---|
168 | grok.context(IApplicantBaseData) |
---|
169 | grok.provides(IWorkflowState) |
---|
170 | |
---|
171 | state_key = 'wf.application.state' |
---|
172 | state_id = 'wf.application.id' |
---|
173 | |
---|
174 | class ApplicationWorkflowInfo(KofaWorkflowInfo, grok.Adapter): |
---|
175 | """Adapter to adapt Applicant objects to workflow info objects. |
---|
176 | """ |
---|
177 | grok.context(IApplicantBaseData) |
---|
178 | grok.provides(IKofaWorkflowInfo) |
---|
179 | |
---|
180 | def __init__(self, context): |
---|
181 | self.context = context |
---|
182 | self.wf = application_workflow |
---|
183 | |
---|
184 | @grok.subscribe(IApplicantBaseData, IWorkflowTransitionEvent) |
---|
185 | def handle_applicant_transition_event(obj, event): |
---|
186 | """Append message to applicant history when transition happened. |
---|
187 | """ |
---|
188 | msg = event.transition.user_data['msg'] |
---|
189 | if event.transition.transition_id == 'create': |
---|
190 | msg += ' (%s)' % obj.student_id |
---|
191 | obj.locked = True |
---|
192 | if event.transition.transition_id == 'submit': |
---|
193 | obj.locked = True |
---|
194 | history = IObjectHistory(obj) |
---|
195 | history.addMessage(msg) |
---|
196 | # In some tests we don't have a an applicants root or a user |
---|
197 | try: |
---|
198 | applicants_root = grok.getSite()['applicants'] |
---|
199 | applicants_root.logger.info('%s - %s' % (obj.applicant_id,msg)) |
---|
200 | except (TypeError, AttributeError): |
---|
201 | pass |
---|
202 | return |
---|