1 | """Workflow for students. |
---|
2 | """ |
---|
3 | import grok |
---|
4 | from zope.component import getUtility |
---|
5 | from hurry.workflow.workflow import Transition, WorkflowState, NullCondition |
---|
6 | from hurry.workflow.interfaces import IWorkflowState, IWorkflowTransitionEvent |
---|
7 | from waeup.sirp.interfaces import ( |
---|
8 | IObjectHistory, ISIRPWorkflowInfo, ISIRPUtils, |
---|
9 | CREATED, ADMITTED, CLEARANCE, REQUESTED, CLEARED, PAID, RETURNING, |
---|
10 | REGISTERED, VALIDATED) |
---|
11 | from waeup.sirp.interfaces import MessageFactory as _ |
---|
12 | from waeup.sirp.workflow import SIRPWorkflow, SIRPWorkflowInfo |
---|
13 | from waeup.sirp.students.interfaces import IStudent, IStudentsUtils |
---|
14 | |
---|
15 | |
---|
16 | IMPORTABLE_STATES = (ADMITTED, CLEARANCE, REQUESTED, CLEARED, PAID, RETURNING, |
---|
17 | REGISTERED, VALIDATED) |
---|
18 | |
---|
19 | REGISTRATION_TRANSITIONS = ( |
---|
20 | Transition( |
---|
21 | transition_id = 'create', |
---|
22 | title = _('Create student'), |
---|
23 | source = None, |
---|
24 | condition = NullCondition, |
---|
25 | msg = _('Student record created'), |
---|
26 | destination = CREATED), |
---|
27 | |
---|
28 | Transition( |
---|
29 | transition_id = 'admit', |
---|
30 | title = _('Admit student'), |
---|
31 | msg = _('Student admitted'), |
---|
32 | source = CREATED, |
---|
33 | destination = ADMITTED), |
---|
34 | |
---|
35 | Transition( |
---|
36 | transition_id = 'reset1', |
---|
37 | title = _('Reset student'), |
---|
38 | msg = _('Student record reset'), |
---|
39 | source = ADMITTED, |
---|
40 | destination = CREATED), |
---|
41 | |
---|
42 | Transition( |
---|
43 | transition_id = 'start_clearance', |
---|
44 | title = _('Start clearance'), |
---|
45 | msg = _('Clearance started'), |
---|
46 | source = ADMITTED, |
---|
47 | destination = CLEARANCE), |
---|
48 | |
---|
49 | Transition( |
---|
50 | transition_id = 'reset2', |
---|
51 | title = _('Reset to admitted'), |
---|
52 | msg = _("Student record reset to 'admitted'"), |
---|
53 | source = CLEARANCE, |
---|
54 | destination = ADMITTED), |
---|
55 | |
---|
56 | Transition( |
---|
57 | transition_id = 'request_clearance', |
---|
58 | title = _('Request clearance'), |
---|
59 | msg = _('Clearance requested'), |
---|
60 | source = CLEARANCE, |
---|
61 | destination = REQUESTED), |
---|
62 | |
---|
63 | Transition( |
---|
64 | transition_id = 'reset3', |
---|
65 | title = _('Reset to clearance'), |
---|
66 | msg = _("Student record reset to 'clearance'"), |
---|
67 | source = REQUESTED, |
---|
68 | destination = CLEARANCE), |
---|
69 | |
---|
70 | Transition( |
---|
71 | transition_id = 'clear', |
---|
72 | title = _('Clear student'), |
---|
73 | msg = _('Cleared'), |
---|
74 | source = REQUESTED, |
---|
75 | destination = CLEARED), |
---|
76 | |
---|
77 | Transition( |
---|
78 | transition_id = 'reset4', |
---|
79 | title = _('Reset to clearance'), |
---|
80 | msg = _("Student record reset to 'clearance'"), |
---|
81 | source = CLEARED, |
---|
82 | destination = CLEARANCE), |
---|
83 | |
---|
84 | Transition( |
---|
85 | transition_id = 'pay_first_school_fee', |
---|
86 | title = _('Pay school fee'), |
---|
87 | msg = _('School fee paid'), |
---|
88 | source = CLEARED, |
---|
89 | destination = PAID), |
---|
90 | |
---|
91 | Transition( |
---|
92 | transition_id = 'reset5', |
---|
93 | title = _('Reset to cleared'), |
---|
94 | msg = _("Student record reset to 'cleared'"), |
---|
95 | source = PAID, |
---|
96 | destination = CLEARED), |
---|
97 | |
---|
98 | Transition( |
---|
99 | transition_id = 'pay_school_fee', |
---|
100 | title = _('Pay school fee'), |
---|
101 | msg = _('School fee paid'), |
---|
102 | source = RETURNING, |
---|
103 | destination = PAID), |
---|
104 | |
---|
105 | Transition( |
---|
106 | transition_id = 'reset6', |
---|
107 | title = _('Reset to returning'), |
---|
108 | msg = _("Student record reset to 'returning'"), |
---|
109 | source = PAID, |
---|
110 | destination = RETURNING), |
---|
111 | |
---|
112 | Transition( |
---|
113 | transition_id = 'register_courses', |
---|
114 | title = _('Register courses'), |
---|
115 | msg = _('Courses registered'), |
---|
116 | source = PAID, |
---|
117 | destination = REGISTERED), |
---|
118 | |
---|
119 | Transition( |
---|
120 | transition_id = 'reset7', |
---|
121 | title = _('Reset to paid'), |
---|
122 | msg = _("Student record reset to 'paid'"), |
---|
123 | source = REGISTERED, |
---|
124 | destination = PAID), |
---|
125 | |
---|
126 | Transition( |
---|
127 | transition_id = 'validate_courses', |
---|
128 | title = _('Validate courses'), |
---|
129 | msg = _('Courses validated'), |
---|
130 | source = REGISTERED, |
---|
131 | destination = VALIDATED), |
---|
132 | |
---|
133 | Transition( |
---|
134 | transition_id = 'reset8', |
---|
135 | title = _('Reset to paid'), |
---|
136 | msg = _("Student record reset to 'paid'"), |
---|
137 | source = VALIDATED, |
---|
138 | destination = PAID), |
---|
139 | |
---|
140 | Transition( |
---|
141 | transition_id = 'return', |
---|
142 | title = _('Return'), |
---|
143 | msg = _('Returned'), |
---|
144 | source = VALIDATED, |
---|
145 | destination = RETURNING), |
---|
146 | |
---|
147 | Transition( |
---|
148 | transition_id = 'reset9', |
---|
149 | title = _('Reset to validated'), |
---|
150 | msg = _("Student record reset to 'validated'"), |
---|
151 | source = RETURNING, |
---|
152 | destination = VALIDATED), |
---|
153 | ) |
---|
154 | |
---|
155 | LOCK_CLEARANCE_TRANS = ('reset2', 'request_clearance') |
---|
156 | UNLOCK_CLEARANCE_TRANS = ('reset3', 'reset4', 'start_clearance') |
---|
157 | |
---|
158 | registration_workflow = SIRPWorkflow(REGISTRATION_TRANSITIONS) |
---|
159 | |
---|
160 | class RegistrationWorkflowState(WorkflowState, grok.Adapter): |
---|
161 | """An adapter to adapt Student objects to workflow states. |
---|
162 | """ |
---|
163 | grok.context(IStudent) |
---|
164 | grok.provides(IWorkflowState) |
---|
165 | |
---|
166 | state_key = 'wf.registration.state' |
---|
167 | state_id = 'wf.registration.id' |
---|
168 | |
---|
169 | class RegistrationWorkflowInfo(SIRPWorkflowInfo, grok.Adapter): |
---|
170 | """Adapter to adapt Student objects to workflow info objects. |
---|
171 | """ |
---|
172 | grok.context(IStudent) |
---|
173 | grok.provides(ISIRPWorkflowInfo) |
---|
174 | |
---|
175 | def __init__(self, context): |
---|
176 | self.context = context |
---|
177 | self.wf = registration_workflow |
---|
178 | |
---|
179 | @grok.subscribe(IStudent, IWorkflowTransitionEvent) |
---|
180 | def handle_student_transition_event(obj, event): |
---|
181 | """Append message to student history and log file when transition happened. |
---|
182 | |
---|
183 | Lock and unlock clearance form. |
---|
184 | """ |
---|
185 | |
---|
186 | msg = event.transition.user_data['msg'] |
---|
187 | history = IObjectHistory(obj) |
---|
188 | history.addMessage(msg) |
---|
189 | if event.transition.transition_id in LOCK_CLEARANCE_TRANS: |
---|
190 | obj.clearance_locked = True |
---|
191 | if event.transition.transition_id in UNLOCK_CLEARANCE_TRANS: |
---|
192 | obj.clearance_locked = False |
---|
193 | # Student data don't change after first-time payment |
---|
194 | if event.transition.transition_id == 'pay_first_school_fee': |
---|
195 | pass |
---|
196 | # School fee payment of returning students triggers the change of |
---|
197 | # current session, current level, and current verdict |
---|
198 | if event.transition.transition_id == 'pay_school_fee': |
---|
199 | getUtility(IStudentsUtils).setReturningData(obj) |
---|
200 | # In some tests we don't have a students container |
---|
201 | try: |
---|
202 | students_container = grok.getSite()['students'] |
---|
203 | students_container.logger.info('%s - %s' % (obj.student_id,msg)) |
---|
204 | except (TypeError, AttributeError): |
---|
205 | pass |
---|
206 | return |
---|