Merge pull request #18548 from civicrm/5.30
[civicrm-core.git] / CRM / Core / Payment / PayPalImpl.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 use Civi\Payment\Exception\PaymentProcessorException;
13
14 /**
15 *
16 * @package CRM
17 * @copyright CiviCRM LLC https://civicrm.org/licensing
18 */
19
20 /**
21 * Class CRM_Core_Payment_PayPalImpl for paypal pro, paypal standard & paypal express.
22 */
23 class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment {
24 const CHARSET = 'iso-8859-1';
25
26 const PAYPAL_PRO = 'PayPal';
27 const PAYPAL_STANDARD = 'PayPal_Standard';
28 const PAYPAL_EXPRESS = 'PayPal_Express';
29
30 protected $_mode = NULL;
31
32 /**
33 * Constructor.
34 *
35 * @param string $mode
36 * The mode of operation: live or test.
37 *
38 * @param CRM_Core_Payment $paymentProcessor
39 *
40 * @return \CRM_Core_Payment_PayPalImpl
41 * @throws \Civi\Payment\Exception\PaymentProcessorException
42 */
43 public function __construct($mode, &$paymentProcessor) {
44 $this->_mode = $mode;
45 $this->_paymentProcessor = $paymentProcessor;
46 }
47
48 /**
49 * @var GuzzleHttp\Client
50 */
51 protected $guzzleClient;
52
53 /**
54 * @return \GuzzleHttp\Client
55 */
56 public function getGuzzleClient(): \GuzzleHttp\Client {
57 return $this->guzzleClient ?? new \GuzzleHttp\Client();
58 }
59
60 /**
61 * @param \GuzzleHttp\Client $guzzleClient
62 */
63 public function setGuzzleClient(\GuzzleHttp\Client $guzzleClient) {
64 $this->guzzleClient = $guzzleClient;
65 }
66
67 /**
68 * Helper function to check which payment processor type is being used.
69 *
70 * @param $typeName
71 *
72 * @return bool
73 * @throws \Civi\Payment\Exception\PaymentProcessorException
74 */
75 public function isPayPalType($typeName) {
76 // Historically payment_processor_type may have been set to the name of the processor but newer versions of CiviCRM use the id set in payment_processor_type_id
77 if (empty($this->_paymentProcessor['payment_processor_type_id']) && empty($this->_paymentProcessor['payment_processor_type'])) {
78 // We need one of them to be set!
79 throw new PaymentProcessorException('CRM_Core_Payment_PayPalImpl: Payment processor type is not defined!');
80 }
81 if (empty($this->_paymentProcessor['payment_processor_type_id']) && !empty($this->_paymentProcessor['payment_processor_type'])) {
82 // Handle legacy case where payment_processor_type was set, but payment_processor_type_id was not.
83 $this->_paymentProcessor['payment_processor_type_id']
84 = CRM_Core_PseudoConstant::getKey('CRM_Financial_BAO_PaymentProcessor', 'payment_processor_type_id', $this->_paymentProcessor['payment_processor_type']);
85 }
86 if ((int) $this->_paymentProcessor['payment_processor_type_id'] ===
87 CRM_Core_PseudoConstant::getKey('CRM_Financial_BAO_PaymentProcessor', 'payment_processor_type_id', $typeName)) {
88 return TRUE;
89 }
90 return FALSE;
91 }
92
93 /**
94 * Are back office payments supported.
95 *
96 * E.g paypal standard won't permit you to enter a credit card associated
97 * with someone else's login.
98 *
99 * @return bool
100 * @throws \Civi\Payment\Exception\PaymentProcessorException
101 */
102 protected function supportsBackOffice() {
103 if ($this->isPayPalType($this::PAYPAL_PRO)) {
104 return TRUE;
105 }
106 return FALSE;
107 }
108
109 /**
110 * Does this processor support pre-approval.
111 *
112 * This would generally look like a redirect to enter credentials which can then be used in a later payment call.
113 *
114 * Currently Paypal express supports this, with a redirect to paypal after the 'Main' form is submitted in the
115 * contribution page. This token can then be processed at the confirm phase. Although this flow 'looks' like the
116 * 'notify' flow a key difference is that in the notify flow they don't have to return but in this flow they do.
117 *
118 * @return bool
119 * @throws \Civi\Payment\Exception\PaymentProcessorException
120 */
121 protected function supportsPreApproval() {
122 if ($this->isPayPalType($this::PAYPAL_EXPRESS) || $this->isPayPalType($this::PAYPAL_PRO)) {
123 return TRUE;
124 }
125 return FALSE;
126 }
127
128 /**
129 * Opportunity for the payment processor to override the entire form build.
130 *
131 * @param CRM_Core_Form $form
132 *
133 * @return bool
134 * Should form building stop at this point?
135 * @throws \Civi\Payment\Exception\PaymentProcessorException
136 */
137 public function buildForm(&$form) {
138 if ($this->supportsPreApproval()) {
139 $this->addPaypalExpressCode($form);
140 if ($this->isPayPalType($this::PAYPAL_EXPRESS)) {
141 CRM_Core_Region::instance('billing-block-post')->add([
142 'template' => 'CRM/Financial/Form/PaypalExpress.tpl',
143 'name' => 'paypal_express',
144 ]);
145 }
146 if ($this->isPayPalType($this::PAYPAL_PRO)) {
147 CRM_Core_Region::instance('billing-block-pre')->add([
148 'template' => 'CRM/Financial/Form/PaypalPro.tpl',
149 ]);
150 }
151 }
152 return FALSE;
153 }
154
155 /**
156 * Billing mode button is basically synonymous with paypal express.
157 *
158 * This is probably a good example of 'odds & sods' code we
159 * need to find a way for the payment processor to assign.
160 *
161 * A tricky aspect is that the payment processor may need to set the order
162 *
163 * @param CRM_Core_Form $form
164 */
165 protected function addPaypalExpressCode(&$form) {
166 // @todo use $this->isBackOffice() instead, test.
167 if (empty($form->isBackOffice)) {
168
169 /**
170 * if payment method selected using ajax call then form object is of 'CRM_Financial_Form_Payment',
171 * instead of 'CRM_Contribute_Form_Contribution_Main' so it generate wrong button name
172 * and then clicking on express button it redirect to confirm screen rather than PayPal Express form
173 */
174
175 if ('CRM_Financial_Form_Payment' == get_class($form) && $form->_formName) {
176 $form->_expressButtonName = '_qf_' . $form->_formName . '_upload_express';
177 }
178 else {
179 $form->_expressButtonName = $form->getButtonName('upload', 'express');
180 }
181 $form->assign('expressButtonName', $form->_expressButtonName);
182 $form->add('xbutton', $form->_expressButtonName, ts('Pay using PayPal'), [
183 'type' => 'submit',
184 'formnovalidate' => 'formnovalidate',
185 'class' => 'crm-form-submit',
186 ]);
187 CRM_Core_Resources::singleton()->addStyle('
188 button#' . $form->_expressButtonName . '{
189 background-image: url(' . $this->_paymentProcessor['url_button'] . ');
190 color: transparent;
191 background-repeat: no-repeat;
192 background-color: transparent;
193 background-position: center;
194 min-width: 150px;
195 min-height: 50px;
196 border: none;
197 ');
198 }
199 }
200
201 /**
202 * Can recurring contributions be set against pledges.
203 *
204 * In practice all processors that use the baseIPN function to finish transactions or
205 * call the completetransaction api support this by looking up previous contributions in the
206 * series and, if there is a prior contribution against a pledge, and the pledge is not complete,
207 * adding the new payment to the pledge.
208 *
209 * However, only enabling for processors it has been tested against.
210 *
211 * @return bool
212 */
213 protected function supportsRecurContributionsForPledges() {
214 return TRUE;
215 }
216
217 /**
218 * Default payment instrument validation.
219 *
220 * Implement the usual Luhn algorithm via a static function in the CRM_Core_Payment_Form if it's a credit card
221 * Not a static function, because I need to check for payment_type.
222 *
223 * @param array $values
224 * @param array $errors
225 *
226 * @throws \Civi\Payment\Exception\PaymentProcessorException
227 */
228 public function validatePaymentInstrument($values, &$errors) {
229 if ($this->isPayPalType($this::PAYPAL_PRO) && !$this->isPaypalExpress($values)) {
230 CRM_Core_Payment_Form::validateCreditCard($values, $errors, $this->_paymentProcessor['id']);
231 CRM_Core_Form::validateMandatoryFields($this->getMandatoryFields(), $values, $errors);
232 }
233 }
234
235 /**
236 * Express checkout code.
237 *
238 * Check PayPal documentation for more information
239 *
240 * @param array $params
241 * Assoc array of input parameters for this transaction.
242 *
243 * @return array
244 * the result in an nice formatted array (or an error object)
245 * @throws \Civi\Payment\Exception\PaymentProcessorException
246 */
247 protected function setExpressCheckOut(&$params) {
248 $args = [];
249
250 $this->initialize($args, 'SetExpressCheckout');
251
252 $args['paymentAction'] = 'Sale';
253 $args['amt'] = $params['amount'];
254 $args['currencyCode'] = $params['currencyID'];
255 $args['desc'] = $params['description'] ?? NULL;
256 $args['invnum'] = $params['invoiceID'];
257 $args['returnURL'] = $this->getReturnSuccessUrl($params['qfKey']);
258 $args['cancelURL'] = $this->getCancelUrl($params['qfKey'], NULL);
259 $args['version'] = '56.0';
260 $args['SOLUTIONTYPE'] = 'Sole';
261
262 //LCD if recurring, collect additional data and set some values
263 if (!empty($params['is_recur'])) {
264 $args['L_BILLINGTYPE0'] = 'RecurringPayments';
265 //$args['L_BILLINGAGREEMENTDESCRIPTION0'] = 'Recurring Contribution';
266 $args['L_BILLINGAGREEMENTDESCRIPTION0'] = $params['amount'] . " Per " . $params['frequency_interval'] . " " . $params['frequency_unit'];
267 $args['L_PAYMENTTYPE0'] = 'Any';
268 }
269
270 // Allow further manipulation of the arguments via custom hooks ..
271 CRM_Utils_Hook::alterPaymentProcessorParams($this, $params, $args);
272
273 $result = $this->invokeAPI($args);
274
275 /* Success */
276
277 return $result['token'];
278 }
279
280 /**
281 * Get any details that may be available to the payment processor due to an approval process having happened.
282 *
283 * In some cases the browser is redirected to enter details on a processor site. Some details may be available as a
284 * result.
285 *
286 * @param array $storedDetails
287 *
288 * @return array
289 * @throws \Civi\Payment\Exception\PaymentProcessorException
290 */
291 public function getPreApprovalDetails($storedDetails) {
292 return empty($storedDetails['token']) ? [] : $this->getExpressCheckoutDetails($storedDetails['token']);
293 }
294
295 /**
296 * Get details from paypal.
297 *
298 * Check PayPal documentation for more information
299 *
300 * @param string $token
301 * The key associated with this transaction.
302 *
303 * @return array
304 * the result in an nice formatted array (or an error object)
305 * @throws \Civi\Payment\Exception\PaymentProcessorException
306 */
307 public function getExpressCheckoutDetails($token) {
308 $args = [];
309
310 $this->initialize($args, 'GetExpressCheckoutDetails');
311 $args['token'] = $token;
312 // LCD
313 $args['method'] = 'GetExpressCheckoutDetails';
314
315 $result = $this->invokeAPI($args);
316
317 /* Success */
318 $fieldMap = [
319 'token' => 'token',
320 'payer_status' => 'payerstatus',
321 'payer_id' => 'payerid',
322 'billing_first_name' => 'firstname',
323 'billing_middle_name' => 'middlename',
324 'billing_last_name' => 'lastname',
325 'street_address' => 'shiptostreet',
326 'supplemental_address_1' => 'shiptostreet2',
327 'city' => 'shiptocity',
328 'postal_code' => 'shiptozip',
329 'state_province' => 'shiptostate',
330 'country' => 'shiptocountrycode',
331 ];
332 return $this->mapPaypalParamsToCivicrmParams($fieldMap, $result);
333 }
334
335 /**
336 * Do the express checkout at paypal.
337 *
338 * Check PayPal documentation for more information
339 *
340 * @param array $params
341 *
342 * @return array
343 * The result in an nice formatted array.
344 *
345 * @throws \Civi\Payment\Exception\PaymentProcessorException
346 */
347 public function doExpressCheckout(&$params) {
348 if (!empty($params['is_recur'])) {
349 return $this->createRecurringPayments($params);
350 }
351 $args = [];
352
353 $this->initialize($args, 'DoExpressCheckoutPayment');
354 $args['token'] = $params['token'];
355 $args['paymentAction'] = 'Sale';
356 $args['amt'] = $params['amount'];
357 $args['currencyCode'] = $params['currencyID'];
358 $args['payerID'] = $params['payer_id'];
359 $args['invnum'] = $params['invoiceID'];
360 $args['returnURL'] = $this->getReturnSuccessUrl($params['qfKey']);
361 $args['cancelURL'] = $this->getCancelUrl($params['qfKey'], NULL);
362 $args['desc'] = $params['description'];
363
364 // add CiviCRM BN code
365 $args['BUTTONSOURCE'] = 'CiviCRM_SP';
366
367 $result = $this->invokeAPI($args);
368
369 /* Success */
370 $params['trxn_id'] = $result['transactionid'];
371 $params['fee_amount'] = $result['feeamt'];
372 $params['net_amount'] = $result['settleamt'] ?? NULL;
373 if ($params['net_amount'] == 0 && $params['fee_amount'] != 0) {
374 $params['net_amount'] = number_format(($params['gross_amount'] - $params['fee_amount']), 2);
375 }
376 $params['payment_status'] = $result['paymentstatus'];
377 $params['pending_reason'] = $result['pendingreason'];
378 if (!empty($params['is_recur'])) {
379 // See comment block.
380 $params['payment_status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Pending');
381 }
382 else {
383 $params['payment_status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
384 }
385 return $params;
386 }
387
388 /**
389 * Create recurring payments.
390 *
391 * Use a pre-authorisation token to activate a recurring payment profile
392 * https://developer.paypal.com/docs/classic/api/merchant/CreateRecurringPaymentsProfile_API_Operation_NVP/
393 *
394 * @param array $params
395 *
396 * @return mixed
397 * @throws \Exception
398 */
399 public function createRecurringPayments(&$params) {
400 $args = [];
401 $this->initialize($args, 'CreateRecurringPaymentsProfile');
402
403 $start_time = strtotime(date('m/d/Y'));
404 $start_date = date('Y-m-d\T00:00:00\Z', $start_time);
405
406 $args['token'] = $params['token'];
407 $args['paymentAction'] = 'Sale';
408 $args['amt'] = $params['amount'];
409 $args['currencyCode'] = $params['currencyID'];
410 $args['payerID'] = $params['payer_id'];
411 $args['invnum'] = $params['invoiceID'];
412 $args['profilestartdate'] = $start_date;
413 $args['method'] = 'CreateRecurringPaymentsProfile';
414 $args['billingfrequency'] = $params['frequency_interval'];
415 $args['billingperiod'] = ucwords($params['frequency_unit']);
416 $args['desc'] = $params['amount'] . " Per " . $params['frequency_interval'] . " " . $params['frequency_unit'];
417 $args['totalbillingcycles'] = $params['installments'] ?? NULL;
418 $args['version'] = '56.0';
419 $args['profilereference'] = "i={$params['invoiceID']}" .
420 "&m=" .
421 "&c={$params['contactID']}" .
422 "&r={$params['contributionRecurID']}" .
423 "&b={$params['contributionID']}" .
424 "&p={$params['contributionPageID']}";
425
426 // add CiviCRM BN code
427 $args['BUTTONSOURCE'] = 'CiviCRM_SP';
428
429 $result = $this->invokeAPI($args);
430
431 /* Success - result looks like"
432 * array (
433 * 'profileid' => 'I-CP1U0PLG91R2',
434 * 'profilestatus' => 'ActiveProfile',
435 * 'timestamp' => '2018-05-07T03:55:52Z',
436 * 'correlationid' => 'e717999e9bf62',
437 * 'ack' => 'Success',
438 * 'version' => '56.0',
439 * 'build' => '39949200',)
440 */
441 $params['trxn_id'] = $result['profileid'];
442 $params['payment_status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Pending');
443
444 return $params;
445 }
446
447 /**
448 * Initialise.
449 *
450 * @param $args
451 * @param $method
452 */
453 public function initialize(&$args, $method) {
454 $args['user'] = $this->_paymentProcessor['user_name'];
455 $args['pwd'] = $this->_paymentProcessor['password'];
456 $args['version'] = 3.0;
457 $args['signature'] = $this->_paymentProcessor['signature'];
458 $args['subject'] = $this->_paymentProcessor['subject'] ?? NULL;
459 $args['method'] = $method;
460 }
461
462 /**
463 * Process payment - this function wraps around both doTransferCheckout and doDirectPayment.
464 *
465 * The function ensures an exception is thrown & moves some of this logic out of the form layer and makes the forms
466 * more agnostic.
467 *
468 * Payment processors should set payment_status_id. This function adds some historical defaults ie. the
469 * assumption that if a 'doDirectPayment' processors comes back it completed the transaction & in fact
470 * doTransferCheckout would not traditionally come back.
471 *
472 * doDirectPayment does not do an immediate payment for Authorize.net or Paypal so the default is assumed
473 * to be Pending.
474 *
475 * Once this function is fully rolled out then it will be preferred for processors to throw exceptions than to
476 * return Error objects
477 *
478 * @param array $params
479 *
480 * @param string $component
481 *
482 * @return array
483 * Result array
484 *
485 * @throws \Civi\Payment\Exception\PaymentProcessorException
486 */
487 public function doPayment(&$params, $component = 'contribute') {
488 if ($this->isPayPalType($this::PAYPAL_EXPRESS) || ($this->isPayPalType($this::PAYPAL_PRO) && !empty($params['token']))) {
489 $this->_component = $component;
490 return $this->doExpressCheckout($params);
491
492 }
493 return parent::doPayment($params, $component);
494 }
495
496 /**
497 * This function collects all the information from a web/api form and invokes
498 * the relevant payment processor specific functions to perform the transaction
499 *
500 * @param array $params
501 * Assoc array of input parameters for this transaction.
502 *
503 * @param string $component
504 * @return array
505 * the result in an nice formatted array (or an error object)
506 * @throws \Civi\Payment\Exception\PaymentProcessorException
507 */
508 public function doDirectPayment(&$params, $component = 'contribute') {
509 $args = [];
510
511 $this->initialize($args, 'DoDirectPayment');
512
513 $args['paymentAction'] = 'Sale';
514 $args['amt'] = $this->getAmount($params);
515 $args['currencyCode'] = $this->getCurrency($params);
516 $args['invnum'] = $params['invoiceID'];
517 $args['ipaddress'] = $params['ip_address'];
518 $args['creditCardType'] = $params['credit_card_type'];
519 $args['acct'] = $params['credit_card_number'];
520 $args['expDate'] = sprintf('%02d', $params['month']) . $params['year'];
521 $args['cvv2'] = $params['cvv2'];
522 $args['firstName'] = $params['first_name'];
523 $args['lastName'] = $params['last_name'];
524 $args['email'] = $params['email'] ?? NULL;
525 $args['street'] = $params['street_address'];
526 $args['city'] = $params['city'];
527 $args['state'] = $params['state_province'];
528 $args['countryCode'] = $params['country'];
529 $args['zip'] = $params['postal_code'];
530 $args['desc'] = substr(CRM_Utils_Array::value('description', $params), 0, 127);
531 $args['custom'] = $params['accountingCode'] ?? NULL;
532
533 // add CiviCRM BN code
534 $args['BUTTONSOURCE'] = 'CiviCRM_SP';
535
536 if (CRM_Utils_Array::value('is_recur', $params) == 1) {
537 $start_time = strtotime(date('m/d/Y'));
538 $start_date = date('Y-m-d\T00:00:00\Z', $start_time);
539
540 $args['PaymentAction'] = 'Sale';
541 $args['billingperiod'] = ucwords($params['frequency_unit']);
542 $args['billingfrequency'] = $params['frequency_interval'];
543 $args['method'] = "CreateRecurringPaymentsProfile";
544 $args['profilestartdate'] = $start_date;
545 $args['desc'] = "" .
546 $params['description'] . ": " .
547 $params['amount'] . " Per " .
548 $params['frequency_interval'] . " " .
549 $params['frequency_unit'];
550 $args['amt'] = $this->getAmount($params);
551 $args['totalbillingcycles'] = $params['installments'] ?? NULL;
552 $args['version'] = 56.0;
553 $args['PROFILEREFERENCE'] = "" .
554 "i=" . $params['invoiceID'] . "&m=" . $component .
555 "&c=" . $params['contactID'] . "&r=" . $params['contributionRecurID'] .
556 "&b=" . $params['contributionID'] . "&p=" . $params['contributionPageID'];
557 }
558
559 // Allow further manipulation of the arguments via custom hooks ..
560 CRM_Utils_Hook::alterPaymentProcessorParams($this, $params, $args);
561
562 $result = $this->invokeAPI($args);
563
564 $params['recurr_profile_id'] = NULL;
565
566 if (CRM_Utils_Array::value('is_recur', $params) == 1) {
567 $params['recurr_profile_id'] = $result['profileid'];
568 }
569
570 /* Success */
571
572 $params['trxn_id'] = $result['transactionid'] ?? NULL;
573 $params['gross_amount'] = $result['amt'] ?? NULL;
574 $params = array_merge($params, $this->doQuery($params));
575 return $params;
576 }
577
578 /**
579 * Query payment processor for details about a transaction.
580 *
581 * For paypal see : https://developer.paypal.com/webapps/developer/docs/classic/api/merchant/GetTransactionDetails_API_Operation_NVP/
582 *
583 * @param array $params
584 * Array of parameters containing one of:
585 * - trxn_id Id of an individual transaction.
586 * - processor_id Id of a recurring contribution series as stored in the civicrm_contribution_recur table.
587 *
588 * @return array
589 * Extra parameters retrieved.
590 * Any parameters retrievable through this should be documented in the function comments at
591 * CRM_Core_Payment::doQuery. Currently
592 * - fee_amount Amount of fee paid
593 *
594 * @throws \Civi\Payment\Exception\PaymentProcessorException
595 */
596 public function doQuery($params) {
597 //CRM-18140 - trxn_id not returned for recurring paypal transaction
598 if (!empty($params['is_recur'])) {
599 return [];
600 }
601 elseif (empty($params['trxn_id'])) {
602 throw new \Civi\Payment\Exception\PaymentProcessorException('transaction id not set');
603 }
604 $args = [
605 'TRANSACTIONID' => $params['trxn_id'],
606 ];
607 $this->initialize($args, 'GetTransactionDetails');
608 $result = $this->invokeAPI($args);
609 return [
610 'fee_amount' => $result['feeamt'],
611 'net_amount' => $params['gross_amount'] - $result['feeamt'],
612 ];
613 }
614
615 /**
616 * This function checks to see if we have the right config values.
617 *
618 * @return null|string
619 * the error message if any
620 * @throws \Civi\Payment\Exception\PaymentProcessorException
621 */
622 public function checkConfig() {
623 $error = [];
624
625 if (!$this->isPayPalType($this::PAYPAL_STANDARD)) {
626 if (empty($this->_paymentProcessor['signature'])) {
627 $error[] = ts('Signature is not set in the Administer &raquo; System Settings &raquo; Payment Processors.');
628 }
629
630 if (empty($this->_paymentProcessor['password'])) {
631 $error[] = ts('Password is not set in the Administer &raquo; System Settings &raquo; Payment Processors.');
632 }
633 }
634 if (empty($this->_paymentProcessor['user_name'])) {
635 $error[] = ts('User Name is not set in the Administer &raquo; System Settings &raquo; Payment Processors.');
636 }
637
638 if (!empty($error)) {
639 return implode('<p>', $error);
640 }
641 else {
642 return NULL;
643 }
644 }
645
646 /**
647 * @return null|string
648 * @throws \Civi\Payment\Exception\PaymentProcessorException
649 */
650 public function cancelSubscriptionURL() {
651 if ($this->isPayPalType($this::PAYPAL_STANDARD)) {
652 return "{$this->_paymentProcessor['url_site']}cgi-bin/webscr?cmd=_subscr-find&alias=" . urlencode($this->_paymentProcessor['user_name']);
653 }
654 else {
655 return NULL;
656 }
657 }
658
659 /**
660 * Check whether a method is present ( & supported ) by the payment processor object.
661 *
662 * @param string $method
663 * Method to check for.
664 *
665 * @return bool
666 * @throws \Civi\Payment\Exception\PaymentProcessorException
667 */
668 public function isSupported($method) {
669 if (!$this->isPayPalType($this::PAYPAL_PRO)) {
670 // since subscription methods like cancelSubscription or updateBilling is not yet implemented / supported
671 // by standard or express.
672 return FALSE;
673 }
674 return parent::isSupported($method);
675 }
676
677 /**
678 * Paypal express replaces the submit button with it's own.
679 *
680 * @return bool
681 * Should the form button by suppressed?
682 * @throws \Civi\Payment\Exception\PaymentProcessorException
683 */
684 public function isSuppressSubmitButtons() {
685 if ($this->isPayPalType($this::PAYPAL_EXPRESS)) {
686 return TRUE;
687 }
688 return FALSE;
689 }
690
691 /**
692 * @param string $message
693 * @param array $params
694 *
695 * @return bool
696 * @throws \Civi\Payment\Exception\PaymentProcessorException
697 */
698 public function cancelSubscription(&$message = '', $params = []) {
699 if ($this->isPayPalType($this::PAYPAL_PRO) || $this->isPayPalType($this::PAYPAL_EXPRESS)) {
700 $args = [];
701 $this->initialize($args, 'ManageRecurringPaymentsProfileStatus');
702
703 $args['PROFILEID'] = $params['subscriptionId'] ?? NULL;
704 $args['ACTION'] = 'Cancel';
705 $args['NOTE'] = $params['reason'] ?? NULL;
706
707 $result = $this->invokeAPI($args);
708
709 $message = "{$result['ack']}: profileid={$result['profileid']}";
710 return TRUE;
711 }
712 return FALSE;
713 }
714
715 /**
716 * Process incoming notification.
717 *
718 * @throws \CRM_Core_Exception
719 * @throws \CiviCRM_API3_Exception
720 */
721 public function handlePaymentNotification() {
722 $params = array_merge($_GET, $_REQUEST);
723 $q = explode('/', CRM_Utils_Array::value('q', $params, ''));
724 $lastParam = array_pop($q);
725 if (is_numeric($lastParam)) {
726 $params['processor_id'] = $lastParam;
727 }
728 $result = civicrm_api3('PaymentProcessor', 'get', [
729 'sequential' => 1,
730 'id' => $params['processor_id'],
731 'api.PaymentProcessorType.getvalue' => ['return' => "name"],
732 ]);
733 if (!$result['count']) {
734 throw new CRM_Core_Exception("Could not find a processor with the given processor_id value '{$params['processor_id']}'.");
735 }
736
737 $paymentProcessorType = $result['values'][0]['api.PaymentProcessorType.getvalue'] ?? NULL;
738 switch ($paymentProcessorType) {
739 case 'PayPal':
740 // "PayPal - Website Payments Pro"
741 $paypalIPN = new CRM_Core_Payment_PayPalProIPN($params);
742 break;
743
744 case 'PayPal_Standard':
745 // "PayPal - Website Payments Standard"
746 $paypalIPN = new CRM_Core_Payment_PayPalIPN($params);
747 break;
748
749 default:
750 // If we don't have PayPal Standard or PayPal Pro, something's wrong.
751 // Log an error and exit.
752 throw new CRM_Core_Exception("The processor_id value '{$params['processor_id']}' is for a processor of type '{$paymentProcessorType}', which is invalid in this context.");
753 }
754
755 $paypalIPN->main();
756 }
757
758 /**
759 * @param string $message
760 * @param array $params
761 *
762 * @return array|bool|object
763 * @throws \Civi\Payment\Exception\PaymentProcessorException
764 */
765 public function updateSubscriptionBillingInfo(&$message = '', $params = []) {
766 if ($this->isPayPalType($this::PAYPAL_PRO)) {
767 $config = CRM_Core_Config::singleton();
768 $args = [];
769 $this->initialize($args, 'UpdateRecurringPaymentsProfile');
770
771 $args['PROFILEID'] = $params['subscriptionId'];
772 $args['AMT'] = $this->getAmount($params);
773 $args['CURRENCYCODE'] = $config->defaultCurrency;
774 $args['CREDITCARDTYPE'] = $params['credit_card_type'];
775 $args['ACCT'] = $params['credit_card_number'];
776 $args['EXPDATE'] = sprintf('%02d', $params['month']) . $params['year'];
777 $args['CVV2'] = $params['cvv2'];
778
779 $args['FIRSTNAME'] = $params['first_name'];
780 $args['LASTNAME'] = $params['last_name'];
781 $args['STREET'] = $params['street_address'];
782 $args['CITY'] = $params['city'];
783 $args['STATE'] = $params['state_province'];
784 $args['COUNTRYCODE'] = $params['postal_code'];
785 $args['ZIP'] = $params['country'];
786
787 $result = $this->invokeAPI($args);
788
789 $message = "{$result['ack']}: profileid={$result['profileid']}";
790 return TRUE;
791 }
792 return FALSE;
793 }
794
795 /**
796 * @param string $message
797 * @param array $params
798 *
799 * @return bool
800 * @throws \Civi\Payment\Exception\PaymentProcessorException
801 */
802 public function changeSubscriptionAmount(&$message = '', $params = []) {
803 if ($this->isPayPalType($this::PAYPAL_PRO)) {
804 $config = CRM_Core_Config::singleton();
805 $args = [];
806 $this->initialize($args, 'UpdateRecurringPaymentsProfile');
807
808 $args['PROFILEID'] = $params['subscriptionId'];
809 $args['AMT'] = $this->getAmount($params);
810 $args['CURRENCYCODE'] = $config->defaultCurrency;
811 $args['BILLINGFREQUENCY'] = $params['installments'];
812
813 $result = $this->invokeAPI($args);
814 CRM_Core_Error::debug_var('$result', $result);
815
816 $message = "{$result['ack']}: profileid={$result['profileid']}";
817 return TRUE;
818 }
819 return FALSE;
820 }
821
822 /**
823 * Function to action pre-approval if supported
824 *
825 * @param array $params
826 * Parameters from the form
827 *
828 * @return array
829 * - pre_approval_parameters (this will be stored on the calling form & available later)
830 * - redirect_url (if set the browser will be redirected to this.
831 * @throws \Civi\Payment\Exception\PaymentProcessorException
832 */
833 public function doPreApproval(&$params) {
834 if (!$this->isPaypalExpress($params)) {
835 return [];
836 }
837 $this->_component = $params['component'];
838 $token = $this->setExpressCheckOut($params);
839 return [
840 'pre_approval_parameters' => ['token' => $token],
841 'redirect_url' => $this->_paymentProcessor['url_site'] . "/cgi-bin/webscr?cmd=_express-checkout&token=$token",
842 ];
843 }
844
845 /**
846 * @param array $params
847 * @param string $component
848 *
849 * @throws Exception
850 */
851 public function doTransferCheckout(&$params, $component = 'contribute') {
852
853 $notifyParameters = ['module' => $component];
854 $notifyParameterMap = [
855 'contactID' => 'contactID',
856 'contributionID' => 'contributionID',
857 'eventID' => 'eventID',
858 'participantID' => 'participantID',
859 'membershipID' => 'membershipID',
860 'related_contact' => 'relatedContactID',
861 'onbehalf_dupe_alert' => 'onBehalfDupeAlert',
862 'accountingCode' => 'accountingCode',
863 'contributionRecurID' => 'contributionRecurID',
864 'contributionPageID' => 'contributionPageID',
865 ];
866 foreach ($notifyParameterMap as $paramsName => $notifyName) {
867 if (!empty($params[$paramsName])) {
868 $notifyParameters[$notifyName] = $params[$paramsName];
869 }
870 }
871 $notifyURL = $this->getNotifyUrl();
872
873 $config = CRM_Core_Config::singleton();
874 $url = ($component == 'event') ? 'civicrm/event/register' : 'civicrm/contribute/transact';
875 $cancel = ($component == 'event') ? '_qf_Register_display' : '_qf_Main_display';
876
877 $cancelUrlString = "$cancel=1&cancel=1&qfKey={$params['qfKey']}";
878 if (!empty($params['is_recur'])) {
879 $cancelUrlString .= "&isRecur=1&recurId={$params['contributionRecurID']}&contribId={$params['contributionID']}";
880 }
881
882 $cancelURL = CRM_Utils_System::url(
883 $url,
884 $cancelUrlString,
885 TRUE, NULL, FALSE
886 );
887
888 $paypalParams = [
889 'business' => $this->_paymentProcessor['user_name'],
890 'notify_url' => $notifyURL,
891 'item_name' => $this->getPaymentDescription($params, 127),
892 'quantity' => 1,
893 'undefined_quantity' => 0,
894 'cancel_return' => $cancelURL,
895 'no_note' => 1,
896 'no_shipping' => 1,
897 'return' => $this->getReturnSuccessUrl($params['qfKey']),
898 'rm' => 2,
899 'currency_code' => $params['currencyID'],
900 'invoice' => $params['invoiceID'],
901 'lc' => substr($config->lcMessages, -2),
902 'charset' => function_exists('mb_internal_encoding') ? mb_internal_encoding() : 'UTF-8',
903 'custom' => json_encode($notifyParameters),
904 'bn' => 'CiviCRM_SP',
905 ];
906
907 // add name and address if available, CRM-3130
908 $otherVars = [
909 'first_name' => 'first_name',
910 'last_name' => 'last_name',
911 'street_address' => 'address1',
912 'country' => 'country',
913 'preferred_language' => 'lc',
914 'city' => 'city',
915 'state_province' => 'state',
916 'postal_code' => 'zip',
917 'email' => 'email',
918 ];
919
920 foreach (array_keys($params) as $p) {
921 // get the base name without the location type suffixed to it
922 $parts = explode('-', $p);
923 $name = count($parts) > 1 ? $parts[0] : $p;
924 if (isset($otherVars[$name])) {
925 $value = $params[$p];
926 if ($value) {
927 if ($name == 'state_province') {
928 $stateName = CRM_Core_PseudoConstant::stateProvinceAbbreviation($value);
929 $value = $stateName;
930 }
931 if ($name == 'country') {
932 $countryName = CRM_Core_PseudoConstant::countryIsoCode($value);
933 $value = $countryName;
934 }
935 // ensure value is not an array
936 // CRM-4174
937 if (!is_array($value)) {
938 $paypalParams[$otherVars[$name]] = $value;
939 }
940 }
941 }
942 }
943
944 // if recurring donations, add a few more items
945 if (!empty($params['is_recur'])) {
946 if (!$params['contributionRecurID']) {
947 throw new CRM_Core_Exception(ts('Recurring contribution, but no database id'));
948 }
949
950 $paypalParams += [
951 'cmd' => '_xclick-subscriptions',
952 'a3' => $this->getAmount($params),
953 'p3' => $params['frequency_interval'],
954 't3' => ucfirst(substr($params['frequency_unit'], 0, 1)),
955 'src' => 1,
956 'sra' => 1,
957 'srt' => $params['installments'] ?? NULL,
958 'no_note' => 1,
959 'modify' => 0,
960 ];
961 }
962 else {
963 $paypalParams += [
964 'cmd' => '_xclick',
965 'amount' => $params['amount'],
966 ];
967 }
968
969 // Allow further manipulation of the arguments via custom hooks ..
970 CRM_Utils_Hook::alterPaymentProcessorParams($this, $params, $paypalParams);
971
972 $uri = '';
973 foreach ($paypalParams as $key => $value) {
974 if ($value === NULL) {
975 continue;
976 }
977
978 $value = urlencode($value);
979 if ($key == 'return' ||
980 $key == 'cancel_return' ||
981 $key == 'notify_url'
982 ) {
983 $value = str_replace('%2F', '/', $value);
984 }
985 $uri .= "&{$key}={$value}";
986 }
987
988 $uri = substr($uri, 1);
989 $url = $this->_paymentProcessor['url_site'];
990 $sub = empty($params['is_recur']) ? 'cgi-bin/webscr' : 'subscriptions';
991 $paypalURL = "{$url}{$sub}?$uri";
992
993 // Allow each CMS to do a pre-flight check before redirecting to PayPal.
994 CRM_Utils_System::prePostRedirect();
995
996 CRM_Utils_System::redirect($paypalURL);
997 }
998
999 /**
1000 * Hash_call: Function to perform the API call to PayPal using API signature.
1001 *
1002 * @methodName is name of API method.
1003 * @nvpStr is nvp string.
1004 * returns an associative array containing the response from the server.
1005 *
1006 * @param array $args
1007 *
1008 * @return array|object
1009 * @throws \Civi\Payment\Exception\PaymentProcessorException
1010 */
1011 public function invokeAPI($args) {
1012
1013 if (empty($this->_paymentProcessor['url_api'])) {
1014 throw new PaymentProcessorException(ts('Please set the API URL. Please refer to the documentation for more details'));
1015 }
1016
1017 $url = $this->_paymentProcessor['url_api'] . 'nvp';
1018
1019 $p = [];
1020 foreach ($args as $n => $v) {
1021 $p[] = "$n=" . urlencode($v);
1022 }
1023
1024 //NVPRequest for submitting to server
1025 $nvpreq = implode('&', $p);
1026
1027 if (!function_exists('curl_init')) {
1028 throw new PaymentProcessorException('curl functions NOT available.');
1029 }
1030
1031 $response = (string) $this->getGuzzleClient()->post($url, [
1032 'body' => $nvpreq,
1033 'curl' => [
1034 CURLOPT_RETURNTRANSFER => TRUE,
1035 CURLOPT_SSL_VERIFYPEER => Civi::settings()->get('verifySSL'),
1036 ],
1037 ])->getBody();
1038
1039 $result = self::deformat($response);
1040
1041 $outcome = strtolower($result['ack'] ?? '');
1042
1043 if ($outcome !== 'success' && $outcome !== 'successwithwarning') {
1044 throw new PaymentProcessorException("{$result['l_shortmessage0']} {$result['l_longmessage0']}");
1045 }
1046
1047 return $result;
1048 }
1049
1050 /**
1051 * This function will take NVPString and convert it to an Associative Array.
1052 *
1053 * It will decode the response. It is useful to search for a particular key and displaying arrays.
1054 *
1055 * @param string $str
1056 *
1057 * @return array
1058 */
1059 public static function deformat($str) {
1060 $result = [];
1061
1062 while (strlen($str)) {
1063 // position of key
1064 $keyPos = strpos($str, '=');
1065
1066 // position of value
1067 $valPos = strpos($str, '&') ? strpos($str, '&') : strlen($str);
1068
1069 /*getting the Key and Value values and storing in a Associative Array*/
1070
1071 $key = substr($str, 0, $keyPos);
1072 $val = substr($str, $keyPos + 1, $valPos - $keyPos - 1);
1073
1074 //decoding the respose
1075 $result[strtolower(urldecode($key))] = urldecode($val);
1076 $str = substr($str, $valPos + 1, strlen($str));
1077 }
1078
1079 return $result;
1080 }
1081
1082 /**
1083 * Get array of fields that should be displayed on the payment form.
1084 *
1085 * @return array
1086 * @throws \Civi\Payment\Exception\PaymentProcessorException
1087 */
1088 public function getPaymentFormFields() {
1089 if ($this->isPayPalType($this::PAYPAL_PRO)) {
1090 return $this->getCreditCardFormFields();
1091 }
1092 else {
1093 return [];
1094 }
1095 }
1096
1097 /**
1098 * Map the paypal params to CiviCRM params using a field map.
1099 *
1100 * @param array $fieldMap
1101 * @param array $paypalParams
1102 *
1103 * @return array
1104 */
1105 protected function mapPaypalParamsToCivicrmParams($fieldMap, $paypalParams) {
1106 $params = [];
1107 foreach ($fieldMap as $civicrmField => $paypalField) {
1108 $params[$civicrmField] = $paypalParams[$paypalField] ?? NULL;
1109 }
1110 return $params;
1111 }
1112
1113 /**
1114 * Is this being processed by payment express.
1115 *
1116 * Either because it is payment express or because is pro with paypal express in use.
1117 *
1118 * @param array $params
1119 *
1120 * @return bool
1121 * @throws \Civi\Payment\Exception\PaymentProcessorException
1122 */
1123 protected function isPaypalExpress($params) {
1124 if ($this->isPayPalType($this::PAYPAL_EXPRESS)) {
1125 return TRUE;
1126 }
1127 // This would occur postProcess.
1128 if (!empty($params['token'])) {
1129 return TRUE;
1130 }
1131 if (isset($params['button']) && stristr($params['button'], 'express')) {
1132 return TRUE;
1133 }
1134
1135 // The contribution form passes a 'button' but the event form might still set one of these fields.
1136 // @todo more standardisation & get paypal fully out of the form layer.
1137 $possibleExpressFields = [
1138 '_qf_Register_upload_express_x',
1139 '_qf_Payment_upload_express_x',
1140 '_qf_Main_upload_express',
1141 ];
1142 if (array_intersect_key($params, array_fill_keys($possibleExpressFields, 1))) {
1143 return TRUE;
1144 }
1145 return FALSE;
1146 }
1147
1148 }