Skip to content

Commit 6d5bd55

Browse files
Add handling for sagePay intolerance for empty card
Hopefully thephpleague/omnipay-sagepay#158 will be merged but for now SagePay assumes that an empty card is an ignore-everything-else-card Also declare support sagepay alternate function choices per thephpleague/omnipay-sagepay#157
1 parent 279badd commit 6d5bd55

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CRM/Core/Payment/OmnipayMultiProcessor.php

+14-3
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,9 @@ public function doPayment(&$params, $component = 'contribute') {
156156
if (!empty($params['token'])) {
157157
$response = $this->doTokenPayment($params);
158158
}
159-
elseif (!empty($params['is_recur'])) {
159+
// 'create_card_action' is a bit of a sagePay hack - see https://github.com/thephpleague/omnipay-sagepay/issues/157
160+
// don't rely on it being unchanged - tests & comments are your friend.
161+
elseif (!empty($params['is_recur']) && $this->getProcessorTypeMetadata('create_card_action') !== 'purchase') {
160162
$response = $this->gateway->createCard($this->getCreditCardOptions(array_merge($params, ['action' => 'Purchase']), $this->_component))->send();
161163
}
162164
else {
@@ -462,7 +464,7 @@ private function camelFieldName($fieldName) {
462464
*
463465
* @param array $params
464466
*
465-
* @return array
467+
* @return array|null
466468
*/
467469
private function getCreditCardObjectParams($params) {
468470
$billingID = $locationTypes = CRM_Core_BAO_LocationType::getBilling();
@@ -516,6 +518,10 @@ private function getCreditCardObjectParams($params) {
516518
}
517519
}
518520
}
521+
if (empty(array_filter($cardFields))) {
522+
// sagepay hack - see https://github.com/thephpleague/omnipay-sagepay/issues/157#issuecomment-757448484
523+
return NULL;
524+
}
519525
return $cardFields;
520526
}
521527

@@ -578,7 +584,12 @@ protected function getCreditCardOptions(array $params): array {
578584
$creditCardOptions = array_merge($creditCardOptions, $this->getProcessorPassThroughFields());
579585

580586
CRM_Utils_Hook::alterPaymentProcessorParams($this, $params, $creditCardOptions);
581-
$creditCardOptions['card'] = array_merge($creditCardOptions['card'], $this->getSensitiveCreditCardObjectOptions($params));
587+
// This really is a hack just for sagepay. I meant to filter all
588+
// empty but other processors expect it to be an object. Test cover exists.
589+
// https://github.com/thephpleague/omnipay-sagepay/pull/158
590+
if (!empty($creditCardOptions['card']) || !$this->getProcessorTypeMetadata('token_pay_action')) {
591+
$creditCardOptions['card'] = array_merge($creditCardOptions['card'], $this->getSensitiveCreditCardObjectOptions($params));
592+
}
582593
return $creditCardOptions;
583594
}
584595

Metadata/omnipay_Sagepay_Server.mgd.php

+3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@
7474
'ipn_processing_delay' => 0,
7575
// See https://github.com/thephpleague/omnipay-sagepay/pull/154
7676
'pass_through_fields' => ['billingForShipping' => 1],
77+
'create_card_action' => 'purchase',
78+
'token_pay_action' => 'repeatPurchase',
7779
],
7880
'params' =>
7981
[
@@ -86,6 +88,7 @@
8688
'class_name' => 'Payment_OmnipayMultiProcessor',
8789
'billing_mode' => 4,
8890
'payment_type' => 3,
91+
'is_recur' => TRUE,
8992
],
9093
],
9194
];

0 commit comments

Comments
 (0)