Skip to content

Commit ed54488

Browse files
committed
Added build gateway request event
1 parent c741cd9 commit ed54488

File tree

4 files changed

+78
-1
lines changed

4 files changed

+78
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes for Omnipay integration package for Craft Commerce
22

3+
## Unreleased
4+
5+
- Added `craft\commerce\omnipay\base\Gateway::EVENT_BUILD_GATEWAY_REQUEST`.
6+
- Added `craft\commerce\omnipay\events\BuildGatewayRequestEvent`.
7+
38
## 4.1.0 - 2024-03-14
49

510
- Added Craft CMS 5 and Craft Commerce 5 compatibility.

src/base/Gateway.php

+33-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
use craft\commerce\models\payments\CreditCardPaymentForm;
1515
use craft\commerce\models\PaymentSource;
1616
use craft\commerce\models\Transaction;
17+
use craft\commerce\omnipay\events\BuildGatewayRequestEvent;
1718
use craft\commerce\omnipay\events\GatewayRequestEvent;
1819
use craft\commerce\omnipay\events\ItemBagEvent;
1920
use craft\commerce\omnipay\events\SendPaymentRequestEvent;
@@ -105,6 +106,29 @@ abstract class Gateway extends BaseGateway
105106
*/
106107
public const EVENT_BEFORE_SEND_PAYMENT_REQUEST = 'beforeSendPaymentRequest';
107108

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+
108132
/**
109133
* @var bool|string Whether cart information should be sent to the payment gateway
110134
*/
@@ -611,7 +635,15 @@ protected function createRequest(Transaction $transaction, ?BasePaymentForm $for
611635
$this->populateRequest($request, $form);
612636
}
613637

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;
615647
}
616648

617649
/**
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
/**
3+
* @link https://craftcms.com/
4+
* @copyright Copyright (c) Pixel & Tonic, Inc.
5+
* @license MIT
6+
*/
7+
8+
namespace craft\commerce\omnipay\events;
9+
10+
use craft\commerce\models\Transaction;
11+
use yii\base\Event;
12+
13+
/**
14+
* Class BuildGatewayRequestEvent
15+
*
16+
* @author Pixel & Tonic, Inc. <[email protected]>
17+
* @since 4.2.0
18+
*/
19+
class BuildGatewayRequestEvent extends Event
20+
{
21+
/**
22+
* @var Transaction The transaction being used as the base for request
23+
*/
24+
public Transaction $transaction;
25+
26+
/**
27+
* @var array The request being used
28+
*/
29+
public array $request;
30+
31+
/**
32+
* @var string|null The type of request being made
33+
*/
34+
public ?string $type = null;
35+
}

src/events/GatewayRequestEvent.php

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<?php
2+
/**
3+
* @link https://craftcms.com/
4+
* @copyright Copyright (c) Pixel & Tonic, Inc.
5+
* @license MIT
6+
*/
27

38
namespace craft\commerce\omnipay\events;
49

0 commit comments

Comments
 (0)