[7415] | 1 | ## $Id: pdf.py 9949 2013-02-14 16:32:40Z uli $ |
---|
[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 |
---|
[8103] | 22 | from reportlab.platypus import Paragraph, Spacer |
---|
[7390] | 23 | from zope.component import getUtility |
---|
[8059] | 24 | from zope.i18n import translate |
---|
[8046] | 25 | from waeup.kofa.applicants.interfaces import IApplicant, IApplicantsUtils |
---|
[7811] | 26 | from waeup.kofa.browser import DEFAULT_PASSPORT_IMAGE_PATH |
---|
[8059] | 27 | from waeup.kofa.browser.interfaces import IPDFCreator |
---|
[8103] | 28 | from waeup.kofa.browser.pdf import SMALL_PARA_STYLE |
---|
[7819] | 29 | from waeup.kofa.interfaces import IExtFileStore, IPDF, IKofaUtils |
---|
[7811] | 30 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8059] | 31 | from waeup.kofa.widgets.datewidget import FriendlyDateDisplayWidget |
---|
[7390] | 32 | |
---|
| 33 | class PDFApplicationSlip(grok.Adapter): |
---|
[8059] | 34 | """Create a PDF application slip for applicants. |
---|
| 35 | """ |
---|
| 36 | # XXX: Many things in here are reusable. We might want to split |
---|
| 37 | # things. Possibly move parts to IPDFCreator? |
---|
[7390] | 38 | grok.context(IApplicant) |
---|
| 39 | grok.implements(IPDF) |
---|
| 40 | grok.name('application_slip') |
---|
[8549] | 41 | note = None |
---|
[7390] | 42 | |
---|
| 43 | form_fields = grok.AutoFields(IApplicant).omit( |
---|
| 44 | 'locked', 'course_admitted') |
---|
[8013] | 45 | form_fields['date_of_birth'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
[7390] | 46 | |
---|
| 47 | @property |
---|
| 48 | def title(self): |
---|
| 49 | container_title = self.context.__parent__.title |
---|
[7819] | 50 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7714] | 51 | ar_translation = translate(_('Application Record'), |
---|
[7811] | 52 | 'waeup.kofa', target_language=portal_language) |
---|
[7714] | 53 | return '%s - %s %s' % (container_title, |
---|
| 54 | ar_translation, self.context.application_number) |
---|
[7390] | 55 | |
---|
| 56 | def _getCourseAdmittedLink(self, view): |
---|
| 57 | """Return link, title and code in html format to the certificate |
---|
| 58 | admitted. |
---|
| 59 | """ |
---|
| 60 | course_admitted = self.context.course_admitted |
---|
| 61 | if view is not None and getattr(course_admitted, '__parent__',None): |
---|
| 62 | url = view.url(course_admitted) |
---|
| 63 | title = course_admitted.title |
---|
| 64 | code = course_admitted.code |
---|
| 65 | return '<a href="%s">%s - %s</a>' %(url,code,title) |
---|
| 66 | return '' |
---|
| 67 | |
---|
[8091] | 68 | def _getDeptAndFaculty(self): |
---|
| 69 | """Return long titles of department and faculty. |
---|
[7390] | 70 | |
---|
[8091] | 71 | Returns a list [department_title, faculty_title] |
---|
[7390] | 72 | |
---|
[8091] | 73 | If the context applicant has no course admitted or dept. and |
---|
| 74 | faculty cannot be determined, ``None`` is returned. |
---|
[7390] | 75 | """ |
---|
| 76 | course_admitted = self.context.course_admitted |
---|
| 77 | dept = getattr( |
---|
| 78 | getattr(course_admitted, '__parent__', None), |
---|
| 79 | '__parent__', None) |
---|
| 80 | faculty = getattr(dept, '__parent__', None) |
---|
[8091] | 81 | return [x is not None and x.longtitle() or x for x in dept, faculty] |
---|
[7390] | 82 | |
---|
[8059] | 83 | def _addComments(self, data): |
---|
[8286] | 84 | if self.context.state == 'created': |
---|
[8313] | 85 | comment = translate(_( |
---|
[8103] | 86 | 'Proceed to the login page of the portal' + |
---|
[7409] | 87 | ' and enter your new credentials:' + |
---|
[8313] | 88 | ' user name= ${a}, password = ${b}. ' + |
---|
| 89 | 'Change your password when you have logged in.', |
---|
| 90 | mapping = { |
---|
[8059] | 91 | 'a':self.context.student_id, |
---|
| 92 | 'b':self.context.application_number} |
---|
[8313] | 93 | )) |
---|
| 94 | comment = Paragraph(comment, SMALL_PARA_STYLE) |
---|
| 95 | data.extend([Spacer(1, 18), comment]) |
---|
[8059] | 96 | return data |
---|
[7409] | 97 | |
---|
[9949] | 98 | def _getPDFCreator(self): |
---|
| 99 | return getUtility(IPDFCreator) |
---|
| 100 | |
---|
[8552] | 101 | def __call__(self, view=None, note=None): |
---|
[8059] | 102 | """Return a PDF representation of the context applicant. |
---|
[7390] | 103 | |
---|
[8059] | 104 | If no `view` is given, the course admitted field will be an |
---|
| 105 | empty string and author will be set as ``'unknown'``. |
---|
| 106 | |
---|
| 107 | If a `view` is given, author will be set as the calling |
---|
| 108 | principal. |
---|
| 109 | """ |
---|
[8095] | 110 | doc_title = '\n'.join([x.strip() for x in self.title.split(' - ')]) |
---|
[8059] | 111 | data = [] |
---|
[8091] | 112 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 113 | separators = getUtility(IApplicantsUtils).SEPARATORS_DICT |
---|
[9949] | 114 | creator = self._getPDFCreator() |
---|
[8059] | 115 | |
---|
| 116 | # append history |
---|
[8091] | 117 | data.extend(creator.fromStringList(self.context.history.messages)) |
---|
[9452] | 118 | data.append(Spacer(1, 20)) |
---|
[8059] | 119 | |
---|
| 120 | # append photograph |
---|
| 121 | img_path = getattr( |
---|
| 122 | getUtility(IExtFileStore).getFileByContext(self.context), |
---|
| 123 | 'name', DEFAULT_PASSPORT_IMAGE_PATH) |
---|
[8091] | 124 | data.append(creator.getImage(img_path)) |
---|
| 125 | data.append(Spacer(1, 12)) |
---|
[8059] | 126 | |
---|
| 127 | # append widgets |
---|
[8091] | 128 | dept, faculty = self._getDeptAndFaculty() |
---|
| 129 | data.append(creator.getWidgetsTable( |
---|
| 130 | self.form_fields, self.context, view, lang=portal_language, |
---|
| 131 | domain='waeup.kofa', separators=separators, |
---|
| 132 | course_label='Admitted Course of Study:', |
---|
| 133 | course_link=self._getCourseAdmittedLink(view), |
---|
| 134 | dept=dept, faculty=faculty)) |
---|
[8059] | 135 | |
---|
| 136 | # append comments |
---|
| 137 | data = self._addComments(data) |
---|
[9948] | 138 | |
---|
| 139 | return creator.create_pdf(data, None, doc_title, note=self.note) |
---|