1
0
Forka 0
De Omnipay Plugin voor het bankproject, zodat het geïntegreerd kan worden in andere applicaties.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
Questo repository è archiviato. Puoi vedere i file e clonarli, ma non puoi effettuare richieste di pushj o aprire problemi/richieste di pull.
Christiaan Goossens a0ab203f93 Finialized plugin 7 anni fa
src Finialized plugin 7 anni fa
.gitignore Initial commit 7 anni fa
LICENSE.md Initial commit 7 anni fa
README.md Finialized plugin 7 anni fa
composer.json Initial commit 7 anni fa
composer.lock Initial commit 7 anni fa

README.md

Omnipay: Inforbank

Inforbank gateway for the Omnipay PHP payment processing library

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements Inforbank support for Omnipay.

Installation

Omnipay is installed via Composer. To install, simply add it to your composer.json file:

{
    "repositories": [
        {
            "url": "https://git.verictas.com/InformaticaD4p/omnipay-plugin.git",
            "type": "git"
        }
    ],
    "require": {
        "inforbank/omnipay-inforbank": "dev-master"
    }
}

And run composer to update your dependencies:

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update

Basic Usage

The following gateways are provided by this package:

  • Inforbank

For general usage instructions, please see the main Omnipay repository.

Example

 $gateway = \Omnipay\Omnipay::create('Inforbank');
    $gateway->initialize(array(
        'clientId' => 'PUT THE CLIENT_ID HERE',
        'clientSecret' => 'PUT THE CLIENT_SECRET HERE'
    ));

    // Start the purchase
    if (!isset($_GET['trxid']) && !isset($_GET['error'])) {
        $url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
        $response = $gateway->purchase(array(
            'amount' => "1.50",
            'description' => "Testorder #1234",
            'transactionId' => 1234,
            'returnUrl' => $url
        ))->send();

        if ($response->isRedirect()) {
            // redirect to offsite payment gateway
            $response->redirect();
        } elseif ($response->isPending()) {
            // This will never occur, because the gateway always returns a redirect to the bank pages.
            return "Pending, Reference: ". $response->getTransactionReference();
        } else {
            // payment failed: display message to customer
            return "Error " .$response->getError();
        }
    } elseif (isset($_GET['error'])) {
        echo "Error " . $_GET['error'];
    } else {
        /**
         * Because the 'status' GET parameter is present, this is a return URL request and the purchase should be completed.
         */
        // Check the status
        $response = $gateway->completePurchase()->send();
        if ($response->isSuccessful()) {
            $transaction = $response->getTransaction();
        } else {
            return "Error " .$response->getError();
        }
    }

Server response

After sending the purchaseRequest, the server at Inforbank will return a POST body with the redirect URL. After redirecting to the redirect URL, the user will interact with Inforbank. Inforbank will then, depending on user interaction and configuration, return to your application with either ?trxid={ID} or ?error={ERRORMESSAGE}.

Support

If you are having general issues with Omnipay, we suggest posting on Stack Overflow. Be sure to add the omnipay tag so it can be easily found.

If you want to keep up to date with release anouncements, discuss ideas for the project, or ask more detailed questions, there is also a mailing list which you can subscribe to.