Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Info
titleDownload the SDK

The SDK includes a sample Merchant Gateway to get you started.

Merchant Gateways must extend the MerchantGateway class and implement at least one of the four interfaces provided by the payment system, to ensure proper functionality and integration.

MerchantGateway

The MerchantGateway class is an abstract class that defines methods that all merchant gateways must implement. In addition, it implements a set of overwritable helper methods to handle common errors as well as HTTP requests, and extends the Gateway class which can be found in /installpath/components/gateways/lib/gateway.php.

The MerchantGateway class can be found in /installpath/components/gateways/lib/merchant_gateway.php.

Common Errors

When implementing merchant gateways a number of errors may occur either with validation or with processing. The MerchantGateway class provides a method called getCommonError(), which converts common error types into error response values suitable for error message passing (i.e. can be set into Input::setErrors()). You are encouraged, whenever possible, to use these common error types.

TypeUsage
card_number_invalidUse whenever a credit card number is invalid.
card_expiredUse whenever a credit card has expired.
routing_number_invalidUse whenever a routing number is invalid.
account_number_invalidUse whenever an account number is invalid.
duplicate_transactionUse whenever a duplicate transaction has been detected.
card_not_acceptedUse whenever a credit card type is not accepted.
invalid_security_codeUse whenever the credit card security code provided is invalid.
address_verification_failedUse whenever the address provided is invalid.
transaction_not_found

Use whenever processing a capture, refund, or void and the original transaction can not be found.

unsupportedUse whenever the gateway does not support the requested action (e.g. refundCc())
general

Use for all other cases.

Note
titleDeclined responses are not errors

Do not trigger an error response for declined payments, Blesta will automatically issue the appropriate error.

Setting Errors

Code Block
languagephp
$this->Input->setErrors($this->getCommonError("unsupported"));

 

Merchant Interfaces

There are four merchant gateway interfaces, each with its own unique set of method requirements. A payment gateway must implement at least one of these interfaces.

  • MerchantCc found in /installpath/components/gateways/lib/merchant_cc.php
  • MerchantAch found in /installpath/components/gateways/lib/merchant_ach.php
  • MerchantCcOffsite found in /installpath/components/gateways/lib/merchant_cc_offsite.php
  • MerchantAchOffsite found in /installpath/components/gateways/lib/merchant_ach_offsite.php

Both the MerchantCc and MerchantAch interfaces allow for the capturing, returning, and voiding of funds with account information stored within Blesta. The MerchantCc interface handles credit cards, while the MerchantAch interface handles bank account transfers.

The MerchantCcOffsite and MerchantAchOffsite interfaces allow for the capturing, returning, and voiding of funds stored with the gateway processor. In addition, these interfaces define methods allowing payment account details to be stored, updated, and removed from the gateway processor. Again, the MerchantCcOffsite interface handles credit cards, while the MerchantAchOffsite interfaces handles bank account transfers.

The following table will help identify which interfaces should be implemented for a payment gateway based upon the features of that payment processor.

Processor FeatureMerchantCcMerchantAchMerchantCcOffsiteMerchantAchOffsite
Accept Credit CardsYesNoMaybeNo
Accept Bank TransfersNoYesNoMaybe
Allow Credit Card Account StorageMaybeNoYesNo
Allow Bank Account StorageNoMaybeNoYes