cool-studio / globalpayments-magento2
Demonstrates integration with payment gateway from GlobalPayments, modified for PHP8.3
Installs: 116
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 8
Type:magento2-module
pkg:composer/cool-studio/globalpayments-magento2
Requires
- php: ~8.1.0||~8.2.0||~8.3.0
- globalpayments/php-sdk: 11.0.9
- magento/framework: 103.0.*
- magento/module-checkout: 100.4.*
- magento/module-payment: 100.4.*
- magento/module-sales: 103.0.*
- magento/module-vault: 101.2.*
- psr/log: ^1 || ^2 || ^3
Requires (Dev)
- dev-main
- dev-dependabot/npm_and_yarn/multi-13dfe7d58d
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/async-3.2.6
- dev-dependabot/npm_and_yarn/multi-1a3af03914
- dev-dependabot/npm_and_yarn/multi-978db22d76
- dev-dependabot/npm_and_yarn/qs-6.5.3
- dev-dependabot/npm_and_yarn/moment-2.30.1
- dev-dependabot/npm_and_yarn/minimist-1.2.8
This package is auto-updated.
Last update: 2025-10-12 13:00:36 UTC
README
After a conversation with GlobalPayments, they did not have a timeline for supporting PHP8.3, but claimed that it should work just fine, even though you can't install it becasue of the dependency check in Composer.
Synopsis
An extension to add integration with Payment Gateway. This payment method can be restricted to work only with specific Shipping method.
Motivation
This is one of a collection of examples to demonstrate the features of Magento 2. The intent of this sample is to demonstrate how to create own Payment Gateway integration
Technical feature
Module configuration
- Package details composer.json.
- Module configuration details (sequence) in module.xml.
- Module configuration available through Stores->Configuration system.xml
Payment gateway module depends on Sales, Payment and Checkout Magento modules.
For more module configuration details, please look through module development docs.
Gateway configuration
On the next step, we might specify gateway domain configuration in config.xml.
Let's look into configuration attributes:
- debugenables debug mode by default, e.g log for request/response
- activeis payment active by default
- model- Payment Method Facadeused for integration with- Salesand- Checkoutmodules
- merchant_gateway_keyencrypted merchant credential
- order_statusdefault order status
- payment_actiondefault action of payment
- titledefault title for a payment method
- currencysupported currency
- can_authorizewhether payment method supports authorization
- can_capturewhether payment method supports capture
- can_voidwhether payment method supports void
- can_use_checkoutcheckout availability
- is_gatewayis an integration with gateway
- sort_orderpayment method order position on checkout/system configuration pages
- debugReplaceKeysrequest/response fields, which will be masked in log
- paymentInfoKeystransaction request/response fields displayed on payment information block
- privateInfoKeyspaymentInfoKeys fields which should not be displayed in customer payment information block
Dependency Injection configuration
To get more details about dependency injection configuration in Magento 2, please see DI docs.
In a case of Payment Gateway, DI configuration is used to define pools of Gateway Commands with related infrastructure and to configure Payment Method Facade (used by Sales and Checkout modules to perform commands)
Payment Method Facade configuration:
<!-- Payment Method Facade configuration --> <virtualType name="GlobalPaymentsPaymentGatewayFacade" type="Magento\Payment\Model\Method\Adapter"> <arguments> <argument name="code" xsi:type="const">\GlobalPayments\PaymentGateway\Model\Ui\ConfigProvider::CODE</argument> <argument name="formBlockType" xsi:type="string">Magento\Payment\Block\Form</argument> <argument name="infoBlockType" xsi:type="string">GlobalPayments\PaymentGateway\Block\Info</argument> <argument name="valueHandlerPool" xsi:type="object">GlobalPaymentsPaymentGatewayValueHandlerPool</argument> <argument name="commandPool" xsi:type="object">GlobalPaymentsPaymentGatewayCommandPool</argument> </arguments> </virtualType>
- codePayment Method code
- formBlockTypeBlock class name, responsible for Payment Gateway Form rendering on a checkout. Since Opepage Checkout uses knockout.js for rendering, this renderer is used only during Checkout process from Admin panel.
- infoBlockTypeBlock class name, responsible for Transaction/Payment Information details rendering in Order block.
- valueHandlerPoolValue handler pool used for queries to configuration
- commandPoolPool of Payment Gateway commands
Pools
! All
Payment\Gatewayprovided pools implementations use lazy loading for components, i.e configured with component type name instead of component object
Value Handlers
There should be at least one Value Handler with default key provided for ValueHandlerPool.
!-- Value handlers infrastructure --> <virtualType name="GlobalPaymentsPaymentGatewayValueHandlerPool" type="Magento\Payment\Gateway\Config\ValueHandlerPool"> <arguments> <argument name="handlers" xsi:type="array"> <item name="default" xsi:type="string">GlobalPaymentsPaymentGatewayConfigValueHandler</item> </argument> </arguments> </virtualType> <virtualType name="GlobalPaymentsPaymentGatewayConfigValueHandler" type="Magento\Payment\Gateway\Config\ConfigValueHandler"> <arguments> <argument name="configInterface" xsi:type="object">GlobalPaymentsPaymentGatewayConfig</argument> </arguments> </virtualType>
Commands
All gateway commands should be added to CommandPool instance
<!-- Commands infrastructure --> <virtualType name="GlobalPaymentsPaymentGatewayCommandPool" type="Magento\Payment\Gateway\Command\CommandPool"> <arguments> <argument name="commands" xsi:type="array"> <item name="authorize" xsi:type="string">GlobalPaymentsPaymentGatewayAuthorizeCommand</item> <item name="capture" xsi:type="string">GlobalPaymentsPaymentGatewayCaptureCommand</item> <item name="void" xsi:type="string">GlobalPaymentsPaymentGatewayVoidCommand</item> </argument> </arguments> </virtualType>
Example of Authorization command configuration:
<!-- Authorize command --> <virtualType name="GlobalPaymentsPaymentGatewayAuthorizeCommand" type="Magento\Payment\Gateway\Command\GatewayCommand"> <arguments> <argument name="requestBuilder" xsi:type="object">GlobalPaymentsPaymentGatewayAuthorizationRequest</argument> <argument name="handler" xsi:type="object">GlobalPaymentsPaymentGatewayResponseHandlerComposite</argument> <argument name="transferFactory" xsi:type="object">GlobalPayments\PaymentGateway\Gateway\Http\TransferFactory</argument> <argument name="client" xsi:type="object">GlobalPayments\PaymentGateway\Gateway\Http\Client\ClientMock</argument> </arguments> </virtualType> <!-- Authorization Request --> <virtualType name="GlobalPaymentsPaymentGatewayAuthorizationRequest" type="Magento\Payment\Gateway\Request\BuilderComposite"> <arguments> <argument name="builders" xsi:type="array"> <item name="transaction" xsi:type="string">GlobalPayments\PaymentGateway\Gateway\Request\AuthorizationRequest</item> <item name="mockData" xsi:type="string">GlobalPayments\PaymentGateway\Gateway\Request\MockDataRequest</item> </argument> </arguments> </virtualType> <type name="GlobalPayments\PaymentGateway\Gateway\Request\AuthorizationRequest"> <arguments> <argument name="config" xsi:type="object">GlobalPaymentsPaymentGatewayConfig</argument> </arguments> </type> <!-- Response handlers --> <virtualType name="GlobalPaymentsPaymentGatewayResponseHandlerComposite" type="Magento\Payment\Gateway\Response\HandlerChain"> <arguments> <argument name="handlers" xsi:type="array"> <item name="txnid" xsi:type="string">GlobalPayments\PaymentGateway\Gateway\Response\TxnIdHandler</item> <item name="fraud" xsi:type="string">GlobalPayments\PaymentGateway\Gateway\Response\FraudHandler</item> </argument> </arguments> </virtualType>
- GlobalPaymentsPaymentGatewayAuthorizeCommand- instance of GatewayCommand provided by- Payment\Gatewayconfigured with request builders, response handlers and transfer client
- GlobalPaymentsPaymentGatewayAuthorizationRequest- Composite of request parts used for Authorization
- GlobalPaymentsPaymentGatewayResponseHandlerComposite- Composite\List of response handlers.
Installation
This module is intended to be installed using composer. After including this component and enabling it, you can verify it is installed by going the backend at: STORES -> Configuration -> ADVANCED/Advanced -> Disable Modules Output Once there check that the module name shows up in the list to confirm that it was installed correctly.
Tests
Unit tests could be found in the Test/Unit directory.
Contributors
Magento Core team