|
14 | 14 | use craft\commerce\models\payments\CreditCardPaymentForm;
|
15 | 15 | use craft\commerce\models\PaymentSource;
|
16 | 16 | use craft\commerce\models\Transaction;
|
| 17 | +use craft\commerce\omnipay\events\BuildGatewayRequestEvent; |
17 | 18 | use craft\commerce\omnipay\events\GatewayRequestEvent;
|
18 | 19 | use craft\commerce\omnipay\events\ItemBagEvent;
|
19 | 20 | use craft\commerce\omnipay\events\SendPaymentRequestEvent;
|
@@ -105,6 +106,29 @@ abstract class Gateway extends BaseGateway
|
105 | 106 | */
|
106 | 107 | public const EVENT_BEFORE_SEND_PAYMENT_REQUEST = 'beforeSendPaymentRequest';
|
107 | 108 |
|
| 109 | + /** |
| 110 | + * @event BuildGatewayRequestEvent The event that is triggered when a gateway request is being built. |
| 111 | + * @since 4.2.0 |
| 112 | + * |
| 113 | + * Plugins get a chance to provide additional data to any request that is made in the context of paying for an order. |
| 114 | + * |
| 115 | + * There are some restrictions: |
| 116 | + * Changes to the `Transaction` model available as the `transaction` property will be ignored; |
| 117 | + * |
| 118 | + * ```php |
| 119 | + * use craft\commerce\omnipay\base\Gateway; |
| 120 | + * use craft\commerce\omnipay\events\BuildGatewayRequestEvent; |
| 121 | + * use yii\base\Event; |
| 122 | + * |
| 123 | + * Event::on(Gateway::class, Gateway::EVENT_BUILD_GATEWAY_REQUEST, function(BuildGatewayRequestEvent $e) { |
| 124 | + * if ($e->transaction->type === 'purchase') { |
| 125 | + * $e->request['someKey'] = 'some value'; |
| 126 | + * } |
| 127 | + * }); |
| 128 | + * ``` |
| 129 | + */ |
| 130 | + public const EVENT_BUILD_GATEWAY_REQUEST = 'buildGatewayRequest'; |
| 131 | + |
108 | 132 | /**
|
109 | 133 | * @var bool|string Whether cart information should be sent to the payment gateway
|
110 | 134 | */
|
@@ -611,7 +635,15 @@ protected function createRequest(Transaction $transaction, ?BasePaymentForm $for
|
611 | 635 | $this->populateRequest($request, $form);
|
612 | 636 | }
|
613 | 637 |
|
614 |
| - return $request; |
| 638 | + $event = new BuildGatewayRequestEvent([ |
| 639 | + 'transaction' => $transaction, |
| 640 | + 'request' => $request, |
| 641 | + 'type' => $transaction->type, |
| 642 | + ]); |
| 643 | + |
| 644 | + $this->trigger(self::EVENT_BUILD_GATEWAY_REQUEST, $event); |
| 645 | + |
| 646 | + return $event->request; |
615 | 647 | }
|
616 | 648 |
|
617 | 649 | /**
|
|
0 commit comments