@@ -156,7 +156,9 @@ public function doPayment(&$params, $component = 'contribute') {
156
156
if (!empty ($ params ['token ' ])) {
157
157
$ response = $ this ->doTokenPayment ($ params );
158
158
}
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 ' ) {
160
162
$ response = $ this ->gateway ->createCard ($ this ->getCreditCardOptions (array_merge ($ params , ['action ' => 'Purchase ' ]), $ this ->_component ))->send ();
161
163
}
162
164
else {
@@ -462,7 +464,7 @@ private function camelFieldName($fieldName) {
462
464
*
463
465
* @param array $params
464
466
*
465
- * @return array
467
+ * @return array|null
466
468
*/
467
469
private function getCreditCardObjectParams ($ params ) {
468
470
$ billingID = $ locationTypes = CRM_Core_BAO_LocationType::getBilling ();
@@ -516,6 +518,10 @@ private function getCreditCardObjectParams($params) {
516
518
}
517
519
}
518
520
}
521
+ if (empty (array_filter ($ cardFields ))) {
522
+ // sagepay hack - see https://github.com/thephpleague/omnipay-sagepay/issues/157#issuecomment-757448484
523
+ return NULL ;
524
+ }
519
525
return $ cardFields ;
520
526
}
521
527
@@ -578,7 +584,12 @@ protected function getCreditCardOptions(array $params): array {
578
584
$ creditCardOptions = array_merge ($ creditCardOptions , $ this ->getProcessorPassThroughFields ());
579
585
580
586
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
+ }
582
593
return $ creditCardOptions ;
583
594
}
584
595
0 commit comments