[9382] | 1 | ## $Id: viewlets.py 16473 2021-04-22 12:40:59Z 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 |
---|
[16361] | 20 | from zope.component import getUtility |
---|
| 21 | from waeup.kofa.interfaces import REQUESTED, REGISTERED, IExtFileStore |
---|
[9439] | 22 | from waeup.kofa.browser.viewlets import ManageActionButton |
---|
[16361] | 23 | from waeup.kofa.students.interfaces import IStudentsUtils |
---|
[12423] | 24 | from waeup.kofa.students.fileviewlets import ( |
---|
[16441] | 25 | StudentFileDisplay, StudentFileUpload, StudentImage, PassportDisplay) |
---|
[9439] | 26 | from waeup.kofa.students.browser import ( |
---|
[13063] | 27 | ExportPDFClearanceSlip, StudyCourseDisplayFormPage, |
---|
[13723] | 28 | StudyLevelDisplayFormPage, StudentClearanceDisplayFormPage, |
---|
| 29 | StudentBaseDisplayFormPage) |
---|
[16361] | 30 | from waeup.kofa.students.viewlets import ( |
---|
| 31 | RequestTranscriptActionButton, StudentPassportActionButton) |
---|
[9382] | 32 | |
---|
[16361] | 33 | from waeup.uniben.students.interfaces import ( |
---|
| 34 | ICustomStudentStudyCourse, ICustomStudentStudyLevel, |
---|
[16362] | 35 | ICustomStudent,) |
---|
[16361] | 36 | |
---|
[16382] | 37 | from waeup.uniben.students.browser import StudentMedicalHistoryEditFormPage |
---|
| 38 | |
---|
[9382] | 39 | from kofacustom.nigeria.interfaces import MessageFactory as _ |
---|
| 40 | |
---|
[16449] | 41 | class RequestTranscriptActionButton(RequestTranscriptActionButton): |
---|
[16130] | 42 | |
---|
| 43 | @property |
---|
| 44 | def target_url(self): |
---|
| 45 | return '' |
---|
| 46 | |
---|
[16449] | 47 | class StudentPassportActionButton(StudentPassportActionButton): |
---|
[16361] | 48 | |
---|
| 49 | @property |
---|
| 50 | def target_url(self): |
---|
[16362] | 51 | # Uniben: Only 2020 session students are allowed to edit the picture. |
---|
| 52 | if self.context.entry_session != 2020: |
---|
| 53 | return '' |
---|
[16458] | 54 | if self.context.entry_mode not in ('ug_ft', 'de_ft'): |
---|
| 55 | return '' |
---|
[16361] | 56 | PORTRAIT_CHANGE_STATES = getUtility(IStudentsUtils).PORTRAIT_CHANGE_STATES |
---|
[16457] | 57 | if self.context.state not in PORTRAIT_CHANGE_STATES: |
---|
[16361] | 58 | return '' |
---|
| 59 | return self.view.url(self.view.context, self.target) |
---|
| 60 | |
---|
[15371] | 61 | class 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 | |
---|
[9439] | 70 | class 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' |
---|
[9382] | 77 | |
---|
[9439] | 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 | |
---|
[12855] | 84 | class 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 | |
---|
[9848] | 103 | class 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 | |
---|
[12121] | 116 | |
---|
| 117 | class 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 | |
---|
[12122] | 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 |
---|
[12121] | 132 | |
---|
[13723] | 133 | class 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' |
---|
[12122] | 141 | |
---|
[13723] | 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 | |
---|
[15352] | 149 | class 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): |
---|
[15371] | 160 | if self.context.library: |
---|
| 161 | return self.view.url(self.view.context, self.target) |
---|
| 162 | return |
---|
[15352] | 163 | |
---|
[14834] | 164 | class 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): |
---|
[14902] | 175 | if self.context.flash_notice and self.context.is_jupeb \ |
---|
[14835] | 176 | and 'results' in self.context.flash_notice.lower(): |
---|
[14834] | 177 | return self.view.url(self.view.context, self.target) |
---|
| 178 | return False |
---|
| 179 | |
---|
[16383] | 180 | class MedicalHistoryEditActionButton(ManageActionButton): |
---|
[16382] | 181 | grok.order(12) |
---|
| 182 | grok.context(ICustomStudent) |
---|
| 183 | grok.view(StudentBaseDisplayFormPage) |
---|
| 184 | grok.require('waeup.handleStudent') |
---|
[16385] | 185 | text = _('Medical Questionnaire') |
---|
[16382] | 186 | target = 'edit_medical' |
---|
| 187 | icon = 'actionicon_medical.png' |
---|
| 188 | |
---|
[16383] | 189 | class MedicalHistoryManageActionButton(MedicalHistoryEditActionButton): |
---|
| 190 | grok.require('waeup.manageStudent') |
---|
| 191 | text = _('Manage medical history') |
---|
| 192 | target = 'manage_medical' |
---|
| 193 | |
---|
[16382] | 194 | class MedicalHistorySlipActionButton(ManageActionButton): |
---|
| 195 | grok.order(1) |
---|
| 196 | grok.context(ICustomStudent) |
---|
| 197 | grok.view(StudentMedicalHistoryEditFormPage) |
---|
| 198 | grok.require('waeup.viewStudent') |
---|
| 199 | icon = 'actionicon_pdf.png' |
---|
[16385] | 200 | text = _('Download medical questionnaire slip') |
---|
| 201 | target = 'medical_questionnaire_slip.pdf' |
---|
[16382] | 202 | |
---|
[9382] | 203 | # JAMB Letter |
---|
| 204 | |
---|
[12452] | 205 | class JAMBLetterDisplay(StudentFileDisplay): |
---|
[9382] | 206 | """JAMB Letter display viewlet. |
---|
| 207 | """ |
---|
| 208 | grok.order(19) |
---|
| 209 | label = _(u'JAMB Letter') |
---|
| 210 | title = _(u'JAMB Letter') |
---|
[11556] | 211 | download_name = u'jamb_letter' |
---|
[9382] | 212 | |
---|
| 213 | class JAMBLetterSlip(JAMBLetterDisplay): |
---|
[13063] | 214 | grok.view(ExportPDFClearanceSlip) |
---|
[9382] | 215 | |
---|
[12452] | 216 | class JAMBLetterUpload(StudentFileUpload): |
---|
[9382] | 217 | """JAMB Letter upload viewlet. |
---|
| 218 | """ |
---|
| 219 | grok.order(19) |
---|
| 220 | label = _(u'JAMB Letter') |
---|
| 221 | title = _(u'JAMB Letter Scan') |
---|
| 222 | mus = 1024 * 150 |
---|
[11556] | 223 | download_name = u'jamb_letter' |
---|
[9382] | 224 | |
---|
[12452] | 225 | class JAMBLetterImage(StudentImage): |
---|
[9382] | 226 | """Renders JAMB Letter scan. |
---|
| 227 | """ |
---|
[11556] | 228 | grok.name('jamb_letter') |
---|
| 229 | download_name = u'jamb_letter' |
---|
[9382] | 230 | |
---|
| 231 | # Affidavit of Non-Membership of Secret Cults |
---|
| 232 | |
---|
[12452] | 233 | class SecrCultsStatementDisplay(StudentFileDisplay): |
---|
[9382] | 234 | """Affidavit of Non-Membership of Secret Cults display viewlet. |
---|
| 235 | """ |
---|
| 236 | grok.order(20) |
---|
| 237 | label = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
| 238 | title = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
| 239 | download_name = u'secr_cults' |
---|
| 240 | |
---|
| 241 | class SecrCultsStatementSlip(SecrCultsStatementDisplay): |
---|
[13063] | 242 | grok.view(ExportPDFClearanceSlip) |
---|
[9382] | 243 | |
---|
[12452] | 244 | class SecrCultsStatementUpload(StudentFileUpload): |
---|
[9382] | 245 | """Affidavit of Non-Membership of Secret Cults upload viewlet. |
---|
| 246 | """ |
---|
| 247 | grok.order(20) |
---|
| 248 | label = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
| 249 | title = _(u'Affidavit of Non-Membership of Secret Cults Scan') |
---|
| 250 | mus = 1024 * 150 |
---|
| 251 | download_name = u'secr_cults' |
---|
| 252 | |
---|
[12452] | 253 | class SecrCultsStatementImage(StudentImage): |
---|
[9382] | 254 | """Renders Affidavit of Non-Membership of Secret Cults scan. |
---|
| 255 | """ |
---|
| 256 | grok.name('secr_cults') |
---|
[11611] | 257 | download_name = u'secr_cults' |
---|
| 258 | |
---|
[16364] | 259 | # O Level Results Scratch Card |
---|
[16359] | 260 | |
---|
[16364] | 261 | class OLevelResultsScratchCardDisplay(StudentFileDisplay): |
---|
| 262 | """O'Level Results Scratch Card display viewlet. |
---|
[16359] | 263 | """ |
---|
| 264 | grok.order(20) |
---|
[16364] | 265 | label = _(u'O Level Results Scratch Card') |
---|
| 266 | title = _(u'O Level Results Scratch Card') |
---|
| 267 | download_name = u'olevel_sc' |
---|
[16359] | 268 | |
---|
[16364] | 269 | class OLevelResultsScratchCardSlip(OLevelResultsScratchCardDisplay): |
---|
[16359] | 270 | grok.view(ExportPDFClearanceSlip) |
---|
| 271 | |
---|
[16364] | 272 | class OLevelResultsScratchCardUpload(StudentFileUpload): |
---|
| 273 | """O Level Results Scratch Card upload viewlet. |
---|
[16359] | 274 | """ |
---|
| 275 | grok.order(20) |
---|
[16364] | 276 | label = _(u'O Level Results Scratch Card') |
---|
| 277 | title = _(u'O Level Results Scratch Card Scan') |
---|
[16359] | 278 | mus = 1024 * 150 |
---|
[16364] | 279 | download_name = u'olevel_sc' |
---|
[16359] | 280 | |
---|
[16364] | 281 | class OLevelResultsScratchCardImage(StudentImage): |
---|
| 282 | """Renders O Level Results Scratch Card scan. |
---|
[16359] | 283 | """ |
---|
[16364] | 284 | grok.name('olevel_sc') |
---|
| 285 | download_name = u'olevel_sc' |
---|
[16359] | 286 | |
---|
[11611] | 287 | # Fingerprints |
---|
| 288 | |
---|
[12452] | 289 | class LeftThumbPrintDisplay(StudentFileDisplay): |
---|
[11611] | 290 | """Left thumb fingerprint display viewlet. |
---|
| 291 | """ |
---|
| 292 | grok.order(21) |
---|
| 293 | label = _(u'Left Thumb Fingerprint') |
---|
| 294 | title = _(u'Left Thumb Fingerprint Minutiae') |
---|
| 295 | download_name = u'finger1.fpm' |
---|
| 296 | |
---|
| 297 | class LeftThumbPrintSlip(LeftThumbPrintDisplay): |
---|
| 298 | """Mentions scanned fingerprint on slip. |
---|
[16443] | 299 | Fingerprint minutiae is not printed. |
---|
[11611] | 300 | """ |
---|
[13063] | 301 | grok.view(ExportPDFClearanceSlip) |
---|
[11611] | 302 | |
---|
[12452] | 303 | class LeftThumbPrintUpload(StudentFileUpload): |
---|
[11611] | 304 | """Left thumb fingerprint upload viewlet. |
---|
| 305 | """ |
---|
| 306 | grok.order(21) |
---|
[11613] | 307 | grok.require('waeup.manageStudent') |
---|
[11611] | 308 | label = _(u'Left Thumb Fingerprint') |
---|
| 309 | title = _(u'Left Thumb Fingerprint Minutiae') |
---|
[16363] | 310 | mus = 1024 * 150 |
---|
[11611] | 311 | download_name = u'finger1.fpm' |
---|
| 312 | |
---|
[12452] | 313 | class LeftThumbPrintImage(StudentImage): |
---|
[11611] | 314 | """Renders left thumb fingerprint minutiae for download. |
---|
| 315 | """ |
---|
| 316 | grok.name('finger1.fpm') |
---|
[16423] | 317 | download_name = u'finger1.fpm' |
---|
| 318 | |
---|
[16473] | 319 | # Original JAMB picture |
---|
[16423] | 320 | |
---|
[16441] | 321 | class JAMBPictureDisplay(PassportDisplay): |
---|
[16423] | 322 | """Original JAMB picture display viewlet. |
---|
| 323 | """ |
---|
[16473] | 324 | grok.order(22) |
---|
[16423] | 325 | label = _(u'Original JAMB Picture') |
---|
| 326 | title = _(u'Original JAMB Picture') |
---|
[16443] | 327 | download_name = u'passport2' |
---|
[16423] | 328 | |
---|
| 329 | class JAMBPictureSlip(JAMBPictureDisplay): |
---|
| 330 | grok.view(ExportPDFClearanceSlip) |
---|
| 331 | |
---|
[16473] | 332 | class JAMBPictureUpload(StudentFileUpload): |
---|
| 333 | """Original JAMB picture upload viewlet. |
---|
| 334 | """ |
---|
| 335 | grok.order(22) |
---|
| 336 | grok.require('waeup.manageStudent') |
---|
| 337 | label = _(u'Original JAMB Picture') |
---|
| 338 | title = _(u'Original JAMB Picture') |
---|
| 339 | mus = 1024 * 150 |
---|
| 340 | download_name = u'passport2' |
---|
| 341 | |
---|
[16423] | 342 | class JAMBPictureImage(StudentImage): |
---|
| 343 | """Renders Original JAMB picture. |
---|
| 344 | """ |
---|
[16443] | 345 | grok.name('passport2') |
---|
| 346 | download_name = u'passport2' |
---|