[10765] | 1 | ## $Id: payment.py 15151 2018-09-19 16:02:47Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2012 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 | Application fee payment. |
---|
| 20 | """ |
---|
| 21 | import grok |
---|
[15151] | 22 | import sys |
---|
[15139] | 23 | from hurry.workflow.interfaces import ( |
---|
| 24 | IWorkflowInfo, InvalidTransitionError) |
---|
[10765] | 25 | from zope.component.interfaces import IFactory |
---|
| 26 | from zope.interface import implementedBy |
---|
| 27 | from waeup.kofa.applicants.payment import ApplicantOnlinePayment |
---|
| 28 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
[15000] | 29 | from kofacustom.edopoly.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
[15131] | 30 | from kofacustom.edopoly.interfaces import MessageFactory as _ |
---|
[10765] | 31 | |
---|
| 32 | class CustomApplicantOnlinePayment(ApplicantOnlinePayment): |
---|
| 33 | """This is a custom online payment for applicants. |
---|
| 34 | |
---|
| 35 | Since this class inherits from ApplicantOnlinePayment, it automatically |
---|
| 36 | implements the interfaces of the parent class which means |
---|
| 37 | all viewlets and views meant for StudentOnlinePayment |
---|
| 38 | can also be accessed in the customized system. |
---|
| 39 | """ |
---|
| 40 | grok.implements(ICustomApplicantOnlinePayment) |
---|
| 41 | grok.provides(ICustomApplicantOnlinePayment) |
---|
| 42 | |
---|
| 43 | def __init__(self): |
---|
| 44 | super(CustomApplicantOnlinePayment, self).__init__() |
---|
| 45 | return |
---|
| 46 | |
---|
[15131] | 47 | def doAfterApplicantPaymentApproval(self): |
---|
| 48 | """Process applicant after payment was approved. |
---|
| 49 | """ |
---|
| 50 | if not (self.__parent__.special and self.__parent__.state == PAID) \ |
---|
| 51 | and self.p_category != 'admission_checking': |
---|
| 52 | wf_info = IWorkflowInfo(self.__parent__) |
---|
| 53 | try: |
---|
| 54 | wf_info.fireTransition('approve') |
---|
| 55 | except InvalidTransitionError: |
---|
| 56 | msg = log = 'Error: %s' % sys.exc_info()[1] |
---|
| 57 | return 'danger', msg, log |
---|
| 58 | log = 'approved: %s' % self.p_id |
---|
| 59 | msg = _('Payment approved') |
---|
| 60 | flashtype = 'success' |
---|
| 61 | return flashtype, msg, log |
---|
| 62 | |
---|
| 63 | def doAfterApplicantPayment(self): |
---|
| 64 | """Process applicant after payment was made. |
---|
| 65 | """ |
---|
| 66 | if not (self.__parent__.special and self.__parent__.state == PAID) \ |
---|
| 67 | and self.p_category != 'admission_checking': |
---|
| 68 | wf_info = IWorkflowInfo(self.__parent__) |
---|
| 69 | try: |
---|
| 70 | wf_info.fireTransition('pay') |
---|
| 71 | except InvalidTransitionError: |
---|
| 72 | msg = log = 'Error: %s' % sys.exc_info()[1] |
---|
| 73 | return 'danger', msg, log |
---|
| 74 | log = 'successful payment: %s' % self.p_id |
---|
| 75 | msg = _('Successful payment') |
---|
| 76 | flashtype = 'success' |
---|
| 77 | return flashtype, msg, log |
---|
| 78 | |
---|
[10765] | 79 | CustomApplicantOnlinePayment = attrs_to_fields( |
---|
| 80 | CustomApplicantOnlinePayment, omit=['display_item']) |
---|
| 81 | |
---|
| 82 | # Applicant online payments must be importable. So we might need a factory. |
---|
| 83 | class CustomApplicantOnlinePaymentFactory(grok.GlobalUtility): |
---|
| 84 | """A factory for applicant online payments. |
---|
| 85 | """ |
---|
| 86 | grok.implements(IFactory) |
---|
| 87 | grok.name(u'waeup.ApplicantOnlinePayment') |
---|
| 88 | title = u"Create a new online payment.", |
---|
| 89 | description = u"This factory instantiates new online payment instances." |
---|
| 90 | |
---|
| 91 | def __call__(self, *args, **kw): |
---|
| 92 | return CustomApplicantOnlinePayment() |
---|
| 93 | |
---|
| 94 | def getInterfaces(self): |
---|
| 95 | return implementedBy(CustomApplicantOnlinePayment) |
---|