2017 © Pedro Peláez
 

library veritrans-php

PHP Wrapper for Veritrans VT-Web Payment API. PSR-4 compatible and fix some bugs

image

bamz3r/veritrans-php

PHP Wrapper for Veritrans VT-Web Payment API. PSR-4 compatible and fix some bugs

  • Saturday, April 7, 2018
  • by bamz3r
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 68 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

Veritrans-PHP

Enchanced version feature: - Compatible with PSR-4 autoload - Fix some bug, (*1)

If you want to use my version first remove the original of veritrans/veritrans-php and then add bamz3r/veritrans-php to your composer.json:, (*2)

{
    "require": {
        "bamz3r/veritrans-php": "dev-master"
    }
}

and run composer install on your terminal., (*3)

Original README:, (*4)

Build Status, (*5)

Veritrans is now :arrow_right: Midtrans, (*6)

Midtrans :heart: PHP!, (*7)

This is the Official PHP wrapper/library for Midtrans Payment API. Visit https://midtrans.com for more information about the product and see documentation at http://docs.midtrans.com for more technical details., (*8)

1. Installation

1.a Composer Installation

If you are using Composer, add this require line to your composer.json file:, (*9)

{
    "require": {
        "veritrans/veritrans-php": "dev-master"
    }
}

and run composer install on your terminal., (*10)

1.b Manual Instalation

If you are not using Composer, you can clone or download this repository., (*11)

2. How to Use

2.1 General Settings

// Set your Merchant Server Key
Veritrans_Config::$serverKey = '<your server key>';
// Set to Development/Sandbox Environment (default). Set to true for Production Environment (accept real transaction).
Veritrans_Config::$isProduction = false;
// Set sanitization on (default)
Veritrans_Config::$isSanitized = true;
// Set 3DS transaction for credit card to true
Veritrans_Config::$is3ds = true

2.2 Choose Product/Method

We have 3 different products of payment that you can use: - Snap - Customizable payment popup will appear on your web/app (no redirection) - VT-Web - Customer need to be redirected to payment url hosted by midtrans - Core API (VT-Direct) - Basic backend implementation, you can customize the frontend embedded on your web/app as you like (no redirection), (*12)

Choose one that you think best for your unique needs., (*13)

2.2.a Snap

You can see Snap example here., (*14)

Get Snap Token

$params = array(
    'transaction_details' => array(
      'order_id' => rand(),
      'gross_amount' => 10000,
    )
  );

$snapToken = Veritrans_Snap.getSnapToken($params);

Initialize Snap JS when customer click pay button

<html>
  <body>
    <button id="pay-button">Pay!</button>
    <pre><div id="result-json">JSON result will appear here after payment:<br></div></pre> 


    <script src="https://app.sandbox.midtrans.com/snap/snap.js" data-client-key="<Set your ClientKey here>"></script>
    <script type="text/javascript">
      document.getElementById('pay-button').onclick = function(){
        // SnapToken acquired from previous step
        snap.pay('<?=$snapToken?>', {
          // Optional
          onSuccess: function(result){
            /* You may add your own js here, this is just example */ document.getElementById('result-json').innerHTML += JSON.stringify(result, null, 2);
          },
          // Optional
          onPending: function(result){
            /* You may add your own js here, this is just example */ document.getElementById('result-json').innerHTML += JSON.stringify(result, null, 2);
          },
          // Optional
          onError: function(result){
            /* You may add your own js here, this is just example */ document.getElementById('result-json').innerHTML += JSON.stringify(result, null, 2);
          }
        });
      };
    </script>
  </body>
</html>

Implement Notification Handler

Refer to this section, (*15)

2.2.b VT-Web

You can see some VT-Web examples here., (*16)

Get Redirection URL of a Charge

$params = array(
    'transaction_details' => array(
      'order_id' => rand(),
      'gross_amount' => 10000,
    ),
    'vtweb' => array()
  );

try {
  // Redirect to Veritrans VTWeb page
  header('Location: ' . Veritrans_Vtweb::getRedirectionUrl($params));
}
catch (Exception $e) {
  echo $e->getMessage();
}

Implement Notification Handler

Refer to this section, (*17)

2.2.c Core API (VT-Direct)

