source: main/waeup.uniben/trunk/src/waeup/uniben/students/viewlets.py @ 16363

Last change on this file since 16363 was 16363, checked in by Henrik Bettermann, 4 years ago

Add permanent flash message.

  • Property svn:keywords set to Id
File size: 9.6 KB
Line 
1## $Id: viewlets.py 16363 2021-01-11 14:35:28Z 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
19import grok
20from zope.component import getUtility
21from waeup.kofa.interfaces import REQUESTED, REGISTERED, IExtFileStore
22from waeup.kofa.browser.viewlets import ManageActionButton
23from waeup.kofa.students.interfaces import IStudentsUtils
24from waeup.kofa.students.fileviewlets import (
25    StudentFileDisplay, StudentFileUpload, StudentImage,)
26from waeup.kofa.students.browser import (
27    ExportPDFClearanceSlip, StudyCourseDisplayFormPage,
28    StudyLevelDisplayFormPage, StudentClearanceDisplayFormPage,
29    StudentBaseDisplayFormPage)
30from waeup.kofa.students.viewlets import (
31    RequestTranscriptActionButton, StudentPassportActionButton)
32
33from waeup.uniben.students.interfaces import (
34    ICustomStudentStudyCourse, ICustomStudentStudyLevel,
35    ICustomStudent,)
36
37from kofacustom.nigeria.interfaces import MessageFactory as _
38
39class CustomRequestTranscriptActionButton(RequestTranscriptActionButton):
40
41    @property
42    def target_url(self):
43        return ''
44
45class CustomStudentPassportActionButton(StudentPassportActionButton):
46
47    @property
48    def target_url(self):
49        # Uniben: Only 2020 session students are allowed to edit the picture.
50        if self.context.entry_session != 2020:
51            return ''
52        # Passport pictures must not be editable if application slip
53        # exists.
54        slip = getUtility(IExtFileStore).getFileByContext(
55            self.context, 'application_slip')
56        PORTRAIT_CHANGE_STATES = getUtility(IStudentsUtils).PORTRAIT_CHANGE_STATES
57        if self.context.state not in PORTRAIT_CHANGE_STATES or slip is not None:
58            return ''
59        return self.view.url(self.view.context, self.target)
60
61class SwitchLibraryAccessActionButton(ManageActionButton):
62    grok.order(7)
63    grok.context(ICustomStudent)
64    grok.view(StudentBaseDisplayFormPage)
65    grok.require('waeup.switchLibraryAccess')
66    text = _('Switch library access')
67    target = 'switch_library_access'
68    icon = 'actionicon_book.png'
69
70class StudyCourseEditActionButton(ManageActionButton):
71    grok.order(1)
72    grok.context(ICustomStudentStudyCourse)
73    grok.view(StudyCourseDisplayFormPage)
74    grok.require('waeup.clearStudent')
75    text = _('Edit level')
76    target = 'edit_level'
77
78    @property
79    def target_url(self):
80        if self.context.is_current and self.context.student.state == REQUESTED:
81            return self.view.url(self.view.context, self.target)
82        return False
83
84class CourseRegistrationSlipActionButton(ManageActionButton):
85    grok.order(5)
86    grok.context(ICustomStudentStudyLevel)
87    grok.view(StudyLevelDisplayFormPage)
88    grok.require('waeup.viewStudent')
89    icon = 'actionicon_pdf.png'
90    text = _('Download course registration slip')
91    target = 'course_registration_slip.pdf'
92
93    @property
94    def target_url(self):
95        is_current = self.context.__parent__.is_current
96        if not is_current:
97            return ''
98        if self.context.student.state != REGISTERED \
99            or self.context.student.current_level != self.context.level:
100            return ''
101        return self.view.url(self.view.context, self.target)
102
103class CourseResultSlipActionButton(ManageActionButton):
104    grok.order(6)
105    grok.context(ICustomStudentStudyLevel)
106    grok.view(StudyLevelDisplayFormPage)
107    grok.require('waeup.viewStudent')
108    icon = 'actionicon_pdf.png'
109    text = _('Download course result slip')
110    target = 'course_result_slip.pdf'
111
112    @property
113    def target_url(self):
114        return self.view.url(self.view.context, self.target)
115
116
117class ClearanceInvitationSlipActionButton(ManageActionButton):
118    grok.order(5)
119    grok.context(ICustomStudent)
120    grok.view(StudentClearanceDisplayFormPage)
121    grok.require('waeup.viewStudent')
122    icon = 'actionicon_pdf.png'
123    text = _('Download clearance invitation slip')
124    target = 'clearance_invitation_slip.pdf'
125
126    @property
127    def target_url(self):
128        if self.context.student.state == REQUESTED \
129            and self.context.student.physical_clearance_date:
130            return self.view.url(self.view.context, self.target)
131        return False
132
133class ExaminationScheduleSlipActionButton(ManageActionButton):
134    grok.order(10)
135    grok.context(ICustomStudent)
136    grok.view(StudentBaseDisplayFormPage)
137    grok.require('waeup.viewStudent')
138    icon = 'actionicon_pdf.png'
139    text = _('Download examination schedule slip')
140    target = 'examination_schedule_slip.pdf'
141
142    @property
143    def target_url(self):
144        if self.context.flash_notice \
145            and 'exam' in self.context.flash_notice.lower():
146            return self.view.url(self.view.context, self.target)
147        return False
148
149class JHLIdCardActionButton(ManageActionButton):
150    grok.order(10)
151    grok.context(ICustomStudent)
152    grok.view(StudentBaseDisplayFormPage)
153    grok.require('waeup.viewStudent')
154    icon = 'actionicon_pdf.png'
155    text = _('Download JHL Id Card')
156    target = 'jhl_idcard.pdf'
157
158    @property
159    def target_url(self):
160        if self.context.library:
161            return self.view.url(self.view.context, self.target)
162        return
163
164class JUPEBResultSlipActionButton(ManageActionButton):
165    grok.order(11)
166    grok.context(ICustomStudent)
167    grok.view(StudentBaseDisplayFormPage)
168    grok.require('waeup.viewStudent')
169    icon = 'actionicon_pdf.png'
170    text = _('Download JUPEB result slip')
171    target = 'jupeb_result_slip.pdf'
172
173    @property
174    def target_url(self):
175        if self.context.flash_notice and self.context.is_jupeb \
176            and 'results' in self.context.flash_notice.lower():
177            return self.view.url(self.view.context, self.target)
178        return False
179
180# JAMB Letter
181
182class JAMBLetterDisplay(StudentFileDisplay):
183    """JAMB Letter display viewlet.
184    """
185    grok.order(19)
186    label = _(u'JAMB Letter')
187    title = _(u'JAMB Letter')
188    download_name = u'jamb_letter'
189
190class JAMBLetterSlip(JAMBLetterDisplay):
191    grok.view(ExportPDFClearanceSlip)
192
193class JAMBLetterUpload(StudentFileUpload):
194    """JAMB Letter upload viewlet.
195    """
196    grok.order(19)
197    label = _(u'JAMB Letter')
198    title = _(u'JAMB Letter Scan')
199    mus = 1024 * 150
200    download_name = u'jamb_letter'
201
202class JAMBLetterImage(StudentImage):
203    """Renders JAMB Letter scan.
204    """
205    grok.name('jamb_letter')
206    download_name = u'jamb_letter'
207
208# Affidavit of Non-Membership of Secret Cults
209
210class SecrCultsStatementDisplay(StudentFileDisplay):
211    """Affidavit of Non-Membership of Secret Cults display viewlet.
212    """
213    grok.order(20)
214    label = _(u'Affidavit of Non-Membership of Secret Cults')
215    title = _(u'Affidavit of Non-Membership of Secret Cults')
216    download_name = u'secr_cults'
217
218class SecrCultsStatementSlip(SecrCultsStatementDisplay):
219    grok.view(ExportPDFClearanceSlip)
220
221class SecrCultsStatementUpload(StudentFileUpload):
222    """Affidavit of Non-Membership of Secret Cults upload viewlet.
223    """
224    grok.order(20)
225    label = _(u'Affidavit of Non-Membership of Secret Cults')
226    title = _(u'Affidavit of Non-Membership of Secret Cults Scan')
227    mus = 1024 * 150
228    download_name = u'secr_cults'
229
230class SecrCultsStatementImage(StudentImage):
231    """Renders Affidavit of Non-Membership of Secret Cults scan.
232    """
233    grok.name('secr_cults')
234    download_name = u'secr_cults'
235
236# WAEC Results Scratch Card
237
238class WAECResultsScratchCardDisplay(StudentFileDisplay):
239    """WAEC Results Scratch Card display viewlet.
240    """
241    grok.order(20)
242    label = _(u'WAEC Results Scratch Card')
243    title = _(u'WAEC Results Scratch Card')
244    download_name = u'waec_sc'
245
246class WAECResultsScratchCardSlip(WAECResultsScratchCardDisplay):
247    grok.view(ExportPDFClearanceSlip)
248
249class WAECResultsScratchCardUpload(StudentFileUpload):
250    """WAEC Results Scratch Card upload viewlet.
251    """
252    grok.order(20)
253    label = _(u'WAEC Results Scratch Card')
254    title = _(u'WAEC Results Scratch Card Scan')
255    mus = 1024 * 150
256    download_name = u'waec_sc'
257
258class WAECResultsScratchCardImage(StudentImage):
259    """Renders WAEC Results Scratch Card scan.
260    """
261    grok.name('waec_sc')
262    download_name = u'waec_sc'
263
264# Fingerprints
265
266class LeftThumbPrintDisplay(StudentFileDisplay):
267    """Left thumb fingerprint display viewlet.
268    """
269    grok.order(21)
270    label = _(u'Left Thumb Fingerprint')
271    title = _(u'Left Thumb Fingerprint Minutiae')
272    download_name = u'finger1.fpm'
273
274class LeftThumbPrintSlip(LeftThumbPrintDisplay):
275    """Mentions scanned fingerprint on slip.
276
277    Fingerprint minutiae is not printet.
278    """
279    grok.view(ExportPDFClearanceSlip)
280
281class LeftThumbPrintUpload(StudentFileUpload):
282    """Left thumb fingerprint upload viewlet.
283    """
284    grok.order(21)
285    grok.require('waeup.manageStudent')
286    label = _(u'Left Thumb Fingerprint')
287    title = _(u'Left Thumb Fingerprint Minutiae')
288    mus = 1024 * 150
289    download_name = u'finger1.fpm'
290
291class LeftThumbPrintImage(StudentImage):
292    """Renders left thumb fingerprint minutiae for download.
293    """
294    grok.name('finger1.fpm')
295    download_name = u'finger1.fpm'
Note: See TracBrowser for help on using the repository browser.