[7250] | 1 | ## $Id: payment.py 8708 2012-06-13 13:29:35Z 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 | """ |
---|
[8260] | 19 | Application fee payment. |
---|
[7250] | 20 | """ |
---|
| 21 | import grok |
---|
[8431] | 22 | import sys |
---|
| 23 | from hurry.workflow.interfaces import ( |
---|
| 24 | IWorkflowInfo, InvalidTransitionError) |
---|
[7250] | 25 | from zope.component.interfaces import IFactory |
---|
| 26 | from zope.interface import implementedBy |
---|
[8422] | 27 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[7811] | 28 | from waeup.kofa.payments import OnlinePayment |
---|
[8703] | 29 | from waeup.kofa.payments.interfaces import IPaymentWebservice |
---|
[7811] | 30 | from waeup.kofa.applicants.interfaces import IApplicantOnlinePayment |
---|
| 31 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
[7250] | 32 | |
---|
| 33 | class ApplicantOnlinePayment(OnlinePayment): |
---|
| 34 | """This is an online payment. |
---|
| 35 | """ |
---|
| 36 | grok.implements(IApplicantOnlinePayment) |
---|
| 37 | grok.provides(IApplicantOnlinePayment) |
---|
| 38 | |
---|
| 39 | def __init__(self): |
---|
| 40 | super(ApplicantOnlinePayment, self).__init__() |
---|
| 41 | return |
---|
| 42 | |
---|
[8453] | 43 | def doAfterApplicantPaymentApproval(self): |
---|
| 44 | """Process applicant after payment was approved. |
---|
| 45 | """ |
---|
| 46 | wf_info = IWorkflowInfo(self.__parent__) |
---|
| 47 | try: |
---|
| 48 | wf_info.fireTransition('approve') |
---|
| 49 | except InvalidTransitionError: |
---|
| 50 | msg = log = 'Error: %s' % sys.exc_info()[1] |
---|
| 51 | return False, msg, log |
---|
| 52 | log = 'payment approved: %s' % self.p_id |
---|
| 53 | msg = _('Payment approved') |
---|
| 54 | return False, msg, log |
---|
| 55 | |
---|
[8422] | 56 | def doAfterApplicantPayment(self): |
---|
| 57 | """Process applicant after payment was made. |
---|
| 58 | """ |
---|
| 59 | wf_info = IWorkflowInfo(self.__parent__) |
---|
| 60 | try: |
---|
[8453] | 61 | wf_info.fireTransition('pay') |
---|
[8422] | 62 | except InvalidTransitionError: |
---|
[8428] | 63 | msg = log = 'Error: %s' % sys.exc_info()[1] |
---|
| 64 | return False, msg, log |
---|
| 65 | log = 'successful payment: %s' % self.p_id |
---|
| 66 | msg = _('Successful payment') |
---|
| 67 | return False, msg, log |
---|
[8422] | 68 | |
---|
| 69 | def approveApplicantPayment(self): |
---|
| 70 | """Approve payment and process applicant. |
---|
| 71 | """ |
---|
| 72 | if self.p_state == 'paid': |
---|
[8428] | 73 | return False, _('This ticket has already been paid.'), None |
---|
[8422] | 74 | self.approve() |
---|
[8453] | 75 | return self.doAfterApplicantPaymentApproval() |
---|
[8422] | 76 | |
---|
[7250] | 77 | ApplicantOnlinePayment = attrs_to_fields(ApplicantOnlinePayment) |
---|
| 78 | |
---|
[8703] | 79 | class PaymentWebservice(grok.Adapter): |
---|
| 80 | """An adapter to publish applicant data through a webservice. |
---|
| 81 | """ |
---|
| 82 | grok.context(IApplicantOnlinePayment) |
---|
| 83 | grok.implements(IPaymentWebservice) |
---|
| 84 | |
---|
| 85 | @property |
---|
[8708] | 86 | def display_fullname(self): |
---|
| 87 | "Name of payee." |
---|
[8703] | 88 | return self.context.__parent__.display_fullname |
---|
| 89 | |
---|
[8708] | 90 | @property |
---|
| 91 | def id(self): |
---|
| 92 | "Id of payee" |
---|
| 93 | return self.context.__parent__.applicant_id |
---|
| 94 | |
---|
| 95 | @property |
---|
| 96 | def faculty(self): |
---|
| 97 | "Faculty of payee" |
---|
| 98 | return '' |
---|
| 99 | |
---|
| 100 | @property |
---|
| 101 | def department(self): |
---|
| 102 | "Department of payee" |
---|
| 103 | return '' |
---|
| 104 | |
---|
[7250] | 105 | # Applicant online payments must be importable. So we might need a factory. |
---|
| 106 | class ApplicantOnlinePaymentFactory(grok.GlobalUtility): |
---|
| 107 | """A factory for applicant online payments. |
---|
| 108 | """ |
---|
| 109 | grok.implements(IFactory) |
---|
| 110 | grok.name(u'waeup.ApplicantOnlinePayment') |
---|
| 111 | title = u"Create a new online payment.", |
---|
| 112 | description = u"This factory instantiates new online payment instances." |
---|
| 113 | |
---|
| 114 | def __call__(self, *args, **kw): |
---|
| 115 | return ApplicantOnlinePayment() |
---|
| 116 | |
---|
| 117 | def getInterfaces(self): |
---|
[7811] | 118 | return implementedBy(ApplicantOnlinePayment) |
---|