[9382] | 1 | ## $Id: viewlets.py 15354 2019-03-18 09:24:33Z 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 |
---|
[12855] | 20 | from waeup.kofa.interfaces import REQUESTED, REGISTERED |
---|
[9439] | 21 | from waeup.kofa.browser.viewlets import ManageActionButton |
---|
[9848] | 22 | from waeup.uniben.students.interfaces import ( |
---|
[12121] | 23 | ICustomStudentStudyCourse, ICustomStudentStudyLevel, |
---|
| 24 | ICustomStudent, ) |
---|
[12423] | 25 | from waeup.kofa.students.fileviewlets import ( |
---|
[13723] | 26 | StudentFileDisplay, StudentFileUpload, StudentImage,) |
---|
[9439] | 27 | from waeup.kofa.students.browser import ( |
---|
[13063] | 28 | ExportPDFClearanceSlip, StudyCourseDisplayFormPage, |
---|
[13723] | 29 | StudyLevelDisplayFormPage, StudentClearanceDisplayFormPage, |
---|
| 30 | StudentBaseDisplayFormPage) |
---|
[9382] | 31 | |
---|
| 32 | from kofacustom.nigeria.interfaces import MessageFactory as _ |
---|
| 33 | |
---|
[9439] | 34 | class StudyCourseEditActionButton(ManageActionButton): |
---|
| 35 | grok.order(1) |
---|
| 36 | grok.context(ICustomStudentStudyCourse) |
---|
| 37 | grok.view(StudyCourseDisplayFormPage) |
---|
| 38 | grok.require('waeup.clearStudent') |
---|
| 39 | text = _('Edit level') |
---|
| 40 | target = 'edit_level' |
---|
[9382] | 41 | |
---|
[9439] | 42 | @property |
---|
| 43 | def target_url(self): |
---|
| 44 | if self.context.is_current and self.context.student.state == REQUESTED: |
---|
| 45 | return self.view.url(self.view.context, self.target) |
---|
| 46 | return False |
---|
| 47 | |
---|
[12855] | 48 | class CourseRegistrationSlipActionButton(ManageActionButton): |
---|
| 49 | grok.order(5) |
---|
| 50 | grok.context(ICustomStudentStudyLevel) |
---|
| 51 | grok.view(StudyLevelDisplayFormPage) |
---|
| 52 | grok.require('waeup.viewStudent') |
---|
| 53 | icon = 'actionicon_pdf.png' |
---|
| 54 | text = _('Download course registration slip') |
---|
| 55 | target = 'course_registration_slip.pdf' |
---|
| 56 | |
---|
| 57 | @property |
---|
| 58 | def target_url(self): |
---|
| 59 | is_current = self.context.__parent__.is_current |
---|
| 60 | if not is_current: |
---|
| 61 | return '' |
---|
| 62 | if self.context.student.state != REGISTERED \ |
---|
| 63 | or self.context.student.current_level != self.context.level: |
---|
| 64 | return '' |
---|
| 65 | return self.view.url(self.view.context, self.target) |
---|
| 66 | |
---|
[9848] | 67 | class CourseResultSlipActionButton(ManageActionButton): |
---|
| 68 | grok.order(6) |
---|
| 69 | grok.context(ICustomStudentStudyLevel) |
---|
| 70 | grok.view(StudyLevelDisplayFormPage) |
---|
| 71 | grok.require('waeup.viewStudent') |
---|
| 72 | icon = 'actionicon_pdf.png' |
---|
| 73 | text = _('Download course result slip') |
---|
| 74 | target = 'course_result_slip.pdf' |
---|
| 75 | |
---|
| 76 | @property |
---|
| 77 | def target_url(self): |
---|
| 78 | return self.view.url(self.view.context, self.target) |
---|
| 79 | |
---|
[12121] | 80 | |
---|
| 81 | class ClearanceInvitationSlipActionButton(ManageActionButton): |
---|
| 82 | grok.order(5) |
---|
| 83 | grok.context(ICustomStudent) |
---|
| 84 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 85 | grok.require('waeup.viewStudent') |
---|
| 86 | icon = 'actionicon_pdf.png' |
---|
| 87 | text = _('Download clearance invitation slip') |
---|
| 88 | target = 'clearance_invitation_slip.pdf' |
---|
| 89 | |
---|
[12122] | 90 | @property |
---|
| 91 | def target_url(self): |
---|
| 92 | if self.context.student.state == REQUESTED \ |
---|
| 93 | and self.context.student.physical_clearance_date: |
---|
| 94 | return self.view.url(self.view.context, self.target) |
---|
| 95 | return False |
---|
[12121] | 96 | |
---|
[13723] | 97 | class ExaminationScheduleSlipActionButton(ManageActionButton): |
---|
| 98 | grok.order(10) |
---|
| 99 | grok.context(ICustomStudent) |
---|
| 100 | grok.view(StudentBaseDisplayFormPage) |
---|
| 101 | grok.require('waeup.viewStudent') |
---|
| 102 | icon = 'actionicon_pdf.png' |
---|
| 103 | text = _('Download examination schedule slip') |
---|
| 104 | target = 'examination_schedule_slip.pdf' |
---|
[12122] | 105 | |
---|
[13723] | 106 | @property |
---|
| 107 | def target_url(self): |
---|
| 108 | if self.context.flash_notice \ |
---|
| 109 | and 'exam' in self.context.flash_notice.lower(): |
---|
| 110 | return self.view.url(self.view.context, self.target) |
---|
| 111 | return False |
---|
| 112 | |
---|
[15352] | 113 | class JHLIdCardActionButton(ManageActionButton): |
---|
| 114 | grok.order(10) |
---|
| 115 | grok.context(ICustomStudent) |
---|
| 116 | grok.view(StudentBaseDisplayFormPage) |
---|
| 117 | grok.require('waeup.viewStudent') |
---|
| 118 | icon = 'actionicon_pdf.png' |
---|
| 119 | text = _('Download JHL Id Card') |
---|
| 120 | target = 'jhl_idcard.pdf' |
---|
| 121 | |
---|
| 122 | @property |
---|
| 123 | def target_url(self): |
---|
[15354] | 124 | # temporarily disabled |
---|
| 125 | return '' |
---|
[15352] | 126 | return self.view.url(self.view.context, self.target) |
---|
| 127 | |
---|
[14834] | 128 | class JUPEBResultSlipActionButton(ManageActionButton): |
---|
| 129 | grok.order(11) |
---|
| 130 | grok.context(ICustomStudent) |
---|
| 131 | grok.view(StudentBaseDisplayFormPage) |
---|
| 132 | grok.require('waeup.viewStudent') |
---|
| 133 | icon = 'actionicon_pdf.png' |
---|
| 134 | text = _('Download JUPEB result slip') |
---|
| 135 | target = 'jupeb_result_slip.pdf' |
---|
| 136 | |
---|
| 137 | @property |
---|
| 138 | def target_url(self): |
---|
[14902] | 139 | if self.context.flash_notice and self.context.is_jupeb \ |
---|
[14835] | 140 | and 'results' in self.context.flash_notice.lower(): |
---|
[14834] | 141 | return self.view.url(self.view.context, self.target) |
---|
| 142 | return False |
---|
| 143 | |
---|
[9382] | 144 | # JAMB Letter |
---|
| 145 | |
---|
[12452] | 146 | class JAMBLetterDisplay(StudentFileDisplay): |
---|
[9382] | 147 | """JAMB Letter display viewlet. |
---|
| 148 | """ |
---|
| 149 | grok.order(19) |
---|
| 150 | label = _(u'JAMB Letter') |
---|
| 151 | title = _(u'JAMB Letter') |
---|
[11556] | 152 | download_name = u'jamb_letter' |
---|
[9382] | 153 | |
---|
| 154 | class JAMBLetterSlip(JAMBLetterDisplay): |
---|
[13063] | 155 | grok.view(ExportPDFClearanceSlip) |
---|
[9382] | 156 | |
---|
[12452] | 157 | class JAMBLetterUpload(StudentFileUpload): |
---|
[9382] | 158 | """JAMB Letter upload viewlet. |
---|
| 159 | """ |
---|
| 160 | grok.order(19) |
---|
| 161 | label = _(u'JAMB Letter') |
---|
| 162 | title = _(u'JAMB Letter Scan') |
---|
| 163 | mus = 1024 * 150 |
---|
[11556] | 164 | download_name = u'jamb_letter' |
---|
[9382] | 165 | |
---|
[12452] | 166 | class JAMBLetterImage(StudentImage): |
---|
[9382] | 167 | """Renders JAMB Letter scan. |
---|
| 168 | """ |
---|
[11556] | 169 | grok.name('jamb_letter') |
---|
| 170 | download_name = u'jamb_letter' |
---|
[9382] | 171 | |
---|
| 172 | # Affidavit of Non-Membership of Secret Cults |
---|
| 173 | |
---|
[12452] | 174 | class SecrCultsStatementDisplay(StudentFileDisplay): |
---|
[9382] | 175 | """Affidavit of Non-Membership of Secret Cults display viewlet. |
---|
| 176 | """ |
---|
| 177 | grok.order(20) |
---|
| 178 | label = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
| 179 | title = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
| 180 | download_name = u'secr_cults' |
---|
| 181 | |
---|
| 182 | class SecrCultsStatementSlip(SecrCultsStatementDisplay): |
---|
[13063] | 183 | grok.view(ExportPDFClearanceSlip) |
---|
[9382] | 184 | |
---|
[12452] | 185 | class SecrCultsStatementUpload(StudentFileUpload): |
---|
[9382] | 186 | """Affidavit of Non-Membership of Secret Cults upload viewlet. |
---|
| 187 | """ |
---|
| 188 | grok.order(20) |
---|
| 189 | label = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
| 190 | title = _(u'Affidavit of Non-Membership of Secret Cults Scan') |
---|
| 191 | mus = 1024 * 150 |
---|
| 192 | download_name = u'secr_cults' |
---|
| 193 | |
---|
[12452] | 194 | class SecrCultsStatementImage(StudentImage): |
---|
[9382] | 195 | """Renders Affidavit of Non-Membership of Secret Cults scan. |
---|
| 196 | """ |
---|
| 197 | grok.name('secr_cults') |
---|
[11611] | 198 | download_name = u'secr_cults' |
---|
| 199 | |
---|
| 200 | # Fingerprints |
---|
| 201 | |
---|
[12452] | 202 | class LeftThumbPrintDisplay(StudentFileDisplay): |
---|
[11611] | 203 | """Left thumb fingerprint display viewlet. |
---|
| 204 | """ |
---|
| 205 | grok.order(21) |
---|
| 206 | label = _(u'Left Thumb Fingerprint') |
---|
| 207 | title = _(u'Left Thumb Fingerprint Minutiae') |
---|
| 208 | download_name = u'finger1.fpm' |
---|
| 209 | |
---|
| 210 | class LeftThumbPrintSlip(LeftThumbPrintDisplay): |
---|
| 211 | """Mentions scanned fingerprint on slip. |
---|
| 212 | |
---|
| 213 | Fingerprint minutiae is not printet. |
---|
| 214 | """ |
---|
[13063] | 215 | grok.view(ExportPDFClearanceSlip) |
---|
[11611] | 216 | |
---|
[12452] | 217 | class LeftThumbPrintUpload(StudentFileUpload): |
---|
[11611] | 218 | """Left thumb fingerprint upload viewlet. |
---|
| 219 | """ |
---|
| 220 | grok.order(21) |
---|
[11613] | 221 | grok.require('waeup.manageStudent') |
---|
[11611] | 222 | label = _(u'Left Thumb Fingerprint') |
---|
| 223 | title = _(u'Left Thumb Fingerprint Minutiae') |
---|
| 224 | mus = 1024 * 5 |
---|
| 225 | download_name = u'finger1.fpm' |
---|
| 226 | |
---|
[12452] | 227 | class LeftThumbPrintImage(StudentImage): |
---|
[11611] | 228 | """Renders left thumb fingerprint minutiae for download. |
---|
| 229 | """ |
---|
| 230 | grok.name('finger1.fpm') |
---|
| 231 | download_name = u'finger1.fpm' |
---|