You can see some VT-Direct examples here., (*18)

Set Client Key

Veritrans.client_key = "<your client key>";

Checkout Page

<html>

<head>
  <title>Checkout</title>
  <link rel="stylesheet" href="jquery.fancybox.css">
</head>

<body>
  
  
  



Checkout

Checkout

, (*19)

/ , (*20)

, (*21)

, (*22)

</body> </html>

Checkout Process

1. Create Transaction Details
$transaction_details = array(
  'order_id'    => time(),
  'gross_amount'  => 200000
);
2. Create Item Details, Billing Address, Shipping Address, and Customer Details (Optional)
// Populate items
$items = array(
    array(
      'id'       => 'item1',
      'price'    => 100000,
      'quantity' => 1,
      'name'     => 'Adidas f50'
    ),
    array(
      'id'       => 'item2',
      'price'    => 50000,
      'quantity' => 2,
      'name'     => 'Nike N90'
    ));

// Populate customer's billing address
$billing_address = array(
    'first_name'   => "Andri",
    'last_name'    => "Setiawan",
    'address'      => "Karet Belakang 15A, Setiabudi.",
    'city'         => "Jakarta",
    'postal_code'  => "51161",
    'phone'        => "081322311801",
    'country_code' => 'IDN'
  );

// Populate customer's shipping address
$shipping_address = array(
    'first_name'   => "John",
    'last_name'    => "Watson",
    'address'      => "Bakerstreet 221B.",
    'city'         => "Jakarta",
    'postal_code'  => "51162",
    'phone'        => "081322311801",
    'country_code' => 'IDN'
  );

// Populate customer's info
$customer_details = array(
    'first_name'       => "Andri",
    'last_name'        => "Setiawan",
    'email'            => "test@test.com",
    'phone'            => "081322311801",
    'billing_address'  => $billing_address,
    'shipping_address' => $shipping_address
  );
3. Get Token ID from Checkout Page
// Token ID from checkout page
$token_id = $_POST['token_id'];
4. Create Transaction Data
// Transaction data to be sent
$transaction_data = array(
    'payment_type' => 'credit_card',
    'credit_card'  => array(
      'token_id'      => $token_id,
      'bank'          => 'bni',
      'save_token_id' => isset($_POST['save_cc'])
    ),
    'transaction_details' => $transaction_details,
    'item_details'        => $items,
    'customer_details'    => $customer_details
  );
5. Charge
$response = Veritrans_VtDirect::charge($transaction_data);
6. Handle Transaction Status
// Success
if($response->transaction_status == 'capture') {
  echo "

Transaksi berhasil., (*23)

"; echo "

Status transaksi untuk order id $response->order_id: " . "$response->transaction_status, (*24)

"; echo "

Detail transaksi:

"; echo "
";
  var_dump($response);
  echo "
"; } // Deny else if($response->transaction_status == 'deny') { echo "

Transaksi ditolak., (*25)

"; echo "

Status transaksi untuk order id .$response->order_id: " . "$response->transaction_status, (*26)

"; echo "

Detail transaksi:

"; echo "
";
  var_dump($response);
  echo "
"; } // Challenge else if($response->transaction_status == 'challenge') { echo "

Transaksi challenge., (*27)

"; echo "

Status transaksi untuk order id $response->order_id: " . "$response->transaction_status, (*28)

"; echo "

Detail transaksi:

"; echo "
";
  var_dump($response);
  echo "
"; } // Error else { echo "

Terjadi kesalahan pada data transaksi yang dikirim., (*29)

"; echo "

Status message: [$response->status_code] " . "$response->status_message, (*30)

"; echo "
";
  var_dump($response);
  echo "
"; }

7. Implement Notification Handler

Refer to this section, (*31)

2.3 Handle HTTP Notification

Create separated web endpoint (notification url) to receive HTTP POST notification callback/webhook. HTTP notification will be sent whenever transaction status is changed. Example also available here, (*32)

$notif = new Veritrans_Notification();

$transaction = $notif->transaction_status;
$fraud = $notif->fraud_status;

error_log("Order ID $notif->order_id: "."transaction status = $transaction, fraud staus = $fraud");

  if ($transaction == 'capture') {
    if ($fraud == 'challenge') {
      // TODO Set payment status in merchant's database to 'challenge'
    }
    else if ($fraud == 'accept') {
      // TODO Set payment status in merchant's database to 'success'
    }
  }
  else if ($transaction == 'cancel') {
    if ($fraud == 'challenge') {
      // TODO Set payment status in merchant's database to 'failure'
    }
    else if ($fraud == 'accept') {
      // TODO Set payment status in merchant's database to 'failure'
    }
  }
  else if ($transaction == 'deny') {
      // TODO Set payment status in merchant's database to 'failure'
  }
}

