[9382] | 1 | ## $Id: viewlets.py 17145 2022-10-27 20:51:43Z 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, |
---|
[16808] | 29 | StudentBaseDisplayFormPage, OnlinePaymentDisplayFormPage) |
---|
[16361] | 30 | from waeup.kofa.students.viewlets import ( |
---|
[16906] | 31 | RequestTranscriptActionButton, StudentPassportActionButton, |
---|
| 32 | TranscriptSlipActionButton, |
---|
| 33 | StudyCourseTranscriptActionButton) |
---|
[9382] | 34 | |
---|
[16361] | 35 | from waeup.uniben.students.interfaces import ( |
---|
| 36 | ICustomStudentStudyCourse, ICustomStudentStudyLevel, |
---|
[16808] | 37 | ICustomStudent, ICustomStudentOnlinePayment) |
---|
[16361] | 38 | |
---|
[16382] | 39 | from waeup.uniben.students.browser import StudentMedicalHistoryEditFormPage |
---|
| 40 | |
---|
[9382] | 41 | from kofacustom.nigeria.interfaces import MessageFactory as _ |
---|
| 42 | |
---|
[16449] | 43 | class RequestTranscriptActionButton(RequestTranscriptActionButton): |
---|
[16130] | 44 | |
---|
| 45 | @property |
---|
| 46 | def target_url(self): |
---|
| 47 | return '' |
---|
| 48 | |
---|
[16906] | 49 | class TranscriptSlipActionButton(TranscriptSlipActionButton): |
---|
| 50 | grok.require('waeup.viewStudent') |
---|
| 51 | |
---|
| 52 | class StudyCourseTranscriptActionButton(StudyCourseTranscriptActionButton): |
---|
| 53 | grok.require('waeup.viewStudent') |
---|
| 54 | |
---|
[16449] | 55 | class StudentPassportActionButton(StudentPassportActionButton): |
---|
[16361] | 56 | |
---|
| 57 | @property |
---|
| 58 | def target_url(self): |
---|
[17125] | 59 | if self.context.is_jupeb: |
---|
[17145] | 60 | return '' |
---|
[16361] | 61 | PORTRAIT_CHANGE_STATES = getUtility(IStudentsUtils).PORTRAIT_CHANGE_STATES |
---|
[17142] | 62 | if self.context.state not in PORTRAIT_CHANGE_STATES and not self.context.is_postgrad: |
---|
[16361] | 63 | return '' |
---|
| 64 | return self.view.url(self.view.context, self.target) |
---|
| 65 | |
---|
[15371] | 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 | |
---|
[9439] | 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' |
---|
[9382] | 82 | |
---|
[9439] | 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 | |
---|
[12855] | 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 | |
---|
[9848] | 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 | |
---|
[12121] | 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 | |
---|
[12122] | 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 |
---|
[12121] | 137 | |
---|
[13723] | 138 | class ExaminationScheduleSlipActionButton(ManageActionButton): |
---|
| 139 | grok.order(10) |
---|
| 140 | grok.context(ICustomStudent) |
---|
| 141 | grok.view(StudentBaseDisplayFormPage) |
---|
| 142 | grok.require('waeup.viewStudent') |
---|
| 143 | icon = 'actionicon_pdf.png' |
---|
| 144 | text = _('Download examination schedule slip') |
---|
| 145 | target = 'examination_schedule_slip.pdf' |
---|
[12122] | 146 | |
---|
[13723] | 147 | @property |
---|
| 148 | def target_url(self): |
---|
| 149 | if self.context.flash_notice \ |
---|
| 150 | and 'exam' in self.context.flash_notice.lower(): |
---|
| 151 | return self.view.url(self.view.context, self.target) |
---|
| 152 | return False |
---|
| 153 | |
---|
[15352] | 154 | class JHLIdCardActionButton(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 JHL Id Card') |
---|
| 161 | target = 'jhl_idcard.pdf' |
---|
| 162 | |
---|
| 163 | @property |
---|
| 164 | def target_url(self): |
---|
[15371] | 165 | if self.context.library: |
---|
| 166 | return self.view.url(self.view.context, self.target) |
---|
| 167 | return |
---|
[15352] | 168 | |
---|
[14834] | 169 | class JUPEBResultSlipActionButton(ManageActionButton): |
---|
| 170 | grok.order(11) |
---|
| 171 | grok.context(ICustomStudent) |
---|
| 172 | grok.view(StudentBaseDisplayFormPage) |
---|
| 173 | grok.require('waeup.viewStudent') |
---|
| 174 | icon = 'actionicon_pdf.png' |
---|
| 175 | text = _('Download JUPEB result slip') |
---|
| 176 | target = 'jupeb_result_slip.pdf' |
---|
| 177 | |
---|
| 178 | @property |
---|
| 179 | def target_url(self): |
---|
[14902] | 180 | if self.context.flash_notice and self.context.is_jupeb \ |
---|
[14835] | 181 | and 'results' in self.context.flash_notice.lower(): |
---|
[14834] | 182 | return self.view.url(self.view.context, self.target) |
---|
| 183 | return False |
---|
| 184 | |
---|
[16383] | 185 | class MedicalHistoryEditActionButton(ManageActionButton): |
---|
[16382] | 186 | grok.order(12) |
---|
| 187 | grok.context(ICustomStudent) |
---|
| 188 | grok.view(StudentBaseDisplayFormPage) |
---|
| 189 | grok.require('waeup.handleStudent') |
---|
[16385] | 190 | text = _('Medical Questionnaire') |
---|
[16382] | 191 | target = 'edit_medical' |
---|
| 192 | icon = 'actionicon_medical.png' |
---|
| 193 | |
---|
[16383] | 194 | class MedicalHistoryManageActionButton(MedicalHistoryEditActionButton): |
---|
| 195 | grok.require('waeup.manageStudent') |
---|
| 196 | text = _('Manage medical history') |
---|
| 197 | target = 'manage_medical' |
---|
| 198 | |
---|
[16382] | 199 | class MedicalHistorySlipActionButton(ManageActionButton): |
---|
| 200 | grok.order(1) |
---|
| 201 | grok.context(ICustomStudent) |
---|
| 202 | grok.view(StudentMedicalHistoryEditFormPage) |
---|
| 203 | grok.require('waeup.viewStudent') |
---|
| 204 | icon = 'actionicon_pdf.png' |
---|
[16385] | 205 | text = _('Download medical questionnaire slip') |
---|
| 206 | target = 'medical_questionnaire_slip.pdf' |
---|
[16382] | 207 | |
---|
[16808] | 208 | class PlagTestLinkActionButton(ManageActionButton): |
---|
| 209 | grok.order(10) |
---|
| 210 | grok.context(ICustomStudentOnlinePayment) |
---|
| 211 | grok.view(OnlinePaymentDisplayFormPage) |
---|
| 212 | grok.require('waeup.viewStudent') |
---|
| 213 | icon = 'actionicon_up.png' |
---|
| 214 | text = _('Upload project/thesis file') |
---|
| 215 | target = 'plagtestinfo' |
---|
| 216 | |
---|
| 217 | @property |
---|
| 218 | def target_url(self): |
---|
| 219 | if self.context.p_state != 'paid' \ |
---|
| 220 | or self.context.p_category != 'plag_test': |
---|
| 221 | return '' |
---|
| 222 | return self.view.url(self.view.context, self.target) |
---|
| 223 | |
---|
[9382] | 224 | # JAMB Letter |
---|
| 225 | |
---|
[12452] | 226 | class JAMBLetterDisplay(StudentFileDisplay): |
---|
[9382] | 227 | """JAMB Letter display viewlet. |
---|
| 228 | """ |
---|
| 229 | grok.order(19) |
---|
| 230 | label = _(u'JAMB Letter') |
---|
| 231 | title = _(u'JAMB Letter') |
---|
[11556] | 232 | download_name = u'jamb_letter' |
---|
[9382] | 233 | |
---|
| 234 | class JAMBLetterSlip(JAMBLetterDisplay): |
---|
[13063] | 235 | grok.view(ExportPDFClearanceSlip) |
---|
[9382] | 236 | |
---|
[12452] | 237 | class JAMBLetterUpload(StudentFileUpload): |
---|
[9382] | 238 | """JAMB Letter upload viewlet. |
---|
| 239 | """ |
---|
| 240 | grok.order(19) |
---|
| 241 | label = _(u'JAMB Letter') |
---|
| 242 | title = _(u'JAMB Letter Scan') |
---|
| 243 | mus = 1024 * 150 |
---|
[11556] | 244 | download_name = u'jamb_letter' |
---|
[9382] | 245 | |
---|
[12452] | 246 | class JAMBLetterImage(StudentImage): |
---|
[9382] | 247 | """Renders JAMB Letter scan. |
---|
| 248 | """ |
---|
[11556] | 249 | grok.name('jamb_letter') |
---|
| 250 | download_name = u'jamb_letter' |
---|
[9382] | 251 | |
---|
| 252 | # Affidavit of Non-Membership of Secret Cults |
---|
| 253 | |
---|
[12452] | 254 | class SecrCultsStatementDisplay(StudentFileDisplay): |
---|
[9382] | 255 | """Affidavit of Non-Membership of Secret Cults display viewlet. |
---|
| 256 | """ |
---|
| 257 | grok.order(20) |
---|
| 258 | label = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
| 259 | title = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
| 260 | download_name = u'secr_cults' |
---|
| 261 | |
---|
| 262 | class SecrCultsStatementSlip(SecrCultsStatementDisplay): |
---|
[13063] | 263 | grok.view(ExportPDFClearanceSlip) |
---|
[9382] | 264 | |
---|
[12452] | 265 | class SecrCultsStatementUpload(StudentFileUpload): |
---|
[9382] | 266 | """Affidavit of Non-Membership of Secret Cults upload viewlet. |
---|
| 267 | """ |
---|
| 268 | grok.order(20) |
---|
| 269 | label = _(u'Affidavit of Non-Membership of Secret Cults') |
---|
| 270 | title = _(u'Affidavit of Non-Membership of Secret Cults Scan') |
---|
| 271 | mus = 1024 * 150 |
---|
| 272 | download_name = u'secr_cults' |
---|
| 273 | |
---|
[12452] | 274 | class SecrCultsStatementImage(StudentImage): |
---|
[9382] | 275 | """Renders Affidavit of Non-Membership of Secret Cults scan. |
---|
| 276 | """ |
---|
| 277 | grok.name('secr_cults') |
---|
[11611] | 278 | download_name = u'secr_cults' |
---|
| 279 | |
---|
[16364] | 280 | # O Level Results Scratch Card |
---|
[16359] | 281 | |
---|
[16364] | 282 | class OLevelResultsScratchCardDisplay(StudentFileDisplay): |
---|
| 283 | """O'Level Results Scratch Card display viewlet. |
---|
[16359] | 284 | """ |
---|
| 285 | grok.order(20) |
---|
[16364] | 286 | label = _(u'O Level Results Scratch Card') |
---|
| 287 | title = _(u'O Level Results Scratch Card') |
---|
| 288 | download_name = u'olevel_sc' |
---|
[16359] | 289 | |
---|
[16364] | 290 | class OLevelResultsScratchCardSlip(OLevelResultsScratchCardDisplay): |
---|
[16359] | 291 | grok.view(ExportPDFClearanceSlip) |
---|
| 292 | |
---|
[16364] | 293 | class OLevelResultsScratchCardUpload(StudentFileUpload): |
---|
| 294 | """O Level Results Scratch Card upload viewlet. |
---|
[16359] | 295 | """ |
---|
| 296 | grok.order(20) |
---|
[16364] | 297 | label = _(u'O Level Results Scratch Card') |
---|
| 298 | title = _(u'O Level Results Scratch Card Scan') |
---|
[16359] | 299 | mus = 1024 * 150 |
---|
[16364] | 300 | download_name = u'olevel_sc' |
---|
[16359] | 301 | |
---|
[16364] | 302 | class OLevelResultsScratchCardImage(StudentImage): |
---|
| 303 | """Renders O Level Results Scratch Card scan. |
---|
[16359] | 304 | """ |
---|
[16364] | 305 | grok.name('olevel_sc') |
---|
| 306 | download_name = u'olevel_sc' |
---|
[16359] | 307 | |
---|
[11611] | 308 | # Fingerprints |
---|
| 309 | |
---|
[12452] | 310 | class LeftThumbPrintDisplay(StudentFileDisplay): |
---|
[11611] | 311 | """Left thumb fingerprint display viewlet. |
---|
| 312 | """ |
---|
| 313 | grok.order(21) |
---|
| 314 | label = _(u'Left Thumb Fingerprint') |
---|
| 315 | title = _(u'Left Thumb Fingerprint Minutiae') |
---|
| 316 | download_name = u'finger1.fpm' |
---|
| 317 | |
---|
| 318 | class LeftThumbPrintSlip(LeftThumbPrintDisplay): |
---|
| 319 | """Mentions scanned fingerprint on slip. |
---|
[16443] | 320 | Fingerprint minutiae is not printed. |
---|
[11611] | 321 | """ |
---|
[13063] | 322 | grok.view(ExportPDFClearanceSlip) |
---|
[11611] | 323 | |
---|
[12452] | 324 | class LeftThumbPrintUpload(StudentFileUpload): |
---|
[11611] | 325 | """Left thumb fingerprint upload viewlet. |
---|
| 326 | """ |
---|
| 327 | grok.order(21) |
---|
[11613] | 328 | grok.require('waeup.manageStudent') |
---|
[11611] | 329 | label = _(u'Left Thumb Fingerprint') |
---|
| 330 | title = _(u'Left Thumb Fingerprint Minutiae') |
---|
[16363] | 331 | mus = 1024 * 150 |
---|
[11611] | 332 | download_name = u'finger1.fpm' |
---|
| 333 | |
---|
[12452] | 334 | class LeftThumbPrintImage(StudentImage): |
---|
[11611] | 335 | """Renders left thumb fingerprint minutiae for download. |
---|
| 336 | """ |
---|
| 337 | grok.name('finger1.fpm') |
---|
[16423] | 338 | download_name = u'finger1.fpm' |
---|
| 339 | |
---|
[16473] | 340 | # Original JAMB picture |
---|
[16423] | 341 | |
---|
[16441] | 342 | class JAMBPictureDisplay(PassportDisplay): |
---|
[16423] | 343 | """Original JAMB picture display viewlet. |
---|
| 344 | """ |
---|
[16473] | 345 | grok.order(22) |
---|
[16423] | 346 | label = _(u'Original JAMB Picture') |
---|
| 347 | title = _(u'Original JAMB Picture') |
---|
[16443] | 348 | download_name = u'passport2' |
---|
[16423] | 349 | |
---|
| 350 | class JAMBPictureSlip(JAMBPictureDisplay): |
---|
| 351 | grok.view(ExportPDFClearanceSlip) |
---|
| 352 | |
---|
[16473] | 353 | class JAMBPictureUpload(StudentFileUpload): |
---|
| 354 | """Original JAMB picture upload viewlet. |
---|
| 355 | """ |
---|
| 356 | grok.order(22) |
---|
| 357 | grok.require('waeup.manageStudent') |
---|
| 358 | label = _(u'Original JAMB Picture') |
---|
| 359 | title = _(u'Original JAMB Picture') |
---|
| 360 | mus = 1024 * 150 |
---|
| 361 | download_name = u'passport2' |
---|
| 362 | |
---|
[16423] | 363 | class JAMBPictureImage(StudentImage): |
---|
| 364 | """Renders Original JAMB picture. |
---|
| 365 | """ |
---|
[16443] | 366 | grok.name('passport2') |
---|
| 367 | download_name = u'passport2' |
---|