[7250] | 1 | ## $Id: payment.py 16527 2021-07-06 05:51:42Z 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 |
---|
[10030] | 29 | from waeup.kofa.payments.interfaces import IPayer |
---|
[7811] | 30 | from waeup.kofa.applicants.interfaces import IApplicantOnlinePayment |
---|
[11599] | 31 | from waeup.kofa.applicants.workflow import PAID |
---|
[7811] | 32 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
[7250] | 33 | |
---|
| 34 | class ApplicantOnlinePayment(OnlinePayment): |
---|
| 35 | """This is an online payment. |
---|
| 36 | """ |
---|
| 37 | grok.implements(IApplicantOnlinePayment) |
---|
| 38 | grok.provides(IApplicantOnlinePayment) |
---|
| 39 | |
---|
| 40 | def __init__(self): |
---|
| 41 | super(ApplicantOnlinePayment, self).__init__() |
---|
| 42 | return |
---|
| 43 | |
---|
[8453] | 44 | def doAfterApplicantPaymentApproval(self): |
---|
| 45 | """Process applicant after payment was approved. |
---|
| 46 | """ |
---|
[15553] | 47 | if self.__parent__.state != PAID \ |
---|
[16225] | 48 | and (self.p_category in ('application', 'transcript') \ |
---|
[16224] | 49 | or self.__parent__.special): |
---|
[11575] | 50 | wf_info = IWorkflowInfo(self.__parent__) |
---|
| 51 | try: |
---|
| 52 | wf_info.fireTransition('approve') |
---|
| 53 | except InvalidTransitionError: |
---|
| 54 | msg = log = 'Error: %s' % sys.exc_info()[1] |
---|
[11580] | 55 | return 'danger', msg, log |
---|
[12893] | 56 | log = 'approved: %s' % self.p_id |
---|
[8453] | 57 | msg = _('Payment approved') |
---|
[11580] | 58 | flashtype = 'success' |
---|
| 59 | return flashtype, msg, log |
---|
[8453] | 60 | |
---|
[8422] | 61 | def doAfterApplicantPayment(self): |
---|
| 62 | """Process applicant after payment was made. |
---|
| 63 | """ |
---|
[15553] | 64 | if self.__parent__.state != PAID \ |
---|
[16225] | 65 | and (self.p_category in ('application', 'transcript') \ |
---|
| 66 | or self.__parent__.special): |
---|
[11575] | 67 | wf_info = IWorkflowInfo(self.__parent__) |
---|
| 68 | try: |
---|
| 69 | wf_info.fireTransition('pay') |
---|
| 70 | except InvalidTransitionError: |
---|
| 71 | msg = log = 'Error: %s' % sys.exc_info()[1] |
---|
[11580] | 72 | return 'danger', msg, log |
---|
[8428] | 73 | log = 'successful payment: %s' % self.p_id |
---|
[15553] | 74 | msg = _('Payment successfully completed. Kindly submit application for processing.') |
---|
[11580] | 75 | flashtype = 'success' |
---|
| 76 | return flashtype, msg, log |
---|
[8422] | 77 | |
---|
| 78 | def approveApplicantPayment(self): |
---|
| 79 | """Approve payment and process applicant. |
---|
| 80 | """ |
---|
| 81 | if self.p_state == 'paid': |
---|
[11580] | 82 | return 'warning', _('This ticket has already been paid.'), None |
---|
[8422] | 83 | self.approve() |
---|
[8453] | 84 | return self.doAfterApplicantPaymentApproval() |
---|
[8422] | 85 | |
---|
[9984] | 86 | ApplicantOnlinePayment = attrs_to_fields( |
---|
| 87 | ApplicantOnlinePayment, omit=['display_item']) |
---|
[7250] | 88 | |
---|
[10030] | 89 | class Payer(grok.Adapter): |
---|
| 90 | """An adapter to publish applicant data through a simple webservice. |
---|
[8703] | 91 | """ |
---|
| 92 | grok.context(IApplicantOnlinePayment) |
---|
[10030] | 93 | grok.implements(IPayer) |
---|
[8703] | 94 | |
---|
| 95 | @property |
---|
[16526] | 96 | def payer(self): |
---|
| 97 | "The payer object" |
---|
| 98 | return self.context.__parent__ |
---|
| 99 | |
---|
| 100 | @property |
---|
[8708] | 101 | def display_fullname(self): |
---|
[10030] | 102 | "Name of payer" |
---|
[8703] | 103 | return self.context.__parent__.display_fullname |
---|
| 104 | |
---|
[8708] | 105 | @property |
---|
| 106 | def id(self): |
---|
[10030] | 107 | "Id of payer" |
---|
[8708] | 108 | return self.context.__parent__.applicant_id |
---|
| 109 | |
---|
| 110 | @property |
---|
[9733] | 111 | def reg_number(self): |
---|
[10030] | 112 | "Reg number of payer" |
---|
[9506] | 113 | return self.context.__parent__.reg_number |
---|
| 114 | |
---|
| 115 | @property |
---|
[9733] | 116 | def matric_number(self): |
---|
[10392] | 117 | return 'N/A' |
---|
[9733] | 118 | |
---|
| 119 | @property |
---|
[8708] | 120 | def faculty(self): |
---|
[10392] | 121 | return 'N/A' |
---|
[8708] | 122 | |
---|
| 123 | @property |
---|
| 124 | def department(self): |
---|
[10392] | 125 | return 'N/A' |
---|
[8708] | 126 | |
---|
[10914] | 127 | @property |
---|
| 128 | def email(self): |
---|
| 129 | "Email of payer" |
---|
| 130 | return self.context.__parent__.email |
---|
| 131 | |
---|
| 132 | @property |
---|
| 133 | def phone(self): |
---|
| 134 | "Phone number of payer" |
---|
| 135 | return self.context.__parent__.phone |
---|
| 136 | |
---|
| 137 | @property |
---|
| 138 | def current_mode(self): |
---|
| 139 | "Current study mode of payer" |
---|
| 140 | return 'N/A' |
---|
| 141 | |
---|
| 142 | @property |
---|
| 143 | def current_level(self): |
---|
| 144 | "Current level of payer" |
---|
| 145 | return 'N/A' |
---|
| 146 | |
---|
[16526] | 147 | def doAfterPayment(self): |
---|
| 148 | "Do after payment was made." |
---|
[16527] | 149 | return self.context.doAfterApplicantPayment() |
---|
[16526] | 150 | |
---|
[7250] | 151 | # Applicant online payments must be importable. So we might need a factory. |
---|
| 152 | class ApplicantOnlinePaymentFactory(grok.GlobalUtility): |
---|
| 153 | """A factory for applicant online payments. |
---|
| 154 | """ |
---|
| 155 | grok.implements(IFactory) |
---|
| 156 | grok.name(u'waeup.ApplicantOnlinePayment') |
---|
| 157 | title = u"Create a new online payment.", |
---|
| 158 | description = u"This factory instantiates new online payment instances." |
---|
| 159 | |
---|
| 160 | def __call__(self, *args, **kw): |
---|
| 161 | return ApplicantOnlinePayment() |
---|
| 162 | |
---|
| 163 | def getInterfaces(self): |
---|
[7811] | 164 | return implementedBy(ApplicantOnlinePayment) |
---|