Add warning when url_site is not specified for paypal (it won't work if not set)
[civicrm-core.git] / CRM / Core / Payment / PayPalImpl.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
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 |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035 11
ec022878 12use Civi\Payment\Exception\PaymentProcessorException;
13
6a488035
TO
14/**
15 *
16 * @package CRM
ca5cec67 17 * @copyright CiviCRM LLC https://civicrm.org/licensing
5fb28746
EM
18 */
19
20/**
21 * Class CRM_Core_Payment_PayPalImpl for paypal pro, paypal standard & paypal express.
6a488035
TO
22 */
23class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment {
7da04cde 24 const CHARSET = 'iso-8859-1';
6a488035 25
8acddb67 26 const PAYPAL_PRO = 'PayPal';
27 const PAYPAL_STANDARD = 'PayPal_Standard';
28 const PAYPAL_EXPRESS = 'PayPal_Express';
29
6a488035
TO
30 protected $_mode = NULL;
31
6a488035 32 /**
fe482240 33 * Constructor.
6a488035 34 *
6a0b768e
TO
35 * @param string $mode
36 * The mode of operation: live or test.
6a488035 37 *
e58c1c1a 38 * @param CRM_Core_Payment $paymentProcessor
77b97be7
EM
39 *
40 * @return \CRM_Core_Payment_PayPalImpl
8acddb67 41 * @throws \Civi\Payment\Exception\PaymentProcessorException
6a488035 42 */
00be9182 43 public function __construct($mode, &$paymentProcessor) {
6a488035
TO
44 $this->_mode = $mode;
45 $this->_paymentProcessor = $paymentProcessor;
8acddb67 46 }
6a488035 47
15912a4d 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
8acddb67 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;
6a488035
TO
91 }
92
fbcb6fba 93 /**
e58c1c1a 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 *
fbcb6fba 99 * @return bool
8acddb67 100 * @throws \Civi\Payment\Exception\PaymentProcessorException
fbcb6fba 101 */
d8ce0d68 102 protected function supportsBackOffice() {
e491d0c9 103 if ($this->isPayPalType($this::PAYPAL_PRO)) {
fbcb6fba
EM
104 return TRUE;
105 }
106 return FALSE;
107 }
353ffa53 108
3910048c
EM
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
8acddb67 119 * @throws \Civi\Payment\Exception\PaymentProcessorException
3910048c
EM
120 */
121 protected function supportsPreApproval() {
e491d0c9 122 if ($this->isPayPalType($this::PAYPAL_EXPRESS) || $this->isPayPalType($this::PAYPAL_PRO)) {
3910048c
EM
123 return TRUE;
124 }
125 return FALSE;
126 }
127
dbbd55dc
EM
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?
8acddb67 135 * @throws \Civi\Payment\Exception\PaymentProcessorException
dbbd55dc
EM
136 */
137 public function buildForm(&$form) {
aef7f33a 138 if ($this->supportsPreApproval()) {
dbbd55dc 139 $this->addPaypalExpressCode($form);
e491d0c9 140 if ($this->isPayPalType($this::PAYPAL_EXPRESS)) {
be2fb01f 141 CRM_Core_Region::instance('billing-block-post')->add([
31d31a05 142 'template' => 'CRM/Financial/Form/PaypalExpress.tpl',
aefd7f6b 143 'name' => 'paypal_express',
be2fb01f 144 ]);
31d31a05 145 }
e491d0c9 146 if ($this->isPayPalType($this::PAYPAL_PRO)) {
be2fb01f 147 CRM_Core_Region::instance('billing-block-pre')->add([
31d31a05 148 'template' => 'CRM/Financial/Form/PaypalPro.tpl',
be2fb01f 149 ]);
31d31a05 150 }
dbbd55dc
EM
151 }
152 return FALSE;
153 }
154
155 /**
e58c1c1a 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
dbbd55dc 162 *
416a7c99 163 * @param CRM_Core_Form $form
dbbd55dc 164 */
31d31a05 165 protected function addPaypalExpressCode(&$form) {
18135422 166 // @todo use $this->isBackOffice() instead, test.
dbbd55dc 167 if (empty($form->isBackOffice)) {
5f0c586e
SP
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
fb5e89bc 175 if ('CRM_Financial_Form_Payment' == get_class($form) && $form->_formName) {
5f0c586e 176 $form->_expressButtonName = '_qf_' . $form->_formName . '_upload_express';
fb5e89bc
SP
177 }
178 else {
179 $form->_expressButtonName = $form->getButtonName('upload', 'express');
180 }
dbbd55dc 181 $form->assign('expressButtonName', $form->_expressButtonName);
67afda37
SL
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 ');
dbbd55dc
EM
198 }
199 }
200
677fe56c
EM
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
8ccce14a 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
8acddb67 225 *
226 * @throws \Civi\Payment\Exception\PaymentProcessorException
8ccce14a 227 */
228 public function validatePaymentInstrument($values, &$errors) {
e491d0c9 229 if ($this->isPayPalType($this::PAYPAL_PRO) && !$this->isPaypalExpress($values)) {
06051ca4 230 CRM_Core_Payment_Form::validateCreditCard($values, $errors, $this->_paymentProcessor['id']);
c319039f 231 CRM_Core_Form::validateMandatoryFields($this->getMandatoryFields(), $values, $errors);
8ccce14a 232 }
233 }
234
6a488035 235 /**
e58c1c1a 236 * Express checkout code.
237 *
238 * Check PayPal documentation for more information
6a488035 239 *
6a0b768e
TO
240 * @param array $params
241 * Assoc array of input parameters for this transaction.
6a488035 242 *
a6c01b45
CW
243 * @return array
244 * the result in an nice formatted array (or an error object)
dbb0d30b 245 * @throws \Civi\Payment\Exception\PaymentProcessorException
6a488035 246 */
3a80832a 247 protected function setExpressCheckOut(&$params) {
be2fb01f 248 $args = [];
6a488035
TO
249
250 $this->initialize($args, 'SetExpressCheckout');
251
aefd7f6b 252 $args['paymentAction'] = 'Sale';
6a488035
TO
253 $args['amt'] = $params['amount'];
254 $args['currencyCode'] = $params['currencyID'];
9c1bc317 255 $args['desc'] = $params['description'] ?? NULL;
6a488035 256 $args['invnum'] = $params['invoiceID'];
aefd7f6b
EM
257 $args['returnURL'] = $this->getReturnSuccessUrl($params['qfKey']);
258 $args['cancelURL'] = $this->getCancelUrl($params['qfKey'], NULL);
6a488035 259 $args['version'] = '56.0';
7041ce4a 260 $args['SOLUTIONTYPE'] = 'Sole';
6a488035
TO
261
262 //LCD if recurring, collect additional data and set some values
a7488080 263 if (!empty($params['is_recur'])) {
6a488035
TO
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
6a488035
TO
275 /* Success */
276
277 return $result['token'];
278 }
279
3105efd2
EM
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
8acddb67 289 * @throws \Civi\Payment\Exception\PaymentProcessorException
3105efd2
EM
290 */
291 public function getPreApprovalDetails($storedDetails) {
be2fb01f 292 return empty($storedDetails['token']) ? [] : $this->getExpressCheckoutDetails($storedDetails['token']);
3105efd2
EM
293 }
294
6a488035 295 /**
e58c1c1a 296 * Get details from paypal.
297 *
298 * Check PayPal documentation for more information
6a488035 299 *
6a0b768e
TO
300 * @param string $token
301 * The key associated with this transaction.
6a488035 302 *
a6c01b45
CW
303 * @return array
304 * the result in an nice formatted array (or an error object)
8acddb67 305 * @throws \Civi\Payment\Exception\PaymentProcessorException
6a488035 306 */
00be9182 307 public function getExpressCheckoutDetails($token) {
be2fb01f 308 $args = [];
6a488035
TO
309
310 $this->initialize($args, 'GetExpressCheckoutDetails');
311 $args['token'] = $token;
312 // LCD
313 $args['method'] = 'GetExpressCheckoutDetails';
314
315 $result = $this->invokeAPI($args);
316
6a488035 317 /* Success */
be2fb01f 318 $fieldMap = [
933da5b5
EM
319 'token' => 'token',
320 'payer_status' => 'payerstatus',
321 'payer_id' => 'payerid',
a9b50c7c
N
322 'billing_first_name' => 'firstname',
323 'billing_middle_name' => 'middlename',
324 'billing_last_name' => 'lastname',
933da5b5
EM
325 'street_address' => 'shiptostreet',
326 'supplemental_address_1' => 'shiptostreet2',
327 'city' => 'shiptocity',
328 'postal_code' => 'shiptozip',
329 'state_province' => 'shiptostate',
330 'country' => 'shiptocountrycode',
be2fb01f 331 ];
933da5b5 332 return $this->mapPaypalParamsToCivicrmParams($fieldMap, $result);
6a488035
TO
333 }
334
335 /**
e58c1c1a 336 * Do the express checkout at paypal.
6a488035 337 *
e58c1c1a 338 * Check PayPal documentation for more information
da6b46f4 339 *
e58c1c1a 340 * @param array $params
6a488035 341 *
a6c01b45 342 * @return array
e58c1c1a 343 * The result in an nice formatted array.
344 *
345 * @throws \Civi\Payment\Exception\PaymentProcessorException
6a488035 346 */
00be9182 347 public function doExpressCheckout(&$params) {
5fb28746
EM
348 if (!empty($params['is_recur'])) {
349 return $this->createRecurringPayments($params);
350 }
be2fb01f 351 $args = [];
6a488035
TO
352
353 $this->initialize($args, 'DoExpressCheckoutPayment');
6a488035 354 $args['token'] = $params['token'];
aefd7f6b 355 $args['paymentAction'] = 'Sale';
6a488035
TO
356 $args['amt'] = $params['amount'];
357 $args['currencyCode'] = $params['currencyID'];
358 $args['payerID'] = $params['payer_id'];
359 $args['invnum'] = $params['invoiceID'];
aefd7f6b
EM
360 $args['returnURL'] = $this->getReturnSuccessUrl($params['qfKey']);
361 $args['cancelURL'] = $this->getCancelUrl($params['qfKey'], NULL);
fc7063a4 362 $args['desc'] = $params['description'];
6a488035 363
ebf695c3 364 // add CiviCRM BN code
365 $args['BUTTONSOURCE'] = 'CiviCRM_SP';
366
6a488035
TO
367 $result = $this->invokeAPI($args);
368
6a488035 369 /* Success */
6a488035 370 $params['trxn_id'] = $result['transactionid'];
6a488035 371 $params['fee_amount'] = $result['feeamt'];
9c1bc317 372 $params['net_amount'] = $result['settleamt'] ?? NULL;
6a488035 373 if ($params['net_amount'] == 0 && $params['fee_amount'] != 0) {
b26c99af 374 $params['net_amount'] = number_format(($params['gross_amount'] - $params['fee_amount']), 2);
6a488035
TO
375 }
376 $params['payment_status'] = $result['paymentstatus'];
377 $params['pending_reason'] = $result['pendingreason'];
f8453bef 378 if (!empty($params['is_recur'])) {
379 // See comment block.
455cd95d 380 $params['payment_status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Pending');
f8453bef 381 }
382 else {
455cd95d 383 $params['payment_status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
f8453bef 384 }
6a488035
TO
385 return $params;
386 }
387
6c786a9b 388 /**
e58c1c1a 389 * Create recurring payments.
390 *
8acddb67 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 *
c490a46a 394 * @param array $params
6c786a9b
EM
395 *
396 * @return mixed
8acddb67 397 * @throws \Exception
6c786a9b 398 */
00be9182 399 public function createRecurringPayments(&$params) {
be2fb01f 400 $args = [];
6a488035
TO
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'];
aefd7f6b 407 $args['paymentAction'] = 'Sale';
6a488035
TO
408 $args['amt'] = $params['amount'];
409 $args['currencyCode'] = $params['currencyID'];
410 $args['payerID'] = $params['payer_id'];
411 $args['invnum'] = $params['invoiceID'];
6a488035
TO
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'];
9c1bc317 417 $args['totalbillingcycles'] = $params['installments'] ?? NULL;
6a488035 418 $args['version'] = '56.0';
6c552737 419 $args['profilereference'] = "i={$params['invoiceID']}" .
933da5b5 420 "&m=" .
1ac462d0
DL
421 "&c={$params['contactID']}" .
422 "&r={$params['contributionRecurID']}" .
423 "&b={$params['contributionID']}" .
424 "&p={$params['contributionPageID']}";
6a488035 425
a3caf338 426 // add CiviCRM BN code
427 $args['BUTTONSOURCE'] = 'CiviCRM_SP';
428
6a488035
TO
429 $result = $this->invokeAPI($args);
430
819c0bd6 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',)
6439290e 440 */
819c0bd6 441 $params['trxn_id'] = $result['profileid'];
442 $params['payment_status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Pending');
6a488035
TO
443
444 return $params;
445 }
e58c1c1a 446
6c786a9b 447 /**
e58c1c1a 448 * Initialise.
449 *
6c786a9b
EM
450 * @param $args
451 * @param $method
452 */
00be9182 453 public function initialize(&$args, $method) {
353ffa53
TO
454 $args['user'] = $this->_paymentProcessor['user_name'];
455 $args['pwd'] = $this->_paymentProcessor['password'];
456 $args['version'] = 3.0;
6a488035 457 $args['signature'] = $this->_paymentProcessor['signature'];
9c1bc317 458 $args['subject'] = $this->_paymentProcessor['subject'] ?? NULL;
353ffa53 459 $args['method'] = $method;
6a488035 460 }
f8453bef 461
462 /**
e1268958 463 * Process payment - this function wraps around both doTransferCheckout and doDirectPayment.
f8453bef 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') {
42fcf598 488 $this->_component = $component;
e491d0c9 489 if ($this->isPayPalType($this::PAYPAL_EXPRESS) || ($this->isPayPalType($this::PAYPAL_PRO) && !empty($params['token']))) {
e58c1c1a 490 return $this->doExpressCheckout($params);
491
f8453bef 492 }
42fcf598
MW
493
494 $statuses = CRM_Contribute_BAO_Contribution::buildOptions('contribution_status_id', 'validate');
495
496 // If we have a $0 amount, skip call to processor and set payment_status to Completed.
497 // Conceivably a processor might override this - perhaps for setting up a token - but we don't
498 // have an example of that at the mome.
499 if ($params['amount'] == 0) {
500 $result['payment_status_id'] = array_search('Completed', $statuses);
501 $result['payment_status'] = 'Completed';
502 return $result;
503 }
504
505 if ($this->_paymentProcessor['billing_mode'] == 4) {
506 $this->doPaymentRedirectToPayPal($params, $component);
507 // redirect calls CiviExit() so execution is stopped
508 }
509 else {
510 $result = $this->doPaymentPayPalButton($params, $component);
511 if (is_array($result) && !isset($result['payment_status_id'])) {
512 if (!empty($params['is_recur'])) {
513 // See comment block.
514 $result['payment_status_id'] = array_search('Pending', $statuses);
515 $result['payment_status'] = 'Pending';
516 }
517 else {
518 $result['payment_status_id'] = array_search('Completed', $statuses);
519 $result['payment_status'] = 'Completed';
520 }
521 }
522 }
523 if (is_a($result, 'CRM_Core_Error')) {
524 CRM_Core_Error::deprecatedFunctionWarning('payment processors should throw exceptions rather than return errors');
525 throw new PaymentProcessorException(CRM_Core_Error::getMessages($result));
526 }
527 return $result;
f8453bef 528 }
6a488035 529
ecd36877
MW
530 /**
531 * Temporary function to catch transition to doPaymentPayPalButton()
532 * @deprecated
533 */
534 public function doDirectPayment(&$params) {
535 CRM_Core_Error::deprecatedFunctionWarning('doPayment');
536 return $this->doPaymentPayPalButton($params);
537 }
538
6a488035
TO
539 /**
540 * This function collects all the information from a web/api form and invokes
541 * the relevant payment processor specific functions to perform the transaction
542 *
6a0b768e
TO
543 * @param array $params
544 * Assoc array of input parameters for this transaction.
6a488035 545 *
da6b46f4 546 * @param string $component
a6c01b45
CW
547 * @return array
548 * the result in an nice formatted array (or an error object)
8acddb67 549 * @throws \Civi\Payment\Exception\PaymentProcessorException
6a488035 550 */
42fcf598 551 public function doPaymentPayPalButton(&$params, $component = 'contribute') {
be2fb01f 552 $args = [];
6a488035
TO
553
554 $this->initialize($args, 'DoDirectPayment');
555
aefd7f6b 556 $args['paymentAction'] = 'Sale';
88afada7 557 $args['amt'] = $this->getAmount($params);
899c09b3 558 $args['currencyCode'] = $this->getCurrency($params);
6a488035
TO
559 $args['invnum'] = $params['invoiceID'];
560 $args['ipaddress'] = $params['ip_address'];
561 $args['creditCardType'] = $params['credit_card_type'];
562 $args['acct'] = $params['credit_card_number'];
563 $args['expDate'] = sprintf('%02d', $params['month']) . $params['year'];
564 $args['cvv2'] = $params['cvv2'];
565 $args['firstName'] = $params['first_name'];
566 $args['lastName'] = $params['last_name'];
9c1bc317 567 $args['email'] = $params['email'] ?? NULL;
6a488035
TO
568 $args['street'] = $params['street_address'];
569 $args['city'] = $params['city'];
570 $args['state'] = $params['state_province'];
571 $args['countryCode'] = $params['country'];
572 $args['zip'] = $params['postal_code'];
0ab1fbfb 573 $args['desc'] = substr(CRM_Utils_Array::value('description', $params), 0, 127);
9c1bc317 574 $args['custom'] = $params['accountingCode'] ?? NULL;
6a488035 575
ebf695c3 576 // add CiviCRM BN code
577 $args['BUTTONSOURCE'] = 'CiviCRM_SP';
578
6a488035
TO
579 if (CRM_Utils_Array::value('is_recur', $params) == 1) {
580 $start_time = strtotime(date('m/d/Y'));
581 $start_date = date('Y-m-d\T00:00:00\Z', $start_time);
582
583 $args['PaymentAction'] = 'Sale';
584 $args['billingperiod'] = ucwords($params['frequency_unit']);
585 $args['billingfrequency'] = $params['frequency_interval'];
586 $args['method'] = "CreateRecurringPaymentsProfile";
587 $args['profilestartdate'] = $start_date;
6c552737 588 $args['desc'] = "" .
1ac462d0
DL
589 $params['description'] . ": " .
590 $params['amount'] . " Per " .
591 $params['frequency_interval'] . " " .
592 $params['frequency_unit'];
88afada7 593 $args['amt'] = $this->getAmount($params);
9c1bc317 594 $args['totalbillingcycles'] = $params['installments'] ?? NULL;
6a488035 595 $args['version'] = 56.0;
6c552737 596 $args['PROFILEREFERENCE'] = "" .
1ac462d0
DL
597 "i=" . $params['invoiceID'] . "&m=" . $component .
598 "&c=" . $params['contactID'] . "&r=" . $params['contributionRecurID'] .
599 "&b=" . $params['contributionID'] . "&p=" . $params['contributionPageID'];
6a488035
TO
600 }
601
602 // Allow further manipulation of the arguments via custom hooks ..
603 CRM_Utils_Hook::alterPaymentProcessorParams($this, $params, $args);
604
605 $result = $this->invokeAPI($args);
606
6a488035
TO
607 $params['recurr_profile_id'] = NULL;
608
609 if (CRM_Utils_Array::value('is_recur', $params) == 1) {
610 $params['recurr_profile_id'] = $result['profileid'];
611 }
612
613 /* Success */
614
9c1bc317
CW
615 $params['trxn_id'] = $result['transactionid'] ?? NULL;
616 $params['gross_amount'] = $result['amt'] ?? NULL;
9d2f24ee 617 $params = array_merge($params, $this->doQuery($params));
6a488035
TO
618 return $params;
619 }
620
9d2f24ee 621 /**
622 * Query payment processor for details about a transaction.
623 *
624 * For paypal see : https://developer.paypal.com/webapps/developer/docs/classic/api/merchant/GetTransactionDetails_API_Operation_NVP/
625 *
626 * @param array $params
627 * Array of parameters containing one of:
628 * - trxn_id Id of an individual transaction.
629 * - processor_id Id of a recurring contribution series as stored in the civicrm_contribution_recur table.
630 *
631 * @return array
632 * Extra parameters retrieved.
633 * Any parameters retrievable through this should be documented in the function comments at
634 * CRM_Core_Payment::doQuery. Currently
635 * - fee_amount Amount of fee paid
636 *
637 * @throws \Civi\Payment\Exception\PaymentProcessorException
638 */
639 public function doQuery($params) {
0bde274f 640 //CRM-18140 - trxn_id not returned for recurring paypal transaction
641 if (!empty($params['is_recur'])) {
be2fb01f 642 return [];
0bde274f 643 }
644 elseif (empty($params['trxn_id'])) {
9d2f24ee 645 throw new \Civi\Payment\Exception\PaymentProcessorException('transaction id not set');
646 }
be2fb01f 647 $args = [
9d2f24ee 648 'TRANSACTIONID' => $params['trxn_id'],
be2fb01f 649 ];
9d2f24ee 650 $this->initialize($args, 'GetTransactionDetails');
651 $result = $this->invokeAPI($args);
be2fb01f 652 return [
9d2f24ee 653 'fee_amount' => $result['feeamt'],
8a2a56e9 654 'net_amount' => $params['gross_amount'] - $result['feeamt'],
be2fb01f 655 ];
9d2f24ee 656 }
657
6a488035 658 /**
fe482240 659 * This function checks to see if we have the right config values.
6a488035 660 *
8acddb67 661 * @return null|string
a6c01b45 662 * the error message if any
8acddb67 663 * @throws \Civi\Payment\Exception\PaymentProcessorException
6a488035 664 */
00be9182 665 public function checkConfig() {
be2fb01f 666 $error = [];
6a488035 667
e491d0c9 668 if (!$this->isPayPalType($this::PAYPAL_STANDARD)) {
6a488035 669 if (empty($this->_paymentProcessor['signature'])) {
0501a7d6 670 $error[] = ts('Signature is not set in the Administer &raquo; System Settings &raquo; Payment Processors.');
6a488035
TO
671 }
672
673 if (empty($this->_paymentProcessor['password'])) {
0501a7d6 674 $error[] = ts('Password is not set in the Administer &raquo; System Settings &raquo; Payment Processors.');
6a488035
TO
675 }
676 }
75466733 677 if (empty($this->_paymentProcessor['user_name'])) {
1b9f9ca3
EM
678 $error[] = ts('User Name is not set in the Administer &raquo; System Settings &raquo; Payment Processors.');
679 }
8bd72809
MW
680 if ($this->isPayPalType($this::PAYPAL_STANDARD)) {
681 if (empty($this->_paymentProcessor['url_site'])) {
682 $error[] = ts('Site URL is not set (eg. https://www.paypal.com/ - https://www.sandbox.paypal.com/)');
683 }
684 }
6a488035
TO
685
686 if (!empty($error)) {
687 return implode('<p>', $error);
688 }
689 else {
690 return NULL;
691 }
692 }
693
6c786a9b 694 /**
4f2c0e2a 695 * Get url for users to manage this recurring contribution for this processor.
696 *
697 * @param int $entityID
698 * @param null $entity
699 * @param string $action
700 *
701 * @return string|null
702 * @throws \CRM_Core_Exception
6c786a9b 703 */
4f2c0e2a 704 public function subscriptionURL($entityID = NULL, $entity = NULL, $action = 'cancel') {
e491d0c9 705 if ($this->isPayPalType($this::PAYPAL_STANDARD)) {
4f2c0e2a 706 if ($action !== 'cancel') {
707 return NULL;
708 }
6a488035
TO
709 return "{$this->_paymentProcessor['url_site']}cgi-bin/webscr?cmd=_subscr-find&alias=" . urlencode($this->_paymentProcessor['user_name']);
710 }
4f2c0e2a 711 return parent::subscriptionURL($entityID, $entity, $action);
6a488035
TO
712 }
713
b5c2afd0 714 /**
100fef9d 715 * Check whether a method is present ( & supported ) by the payment processor object.
b5c2afd0 716 *
6a0b768e
TO
717 * @param string $method
718 * Method to check for.
b5c2afd0 719 *
5c766a0b 720 * @return bool
e491d0c9 721 * @throws \Civi\Payment\Exception\PaymentProcessorException
b5c2afd0 722 */
1524a007 723 public function isSupported($method) {
e491d0c9 724 if (!$this->isPayPalType($this::PAYPAL_PRO)) {
6a488035
TO
725 // since subscription methods like cancelSubscription or updateBilling is not yet implemented / supported
726 // by standard or express.
727 return FALSE;
728 }
729 return parent::isSupported($method);
730 }
731
1ba4a3aa
EM
732 /**
733 * Paypal express replaces the submit button with it's own.
734 *
735 * @return bool
736 * Should the form button by suppressed?
e491d0c9 737 * @throws \Civi\Payment\Exception\PaymentProcessorException
1ba4a3aa
EM
738 */
739 public function isSuppressSubmitButtons() {
e491d0c9 740 if ($this->isPayPalType($this::PAYPAL_EXPRESS)) {
1ba4a3aa
EM
741 return TRUE;
742 }
743 return FALSE;
744 }
745
6c786a9b
EM
746 /**
747 * @param string $message
748 * @param array $params
749 *
4ae44cc6 750 * @return bool
e491d0c9 751 * @throws \Civi\Payment\Exception\PaymentProcessorException
6c786a9b 752 */
be2fb01f 753 public function cancelSubscription(&$message = '', $params = []) {
ccc7f59c 754 if ($this->isPayPalType($this::PAYPAL_PRO) || $this->isPayPalType($this::PAYPAL_EXPRESS)) {
be2fb01f 755 $args = [];
6a488035
TO
756 $this->initialize($args, 'ManageRecurringPaymentsProfileStatus');
757
9c1bc317 758 $args['PROFILEID'] = $params['subscriptionId'] ?? NULL;
353ffa53 759 $args['ACTION'] = 'Cancel';
9c1bc317 760 $args['NOTE'] = $params['reason'] ?? NULL;
6a488035
TO
761
762 $result = $this->invokeAPI($args);
b813df8f 763
6a488035
TO
764 $message = "{$result['ack']}: profileid={$result['profileid']}";
765 return TRUE;
766 }
767 return FALSE;
768 }
769
5495e78a
EM
770 /**
771 * Process incoming notification.
e491d0c9
MW
772 *
773 * @throws \CRM_Core_Exception
774 * @throws \CiviCRM_API3_Exception
5495e78a 775 */
9645e182 776 public function handlePaymentNotification() {
ddc4b5af 777 $params = array_merge($_GET, $_REQUEST);
778 $q = explode('/', CRM_Utils_Array::value('q', $params, ''));
779 $lastParam = array_pop($q);
780 if (is_numeric($lastParam)) {
781 $params['processor_id'] = $lastParam;
782 }
be2fb01f 783 $result = civicrm_api3('PaymentProcessor', 'get', [
08e6409d
AS
784 'sequential' => 1,
785 'id' => $params['processor_id'],
be2fb01f
CW
786 'api.PaymentProcessorType.getvalue' => ['return' => "name"],
787 ]);
b501170c
AS
788 if (!$result['count']) {
789 throw new CRM_Core_Exception("Could not find a processor with the given processor_id value '{$params['processor_id']}'.");
790 }
791
9c1bc317 792 $paymentProcessorType = $result['values'][0]['api.PaymentProcessorType.getvalue'] ?? NULL;
b501170c 793 switch ($paymentProcessorType) {
08e6409d
AS
794 case 'PayPal':
795 // "PayPal - Website Payments Pro"
796 $paypalIPN = new CRM_Core_Payment_PayPalProIPN($params);
797 break;
798
799 case 'PayPal_Standard':
800 // "PayPal - Website Payments Standard"
801 $paypalIPN = new CRM_Core_Payment_PayPalIPN($params);
802 break;
803
804 default:
805 // If we don't have PayPal Standard or PayPal Pro, something's wrong.
806 // Log an error and exit.
b501170c 807 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.");
ddc4b5af 808 }
08e6409d 809
5495e78a
EM
810 $paypalIPN->main();
811 }
812
6c786a9b
EM
813 /**
814 * @param string $message
815 * @param array $params
816 *
817 * @return array|bool|object
8acddb67 818 * @throws \Civi\Payment\Exception\PaymentProcessorException
6c786a9b 819 */
be2fb01f 820 public function updateSubscriptionBillingInfo(&$message = '', $params = []) {
e491d0c9 821 if ($this->isPayPalType($this::PAYPAL_PRO)) {
6a488035 822 $config = CRM_Core_Config::singleton();
be2fb01f 823 $args = [];
6a488035
TO
824 $this->initialize($args, 'UpdateRecurringPaymentsProfile');
825
826 $args['PROFILEID'] = $params['subscriptionId'];
88afada7 827 $args['AMT'] = $this->getAmount($params);
6a488035
TO
828 $args['CURRENCYCODE'] = $config->defaultCurrency;
829 $args['CREDITCARDTYPE'] = $params['credit_card_type'];
830 $args['ACCT'] = $params['credit_card_number'];
831 $args['EXPDATE'] = sprintf('%02d', $params['month']) . $params['year'];
832 $args['CVV2'] = $params['cvv2'];
833
353ffa53
TO
834 $args['FIRSTNAME'] = $params['first_name'];
835 $args['LASTNAME'] = $params['last_name'];
836 $args['STREET'] = $params['street_address'];
837 $args['CITY'] = $params['city'];
838 $args['STATE'] = $params['state_province'];
6a488035 839 $args['COUNTRYCODE'] = $params['postal_code'];
353ffa53 840 $args['ZIP'] = $params['country'];
6a488035
TO
841
842 $result = $this->invokeAPI($args);
b813df8f 843
6a488035
TO
844 $message = "{$result['ack']}: profileid={$result['profileid']}";
845 return TRUE;
846 }
847 return FALSE;
848 }
849
6c786a9b
EM
850 /**
851 * @param string $message
852 * @param array $params
853 *
4ae44cc6 854 * @return bool
e491d0c9 855 * @throws \Civi\Payment\Exception\PaymentProcessorException
6c786a9b 856 */
be2fb01f 857 public function changeSubscriptionAmount(&$message = '', $params = []) {
e491d0c9 858 if ($this->isPayPalType($this::PAYPAL_PRO)) {
6a488035 859 $config = CRM_Core_Config::singleton();
be2fb01f 860 $args = [];
6a488035
TO
861 $this->initialize($args, 'UpdateRecurringPaymentsProfile');
862
863 $args['PROFILEID'] = $params['subscriptionId'];
88afada7 864 $args['AMT'] = $this->getAmount($params);
6a488035
TO
865 $args['CURRENCYCODE'] = $config->defaultCurrency;
866 $args['BILLINGFREQUENCY'] = $params['installments'];
867
868 $result = $this->invokeAPI($args);
869 CRM_Core_Error::debug_var('$result', $result);
b813df8f 870
6a488035
TO
871 $message = "{$result['ack']}: profileid={$result['profileid']}";
872 return TRUE;
873 }
874 return FALSE;
875 }
876
38b66756
EM
877 /**
878 * Function to action pre-approval if supported
879 *
880 * @param array $params
881 * Parameters from the form
882 *
883 * @return array
884 * - pre_approval_parameters (this will be stored on the calling form & available later)
885 * - redirect_url (if set the browser will be redirected to this.
8acddb67 886 * @throws \Civi\Payment\Exception\PaymentProcessorException
38b66756 887 */
3910048c 888 public function doPreApproval(&$params) {
1d292cf3 889 if (!$this->isPaypalExpress($params)) {
be2fb01f 890 return [];
ec022878 891 }
05c302ec 892 $this->_component = $params['component'];
3910048c 893 $token = $this->setExpressCheckOut($params);
39110928 894 $siteUrl = rtrim($this->_paymentProcessor['url_site'], '/');
be2fb01f
CW
895 return [
896 'pre_approval_parameters' => ['token' => $token],
39110928 897 'redirect_url' => $siteUrl . "/cgi-bin/webscr?cmd=_express-checkout&token=$token",
be2fb01f 898 ];
3910048c
EM
899 }
900
ecd36877
MW
901 /**
902 * Temporary function to catch transition to doPaymentRedirectToPayPal()
903 * @deprecated
904 */
905 public function doTransferCheckout(&$params, $component = 'contribute') {
906 CRM_Core_Error::deprecatedFunctionWarning('doPayment');
907 $this->doPaymentRedirectToPayPal($params);
908 }
909
6c786a9b 910 /**
c490a46a 911 * @param array $params
6c786a9b
EM
912 * @param string $component
913 *
914 * @throws Exception
915 */
42fcf598 916 public function doPaymentRedirectToPayPal(&$params, $component = 'contribute') {
be2fb01f
CW
917 $notifyParameters = ['module' => $component];
918 $notifyParameterMap = [
ddc4b5af 919 'contactID' => 'contactID',
920 'contributionID' => 'contributionID',
921 'eventID' => 'eventID',
922 'participantID' => 'participantID',
923 'membershipID' => 'membershipID',
924 'related_contact' => 'relatedContactID',
925 'onbehalf_dupe_alert' => 'onBehalfDupeAlert',
068fb0de 926 'accountingCode' => 'accountingCode',
11a4431c 927 'contributionRecurID' => 'contributionRecurID',
928 'contributionPageID' => 'contributionPageID',
be2fb01f 929 ];
ddc4b5af 930 foreach ($notifyParameterMap as $paramsName => $notifyName) {
931 if (!empty($params[$paramsName])) {
932 $notifyParameters[$notifyName] = $params[$paramsName];
6a488035
TO
933 }
934 }
ddc4b5af 935 $notifyURL = $this->getNotifyUrl();
6a488035 936
ddc4b5af 937 $config = CRM_Core_Config::singleton();
353ffa53
TO
938 $url = ($component == 'event') ? 'civicrm/event/register' : 'civicrm/contribute/transact';
939 $cancel = ($component == 'event') ? '_qf_Register_display' : '_qf_Main_display';
6a488035
TO
940
941 $cancelUrlString = "$cancel=1&cancel=1&qfKey={$params['qfKey']}";
a7488080 942 if (!empty($params['is_recur'])) {
1ac462d0 943 $cancelUrlString .= "&isRecur=1&recurId={$params['contributionRecurID']}&contribId={$params['contributionID']}";
6a488035
TO
944 }
945
1ac462d0
DL
946 $cancelURL = CRM_Utils_System::url(
947 $url,
6a488035
TO
948 $cancelUrlString,
949 TRUE, NULL, FALSE
950 );
951
be2fb01f 952 $paypalParams = [
6a488035
TO
953 'business' => $this->_paymentProcessor['user_name'],
954 'notify_url' => $notifyURL,
683538c8 955 'item_name' => $this->getPaymentDescription($params, 127),
6a488035
TO
956 'quantity' => 1,
957 'undefined_quantity' => 0,
958 'cancel_return' => $cancelURL,
959 'no_note' => 1,
960 'no_shipping' => 1,
ddc4b5af 961 'return' => $this->getReturnSuccessUrl($params['qfKey']),
6a488035
TO
962 'rm' => 2,
963 'currency_code' => $params['currencyID'],
964 'invoice' => $params['invoiceID'],
965 'lc' => substr($config->lcMessages, -2),
966 'charset' => function_exists('mb_internal_encoding') ? mb_internal_encoding() : 'UTF-8',
068fb0de 967 'custom' => json_encode($notifyParameters),
de753541 968 'bn' => 'CiviCRM_SP',
be2fb01f 969 ];
6a488035
TO
970
971 // add name and address if available, CRM-3130
be2fb01f 972 $otherVars = [
6a488035
TO
973 'first_name' => 'first_name',
974 'last_name' => 'last_name',
975 'street_address' => 'address1',
976 'country' => 'country',
977 'preferred_language' => 'lc',
978 'city' => 'city',
979 'state_province' => 'state',
980 'postal_code' => 'zip',
981 'email' => 'email',
be2fb01f 982 ];
6a488035
TO
983
984 foreach (array_keys($params) as $p) {
985 // get the base name without the location type suffixed to it
986 $parts = explode('-', $p);
987 $name = count($parts) > 1 ? $parts[0] : $p;
988 if (isset($otherVars[$name])) {
989 $value = $params[$p];
990 if ($value) {
991 if ($name == 'state_province') {
992 $stateName = CRM_Core_PseudoConstant::stateProvinceAbbreviation($value);
993 $value = $stateName;
994 }
995 if ($name == 'country') {
996 $countryName = CRM_Core_PseudoConstant::countryIsoCode($value);
997 $value = $countryName;
998 }
999 // ensure value is not an array
1000 // CRM-4174
1001 if (!is_array($value)) {
1002 $paypalParams[$otherVars[$name]] = $value;
1003 }
1004 }
1005 }
1006 }
1007
1008 // if recurring donations, add a few more items
1009 if (!empty($params['is_recur'])) {
11a4431c 1010 if (!$params['contributionRecurID']) {
2d296f18 1011 throw new CRM_Core_Exception(ts('Recurring contribution, but no database id'));
6a488035
TO
1012 }
1013
be2fb01f 1014 $paypalParams += [
6a488035 1015 'cmd' => '_xclick-subscriptions',
88afada7 1016 'a3' => $this->getAmount($params),
353ffa53
TO
1017 'p3' => $params['frequency_interval'],
1018 't3' => ucfirst(substr($params['frequency_unit'], 0, 1)),
6a488035
TO
1019 'src' => 1,
1020 'sra' => 1,
6b409353 1021 'srt' => $params['installments'] ?? NULL,
6a488035
TO
1022 'no_note' => 1,
1023 'modify' => 0,
be2fb01f 1024 ];
6a488035
TO
1025 }
1026 else {
be2fb01f 1027 $paypalParams += [
6a488035
TO
1028 'cmd' => '_xclick',
1029 'amount' => $params['amount'],
be2fb01f 1030 ];
6a488035
TO
1031 }
1032
1033 // Allow further manipulation of the arguments via custom hooks ..
1034 CRM_Utils_Hook::alterPaymentProcessorParams($this, $params, $paypalParams);
1035
9b2d484f
CW
1036 /*
1037 * PayPal urlencodes the IPN Notify URL. For sites not using Clean URLs (or
1038 * using Shortcodes in WordPress) this results in "%2F" becoming "%252F" and
1039 * therefore incomplete transactions. We need to prevent that.
1040 * @see https://lab.civicrm.org/dev/core/-/issues/1931
1041 */
1042 $paypalParams['notify_url'] = rawurldecode($paypalParams['notify_url']);
1043
6a488035
TO
1044 $uri = '';
1045 foreach ($paypalParams as $key => $value) {
1046 if ($value === NULL) {
1047 continue;
1048 }
1049
1050 $value = urlencode($value);
1051 if ($key == 'return' ||
1052 $key == 'cancel_return' ||
1053 $key == 'notify_url'
1054 ) {
1055 $value = str_replace('%2F', '/', $value);
1056 }
1057 $uri .= "&{$key}={$value}";
1058 }
1059
353ffa53
TO
1060 $uri = substr($uri, 1);
1061 $url = $this->_paymentProcessor['url_site'];
1062 $sub = empty($params['is_recur']) ? 'cgi-bin/webscr' : 'subscriptions';
6a488035
TO
1063 $paypalURL = "{$url}{$sub}?$uri";
1064
bef5923d 1065 // Allow each CMS to do a pre-flight check before redirecting to PayPal.
67a10cc4 1066 CRM_Core_Config::singleton()->userSystem->prePostRedirect();
bef5923d 1067
6a488035
TO
1068 CRM_Utils_System::redirect($paypalURL);
1069 }
1070
1071 /**
ad37ac8e 1072 * Hash_call: Function to perform the API call to PayPal using API signature.
1073 *
6a488035
TO
1074 * @methodName is name of API method.
1075 * @nvpStr is nvp string.
ad37ac8e 1076 * returns an associative array containing the response from the server.
1077 *
1078 * @param array $args
ad37ac8e 1079 *
1080 * @return array|object
5a57460f 1081 * @throws \Civi\Payment\Exception\PaymentProcessorException
6a488035 1082 */
b813df8f 1083 public function invokeAPI($args) {
6a488035 1084
b813df8f 1085 if (empty($this->_paymentProcessor['url_api'])) {
1086 throw new PaymentProcessorException(ts('Please set the API URL. Please refer to the documentation for more details'));
6a488035
TO
1087 }
1088
b813df8f 1089 $url = $this->_paymentProcessor['url_api'] . 'nvp';
1090
be2fb01f 1091 $p = [];
fa2c4d0b 1092 foreach ($args as $n => $v) {
1093 $p[] = "$n=" . urlencode($v);
1094 }
1095
1096 //NVPRequest for submitting to server
1097 $nvpreq = implode('&', $p);
1098
6a488035 1099 if (!function_exists('curl_init')) {
b813df8f 1100 throw new PaymentProcessorException('curl functions NOT available.');
6a488035
TO
1101 }
1102
15912a4d 1103 $response = (string) $this->getGuzzleClient()->post($url, [
1104 'body' => $nvpreq,
1105 'curl' => [
1106 CURLOPT_RETURNTRANSFER => TRUE,
1107 CURLOPT_SSL_VERIFYPEER => Civi::settings()->get('verifySSL'),
1108 ],
1109 ])->getBody();
6a488035 1110
6a488035
TO
1111 $result = self::deformat($response);
1112
15912a4d 1113 $outcome = strtolower($result['ack'] ?? '');
fa2c4d0b 1114
15912a4d 1115 if ($outcome !== 'success' && $outcome !== 'successwithwarning') {
abfb35ee 1116 throw new PaymentProcessorException("{$result['l_shortmessage0']} {$result['l_longmessage0']}");
6a488035
TO
1117 }
1118
1119 return $result;
1120 }
1121
be2e0c6a 1122 /**
ad37ac8e 1123 * This function will take NVPString and convert it to an Associative Array.
1124 *
1125 * It will decode the response. It is useful to search for a particular key and displaying arrays.
1126 *
1127 * @param string $str
1128 *
1129 * @return array
6a488035 1130 */
00be9182 1131 public static function deformat($str) {
be2fb01f 1132 $result = [];
6a488035
TO
1133
1134 while (strlen($str)) {
b44e3f84 1135 // position of key
6a488035
TO
1136 $keyPos = strpos($str, '=');
1137
1138 // position of value
1139 $valPos = strpos($str, '&') ? strpos($str, '&') : strlen($str);
1140
1141 /*getting the Key and Value values and storing in a Associative Array*/
1142
1143 $key = substr($str, 0, $keyPos);
1144 $val = substr($str, $keyPos + 1, $valPos - $keyPos - 1);
1145
1146 //decoding the respose
1147 $result[strtolower(urldecode($key))] = urldecode($val);
1148 $str = substr($str, $valPos + 1, strlen($str));
1149 }
1150
1151 return $result;
1152 }
96025800 1153
3cc8d80d 1154 /**
1155 * Get array of fields that should be displayed on the payment form.
1156 *
1157 * @return array
e491d0c9 1158 * @throws \Civi\Payment\Exception\PaymentProcessorException
3cc8d80d 1159 */
1160 public function getPaymentFormFields() {
e491d0c9 1161 if ($this->isPayPalType($this::PAYPAL_PRO)) {
3cc8d80d 1162 return $this->getCreditCardFormFields();
1163 }
1164 else {
be2fb01f 1165 return [];
3cc8d80d 1166 }
1167 }
1168
933da5b5
EM
1169 /**
1170 * Map the paypal params to CiviCRM params using a field map.
1171 *
1172 * @param array $fieldMap
1173 * @param array $paypalParams
1174 *
1175 * @return array
1176 */
1177 protected function mapPaypalParamsToCivicrmParams($fieldMap, $paypalParams) {
be2fb01f 1178 $params = [];
933da5b5 1179 foreach ($fieldMap as $civicrmField => $paypalField) {
2e1f50d6 1180 $params[$civicrmField] = $paypalParams[$paypalField] ?? NULL;
933da5b5
EM
1181 }
1182 return $params;
1183 }
1184
1d292cf3 1185 /**
1186 * Is this being processed by payment express.
1187 *
1188 * Either because it is payment express or because is pro with paypal express in use.
1189 *
1190 * @param array $params
1191 *
1192 * @return bool
8acddb67 1193 * @throws \Civi\Payment\Exception\PaymentProcessorException
1d292cf3 1194 */
1195 protected function isPaypalExpress($params) {
e491d0c9 1196 if ($this->isPayPalType($this::PAYPAL_EXPRESS)) {
1d292cf3 1197 return TRUE;
1198 }
1d292cf3 1199 // This would occur postProcess.
1200 if (!empty($params['token'])) {
1201 return TRUE;
1202 }
1203 if (isset($params['button']) && stristr($params['button'], 'express')) {
1204 return TRUE;
1205 }
1206
1207 // The contribution form passes a 'button' but the event form might still set one of these fields.
1208 // @todo more standardisation & get paypal fully out of the form layer.
be2fb01f 1209 $possibleExpressFields = [
ca748f0d 1210 // @todo - we think these top 2 are likely not required & it's still here
1211 // on a precautionary basis.
1212 // see https://github.com/civicrm/civicrm-core/pull/18680
1d292cf3 1213 '_qf_Register_upload_express_x',
1214 '_qf_Payment_upload_express_x',
ca748f0d 1215 '_qf_Register_upload_express',
1216 '_qf_Payment_upload_express',
67afda37 1217 '_qf_Main_upload_express',
be2fb01f 1218 ];
1d292cf3 1219 if (array_intersect_key($params, array_fill_keys($possibleExpressFields, 1))) {
1220 return TRUE;
1221 }
1222 return FALSE;
1223 }
1224
6a488035 1225}