[7415] | 1 | ## $Id: pdf.py 10650 2013-09-25 06:46:53Z henrik $ |
---|
[7390] | 2 | ## |
---|
[7398] | 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
[7390] | 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 | Generate PDF docs for applicants. |
---|
| 20 | """ |
---|
| 21 | import grok |
---|
[10310] | 22 | from reportlab.platypus import Paragraph, Spacer, Table |
---|
| 23 | from reportlab.lib.units import cm |
---|
[7390] | 24 | from zope.component import getUtility |
---|
[8059] | 25 | from zope.i18n import translate |
---|
[8046] | 26 | from waeup.kofa.applicants.interfaces import IApplicant, IApplicantsUtils |
---|
[7811] | 27 | from waeup.kofa.browser import DEFAULT_PASSPORT_IMAGE_PATH |
---|
[8059] | 28 | from waeup.kofa.browser.interfaces import IPDFCreator |
---|
[10596] | 29 | from waeup.kofa.browser.pdf import SMALL_PARA_STYLE, ENTRY1_STYLE, get_qrcode |
---|
[7819] | 30 | from waeup.kofa.interfaces import IExtFileStore, IPDF, IKofaUtils |
---|
[7811] | 31 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8059] | 32 | from waeup.kofa.widgets.datewidget import FriendlyDateDisplayWidget |
---|
[7390] | 33 | |
---|
[10310] | 34 | SLIP_STYLE = [ |
---|
| 35 | ('VALIGN',(0,0),(-1,-1),'TOP'), |
---|
| 36 | #('FONT', (0,0), (-1,-1), 'Helvetica', 11), |
---|
| 37 | ] |
---|
| 38 | |
---|
[7390] | 39 | class PDFApplicationSlip(grok.Adapter): |
---|
[8059] | 40 | """Create a PDF application slip for applicants. |
---|
| 41 | """ |
---|
| 42 | # XXX: Many things in here are reusable. We might want to split |
---|
| 43 | # things. Possibly move parts to IPDFCreator? |
---|
[7390] | 44 | grok.context(IApplicant) |
---|
| 45 | grok.implements(IPDF) |
---|
| 46 | grok.name('application_slip') |
---|
[8549] | 47 | note = None |
---|
[7390] | 48 | |
---|
| 49 | form_fields = grok.AutoFields(IApplicant).omit( |
---|
[10310] | 50 | 'locked', 'course_admitted', 'suspended', |
---|
| 51 | ) |
---|
[8013] | 52 | form_fields['date_of_birth'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
[10310] | 53 | column_two_fields = ('applicant_id', 'reg_number', |
---|
| 54 | 'firstname', 'middlename', 'lastname') |
---|
[10319] | 55 | two_columns_design_fields = [] |
---|
[7390] | 56 | |
---|
| 57 | @property |
---|
[10222] | 58 | def target(self): |
---|
| 59 | return getattr(self.context.__parent__, 'prefix', None) |
---|
| 60 | |
---|
| 61 | @property |
---|
[7390] | 62 | def title(self): |
---|
| 63 | container_title = self.context.__parent__.title |
---|
[7819] | 64 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7714] | 65 | ar_translation = translate(_('Application Record'), |
---|
[7811] | 66 | 'waeup.kofa', target_language=portal_language) |
---|
[7714] | 67 | return '%s - %s %s' % (container_title, |
---|
| 68 | ar_translation, self.context.application_number) |
---|
[7390] | 69 | |
---|
| 70 | def _getCourseAdmittedLink(self, view): |
---|
| 71 | """Return link, title and code in html format to the certificate |
---|
| 72 | admitted. |
---|
| 73 | """ |
---|
| 74 | course_admitted = self.context.course_admitted |
---|
| 75 | if view is not None and getattr(course_admitted, '__parent__',None): |
---|
| 76 | url = view.url(course_admitted) |
---|
| 77 | title = course_admitted.title |
---|
| 78 | code = course_admitted.code |
---|
| 79 | return '<a href="%s">%s - %s</a>' %(url,code,title) |
---|
| 80 | return '' |
---|
| 81 | |
---|
[8091] | 82 | def _getDeptAndFaculty(self): |
---|
| 83 | """Return long titles of department and faculty. |
---|
[7390] | 84 | |
---|
[8091] | 85 | Returns a list [department_title, faculty_title] |
---|
[7390] | 86 | |
---|
[8091] | 87 | If the context applicant has no course admitted or dept. and |
---|
| 88 | faculty cannot be determined, ``None`` is returned. |
---|
[7390] | 89 | """ |
---|
| 90 | course_admitted = self.context.course_admitted |
---|
| 91 | dept = getattr( |
---|
| 92 | getattr(course_admitted, '__parent__', None), |
---|
| 93 | '__parent__', None) |
---|
| 94 | faculty = getattr(dept, '__parent__', None) |
---|
[10650] | 95 | return [x is not None and x.longtitle or x for x in dept, faculty] |
---|
[7390] | 96 | |
---|
[10329] | 97 | def _addLoginInformation(self): |
---|
[8286] | 98 | if self.context.state == 'created': |
---|
[8313] | 99 | comment = translate(_( |
---|
[10329] | 100 | '\n Proceed to the login page of the portal' + |
---|
[7409] | 101 | ' and enter your new credentials:' + |
---|
[8313] | 102 | ' user name= ${a}, password = ${b}. ' + |
---|
| 103 | 'Change your password when you have logged in.', |
---|
| 104 | mapping = { |
---|
[8059] | 105 | 'a':self.context.student_id, |
---|
| 106 | 'b':self.context.application_number} |
---|
[8313] | 107 | )) |
---|
[10330] | 108 | return comment |
---|
| 109 | return |
---|
[7409] | 110 | |
---|
[9949] | 111 | def _getPDFCreator(self): |
---|
| 112 | return getUtility(IPDFCreator) |
---|
| 113 | |
---|
[8552] | 114 | def __call__(self, view=None, note=None): |
---|
[8059] | 115 | """Return a PDF representation of the context applicant. |
---|
[7390] | 116 | |
---|
[8059] | 117 | If no `view` is given, the course admitted field will be an |
---|
| 118 | empty string and author will be set as ``'unknown'``. |
---|
| 119 | |
---|
| 120 | If a `view` is given, author will be set as the calling |
---|
| 121 | principal. |
---|
| 122 | """ |
---|
[8095] | 123 | doc_title = '\n'.join([x.strip() for x in self.title.split(' - ')]) |
---|
[8059] | 124 | data = [] |
---|
[8091] | 125 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 126 | separators = getUtility(IApplicantsUtils).SEPARATORS_DICT |
---|
[9949] | 127 | creator = self._getPDFCreator() |
---|
[8059] | 128 | |
---|
| 129 | # append history |
---|
[8091] | 130 | data.extend(creator.fromStringList(self.context.history.messages)) |
---|
[10333] | 131 | data.append(Spacer(1, 5)) |
---|
[8059] | 132 | |
---|
[10596] | 133 | # create three-column header table |
---|
[10310] | 134 | # append photograph to the left |
---|
[8059] | 135 | img_path = getattr( |
---|
| 136 | getUtility(IExtFileStore).getFileByContext(self.context), |
---|
| 137 | 'name', DEFAULT_PASSPORT_IMAGE_PATH) |
---|
[10319] | 138 | data_left = [[creator.getImage(img_path)]] |
---|
[10310] | 139 | table_left = Table(data_left,style=SLIP_STYLE) |
---|
[10319] | 140 | |
---|
[10596] | 141 | # append base data table to the middle |
---|
[10310] | 142 | fields = [ |
---|
| 143 | field for field in self.form_fields |
---|
| 144 | if field.__name__ in self.column_two_fields] |
---|
[10596] | 145 | table_middle = creator.getWidgetsTable( |
---|
[10310] | 146 | fields, self.context, None, lang=portal_language, |
---|
[10596] | 147 | separators=None, colWidths=[5*cm, 4.5*cm]) |
---|
| 148 | |
---|
| 149 | # append QR code to the right |
---|
| 150 | if view is not None: |
---|
| 151 | url = view.url(self.context, 'application_slip.pdf') |
---|
| 152 | data_right = [[get_qrcode(url, width=70.0)]] |
---|
| 153 | table_right = Table(data_right,style=SLIP_STYLE) |
---|
| 154 | else: |
---|
| 155 | table_right = None |
---|
| 156 | |
---|
| 157 | header_table = Table( |
---|
| 158 | [[table_left, table_middle, table_right],],style=SLIP_STYLE) |
---|
[10310] | 159 | data.append(header_table) |
---|
| 160 | |
---|
| 161 | # append widgets except those already added in column two |
---|
[10329] | 162 | # and those in two_columns_design_fields |
---|
[8091] | 163 | dept, faculty = self._getDeptAndFaculty() |
---|
[10310] | 164 | fields = [ |
---|
| 165 | field for field in self.form_fields |
---|
[10319] | 166 | if not field.__name__ in self.column_two_fields and |
---|
| 167 | not field.__name__ in self.two_columns_design_fields] |
---|
[8091] | 168 | data.append(creator.getWidgetsTable( |
---|
[10310] | 169 | fields, self.context, view, lang=portal_language, |
---|
[8091] | 170 | domain='waeup.kofa', separators=separators, |
---|
| 171 | course_label='Admitted Course of Study:', |
---|
| 172 | course_link=self._getCourseAdmittedLink(view), |
---|
| 173 | dept=dept, faculty=faculty)) |
---|
[8059] | 174 | |
---|
[10329] | 175 | # append two-column table of widgets of those fields defined in |
---|
| 176 | # two_columns_design_fields |
---|
| 177 | if len(self.two_columns_design_fields): |
---|
| 178 | fields = [ |
---|
| 179 | field for field in self.form_fields |
---|
| 180 | if not field.__name__ in self.column_two_fields and |
---|
| 181 | field.__name__ in self.two_columns_design_fields] |
---|
| 182 | if fields: |
---|
| 183 | data.append(creator.getWidgetsTable( |
---|
| 184 | fields, self.context, view, lang=portal_language, |
---|
| 185 | domain='waeup.kofa', separators=separators, |
---|
| 186 | twoDataCols=True)) |
---|
[9948] | 187 | |
---|
[10329] | 188 | # append login information |
---|
[10332] | 189 | note = None |
---|
| 190 | login_information = self._addLoginInformation() |
---|
| 191 | if not None in (self.note, login_information): |
---|
| 192 | note = self.note + login_information |
---|
| 193 | elif self.note: |
---|
| 194 | note = self.note |
---|
| 195 | elif login_information: |
---|
| 196 | note = login_information |
---|
[10329] | 197 | |
---|
| 198 | return creator.create_pdf(data, None, doc_title, note=note) |
---|