paypay/mbway 1.0.14

Demonstrates integration with payment gateway

Type

magento2-module

License

OSL-3.0, AFL-3.0

Requires
Requires (dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

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

  1. Package details composer.json.
  2. Module configuration details (sequence) in module.xml.
  3. 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:
  • debug enables debug mode by default, e.g log for request/response
  • active is payment active by default
  • model Payment Method Facade used for integration with Sales and Checkout modules
  • merchant_gateway_key encrypted merchant credential
  • order_status default order status
  • payment_action default action of payment
  • title default title for a payment method
  • currency supported currency
  • can_authorize whether payment method supports authorization
  • can_capture whether payment method supports capture
  • can_void whether payment method supports void
  • can_use_checkout checkout availability
  • is_gateway is an integration with gateway
  • sort_order payment method order position on checkout/system configuration pages
  • debugReplaceKeys request/response fields, which will be masked in log
  • paymentInfoKeys transaction request/response fields displayed on payment information block
  • privateInfoKeys paymentInfoKeys 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="PaypayFacade" type="Magento\Payment\Model\Method\Adapter">
    <arguments>
        <argument name="code" xsi:type="const">\Magento\Paypay\Model\Ui\ConfigProvider::CODE</argument>
        <argument name="formBlockType" xsi:type="string">Magento\Payment\Block\Form</argument>
        <argument name="infoBlockType" xsi:type="string">Magento\Paypay\Block\Info</argument>
        <argument name="valueHandlerPool" xsi:type="object">PaypayValueHandlerPool</argument>
        <argument name="commandPool" xsi:type="object">PaypayCommandPool</argument>
    </arguments>
</virtualType>
  • code Payment Method code
  • formBlockType Block 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.
  • infoBlockType Block class name, responsible for Transaction/Payment Information details rendering in Order block.
  • valueHandlerPool Value handler pool used for queries to configuration
  • commandPool Pool of Payment Gateway commands

Pools

! All Payment\Gateway provided 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="PaypayValueHandlerPool" type="Magento\Payment\Gateway\Config\ValueHandlerPool">
    <arguments>
        <argument name="handlers" xsi:type="array">
            <item name="default" xsi:type="string">PaypayConfigValueHandler</item>
        </argument>
    </arguments>
</virtualType>
<virtualType name="PaypayConfigValueHandler" type="Magento\Payment\Gateway\Config\ConfigValueHandler">
    <arguments>
        <argument name="configInterface" xsi:type="object">PaypayConfig</argument>
    </arguments>
</virtualType>
Commands

All gateway commands should be added to CommandPool instance

<!-- Commands infrastructure -->
<virtualType name="PaypayCommandPool" type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="authorize" xsi:type="string">PaypayAuthorizeCommand</item>
            <item name="capture" xsi:type="string">PaypayCaptureCommand</item>
            <item name="void" xsi:type="string">PaypayVoidCommand</item>
        </argument>
    </arguments>
</virtualType>

Example of Authorization command configuration:

<!-- Authorize command -->
<virtualType name="PaypayAuthorizeCommand" type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">PaypayAuthorizationRequest</argument>
        <argument name="handler" xsi:type="object">PaypayResponseHandlerComposite</argument>
        <argument name="transferFactory" xsi:type="object">Magento\Paypay\Gateway\Http\TransferFactory</argument>
        <argument name="client" xsi:type="object">Magento\Paypay\Gateway\Http\Client\ClientMock</argument>
    </arguments>
</virtualType>

<!-- Authorization Request -->
<virtualType name="PaypayAuthorizationRequest" type="Magento\Payment\Gateway\Request\BuilderComposite">
    <arguments>
        <argument name="builders" xsi:type="array">
            <item name="transaction" xsi:type="string">Magento\Paypay\Gateway\Request\AuthorizationRequest</item>
            <item name="mockData" xsi:type="string">Magento\Paypay\Gateway\Request\MockDataRequest</item>
        </argument>
    </arguments>
</virtualType>
<type name="Magento\Paypay\Gateway\Request\AuthorizationRequest">
    <arguments>
        <argument name="config" xsi:type="object">PaypayConfig</argument>
    </arguments>
</type>

<!-- Response handlers -->
<virtualType name="PaypayResponseHandlerComposite" type="Magento\Payment\Gateway\Response\HandlerChain">
    <arguments>
        <argument name="handlers" xsi:type="array">
            <item name="txnid" xsi:type="string">Magento\Paypay\Gateway\Response\TxnIdHandler</item>
            <item name="fraud" xsi:type="string">Magento\Paypay\Gateway\Response\FraudHandler</item>
        </argument>
    </arguments>
</virtualType>
  • PaypayAuthorizeCommand - instance of GatewayCommand provided by Payment\Gateway configured with request builders, response handlers and transfer client
  • PaypayAuthorizationRequest - Composite of request parts used for Authorization
  • PaypayResponseHandlerComposite - 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

License

Open Source License