1 | ## $Id: viewlets.py 17542 2023-08-16 09:24:29Z 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 | import grok |
---|
20 | from zope.component import getUtility |
---|
21 | from waeup.kofa.interfaces import REQUESTED, REGISTERED, CLEARED, IExtFileStore |
---|
22 | from waeup.kofa.browser.viewlets import ManageActionButton |
---|
23 | from waeup.kofa.students.interfaces import IStudentsUtils |
---|
24 | from waeup.kofa.students.fileviewlets import ( |
---|
25 | StudentFileDisplay, StudentFileUpload, StudentImage, PassportDisplay) |
---|
26 | from waeup.kofa.students.browser import ( |
---|
27 | ExportPDFClearanceSlip, StudyCourseDisplayFormPage, |
---|
28 | StudyLevelDisplayFormPage, StudentClearanceDisplayFormPage, |
---|
29 | StudentBaseDisplayFormPage, OnlinePaymentDisplayFormPage) |
---|
30 | from waeup.kofa.students.viewlets import ( |
---|
31 | RequestTranscriptActionButton, StudentPassportActionButton, |
---|
32 | TranscriptSlipActionButton, |
---|
33 | StudyCourseTranscriptActionButton) |
---|
34 | |
---|
35 | from waeup.uniben.students.interfaces import ( |
---|
36 | ICustomStudentStudyCourse, ICustomStudentStudyLevel, |
---|
37 | ICustomStudent, ICustomStudentOnlinePayment) |
---|
38 | |
---|
39 | from waeup.uniben.students.browser import StudentMedicalHistoryEditFormPage |
---|
40 | |
---|
41 | from kofacustom.nigeria.interfaces import MessageFactory as _ |
---|
42 | |
---|
43 | class RequestTranscriptActionButton(RequestTranscriptActionButton): |
---|
44 | |
---|
45 | @property |
---|
46 | def target_url(self): |
---|
47 | return '' |
---|
48 | |
---|
49 | class TranscriptSlipActionButton(TranscriptSlipActionButton): |
---|
50 | grok.require('waeup.viewStudent') |
---|
51 | |
---|
52 | class StudyCourseTranscriptActionButton(StudyCourseTranscriptActionButton): |
---|
53 | grok.require('waeup.viewStudent') |
---|
54 | |
---|
55 | class StudentPassportActionButton(StudentPassportActionButton): |
---|
56 | |
---|
57 | @property |
---|
58 | def target_url(self): |
---|
59 | if self.context.is_jupeb: |
---|
60 | return '' |
---|
61 | PORTRAIT_CHANGE_STATES = getUtility(IStudentsUtils).PORTRAIT_CHANGE_STATES |
---|
62 | if self.context.state not in PORTRAIT_CHANGE_STATES and not self.context.is_postgrad: |
---|
63 | return '' |
---|
64 | return self.view.url(self.view.context, self.target) |
---|
65 | |
---|
66 | class SwitchLibraryAccessActionButton(ManageActionButton): |
---|
67 | grok.order(7) |
---|
68 | grok.context(ICustomStudent) |
---|
69 | grok.view(StudentBaseDisplayFormPage) |
---|
70 | grok.require('waeup.switchLibraryAccess') |
---|
71 | text = _('Switch library access') |
---|
72 | target = 'switch_library_access' |
---|
73 | icon = 'actionicon_book.png' |
---|
74 | |
---|
75 | class StudyCourseEditActionButton(ManageActionButton): |
---|
76 | grok.order(1) |
---|
77 | grok.context(ICustomStudentStudyCourse) |
---|
78 | grok.view(StudyCourseDisplayFormPage) |
---|
79 | grok.require('waeup.clearStudent') |
---|
80 | text = _('Edit level') |
---|
81 | target = 'edit_level' |
---|
82 | |
---|
83 | @property |
---|
84 | def target_url(self): |
---|
85 | if self.context.is_current and self.context.student.state == REQUESTED: |
---|
86 | return self.view.url(self.view.context, self.target) |
---|
87 | return False |
---|
88 | |
---|
89 | class CourseRegistrationSlipActionButton(ManageActionButton): |
---|
90 | grok.order(5) |
---|
91 | grok.context(ICustomStudentStudyLevel) |
---|
92 | grok.view(StudyLevelDisplayFormPage) |
---|
93 | grok.require('waeup.viewStudent') |
---|
94 | icon = 'actionicon_pdf.png' |
---|
95 | text = _('Download course registration slip') |
---|
96 | target = 'course_registration_slip.pdf' |
---|
97 | |
---|
98 | @property |
---|
99 | def target_url(self): |
---|
100 | is_current = self.context.__parent__.is_current |
---|
101 | if not is_current: |
---|
102 | return '' |
---|
103 | if self.context.student.state != REGISTERED \ |
---|
104 | or self.context.student.current_level != self.context.level: |
---|
105 | return '' |
---|
106 | return self.view.url(self.view.context, self.target) |
---|
107 | |
---|
108 | class CourseResultSlipActionButton(ManageActionButton): |
---|
109 | grok.order(6) |
---|
110 | grok.context(ICustomStudentStudyLevel) |
---|
111 | grok.view(StudyLevelDisplayFormPage) |
---|
112 | grok.require('waeup.viewStudent') |
---|
113 | icon = 'actionicon_pdf.png' |
---|
114 | text = _('Download course result slip') |
---|
115 | target = 'course_result_slip.pdf' |
---|
116 | |
---|
117 | @property |
---|
118 | def target_url(self): |
---|
119 | return self.view.url(self.view.context, self.target) |
---|
120 | |
---|
121 | |
---|
122 | class ClearanceInvitationSlipActionButton(ManageActionButton): |
---|
123 | grok.order(5) |
---|
124 | grok.context(ICustomStudent) |
---|
125 | grok.view(StudentClearanceDisplayFormPage) |
---|
126 | grok.require('waeup.viewStudent') |
---|
127 | icon = 'actionicon_pdf.png' |
---|
128 | text = _('Download clearance invitation slip') |
---|
129 | target = 'clearance_invitation_slip.pdf' |
---|
130 | |
---|
131 | @property |
---|
132 | def target_url(self): |
---|
133 | if self.context.student.state == REQUESTED \ |
---|
134 | and self.context.student.physical_clearance_date: |
---|
135 | return self.view.url(self.view.context, self.target) |
---|
136 | return False |
---|
137 | |
---|
138 | class MadicalExaminationSlipActionButton(ManageActionButton): |
---|
139 | grok.order(6) |
---|
140 | grok.context(ICustomStudent) |
---|
141 | grok.view(StudentClearanceDisplayFormPage) |
---|
142 | grok.require('waeup.viewStudent') |
---|
143 | icon = 'actionicon_pdf.png' |
---|
144 | text = _('Download medical examination slip') |
---|
145 | target = 'medical_examination_slip.pdf' |
---|
146 | |
---|
147 | @property |
---|
148 | def target_url(self): |
---|
149 | if self.context.student.state == CLEARED \ |
---|
150 | and self.context.student.physical_clearance_date: |
---|
151 | return self.view.url(self.view.context, self.target) |
---|
152 | return False |
---|
153 | |
---|
154 | class ExaminationScheduleSlipActionButton(ManageActionButton): |
---|
155 | grok.order(10) |
---|
156 | grok.context(ICustomStudent) |
---|
157 | grok.view(StudentBaseDisplayFormPage) |
---|
158 | grok.require('waeup.viewStudent') |
---|
159 | icon = 'actionicon_pdf.png' |
---|
160 | text = _('Download examination schedule slip') |
---|
161 | target = 'examination_schedule_slip.pdf' |
---|
162 | |
---|
163 | @property |
---|
164 | def target_url(self): |
---|
165 | if self.context.flash_notice \ |
---|
166 | and 'exam' in self.context.flash_notice.lower(): |
---|
167 | return self.view.url(self.view.context, self.target) |
---|
168 | return False |
---|
169 | |
---|
170 | class JHLIdCardActionButton(ManageActionButton): |
---|
171 | grok.order(10) |
---|
172 | grok.context(ICustomStudent) |
---|
173 | grok.view(StudentBaseDisplayFormPage) |
---|
174 | grok.require('waeup.viewStudent') |
---|
175 | icon = 'actionicon_pdf.png' |
---|
176 | text = _('Download JHL Id Card') |
---|
177 | target = 'jhl_idcard.pdf' |
---|
178 | |
---|
179 | @property |
---|
180 | def target_url(self): |
---|
181 | if self.context.library: |
---|
182 | return self.view.url(self.view.context, self.target) |
---|
183 | return |
---|
184 | |
---|
185 | class JUPEBResultSlipActionButton(ManageActionButton): |
---|
186 | grok.order(11) |
---|
187 | grok.context(ICustomStudent) |
---|
188 | grok.view(StudentBaseDisplayFormPage) |
---|
189 | grok.require('waeup.viewStudent') |
---|
190 | icon = 'actionicon_pdf.png' |
---|
191 | text = _('Download JUPEB result slip') |
---|
192 | target = 'jupeb_result_slip.pdf' |
---|
193 | |
---|
194 | @property |
---|
195 | def target_url(self): |
---|
196 | if self.context.flash_notice and self.context.is_jupeb \ |
---|
197 | and 'results' in self.context.flash_notice.lower(): |
---|
198 | return self.view.url(self.view.context, self.target) |
---|
199 | return False |
---|
200 | |
---|
201 | class MedicalHistoryEditActionButton(ManageActionButton): |
---|
202 | grok.order(12) |
---|
203 | grok.context(ICustomStudent) |
---|
204 | grok.view(StudentBaseDisplayFormPage) |
---|
205 | grok.require('waeup.handleStudent') |
---|
206 | text = _('Medical Questionnaire') |
---|
207 | target = 'edit_medical' |
---|
208 | icon = 'actionicon_medical.png' |
---|
209 | |
---|
210 | class MedicalHistoryManageActionButton(MedicalHistoryEditActionButton): |
---|
211 | grok.require('waeup.manageStudent') |
---|
212 | text = _('Manage medical history') |
---|
213 | target = 'manage_medical' |
---|
214 | |
---|
215 | class MedicalHistorySlipActionButton(ManageActionButton): |
---|
216 | grok.order(1) |
---|
217 | grok.context(ICustomStudent) |
---|
218 | grok.view(StudentMedicalHistoryEditFormPage) |
---|
219 | grok.require('waeup.viewStudent') |
---|
220 | icon = 'actionicon_pdf.png' |
---|
221 | text = _('Download medical questionnaire slip') |
---|
222 | target = 'medical_questionnaire_slip.pdf' |
---|
223 | |
---|
224 | class TishipSlipActionButton(ManageActionButton): |
---|
225 | grok.order(2) |
---|
226 | grok.context(ICustomStudent) |
---|
227 | grok.view(StudentBaseDisplayFormPage) |
---|
228 | grok.require('waeup.viewStudent') |
---|
229 | icon = 'actionicon_pdf.png' |
---|
230 | text = _('Download TISHIP registration slip') |
---|
231 | target = 'tiship_slip.pdf' |
---|
232 | |
---|
233 | class PlagTestLinkActionButton(ManageActionButton): |
---|
234 | grok.order(10) |
---|
235 | grok.context(ICustomStudentOnlinePayment) |
---|
236 | grok.view(OnlinePaymentDisplayFormPage) |
---|
237 | grok.require('waeup.viewStudent') |
---|
238 | icon = 'actionicon_up.png' |
---|
239 | text = _('Upload project/thesis file') |
---|
240 | target = 'plagtestinfo' |
---|
241 | |
---|
242 | @property |
---|
243 | def target_url(self): |
---|
244 | if self.context.p_state != 'paid' \ |
---|
245 | or self.context.p_category != 'plag_test': |
---|
246 | return '' |
---|
247 | return self.view.url(self.view.context, self.target) |
---|
248 | |
---|
249 | # JAMB Letter |
---|
250 | |
---|
251 | class JAMBLetterDisplay(StudentFileDisplay): |
---|
252 | """JAMB Letter display viewlet. |
---|
253 | """ |
---|
254 | grok.order(19) |
---|
255 | label = _(u'JAMB Letter') |
---|
256 | title = _(u'JAMB Letter') |
---|
257 | download_name = u'jamb_letter' |
---|
258 | |
---|
259 | class JAMBLetterSlip(JAMBLetterDisplay): |
---|
260 | grok.view(ExportPDFClearanceSlip) |
---|
261 | |
---|
262 | class JAMBLetterUpload(StudentFileUpload): |
---|
263 | """JAMB Letter upload viewlet. |
---|
264 | """ |
---|
265 | grok.order(19) |
---|
266 | label = _(u'JAMB Letter') |
---|
267 | title = _(u'JAMB Letter Scan') |
---|
268 | mus = 1024 * 150 |
---|
269 | download_name = u'jamb_letter' |
---|
270 | |
---|
271 | class JAMBLetterImage(StudentImage): |
---|
272 | """Renders JAMB Letter scan. |
---|
273 | """ |
---|
274 | grok.name('jamb_letter') |
---|
275 | download_name = u'jamb_letter' |
---|
276 | |
---|
277 | # Affidavit of Non-Membership of Secret Cults |
---|
278 | |
---|
279 | class SecrCultsStatementDisplay(StudentFileDisplay): |
---|
280 | """Affidavit of Non-Membership of Secret Cults display viewlet. |
---|
281 | """ |
---|
282 | grok.order(20) |
---|
283 | label = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
284 | title = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
285 | download_name = u'secr_cults' |
---|
286 | |
---|
287 | class SecrCultsStatementSlip(SecrCultsStatementDisplay): |
---|
288 | grok.view(ExportPDFClearanceSlip) |
---|
289 | |
---|
290 | class SecrCultsStatementUpload(StudentFileUpload): |
---|
291 | """Affidavit of Non-Membership of Secret Cults upload viewlet. |
---|
292 | """ |
---|
293 | grok.order(20) |
---|
294 | label = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
295 | title = _(u'Affidavit of Non-Membership of Secret Cults Scan') |
---|
296 | mus = 1024 * 150 |
---|
297 | download_name = u'secr_cults' |
---|
298 | |
---|
299 | class SecrCultsStatementImage(StudentImage): |
---|
300 | """Renders Affidavit of Non-Membership of Secret Cults scan. |
---|
301 | """ |
---|
302 | grok.name('secr_cults') |
---|
303 | download_name = u'secr_cults' |
---|
304 | |
---|
305 | # O Level Results Scratch Card |
---|
306 | |
---|
307 | class OLevelResultsScratchCardDisplay(StudentFileDisplay): |
---|
308 | """O'Level Results Scratch Card display viewlet. |
---|
309 | """ |
---|
310 | grok.order(20) |
---|
311 | label = _(u'O Level Results Scratch Card') |
---|
312 | title = _(u'O Level Results Scratch Card') |
---|
313 | download_name = u'olevel_sc' |
---|
314 | |
---|
315 | class OLevelResultsScratchCardSlip(OLevelResultsScratchCardDisplay): |
---|
316 | grok.view(ExportPDFClearanceSlip) |
---|
317 | |
---|
318 | class OLevelResultsScratchCardUpload(StudentFileUpload): |
---|
319 | """O Level Results Scratch Card upload viewlet. |
---|
320 | """ |
---|
321 | grok.order(20) |
---|
322 | label = _(u'O Level Results Scratch Card') |
---|
323 | title = _(u'O Level Results Scratch Card Scan') |
---|
324 | mus = 1024 * 150 |
---|
325 | download_name = u'olevel_sc' |
---|
326 | |
---|
327 | class OLevelResultsScratchCardImage(StudentImage): |
---|
328 | """Renders O Level Results Scratch Card scan. |
---|
329 | """ |
---|
330 | grok.name('olevel_sc') |
---|
331 | download_name = u'olevel_sc' |
---|
332 | |
---|
333 | # Fingerprints |
---|
334 | |
---|
335 | class LeftThumbPrintDisplay(StudentFileDisplay): |
---|
336 | """Left thumb fingerprint display viewlet. |
---|
337 | """ |
---|
338 | grok.order(21) |
---|
339 | label = _(u'Left Thumb Fingerprint') |
---|
340 | title = _(u'Left Thumb Fingerprint Minutiae') |
---|
341 | download_name = u'finger1.fpm' |
---|
342 | |
---|
343 | class LeftThumbPrintSlip(LeftThumbPrintDisplay): |
---|
344 | """Mentions scanned fingerprint on slip. |
---|
345 | Fingerprint minutiae is not printed. |
---|
346 | """ |
---|
347 | grok.view(ExportPDFClearanceSlip) |
---|
348 | |
---|
349 | class LeftThumbPrintUpload(StudentFileUpload): |
---|
350 | """Left thumb fingerprint upload viewlet. |
---|
351 | """ |
---|
352 | grok.order(21) |
---|
353 | grok.require('waeup.manageStudent') |
---|
354 | label = _(u'Left Thumb Fingerprint') |
---|
355 | title = _(u'Left Thumb Fingerprint Minutiae') |
---|
356 | mus = 1024 * 150 |
---|
357 | download_name = u'finger1.fpm' |
---|
358 | |
---|
359 | class LeftThumbPrintImage(StudentImage): |
---|
360 | """Renders left thumb fingerprint minutiae for download. |
---|
361 | """ |
---|
362 | grok.name('finger1.fpm') |
---|
363 | download_name = u'finger1.fpm' |
---|
364 | |
---|
365 | # Original JAMB picture |
---|
366 | |
---|
367 | class JAMBPictureDisplay(PassportDisplay): |
---|
368 | """Original JAMB picture display viewlet. |
---|
369 | """ |
---|
370 | grok.order(22) |
---|
371 | label = _(u'Original JAMB Picture') |
---|
372 | title = _(u'Original JAMB Picture') |
---|
373 | download_name = u'passport2' |
---|
374 | |
---|
375 | class JAMBPictureSlip(JAMBPictureDisplay): |
---|
376 | grok.view(ExportPDFClearanceSlip) |
---|
377 | |
---|
378 | class JAMBPictureUpload(StudentFileUpload): |
---|
379 | """Original JAMB picture upload viewlet. |
---|
380 | """ |
---|
381 | grok.order(22) |
---|
382 | grok.require('waeup.manageStudent') |
---|
383 | label = _(u'Original JAMB Picture') |
---|
384 | title = _(u'Original JAMB Picture') |
---|
385 | mus = 1024 * 150 |
---|
386 | download_name = u'passport2' |
---|
387 | |
---|
388 | class JAMBPictureImage(StudentImage): |
---|
389 | """Renders Original JAMB picture. |
---|
390 | """ |
---|
391 | grok.name('passport2') |
---|
392 | download_name = u'passport2' |
---|