Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
39de6fd5 | 4 | | CiviCRM version 4.6 | |
6a488035 | 5 | +--------------------------------------------------------------------+ |
06b69b18 | 6 | | Copyright CiviCRM LLC (c) 2004-2014 | |
6a488035 TO |
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 | +--------------------------------------------------------------------+ | |
d25dd0ee | 26 | */ |
6a488035 | 27 | |
914a49bf | 28 | use Civi\Payment\System; |
353ffa53 | 29 | |
6a488035 | 30 | /** |
3782df3e | 31 | * Class CRM_Core_Payment. |
6a488035 | 32 | * |
3782df3e | 33 | * This class is the main class for the payment processor subsystem. |
6a488035 | 34 | * |
3782df3e EM |
35 | * It is the parent class for payment processors. It also holds some IPN related functions |
36 | * that need to be moved. In particular handlePaymentMethod should be moved to a factory class. | |
6a488035 | 37 | */ |
6a488035 TO |
38 | abstract class CRM_Core_Payment { |
39 | ||
40 | /** | |
100fef9d | 41 | * How are we getting billing information? |
6a488035 TO |
42 | * |
43 | * FORM - we collect it on the same page | |
44 | * BUTTON - the processor collects it and sends it back to us via some protocol | |
45 | */ | |
7da04cde | 46 | const |
6a488035 TO |
47 | BILLING_MODE_FORM = 1, |
48 | BILLING_MODE_BUTTON = 2, | |
49 | BILLING_MODE_NOTIFY = 4; | |
50 | ||
51 | /** | |
100fef9d | 52 | * Which payment type(s) are we using? |
6a488035 TO |
53 | * |
54 | * credit card | |
55 | * direct debit | |
56 | * or both | |
43e5f0f6 | 57 | * @todo create option group - nb omnipay uses a 3rd type - transparent redirect cc |
6a488035 | 58 | */ |
7da04cde | 59 | const |
6a488035 TO |
60 | PAYMENT_TYPE_CREDIT_CARD = 1, |
61 | PAYMENT_TYPE_DIRECT_DEBIT = 2; | |
62 | ||
63 | /** | |
64 | * Subscription / Recurring payment Status | |
65 | * START, END | |
6a488035 | 66 | */ |
7da04cde | 67 | const |
6a488035 TO |
68 | RECURRING_PAYMENT_START = 'START', |
69 | RECURRING_PAYMENT_END = 'END'; | |
70 | ||
353ffa53 | 71 | protected $_paymentProcessor; |
6a488035 TO |
72 | |
73 | /** | |
d09edf64 | 74 | * Singleton function used to manage this object. |
3782df3e | 75 | * |
914a49bf EM |
76 | * We will migrate to calling Civi\Payment\System::singleton()->getByProcessor($paymentProcessor) |
77 | * & Civi\Payment\System::singleton()->getById($paymentProcessor) directly as the main access methods & work | |
78 | * to remove this function all together | |
6a488035 | 79 | * |
6a0b768e TO |
80 | * @param string $mode |
81 | * The mode of operation: live or test. | |
82 | * @param array $paymentProcessor | |
83 | * The details of the payment processor being invoked. | |
84 | * @param object $paymentForm | |
85 | * Deprecated - avoid referring to this if possible. If you have to use it document why as this is scary interaction. | |
86 | * @param bool $force | |
87 | * Should we force a reload of this payment object. | |
88 | * | |
89 | * @return CRM_Core_Payment | |
52767de0 | 90 | * @throws \CRM_Core_Exception |
6a488035 | 91 | */ |
00be9182 | 92 | public static function &singleton($mode = 'test', &$paymentProcessor, &$paymentForm = NULL, $force = FALSE) { |
6a488035 TO |
93 | // make sure paymentProcessor is not empty |
94 | // CRM-7424 | |
95 | if (empty($paymentProcessor)) { | |
96 | return CRM_Core_DAO::$_nullObject; | |
97 | } | |
ef1c2283 EM |
98 | //we use two lines because we can't remove the '&singleton' without risking breakage |
99 | //of extension classes that extend this one | |
353ffa53 | 100 | $object = Civi\Payment\System::singleton()->getByProcessor($paymentProcessor); |
ef1c2283 | 101 | return $object; |
6a488035 TO |
102 | } |
103 | ||
e2bef985 | 104 | /** |
3782df3e EM |
105 | * Log payment notification message to forensic system log. |
106 | * | |
43e5f0f6 | 107 | * @todo move to factory class \Civi\Payment\System (or similar) |
3782df3e EM |
108 | * |
109 | * @param array $params | |
110 | * | |
e2bef985 | 111 | * @return mixed |
112 | */ | |
113 | public static function logPaymentNotification($params) { | |
414e3596 | 114 | $message = 'payment_notification '; |
e2bef985 | 115 | if (!empty($params['processor_name'])) { |
414e3596 | 116 | $message .= 'processor_name=' . $params['processor_name']; |
e2bef985 | 117 | } |
118 | if (!empty($params['processor_id'])) { | |
119 | $message .= 'processor_id=' . $params['processor_id']; | |
120 | } | |
414e3596 | 121 | |
122 | $log = new CRM_Utils_SystemLogger(); | |
123 | $log->alert($message, $_REQUEST); | |
e2bef985 | 124 | } |
125 | ||
fbcb6fba | 126 | /** |
d09edf64 | 127 | * Check if capability is supported. |
3782df3e EM |
128 | * |
129 | * Capabilities have a one to one relationship with capability-related functions on this class. | |
130 | * | |
131 | * Payment processor classes should over-ride the capability-specific function rather than this one. | |
132 | * | |
6a0b768e TO |
133 | * @param string $capability |
134 | * E.g BackOffice, LiveMode, FutureRecurStartDate. | |
fbcb6fba EM |
135 | * |
136 | * @return bool | |
137 | */ | |
138 | public function supports($capability) { | |
139 | $function = 'supports' . ucfirst($capability); | |
140 | if (method_exists($this, $function)) { | |
141 | return $this->$function(); | |
142 | } | |
143 | return FALSE; | |
144 | } | |
145 | ||
146 | /** | |
3782df3e EM |
147 | * Are back office payments supported. |
148 | * | |
149 | * e.g paypal standard won't permit you to enter a credit card associated | |
150 | * with someone else's login. | |
151 | * The intention is to support off-site (other than paypal) & direct debit but that is not all working yet so to | |
152 | * reach a 'stable' point we disable. | |
153 | * | |
fbcb6fba EM |
154 | * @return bool |
155 | */ | |
d8ce0d68 | 156 | protected function supportsBackOffice() { |
9c39fb25 EM |
157 | if ($this->_paymentProcessor['billing_mode'] == 4 || $this->_paymentProcessor['payment_type'] != 1) { |
158 | return FALSE; | |
159 | } | |
160 | else { | |
161 | return TRUE; | |
162 | } | |
fbcb6fba EM |
163 | } |
164 | ||
165 | /** | |
3782df3e EM |
166 | * Are live payments supported - e.g dummy doesn't support this. |
167 | * | |
fbcb6fba EM |
168 | * @return bool |
169 | */ | |
d8ce0d68 | 170 | protected function supportsLiveMode() { |
fbcb6fba EM |
171 | return TRUE; |
172 | } | |
173 | ||
52767de0 | 174 | /** |
d09edf64 | 175 | * Are test payments supported. |
3782df3e | 176 | * |
52767de0 EM |
177 | * @return bool |
178 | */ | |
179 | protected function supportsTestMode() { | |
180 | return TRUE; | |
181 | } | |
182 | ||
fbcb6fba | 183 | /** |
d09edf64 | 184 | * Should the first payment date be configurable when setting up back office recurring payments. |
3782df3e | 185 | * |
fbcb6fba | 186 | * We set this to false for historical consistency but in fact most new processors use tokens for recurring and can support this |
3782df3e | 187 | * |
fbcb6fba EM |
188 | * @return bool |
189 | */ | |
d8ce0d68 | 190 | protected function supportsFutureRecurStartDate() { |
fbcb6fba EM |
191 | return FALSE; |
192 | } | |
193 | ||
6a488035 | 194 | /** |
3782df3e EM |
195 | * Default payment instrument validation. |
196 | * | |
a479fe60 | 197 | * Implement the usual Luhn algorithm via a static function in the CRM_Core_Payment_Form if it's a credit card |
3782df3e EM |
198 | * Not a static function, because I need to check for payment_type. |
199 | * | |
200 | * @param array $values | |
201 | * @param array $errors | |
a479fe60 | 202 | */ |
203 | public function validatePaymentInstrument($values, &$errors) { | |
204 | if ($this->_paymentProcessor['payment_type'] == 1) { | |
205 | CRM_Core_Payment_Form::validateCreditCard($values, $errors); | |
206 | } | |
207 | } | |
208 | ||
6a488035 | 209 | /** |
3782df3e EM |
210 | * Setter for the payment form that wants to use the processor. |
211 | * | |
43e5f0f6 | 212 | * @deprecated |
3782df3e | 213 | * |
ac32ed13 | 214 | * @param CRM_Core_Form $paymentForm |
6a488035 | 215 | */ |
00be9182 | 216 | public function setForm(&$paymentForm) { |
6a488035 TO |
217 | $this->_paymentForm = $paymentForm; |
218 | } | |
219 | ||
220 | /** | |
d09edf64 | 221 | * Getter for payment form that is using the processor. |
43e5f0f6 | 222 | * @deprecated |
16b10e64 CW |
223 | * @return CRM_Core_Form |
224 | * A form object | |
6a488035 | 225 | */ |
00be9182 | 226 | public function getForm() { |
6a488035 TO |
227 | return $this->_paymentForm; |
228 | } | |
229 | ||
230 | /** | |
d09edf64 | 231 | * Getter for accessing member vars. |
43e5f0f6 | 232 | * @todo believe this is unused |
100fef9d | 233 | * @param string $name |
dc913073 EM |
234 | * |
235 | * @return null | |
6a488035 | 236 | */ |
00be9182 | 237 | public function getVar($name) { |
6a488035 TO |
238 | return isset($this->$name) ? $this->$name : NULL; |
239 | } | |
240 | ||
dc913073 | 241 | /** |
d09edf64 | 242 | * Get name for the payment information type. |
43e5f0f6 | 243 | * @todo - use option group + name field (like Omnipay does) |
dc913073 EM |
244 | * @return string |
245 | */ | |
246 | public function getPaymentTypeName() { | |
459091e1 | 247 | return $this->_paymentProcessor['payment_type'] == 1 ? 'credit_card' : 'direct_debit'; |
dc913073 EM |
248 | } |
249 | ||
250 | /** | |
d09edf64 | 251 | * Get label for the payment information type. |
43e5f0f6 | 252 | * @todo - use option group + labels (like Omnipay does) |
dc913073 EM |
253 | * @return string |
254 | */ | |
255 | public function getPaymentTypeLabel() { | |
459091e1 | 256 | return $this->_paymentProcessor['payment_type'] == 1 ? 'Credit Card' : 'Direct Debit'; |
dc913073 EM |
257 | } |
258 | ||
44b6505d | 259 | /** |
d09edf64 | 260 | * Get array of fields that should be displayed on the payment form. |
44b6505d EM |
261 | * @todo make payment type an option value & use it in the function name - currently on debit & credit card work |
262 | * @return array | |
263 | * @throws CiviCRM_API3_Exception | |
264 | */ | |
265 | public function getPaymentFormFields() { | |
dc913073 | 266 | if ($this->_paymentProcessor['billing_mode'] == 4) { |
44b6505d EM |
267 | return array(); |
268 | } | |
269 | return $this->_paymentProcessor['payment_type'] == 1 ? $this->getCreditCardFormFields() : $this->getDirectDebitFormFields(); | |
270 | } | |
271 | ||
272 | /** | |
d09edf64 | 273 | * Get array of fields that should be displayed on the payment form for credit cards. |
dc913073 | 274 | * |
44b6505d EM |
275 | * @return array |
276 | */ | |
277 | protected function getCreditCardFormFields() { | |
278 | return array( | |
279 | 'credit_card_type', | |
280 | 'credit_card_number', | |
281 | 'cvv2', | |
282 | 'credit_card_exp_date', | |
283 | ); | |
284 | } | |
285 | ||
286 | /** | |
d09edf64 | 287 | * Get array of fields that should be displayed on the payment form for direct debits. |
dc913073 | 288 | * |
44b6505d EM |
289 | * @return array |
290 | */ | |
291 | protected function getDirectDebitFormFields() { | |
292 | return array( | |
293 | 'account_holder', | |
294 | 'bank_account_number', | |
295 | 'bank_identification_number', | |
296 | 'bank_name', | |
297 | ); | |
298 | } | |
299 | ||
dc913073 | 300 | /** |
d09edf64 | 301 | * Return an array of all the details about the fields potentially required for payment fields. |
3782df3e | 302 | * |
dc913073 EM |
303 | * Only those determined by getPaymentFormFields will actually be assigned to the form |
304 | * | |
a6c01b45 CW |
305 | * @return array |
306 | * field metadata | |
dc913073 EM |
307 | */ |
308 | public function getPaymentFormFieldsMetadata() { | |
309 | //@todo convert credit card type into an option value | |
310 | $creditCardType = array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::creditCard(); | |
311 | return array( | |
312 | 'credit_card_number' => array( | |
313 | 'htmlType' => 'text', | |
314 | 'name' => 'credit_card_number', | |
315 | 'title' => ts('Card Number'), | |
316 | 'cc_field' => TRUE, | |
317 | 'attributes' => array( | |
318 | 'size' => 20, | |
319 | 'maxlength' => 20, | |
21dfd5f5 | 320 | 'autocomplete' => 'off', |
dc913073 EM |
321 | ), |
322 | 'is_required' => TRUE, | |
323 | ), | |
324 | 'cvv2' => array( | |
325 | 'htmlType' => 'text', | |
326 | 'name' => 'cvv2', | |
327 | 'title' => ts('Security Code'), | |
328 | 'cc_field' => TRUE, | |
329 | 'attributes' => array( | |
330 | 'size' => 5, | |
331 | 'maxlength' => 10, | |
21dfd5f5 | 332 | 'autocomplete' => 'off', |
dc913073 EM |
333 | ), |
334 | 'is_required' => CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME, | |
335 | 'cvv_backoffice_required', | |
336 | NULL, | |
337 | 1 | |
338 | ), | |
339 | 'rules' => array( | |
340 | array( | |
341 | 'rule_message' => ts('Please enter a valid value for your card security code. This is usually the last 3-4 digits on the card\'s signature panel.'), | |
342 | 'rule_name' => 'integer', | |
343 | 'rule_parameters' => NULL, | |
7c550ca0 | 344 | ), |
353ffa53 | 345 | ), |
dc913073 EM |
346 | ), |
347 | 'credit_card_exp_date' => array( | |
348 | 'htmlType' => 'date', | |
349 | 'name' => 'credit_card_exp_date', | |
350 | 'title' => ts('Expiration Date'), | |
351 | 'cc_field' => TRUE, | |
352 | 'attributes' => CRM_Core_SelectValues::date('creditCard'), | |
353 | 'is_required' => TRUE, | |
354 | 'rules' => array( | |
355 | array( | |
356 | 'rule_message' => ts('Card expiration date cannot be a past date.'), | |
357 | 'rule_name' => 'currentDate', | |
358 | 'rule_parameters' => TRUE, | |
7c550ca0 | 359 | ), |
353ffa53 | 360 | ), |
dc913073 EM |
361 | ), |
362 | 'credit_card_type' => array( | |
363 | 'htmlType' => 'select', | |
364 | 'name' => 'credit_card_type', | |
365 | 'title' => ts('Card Type'), | |
366 | 'cc_field' => TRUE, | |
367 | 'attributes' => $creditCardType, | |
368 | 'is_required' => FALSE, | |
369 | ), | |
370 | 'account_holder' => array( | |
371 | 'htmlType' => 'text', | |
372 | 'name' => 'account_holder', | |
373 | 'title' => ts('Account Holder'), | |
374 | 'cc_field' => TRUE, | |
375 | 'attributes' => array( | |
376 | 'size' => 20, | |
377 | 'maxlength' => 34, | |
21dfd5f5 | 378 | 'autocomplete' => 'on', |
dc913073 EM |
379 | ), |
380 | 'is_required' => TRUE, | |
381 | ), | |
382 | //e.g. IBAN can have maxlength of 34 digits | |
383 | 'bank_account_number' => array( | |
384 | 'htmlType' => 'text', | |
385 | 'name' => 'bank_account_number', | |
386 | 'title' => ts('Bank Account Number'), | |
387 | 'cc_field' => TRUE, | |
388 | 'attributes' => array( | |
389 | 'size' => 20, | |
390 | 'maxlength' => 34, | |
21dfd5f5 | 391 | 'autocomplete' => 'off', |
dc913073 EM |
392 | ), |
393 | 'rules' => array( | |
394 | array( | |
395 | 'rule_message' => ts('Please enter a valid Bank Identification Number (value must not contain punctuation characters).'), | |
396 | 'rule_name' => 'nopunctuation', | |
397 | 'rule_parameters' => NULL, | |
7c550ca0 | 398 | ), |
353ffa53 | 399 | ), |
dc913073 EM |
400 | 'is_required' => TRUE, |
401 | ), | |
402 | //e.g. SWIFT-BIC can have maxlength of 11 digits | |
403 | 'bank_identification_number' => array( | |
404 | 'htmlType' => 'text', | |
405 | 'name' => 'bank_identification_number', | |
406 | 'title' => ts('Bank Identification Number'), | |
407 | 'cc_field' => TRUE, | |
408 | 'attributes' => array( | |
409 | 'size' => 20, | |
410 | 'maxlength' => 11, | |
21dfd5f5 | 411 | 'autocomplete' => 'off', |
dc913073 EM |
412 | ), |
413 | 'is_required' => TRUE, | |
414 | 'rules' => array( | |
415 | array( | |
416 | 'rule_message' => ts('Please enter a valid Bank Identification Number (value must not contain punctuation characters).'), | |
417 | 'rule_name' => 'nopunctuation', | |
418 | 'rule_parameters' => NULL, | |
7c550ca0 | 419 | ), |
353ffa53 | 420 | ), |
dc913073 EM |
421 | ), |
422 | 'bank_name' => array( | |
423 | 'htmlType' => 'text', | |
424 | 'name' => 'bank_name', | |
425 | 'title' => ts('Bank Name'), | |
426 | 'cc_field' => TRUE, | |
427 | 'attributes' => array( | |
428 | 'size' => 20, | |
429 | 'maxlength' => 64, | |
21dfd5f5 | 430 | 'autocomplete' => 'off', |
dc913073 EM |
431 | ), |
432 | 'is_required' => TRUE, | |
433 | ||
21dfd5f5 | 434 | ), |
dc913073 EM |
435 | ); |
436 | } | |
44b6505d | 437 | |
6a488035 | 438 | /** |
8319cf11 EM |
439 | * Calling this from outside the payment subsystem is deprecated - use doPayment. |
440 | * | |
441 | * Does a server to server payment transaction. | |
442 | * | |
443 | * Note that doPayment will throw an exception so the code may need to be modified | |
6a488035 | 444 | * |
6a0b768e TO |
445 | * @param array $params |
446 | * Assoc array of input parameters for this transaction. | |
6a488035 | 447 | * |
a6c01b45 CW |
448 | * @return array |
449 | * the result in an nice formatted array (or an error object) | |
6a488035 TO |
450 | * @abstract |
451 | */ | |
7c550ca0 | 452 | abstract protected function doDirectPayment(&$params); |
6a488035 | 453 | |
c1cc3e0c | 454 | /** |
100fef9d | 455 | * Process payment - this function wraps around both doTransferPayment and doDirectPayment |
c1cc3e0c EM |
456 | * it ensures an exception is thrown & moves some of this logic out of the form layer and makes the forms more agnostic |
457 | * | |
458 | * @param array $params | |
459 | * | |
460 | * @param $component | |
461 | * | |
a6c01b45 CW |
462 | * @return array |
463 | * (modified) | |
c1cc3e0c EM |
464 | * @throws CRM_Core_Exception |
465 | */ | |
8319cf11 | 466 | public function doPayment(&$params, $component = 'contribute') { |
c1cc3e0c EM |
467 | if ($this->_paymentProcessor['billing_mode'] == 4) { |
468 | $result = $this->doTransferCheckout($params, $component); | |
469 | } | |
470 | else { | |
471 | $result = $this->doDirectPayment($params, $component); | |
472 | } | |
473 | if (is_a($result, 'CRM_Core_Error')) { | |
474 | throw new CRM_Core_Exception(CRM_Core_Error::getMessages($result)); | |
475 | } | |
a9cf9972 | 476 | //CRM-15767 - Submit Credit Card Contribution not being saved |
477 | return $result; | |
c1cc3e0c EM |
478 | } |
479 | ||
6a488035 | 480 | /** |
d09edf64 | 481 | * This function checks to see if we have the right config values. |
6a488035 | 482 | * |
a6c01b45 CW |
483 | * @return string |
484 | * the error message if any | |
6a488035 | 485 | */ |
7c550ca0 | 486 | abstract protected function checkConfig(); |
6a488035 | 487 | |
a0ee3941 EM |
488 | /** |
489 | * @param $paymentProcessor | |
43e5f0f6 | 490 | * @todo move to paypal class or remover |
a0ee3941 EM |
491 | * @return bool |
492 | */ | |
00be9182 | 493 | public static function paypalRedirect(&$paymentProcessor) { |
6a488035 TO |
494 | if (!$paymentProcessor) { |
495 | return FALSE; | |
496 | } | |
497 | ||
498 | if (isset($_GET['payment_date']) && | |
499 | isset($_GET['merchant_return_link']) && | |
500 | CRM_Utils_Array::value('payment_status', $_GET) == 'Completed' && | |
501 | $paymentProcessor['payment_processor_type'] == "PayPal_Standard" | |
502 | ) { | |
503 | return TRUE; | |
504 | } | |
505 | ||
506 | return FALSE; | |
507 | } | |
508 | ||
509 | /** | |
43e5f0f6 | 510 | * @todo move to0 \Civi\Payment\System factory method |
6a488035 | 511 | * Page callback for civicrm/payment/ipn |
6a488035 | 512 | */ |
00be9182 | 513 | public static function handleIPN() { |
6a488035 TO |
514 | self::handlePaymentMethod( |
515 | 'PaymentNotification', | |
516 | array( | |
517 | 'processor_name' => @$_GET['processor_name'], | |
42b90e8f | 518 | 'processor_id' => @$_GET['processor_id'], |
6a488035 TO |
519 | 'mode' => @$_GET['mode'], |
520 | ) | |
521 | ); | |
160c9df2 | 522 | CRM_Utils_System::civiExit(); |
6a488035 TO |
523 | } |
524 | ||
525 | /** | |
3782df3e EM |
526 | * Payment callback handler. |
527 | * | |
528 | * The processor_name or processor_id is passed in. | |
43d1ae00 EM |
529 | * Note that processor_id is more reliable as one site may have more than one instance of a |
530 | * processor & ideally the processor will be validating the results | |
6a488035 TO |
531 | * Load requested payment processor and call that processor's handle<$method> method |
532 | * | |
3782df3e EM |
533 | * @todo move to \Civi\Payment\System factory method |
534 | * | |
535 | * @param string $method | |
536 | * 'PaymentNotification' or 'PaymentCron' | |
4691b077 | 537 | * @param array $params |
6a488035 | 538 | */ |
00be9182 | 539 | public static function handlePaymentMethod($method, $params = array()) { |
42b90e8f CB |
540 | if (!isset($params['processor_id']) && !isset($params['processor_name'])) { |
541 | CRM_Core_Error::fatal("Either 'processor_id' or 'processor_name' param is required for payment callback"); | |
6a488035 | 542 | } |
e2bef985 | 543 | self::logPaymentNotification($params); |
6a488035 | 544 | |
42b90e8f CB |
545 | $sql = "SELECT ppt.class_name, ppt.name as processor_name, pp.id AS processor_id |
546 | FROM civicrm_payment_processor_type ppt | |
547 | INNER JOIN civicrm_payment_processor pp | |
548 | ON pp.payment_processor_type_id = ppt.id | |
9ff0c7a1 | 549 | AND pp.is_active"; |
42b90e8f CB |
550 | |
551 | if (isset($params['processor_id'])) { | |
552 | $sql .= " WHERE pp.id = %2"; | |
553 | $args[2] = array($params['processor_id'], 'Integer'); | |
3782df3e | 554 | $notFound = "No active instances of payment processor ID#'{$params['processor_id']}' were found."; |
42b90e8f CB |
555 | } |
556 | else { | |
9ff0c7a1 EM |
557 | // This is called when processor_name is passed - passing processor_id instead is recommended. |
558 | $sql .= " WHERE ppt.name = %2 AND pp.is_test = %1"; | |
559 | $args[1] = array((CRM_Utils_Array::value('mode', $params) == 'test') ? 1 : 0, 'Integer'); | |
42b90e8f | 560 | $args[2] = array($params['processor_name'], 'String'); |
3782df3e | 561 | $notFound = "No active instances of the '{$params['processor_name']}' payment processor were found."; |
42b90e8f CB |
562 | } |
563 | ||
564 | $dao = CRM_Core_DAO::executeQuery($sql, $args); | |
6a488035 | 565 | |
3782df3e | 566 | // Check whether we found anything at all. |
6a488035 | 567 | if (!$dao->N) { |
3782df3e | 568 | CRM_Core_Error::fatal($notFound); |
6a488035 TO |
569 | } |
570 | ||
571 | $method = 'handle' . $method; | |
572 | $extension_instance_found = FALSE; | |
573 | ||
574 | // In all likelihood, we'll just end up with the one instance returned here. But it's | |
575 | // possible we may get more. Hence, iterate through all instances .. | |
576 | ||
577 | while ($dao->fetch()) { | |
578 | // Check pp is extension | |
579 | $ext = CRM_Extension_System::singleton()->getMapper(); | |
580 | if ($ext->isExtensionKey($dao->class_name)) { | |
6a488035 TO |
581 | $paymentClass = $ext->keyToClass($dao->class_name, 'payment'); |
582 | require_once $ext->classToPath($paymentClass); | |
583 | } | |
584 | else { | |
43d1ae00 | 585 | // Legacy or extension as module instance |
d031c654 | 586 | if (empty($paymentClass)) { |
43d1ae00 EM |
587 | $paymentClass = 'CRM_Core_' . $dao->class_name; |
588 | ||
589 | } | |
6a488035 TO |
590 | } |
591 | ||
b47b1631 | 592 | $processorInstance = Civi\Payment\System::singleton()->getById($dao->processor_id); |
6a488035 TO |
593 | |
594 | // Should never be empty - we already established this processor_id exists and is active. | |
81ebda7b | 595 | if (empty($processorInstance)) { |
6a488035 TO |
596 | continue; |
597 | } | |
598 | ||
6a488035 TO |
599 | // Does PP implement this method, and can we call it? |
600 | if (!method_exists($processorInstance, $method) || | |
601 | !is_callable(array($processorInstance, $method)) | |
602 | ) { | |
43d1ae00 EM |
603 | // on the off chance there is a double implementation of this processor we should keep looking for another |
604 | // note that passing processor_id is more reliable & we should work to deprecate processor_name | |
605 | continue; | |
6a488035 TO |
606 | } |
607 | ||
608 | // Everything, it seems, is ok - execute pp callback handler | |
609 | $processorInstance->$method(); | |
a5ef96f6 | 610 | $extension_instance_found = TRUE; |
6a488035 TO |
611 | } |
612 | ||
4f99ca55 TO |
613 | if (!$extension_instance_found) { |
614 | CRM_Core_Error::fatal( | |
615 | "No extension instances of the '{$params['processor_name']}' payment processor were found.<br />" . | |
616 | "$method method is unsupported in legacy payment processors." | |
2aa397bc TO |
617 | ); |
618 | } | |
6a488035 TO |
619 | } |
620 | ||
621 | /** | |
100fef9d | 622 | * Check whether a method is present ( & supported ) by the payment processor object. |
6a488035 | 623 | * |
6a0b768e TO |
624 | * @param string $method |
625 | * Method to check for. | |
6a488035 | 626 | * |
7c550ca0 | 627 | * @return bool |
6a488035 | 628 | */ |
00be9182 | 629 | public function isSupported($method = 'cancelSubscription') { |
6a488035 TO |
630 | return method_exists(CRM_Utils_System::getClassName($this), $method); |
631 | } | |
632 | ||
a0ee3941 | 633 | /** |
3782df3e EM |
634 | * Get url for users to manage this recurring contribution for this processor. |
635 | * | |
100fef9d | 636 | * @param int $entityID |
a0ee3941 EM |
637 | * @param null $entity |
638 | * @param string $action | |
639 | * | |
640 | * @return string | |
641 | */ | |
00be9182 | 642 | public function subscriptionURL($entityID = NULL, $entity = NULL, $action = 'cancel') { |
03cfff4c KW |
643 | // Set URL |
644 | switch ($action) { | |
2aa397bc | 645 | case 'cancel': |
03cfff4c KW |
646 | $url = 'civicrm/contribute/unsubscribe'; |
647 | break; | |
2aa397bc TO |
648 | |
649 | case 'billing': | |
03cfff4c | 650 | //in notify mode don't return the update billing url |
68acd6ae | 651 | if (!$this->isSupported('updateSubscriptionBillingInfo')) { |
03cfff4c KW |
652 | return NULL; |
653 | } | |
68acd6ae | 654 | $url = 'civicrm/contribute/updatebilling'; |
03cfff4c | 655 | break; |
2aa397bc TO |
656 | |
657 | case 'update': | |
03cfff4c KW |
658 | $url = 'civicrm/contribute/updaterecur'; |
659 | break; | |
6a488035 TO |
660 | } |
661 | ||
353ffa53 TO |
662 | $session = CRM_Core_Session::singleton(); |
663 | $userId = $session->get('userID'); | |
664 | $contactID = 0; | |
03cfff4c | 665 | $checksumValue = ''; |
353ffa53 | 666 | $entityArg = ''; |
03cfff4c KW |
667 | |
668 | // Find related Contact | |
669 | if ($entityID) { | |
670 | switch ($entity) { | |
2aa397bc | 671 | case 'membership': |
03cfff4c KW |
672 | $contactID = CRM_Core_DAO::getFieldValue("CRM_Member_DAO_Membership", $entityID, "contact_id"); |
673 | $entityArg = 'mid'; | |
674 | break; | |
675 | ||
2aa397bc | 676 | case 'contribution': |
03cfff4c KW |
677 | $contactID = CRM_Core_DAO::getFieldValue("CRM_Contribute_DAO_Contribution", $entityID, "contact_id"); |
678 | $entityArg = 'coid'; | |
679 | break; | |
680 | ||
2aa397bc | 681 | case 'recur': |
03cfff4c | 682 | $sql = " |
6a488035 TO |
683 | SELECT con.contact_id |
684 | FROM civicrm_contribution_recur rec | |
685 | INNER JOIN civicrm_contribution con ON ( con.contribution_recur_id = rec.id ) | |
686 | WHERE rec.id = %1 | |
687 | GROUP BY rec.id"; | |
03cfff4c KW |
688 | $contactID = CRM_Core_DAO::singleValueQuery($sql, array(1 => array($entityID, 'Integer'))); |
689 | $entityArg = 'crid'; | |
690 | break; | |
6a488035 | 691 | } |
6a488035 TO |
692 | } |
693 | ||
03cfff4c KW |
694 | // Add entity arguments |
695 | if ($entityArg != '') { | |
696 | // Add checksum argument | |
697 | if ($contactID != 0 && $userId != $contactID) { | |
698 | $checksumValue = '&cs=' . CRM_Contact_BAO_Contact_Utils::generateChecksum($contactID, NULL, 'inf'); | |
699 | } | |
700 | return CRM_Utils_System::url($url, "reset=1&{$entityArg}={$entityID}{$checksumValue}", TRUE, NULL, FALSE, TRUE); | |
701 | } | |
702 | ||
703 | // Else login URL | |
6a488035 TO |
704 | if ($this->isSupported('accountLoginURL')) { |
705 | return $this->accountLoginURL(); | |
706 | } | |
03cfff4c KW |
707 | |
708 | // Else default | |
6a488035 TO |
709 | return $this->_paymentProcessor['url_recur']; |
710 | } | |
96025800 | 711 | |
6a488035 | 712 | } |