Merge pull request #10634 from JMAConsulting/CRM-20673
[civicrm-core.git] / CRM / Core / Payment / Manual.php
CommitLineData
1d1fee72 1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
1d1fee72 7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28/**
29 *
30 * @package CRM
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
1d1fee72 32 */
33class CRM_Core_Payment_Manual extends CRM_Core_Payment {
34
35 protected $result;
36
37 /**
38 * This function checks to see if we have the right config values.
1d1fee72 39 */
f48e6cf7 40 public function checkConfig() {}
1d1fee72 41
42 /**
43 * Get billing fields required for this processor.
44 *
45 * We apply the existing default of returning fields only for payment processor type 1. Processors can override to
46 * alter.
47 *
48 * @param int $billingLocationID
49 *
50 * @return array
51 */
52 public function getBillingAddressFields($billingLocationID = NULL) {
53 if (!$billingLocationID) {
54 // Note that although the billing id is passed around the forms the idea that it would be anything other than
55 // the result of the function below doesn't seem to have eventuated.
56 // So taking this as a param is possibly something to be removed in favour of the standard default.
57 $billingLocationID = CRM_Core_BAO_LocationType::getBilling();
58 }
59
60 // Only handle pseudo-profile billing for now.
61 if ($this->billingProfile == 'billing') {
62 // @todo - use profile api to retrieve this - either as pseudo-profile or (better) set up billing
63 // as a reserved profile in the DB and (even better) allow the profile to be selected
64 // on the form instead of just 'billing for pay=later bool'
65 return array(
66 'first_name' => 'billing_first_name',
67 'middle_name' => 'billing_middle_name',
68 'last_name' => 'billing_last_name',
69 'street_address' => "billing_street_address-{$billingLocationID}",
70 'city' => "billing_city-{$billingLocationID}",
71 'country' => "billing_country_id-{$billingLocationID}",
72 'state_province' => "billing_state_province_id-{$billingLocationID}",
73 'postal_code' => "billing_postal_code-{$billingLocationID}",
74 );
75 }
76 else {
77 return array();
78 }
79 }
80
81 /**
82 * Get array of fields that should be displayed on the payment form.
83 *
84 * @return array
85 */
86 public function getPaymentFormFields() {
794d4fc0 87 if (!$this->isBackOffice()) {
88 return array();
89 }
90
91 $paymentInstrument = CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'payment_instrument_id', $this->getPaymentInstrumentID());
92 if ($paymentInstrument === 'Credit Card') {
a55e39e9 93 return array('credit_card_type', 'pan_truncation');
794d4fc0 94 }
95 elseif ($paymentInstrument === 'Check') {
96 // Really we should render check_number here, but we need to review how we edit
97 // check_numebr since we expose it as editable on the contribution form,
98 // even though it should only be editable from a transation specific form.
99 return array();
100 }
1d1fee72 101 return array();
102 }
794d4fc0 103
1d1fee72 104 /**
105 * Process payment.
106 *
107 * The function ensures an exception is thrown & moves some of this logic out of the form layer and makes the forms
108 * more agnostic.
109 *
110 * @param array $params
111 *
112 * @param string $component
113 *
114 * @return array
115 * Result array
116 *
117 * @throws \Civi\Payment\Exception\PaymentProcessorException
118 */
119 public function doPayment(&$params, $component = 'contribute') {
120 $params['payment_status_id'] = $this->getResult();
121 return $params;
122 }
123
124 /**
125 * Get the result of the payment.
126 *
127 * Usually this will be pending but the calling layer has a chance to set the result.
128 *
129 * This would apply in particular when the form accepts status id.
130 *
131 * Note that currently this payment class is only being used to manage the 'billing block' aspect
132 * of pay later. However, a longer term idea is that by treating 'pay-later' as 'just another processor'
133 * will allow code simplification.
134 *
135 * @return int
136 */
137 protected function getResult() {
138 if (!$this->result) {
139 $this->setResult(CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'status_id', 'Pending'));
140 }
141 return $this->result;
142 }
143
144 /**
145 * Set the result to be returned.
146 *
147 * This would be set from outside the function where we want to pass on the status from the form.
148 *
149 * @param int $result
150 */
151 public function setResult($result) {
152 $this->result = $result;
153 }
154
18135422 155 /**
156 * Set payment instrument id.
157 *
158 * @param int $paymentInstrumentID
159 */
160 public function setPaymentInstrumentID($paymentInstrumentID) {
161 $this->paymentInstrumentID = $paymentInstrumentID;
162 }
163
1d1fee72 164 /**
165 * Get the name of the payment type.
166 *
167 * @return string
168 */
169 public function getPaymentTypeName() {
170 return 'pay-later';
171 }
172
173 /**
174 * Get the name of the payment type.
175 *
176 * @return string
177 */
178 public function getPaymentTypeLabel() {
0dc4ef42 179 return CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'payment_instrument_id', $this->getPaymentInstrumentID());
1d1fee72 180 }
f48e6cf7 181
ecb7ec32 182 /**
183 * Declare that more than one payment can be processed at once.
184 *
185 * @return bool
186 */
187 protected function supportsMultipleConcurrentPayments() {
188 return TRUE;
189 }
190
95974e8e
DG
191 /**
192 * Checks if backoffice recurring edit is allowed
193 *
194 * @return bool
195 */
196 public function supportsEditRecurringContribution() {
197 return TRUE;
198 }
199
18135422 200 /**
201 * Are back office payments supported.
202 *
203 * @return bool
204 */
205 protected function supportsBackOffice() {
206 return TRUE;
207 }
208
95974e8e 209 /**
3e473c0b 210 * Submit a manual payment.
95974e8e
DG
211 *
212 * @param array $params
213 * Assoc array of input parameters for this transaction.
3e473c0b 214 *
215 * @return array
95974e8e
DG
216 */
217 public function doDirectPayment(&$params) {
218 $statuses = CRM_Contribute_BAO_Contribution::buildOptions('contribution_status_id');
219 if ($params['is_pay_later']) {
220 $result['payment_status_id'] = array_search('Pending', $statuses);
221 }
222 else {
223 $result['payment_status_id'] = array_search('Completed', $statuses);
224 }
3e473c0b 225 return $result;
95974e8e
DG
226 }
227
cd3bc162 228 /**
229 * Should a receipt be sent out for a pending payment.
230 *
231 * e.g for traditional pay later & ones with a delayed settlement a pending receipt makes sense.
232 */
233 public function isSendReceiptForPending() {
234 return TRUE;
235 }
236
1d1fee72 237}