[7438] | 1 | ## $Id: viewlets.py 13951 2016-06-17 11:55:34Z 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 | import grok |
---|
[7819] | 19 | from waeup.kofa.interfaces import IKofaObject |
---|
[7811] | 20 | from waeup.kofa.students.viewlets import PrimaryStudentNavTab |
---|
[8684] | 21 | from waeup.kofa.browser.viewlets import ( |
---|
| 22 | ManageActionButton, PrimaryNavTab, AddActionButton) |
---|
[7811] | 23 | from waeup.kofa.applicants.interfaces import ( |
---|
[7438] | 24 | IApplicant, IApplicantsRoot, IApplicantsContainer, |
---|
[8563] | 25 | IApplicantOnlinePayment |
---|
[7438] | 26 | ) |
---|
[7811] | 27 | from waeup.kofa.applicants.browser import ( |
---|
[7438] | 28 | ApplicantsRootPage, ApplicantsContainerPage, ApplicantManageFormPage, |
---|
[8563] | 29 | ApplicantDisplayFormPage, OnlinePaymentDisplayFormPage, |
---|
| 30 | ApplicantsContainerManageFormPage, ApplicantsStatisticsPage |
---|
[7438] | 31 | ) |
---|
| 32 | |
---|
[7811] | 33 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[7674] | 34 | |
---|
[7819] | 35 | grok.context(IKofaObject) # Make IKofaObject the default context |
---|
[7438] | 36 | grok.templatedir('browser_templates') |
---|
| 37 | |
---|
| 38 | class ApplicantsAuthTab(PrimaryNavTab): |
---|
| 39 | """Applicants tab in primary navigation. |
---|
| 40 | """ |
---|
[7819] | 41 | grok.context(IKofaObject) |
---|
[7438] | 42 | grok.order(3) |
---|
| 43 | grok.require('waeup.viewApplicantsTab') |
---|
| 44 | pnav = 3 |
---|
[7674] | 45 | tab_title = _(u'Applicants') |
---|
[7438] | 46 | |
---|
| 47 | @property |
---|
| 48 | def link_target(self): |
---|
| 49 | return self.view.application_url('applicants') |
---|
| 50 | |
---|
| 51 | class ApplicantsAnonTab(ApplicantsAuthTab): |
---|
| 52 | """Applicants tab in primary navigation. |
---|
| 53 | |
---|
| 54 | Display tab only for anonymous. Authenticated users can call the |
---|
| 55 | form from the user navigation bar. |
---|
| 56 | """ |
---|
| 57 | grok.require('waeup.Anonymous') |
---|
[7674] | 58 | tab_title = _(u'Application') |
---|
[7438] | 59 | |
---|
| 60 | # Also zope.manager has role Anonymous. |
---|
| 61 | # To avoid displaying this tab, we have to check the principal id too. |
---|
| 62 | @property |
---|
| 63 | def link_target(self): |
---|
| 64 | if self.request.principal.id == 'zope.anybody': |
---|
| 65 | return self.view.application_url('applicants') |
---|
| 66 | return |
---|
| 67 | |
---|
| 68 | class MyApplicationDataTab(PrimaryStudentNavTab): |
---|
| 69 | """MyData-tab in primary navigation. |
---|
| 70 | """ |
---|
| 71 | grok.order(3) |
---|
| 72 | grok.require('waeup.viewMyApplicationDataTab') |
---|
| 73 | pnav = 3 |
---|
[7714] | 74 | tab_title = _(u'My Data') |
---|
[7438] | 75 | |
---|
| 76 | @property |
---|
| 77 | def link_target(self): |
---|
| 78 | try: |
---|
| 79 | container, application_number = self.request.principal.id.split('_') |
---|
| 80 | except ValueError: |
---|
| 81 | return |
---|
| 82 | rel_link = '/applicants/%s/%s' % (container, application_number) |
---|
| 83 | return self.view.application_url() + rel_link |
---|
| 84 | |
---|
[8406] | 85 | class ApplicantsRootSearchActionButton(ManageActionButton): |
---|
[8404] | 86 | grok.order(1) |
---|
| 87 | grok.context(IApplicantsRoot) |
---|
| 88 | grok.view(ApplicantsRootPage) |
---|
| 89 | grok.require('waeup.viewApplication') |
---|
[10644] | 90 | text = _('Find applicants') |
---|
[8404] | 91 | icon = 'actionicon_search.png' |
---|
| 92 | target = '@@search' |
---|
| 93 | |
---|
[8406] | 94 | class ApplicantsRootManageActionButton(ManageActionButton): |
---|
[8404] | 95 | grok.order(2) |
---|
[7438] | 96 | grok.context(IApplicantsRoot) |
---|
| 97 | grok.view(ApplicantsRootPage) |
---|
| 98 | grok.require('waeup.manageApplication') |
---|
[13076] | 99 | text = _('Manage applicants section') |
---|
[7438] | 100 | |
---|
| 101 | class ApplicantRegisterActionButton(ManageActionButton): |
---|
[8563] | 102 | grok.order(1) |
---|
[7438] | 103 | grok.context(IApplicantsContainer) |
---|
| 104 | grok.view(ApplicantsContainerPage) |
---|
| 105 | grok.require('waeup.Anonymous') |
---|
| 106 | icon = 'actionicon_login.png' |
---|
[7714] | 107 | text = _('Register for application') |
---|
[7438] | 108 | target = 'register' |
---|
| 109 | |
---|
[8684] | 110 | class ApplicantsContainerAddActionButton(AddActionButton): |
---|
[8563] | 111 | grok.order(1) |
---|
| 112 | grok.context(IApplicantsContainer) |
---|
| 113 | grok.view(ApplicantsContainerManageFormPage) |
---|
[8684] | 114 | grok.require('waeup.manageApplication') |
---|
| 115 | text = _('Add applicant') |
---|
| 116 | target = 'addapplicant' |
---|
| 117 | |
---|
[13218] | 118 | class ApplicantsContainerPrefillActionButton(ManageActionButton): |
---|
[8684] | 119 | grok.order(2) |
---|
| 120 | grok.context(IApplicantsContainer) |
---|
| 121 | grok.view(ApplicantsContainerManageFormPage) |
---|
[13217] | 122 | grok.require('waeup.manageApplication') |
---|
| 123 | icon = 'actionicon_bucketfill.png' |
---|
| 124 | text = _('Pre-fill container') |
---|
| 125 | target = 'prefill' |
---|
| 126 | |
---|
[13218] | 127 | class ApplicantsContainerPurgeActionButton(ManageActionButton): |
---|
[13217] | 128 | grok.order(3) |
---|
| 129 | grok.context(IApplicantsContainer) |
---|
| 130 | grok.view(ApplicantsContainerManageFormPage) |
---|
[13218] | 131 | grok.require('waeup.manageApplication') |
---|
| 132 | icon = 'actionicon_sweep.png' |
---|
| 133 | text = _('Purge container') |
---|
| 134 | target = 'purge' |
---|
| 135 | |
---|
| 136 | class ApplicantsContainerStatisticsActionButton(ManageActionButton): |
---|
| 137 | grok.order(4) |
---|
| 138 | grok.context(IApplicantsContainer) |
---|
| 139 | grok.view(ApplicantsContainerManageFormPage) |
---|
[8565] | 140 | grok.require('waeup.viewApplicationStatistics') |
---|
[8563] | 141 | icon = 'actionicon_statistics.png' |
---|
| 142 | text = _('Container statistics') |
---|
| 143 | target = 'statistics' |
---|
| 144 | |
---|
[9759] | 145 | class ApplicantsContainerStatisticsActionButton2( |
---|
| 146 | ApplicantsContainerStatisticsActionButton): |
---|
[13218] | 147 | grok.order(5) |
---|
[8563] | 148 | grok.view(ApplicantsContainerPage) |
---|
| 149 | |
---|
| 150 | class ApplicantsContainerManageActionButton(ManageActionButton): |
---|
| 151 | grok.order(2) |
---|
| 152 | grok.context(IApplicantsContainer) |
---|
| 153 | grok.view(ApplicantsContainerPage) |
---|
| 154 | grok.require('waeup.manageApplication') |
---|
| 155 | text = _('Manage container') |
---|
| 156 | target = 'manage' |
---|
| 157 | |
---|
[10655] | 158 | class ExportApplicantsActionButton(ManageActionButton): |
---|
[13951] | 159 | """ 'Export data' button for faculties. |
---|
[10655] | 160 | """ |
---|
| 161 | grok.context(IApplicantsContainer) |
---|
| 162 | grok.view(ApplicantsContainerPage) |
---|
| 163 | grok.require('waeup.manageApplication') |
---|
| 164 | icon = 'actionicon_down.png' |
---|
[13951] | 165 | text = _('Export application data') |
---|
[10655] | 166 | target = 'exports' |
---|
| 167 | grok.order(4) |
---|
| 168 | |
---|
[9901] | 169 | class ApplicantsRootCreateStudentsActionButton(ManageActionButton): |
---|
[9900] | 170 | grok.order(3) |
---|
| 171 | grok.context(IApplicantsRoot) |
---|
| 172 | grok.view(ApplicantsRootPage) |
---|
[9759] | 173 | grok.require('waeup.managePortal') |
---|
| 174 | icon = 'actionicon_entrance.png' |
---|
[9901] | 175 | text = _('Create students') |
---|
[9759] | 176 | target ='createallstudents' |
---|
| 177 | |
---|
[11874] | 178 | @property |
---|
| 179 | def target_url(self): |
---|
| 180 | if self.target and self.request.principal.id == 'admin': |
---|
| 181 | return self.view.url(self.view.context, self.target) |
---|
| 182 | return |
---|
| 183 | |
---|
[9901] | 184 | class ApplicantsContainerCreateStudentsActionButton(ManageActionButton): |
---|
[13101] | 185 | grok.order(5) |
---|
[9900] | 186 | grok.context(IApplicantsContainer) |
---|
[13101] | 187 | grok.view(ApplicantsContainerPage) |
---|
[9901] | 188 | grok.require('waeup.managePortal') |
---|
| 189 | icon = 'actionicon_entrance.png' |
---|
| 190 | text = _('Create students') |
---|
| 191 | target ='createallstudents' |
---|
[9900] | 192 | |
---|
[11874] | 193 | @property |
---|
| 194 | def target_url(self): |
---|
| 195 | if self.target and self.request.principal.id == 'admin': |
---|
| 196 | return self.view.url(self.view.context, self.target) |
---|
| 197 | return |
---|
| 198 | |
---|
[7438] | 199 | class ApplicantViewActionButton(ManageActionButton): |
---|
| 200 | grok.context(IApplicant) |
---|
| 201 | grok.view(ApplicantManageFormPage) |
---|
| 202 | grok.require('waeup.viewApplication') |
---|
| 203 | icon = 'actionicon_view.png' |
---|
[7714] | 204 | text = _('View application record') |
---|
[7438] | 205 | target = 'index' |
---|
| 206 | |
---|
| 207 | class ApplicantManageActionButton(ManageActionButton): |
---|
| 208 | grok.order(1) |
---|
| 209 | grok.context(IApplicant) |
---|
| 210 | grok.view(ApplicantDisplayFormPage) |
---|
| 211 | grok.require('waeup.manageApplication') |
---|
[7714] | 212 | text = _('Manage application record') |
---|
[7438] | 213 | target = 'manage' |
---|
| 214 | |
---|
| 215 | class ApplicantEditActionButton(ManageActionButton): |
---|
| 216 | grok.order(2) |
---|
| 217 | grok.context(IApplicant) |
---|
| 218 | grok.view(ApplicantDisplayFormPage) |
---|
| 219 | grok.require('waeup.handleApplication') |
---|
[7714] | 220 | text = _('Edit application record') |
---|
[7438] | 221 | target ='edit' |
---|
| 222 | |
---|
| 223 | @property |
---|
| 224 | def target_url(self): |
---|
| 225 | """Get a URL to the target... |
---|
| 226 | """ |
---|
[8665] | 227 | if self.context.locked or ( |
---|
| 228 | self.context.__parent__.expired and |
---|
| 229 | self.context.__parent__.strict_deadline): |
---|
[7438] | 230 | return |
---|
| 231 | return self.view.url(self.view.context, self.target) |
---|
| 232 | |
---|
| 233 | class PDFActionButton(ManageActionButton): |
---|
| 234 | grok.order(3) |
---|
| 235 | grok.context(IApplicant) |
---|
| 236 | grok.require('waeup.viewApplication') |
---|
[10802] | 237 | grok.name('pdfactionbutton') |
---|
[7438] | 238 | icon = 'actionicon_pdf.png' |
---|
[7714] | 239 | text = _('Download application slip') |
---|
[7438] | 240 | target = 'application_slip.pdf' |
---|
| 241 | |
---|
[8666] | 242 | @property |
---|
| 243 | def target_url(self): |
---|
| 244 | """Get a URL to the target... |
---|
| 245 | """ |
---|
[11599] | 246 | if self.context.state in ('initialized', 'started', 'paid') \ |
---|
| 247 | or self.context.special: |
---|
[8666] | 248 | return |
---|
| 249 | return self.view.url(self.view.context, self.target) |
---|
| 250 | |
---|
[7438] | 251 | class StudentCreateActionButton(ManageActionButton): |
---|
| 252 | grok.order(4) |
---|
| 253 | grok.context(IApplicant) |
---|
| 254 | grok.require('waeup.manageApplication') |
---|
| 255 | icon = 'actionicon_entrance.png' |
---|
[13108] | 256 | text = _('Create student') |
---|
[7438] | 257 | target ='createstudent' |
---|
| 258 | |
---|
| 259 | @property |
---|
| 260 | def target_url(self): |
---|
| 261 | """Get a URL to the target... |
---|
| 262 | """ |
---|
[8666] | 263 | if self.context.state != 'admitted': |
---|
[7438] | 264 | return |
---|
| 265 | return self.view.url(self.view.context, self.target) |
---|
| 266 | |
---|
| 267 | class PaymentReceiptActionButton(ManageActionButton): |
---|
[9070] | 268 | grok.order(9) # This button should always be the last one. |
---|
[7438] | 269 | grok.context(IApplicantOnlinePayment) |
---|
| 270 | grok.view(OnlinePaymentDisplayFormPage) |
---|
| 271 | grok.require('waeup.viewApplication') |
---|
| 272 | icon = 'actionicon_pdf.png' |
---|
[8262] | 273 | text = _('Download payment slip') |
---|
| 274 | target = 'payment_slip.pdf' |
---|
[7438] | 275 | |
---|
| 276 | @property |
---|
| 277 | def target_url(self): |
---|
[8262] | 278 | #if self.context.p_state != 'paid': |
---|
| 279 | # return '' |
---|
[7438] | 280 | return self.view.url(self.view.context, self.target) |
---|
| 281 | |
---|
[8420] | 282 | class ApprovePaymentActionButton(ManageActionButton): |
---|
[9070] | 283 | grok.order(8) |
---|
[7438] | 284 | grok.context(IApplicantOnlinePayment) |
---|
| 285 | grok.view(OnlinePaymentDisplayFormPage) |
---|
[8420] | 286 | grok.require('waeup.managePortal') |
---|
[8435] | 287 | icon = 'actionicon_accept.png' |
---|
[8420] | 288 | text = _('Approve payment') |
---|
| 289 | target = 'approve' |
---|
[7438] | 290 | |
---|
| 291 | @property |
---|
| 292 | def target_url(self): |
---|
[8243] | 293 | if self.context.p_state == 'paid': |
---|
[7438] | 294 | return '' |
---|
[7811] | 295 | return self.view.url(self.view.context, self.target) |
---|