[12438] | 1 | ## $Id: fileviewlets.py 17902 2024-08-22 09:48:43Z henrik $ |
---|
[12421] | 2 | ## |
---|
| 3 | ## Copyright (C) 2014 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 os |
---|
| 20 | import grok |
---|
| 21 | from zope.component import getUtility |
---|
| 22 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
| 23 | from waeup.kofa.interfaces import ( |
---|
[15833] | 24 | IExtFileStore, IFileStoreNameChooser, IKofaObject, IKofaUtils) |
---|
[12421] | 25 | from waeup.kofa.utils.helpers import string_from_bytes, file_size |
---|
| 26 | |
---|
| 27 | from waeup.kofa.students.interfaces import IStudent, IStudentsUtils |
---|
| 28 | |
---|
[12448] | 29 | from waeup.kofa.browser.fileviewlets import ( |
---|
| 30 | FileDisplay, FileUpload, Image) |
---|
| 31 | |
---|
[12421] | 32 | from waeup.kofa.browser.layout import ( |
---|
| 33 | default_filedisplay_template, |
---|
| 34 | default_fileupload_template) |
---|
| 35 | |
---|
| 36 | from waeup.kofa.students.browser import ( |
---|
| 37 | StudentBaseDisplayFormPage, StudentBaseManageFormPage, |
---|
| 38 | StudentClearanceDisplayFormPage, StudentClearanceManageFormPage, |
---|
[17867] | 39 | ExportPDFClearanceSlip, StudentFilesUploadPage, StudentSignatureUploadPage, |
---|
| 40 | StudentFinalClearanceUploadPage) |
---|
[12421] | 41 | |
---|
| 42 | grok.context(IKofaObject) # Make IKofaObject the default context |
---|
| 43 | grok.templatedir('browser_templates') |
---|
| 44 | |
---|
[12448] | 45 | # File viewlet baseclasses for student base page |
---|
[12421] | 46 | |
---|
[12448] | 47 | class StudentFileDisplay(FileDisplay): |
---|
[12421] | 48 | """Base file display viewlet. |
---|
| 49 | """ |
---|
| 50 | grok.baseclass() |
---|
| 51 | grok.context(IStudent) |
---|
| 52 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 53 | grok.order(1) |
---|
| 54 | grok.require('waeup.viewStudent') |
---|
| 55 | |
---|
[12447] | 56 | |
---|
[12448] | 57 | class StudentFileUpload(FileUpload): |
---|
[12421] | 58 | """Base upload viewlet. |
---|
| 59 | """ |
---|
| 60 | grok.baseclass() |
---|
| 61 | grok.context(IStudent) |
---|
| 62 | grok.view(StudentClearanceManageFormPage) |
---|
| 63 | grok.require('waeup.uploadStudentFile') |
---|
| 64 | |
---|
| 65 | @property |
---|
[15652] | 66 | def mus(self): |
---|
| 67 | students_utils = getUtility(IStudentsUtils) |
---|
| 68 | return 1024 * students_utils.MAX_KB |
---|
| 69 | |
---|
| 70 | @property |
---|
[12421] | 71 | def show_viewlet(self): |
---|
| 72 | students_utils = getUtility(IStudentsUtils) |
---|
| 73 | if self.__name__ in students_utils.SKIP_UPLOAD_VIEWLETS: |
---|
| 74 | return False |
---|
| 75 | return True |
---|
| 76 | |
---|
| 77 | |
---|
[12448] | 78 | class StudentImage(Image): |
---|
| 79 | """Renders images for students. |
---|
| 80 | """ |
---|
| 81 | grok.baseclass() |
---|
| 82 | grok.context(IStudent) |
---|
| 83 | grok.require('waeup.viewStudent') |
---|
[12421] | 84 | |
---|
[12448] | 85 | |
---|
[16609] | 86 | # File viewlets for student base and clearance page |
---|
[12448] | 87 | |
---|
| 88 | class PassportDisplay(StudentFileDisplay): |
---|
[12421] | 89 | """Passport display viewlet. |
---|
| 90 | """ |
---|
| 91 | grok.order(1) |
---|
| 92 | grok.context(IStudent) |
---|
| 93 | grok.view(StudentBaseDisplayFormPage) |
---|
| 94 | grok.require('waeup.viewStudent') |
---|
| 95 | grok.template('imagedisplay') |
---|
| 96 | label = _(u'Passport Picture') |
---|
| 97 | download_name = u'passport.jpg' |
---|
| 98 | |
---|
[12448] | 99 | |
---|
| 100 | class PassportUploadManage(StudentFileUpload): |
---|
[12421] | 101 | """Passport upload viewlet for officers. |
---|
| 102 | """ |
---|
| 103 | grok.order(1) |
---|
| 104 | grok.context(IStudent) |
---|
| 105 | grok.view(StudentBaseManageFormPage) |
---|
| 106 | grok.require('waeup.manageStudent') |
---|
| 107 | grok.template('imageupload') |
---|
| 108 | label = _(u'Passport Picture (jpg only)') |
---|
| 109 | download_name = u'passport.jpg' |
---|
| 110 | tab_redirect = '#tab2' |
---|
| 111 | |
---|
[15833] | 112 | @property |
---|
| 113 | def mus(self): |
---|
| 114 | kofa_utils = getUtility(IKofaUtils) |
---|
| 115 | return kofa_utils.MAX_PASSPORT_SIZE |
---|
[12448] | 116 | |
---|
[17867] | 117 | class PassportUploadEdit(PassportUploadManage): |
---|
| 118 | """Passport upload viewlet for students. |
---|
| 119 | """ |
---|
| 120 | grok.view(StudentFilesUploadPage) |
---|
| 121 | grok.require('waeup.uploadStudentFile') |
---|
[15833] | 122 | |
---|
[16609] | 123 | class SignatureDisplay(StudentFileDisplay): |
---|
| 124 | """Signature display viewlet. |
---|
| 125 | """ |
---|
| 126 | grok.order(2) |
---|
| 127 | grok.context(IStudent) |
---|
| 128 | grok.view(StudentBaseDisplayFormPage) |
---|
| 129 | grok.require('waeup.viewStudent') |
---|
| 130 | grok.template('imagedisplay') |
---|
| 131 | label = _(u'Scanned Signature') |
---|
| 132 | download_name = u'signature.jpg' |
---|
| 133 | |
---|
| 134 | class SignatureUploadManage(StudentFileUpload): |
---|
| 135 | """Signature upload viewlet for officers. |
---|
| 136 | """ |
---|
| 137 | grok.order(2) |
---|
| 138 | grok.context(IStudent) |
---|
| 139 | grok.view(StudentBaseManageFormPage) |
---|
| 140 | grok.require('waeup.manageStudent') |
---|
| 141 | grok.template('imageupload') |
---|
| 142 | label = _(u'Scanned Signature (jpg only)') |
---|
| 143 | download_name = u'signature.jpg' |
---|
| 144 | |
---|
| 145 | @property |
---|
| 146 | def mus(self): |
---|
| 147 | kofa_utils = getUtility(IKofaUtils) |
---|
| 148 | return kofa_utils.MAX_PASSPORT_SIZE |
---|
| 149 | |
---|
| 150 | |
---|
[17867] | 151 | class SignatureUploadEdit(SignatureUploadManage): |
---|
| 152 | """Signature upload viewlet for students. |
---|
[12421] | 153 | """ |
---|
[17867] | 154 | grok.view(StudentSignatureUploadPage) |
---|
[12421] | 155 | grok.require('waeup.uploadStudentFile') |
---|
| 156 | |
---|
[12448] | 157 | |
---|
[17867] | 158 | class FinalClearanceDisplay(StudentFileDisplay): |
---|
| 159 | """Final Clearance Routing Slip display viewlet. |
---|
[16609] | 160 | """ |
---|
[17867] | 161 | grok.order(4) |
---|
| 162 | grok.context(IStudent) |
---|
| 163 | grok.view(StudentBaseDisplayFormPage) |
---|
| 164 | grok.require('waeup.viewStudent') |
---|
| 165 | label = _(u'Scanned Final Clearance Routing Slip ') |
---|
[17877] | 166 | download_name = u'routingslip.pdf' |
---|
[17867] | 167 | |
---|
| 168 | class FinalClearanceUploadManage(StudentFileUpload): |
---|
| 169 | """Final Clearance Routing Slip upload viewlet for officers. |
---|
| 170 | """ |
---|
| 171 | grok.order(4) |
---|
| 172 | grok.context(IStudent) |
---|
| 173 | grok.view(StudentBaseManageFormPage) |
---|
| 174 | grok.require('waeup.manageStudent') |
---|
[17877] | 175 | label = _(u'Scanned Final Clearance Routing Slip (pdf only)') |
---|
| 176 | download_name = u'routingslip.pdf' |
---|
[17902] | 177 | mus = 1024 * 500 |
---|
[17867] | 178 | |
---|
| 179 | class FinalClearanceUploadEdit(FinalClearanceUploadManage): |
---|
| 180 | """Final Clearance Form upload viewlet for students. |
---|
| 181 | """ |
---|
| 182 | grok.view(StudentFinalClearanceUploadPage) |
---|
[16609] | 183 | grok.require('waeup.uploadStudentFile') |
---|
| 184 | |
---|
[12448] | 185 | class BirthCertificateDisplay(StudentFileDisplay): |
---|
[12421] | 186 | """Birth Certificate display viewlet. |
---|
| 187 | """ |
---|
| 188 | grok.order(1) |
---|
| 189 | label = _(u'Birth Certificate') |
---|
| 190 | title = _(u'Birth Certificate Scan') |
---|
| 191 | download_name = u'birth_certificate' |
---|
| 192 | |
---|
[12448] | 193 | |
---|
[12421] | 194 | class BirthCertificateSlip(BirthCertificateDisplay): |
---|
[13056] | 195 | grok.view(ExportPDFClearanceSlip) |
---|
[12421] | 196 | |
---|
[12448] | 197 | |
---|
| 198 | class BirthCertificateUpload(StudentFileUpload): |
---|
[12421] | 199 | """Birth Certificate upload viewlet. |
---|
| 200 | """ |
---|
| 201 | grok.order(1) |
---|
| 202 | label = _(u'Birth Certificate') |
---|
| 203 | title = _(u'Birth Certificate Scan') |
---|
| 204 | download_name = u'birth_certificate' |
---|
| 205 | tab_redirect = '#tab2-top' |
---|
| 206 | |
---|
| 207 | |
---|
[12448] | 208 | class Passport(StudentImage): |
---|
[12421] | 209 | """Renders jpeg passport picture. |
---|
| 210 | """ |
---|
| 211 | grok.name('passport.jpg') |
---|
| 212 | download_name = u'passport.jpg' |
---|
| 213 | grok.context(IStudent) |
---|
| 214 | |
---|
[16609] | 215 | class Signature(StudentImage): |
---|
| 216 | """Renders jpeg signature. |
---|
| 217 | """ |
---|
| 218 | grok.name('signature.jpg') |
---|
| 219 | download_name = u'signature.jpg' |
---|
| 220 | grok.context(IStudent) |
---|
[12448] | 221 | |
---|
[17867] | 222 | class FinalClearance(StudentImage): |
---|
| 223 | """Renders pdf slip. |
---|
| 224 | """ |
---|
[17877] | 225 | grok.name('routingslip.pdf') |
---|
[17867] | 226 | download_name = u'routingslip' |
---|
| 227 | |
---|
[17877] | 228 | @property |
---|
| 229 | def add_id(self): |
---|
| 230 | return self.context.student_id |
---|
| 231 | |
---|
[12448] | 232 | class ApplicationSlipImage(StudentImage): |
---|
[12421] | 233 | """Renders application slip scan. |
---|
| 234 | """ |
---|
| 235 | grok.name('application_slip') |
---|
| 236 | download_name = u'application_slip' |
---|
| 237 | |
---|
[12448] | 238 | |
---|
[15163] | 239 | class FinalTranscriptImage(StudentImage): |
---|
| 240 | """Renders final transcript. |
---|
| 241 | """ |
---|
| 242 | grok.name('final_transcript') |
---|
| 243 | download_name = u'final_transcript' |
---|
| 244 | |
---|
| 245 | |
---|
[12448] | 246 | class BirthCertificateImage(StudentImage): |
---|
[12421] | 247 | """Renders birth certificate scan. |
---|
| 248 | """ |
---|
| 249 | grok.name('birth_certificate') |
---|
| 250 | download_name = u'birth_certificate' |
---|