2.4 Process Transaction

Get Transaction Status

$status = Veritrans_Transaction::status($orderId);
var_dump($status);

Approve Transaction

If transaction fraud_status == CHALLENGE, you can approve the transaction from Merchant Dashboard, or API :, (*33)

$approve = Veritrans_Transaction::approve($orderId);
var_dump($approve);

Cancel Transaction

You can Cancel transaction with fraud_status == CHALLENGE, or credit card transaction with transaction_status == CAPTURE (before it become SETTLEMENT), (*34)

$cancel = Veritrans_Transaction::cancel($orderId);
var_dump($cancel);

Expire Transaction

You can Expire transaction with transaction_status == PENDING (before it become SETTLEMENT or EXPIRE), (*35)

$cancel = Veritrans_Transaction::cancel($orderId);
var_dump($cancel);

Contributing

Developing e-commerce plug-ins

There are several guides that must be taken care of when you develop new plugins., (*36)

  1. Handling currency other than IDR. Veritrans v1 and v2 currently accepts payments in Indonesian Rupiah only. As a corrolary, there is a validation on the server to check whether the item prices are in integer or not. As much as you are tempted to round-off the price, DO NOT do that! Always prepare when your system uses currencies other than IDR, convert them to IDR accordingly, and only round the price AFTER that., (*37)

  2. Consider using the auto-sanitization feature., (*38)

The Versions

07/04 2018

dev-master

9999999-dev https://veritrans.co.id

PHP Wrapper for Veritrans VT-Web Payment API. PSR-4 compatible and fix some bugs

  Sources   Download

GPL-3.0

The Requires

  • php >=5.4

 

The Development Requires

by Andri Setiawan
by Alvin Litani
by Ismail Faruqi
by Bambang Riswanto

06/03 2017

dev-snap

dev-snap https://veritrans.co.id

PHP Wraper for Veritrans VT-Web Payment API.

  Sources   Download

GPL-3.0

The Requires

  • php >=5.3.0

 

The Development Requires

by Andri Setiawan
by Alvin Litani
by Ismail Faruqi

12/04 2016

dev-revert-48-snap

dev-revert-48-snap https://veritrans.co.id

PHP Wraper for Veritrans VT-Web Payment API.

  Sources   Download

GPL-3.0

The Requires

  • php >=5.3.0

 

The Development Requires

by Andri Setiawan
by Alvin Litani
by Ismail Faruqi

24/04 2015

1.0.1

1.0.1.0 https://veritrans.co.id

PHP Wraper for Veritrans VT-Web Payment API.

  Sources   Download

GPL-3.0

The Requires

  • php >=5.3.0

 

The Development Requires

by Andri Setiawan
by Alvin Litani
by Ismail Faruqi

03/03 2015

dev-tests

dev-tests https://veritrans.co.id

PHP Wraper for Veritrans VT-Web Payment API.

  Sources   Download

GPL-3.0

The Requires

  • php >=5.3.0

 

The Development Requires

by Andri Setiawan
by Alvin Litani
by Ismail Faruqi

26/01 2015

1.0.0

1.0.0.0 https://veritrans.co.id

PHP Wraper for Veritrans VT-Web Payment API.

  Sources   Download

GPL-3.0

The Requires

  • php >=5.3.0

 

The Development Requires

by Andri Setiawan
by Alvin Litani
by Ismail Faruqi

03/11 2014

dev-feature_get_status_order_ids

dev-feature_get_status_order_ids https://veritrans.co.id

PHP Wraper for Veritrans VT-Web Payment API.

  Sources   Download

The Requires

  • php >=5.3.0

 

The Development Requires

by Andri Setiawan
by Alvin Litani
by Ismail Faruqi