Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdullahhafizh/jokul-php-library
https://github.com/abdullahhafizh/jokul-php-library
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abdullahhafizh/jokul-php-library
- Owner: abdullahhafizh
- Created: 2021-10-28T06:18:34.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-20T08:07:34.000Z (almost 2 years ago)
- Last Synced: 2024-07-23T03:28:15.980Z (4 months ago)
- Language: PHP
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jokul PHP Library
Official PHP Library for Jokul. Visit [https://jokul.doku.com](https://jokul.doku.com) for more information about the product and [https://jokul.doku.com/docs](https://jokul.doku.com/docs) for the technical documentation.
## Table of Contents
- [Payment Channels Supported](#payment-channels-supported)
- [Requirements](#requirements)
- [Installation](#installation)
- [Usage](#usage)
- [Setup Configuration](#setup-configuration)
- [Virtual Account](#virtual-account)
- [Handling HTTP Notification](#handling-http-notification)
- [Sample Project](#sample-project)
- [Help and Support](#help-and-support)## Payment Channels Supported
Virtual Account
- BCA VA
- Bank Mandiri VA
- Bank Syariah Indonesia VA
- DOKU VA## Requirements
- PHP 7.2 or above
## Installation
If you are using [Composer](https://getcomposer.org), you can install via composer CLI:
```
composer require doku/jokul-php-library
```**or**
add this require line to your `composer.json` file:
example
```json
{
"require": {
"doku/jokul-php-library": "2.1.0"
}
}
```and run `composer install` on your terminal.
## Usage
### Setup Configuration
Get your Client ID and Shared Key from Jokul Back Office. [Sandbox Jokul Back Office (for testing purpose)](https://sandbox.doku.com/bo/login) / [Production Jokul Back Office (for real payments)](https://jokul.doku.com/bo/login)
Setup your configuration:
```php
// Instantiate class
$DOKUClient = new DOKU\Client;
// Set your Client ID
$DOKUClient->setClientID('[YOUR_CLIENT_ID]');
// Set your Shared Key
$DOKUClient->setSharedKey('[YOUR_SHARED_KEY]');
// Call this function for production use
$DOKUClient->isProduction(true);
```
If you want to hit to Sandbox, change to `$DOKUClient->isProduction(false);`.### Virtual Account
First prepare your payment request data:
```php
// Setup VA payment request data
$params = array(
'customerEmail' => $arr["email"],
'customerName' => $arr["customerName"],
'amount' => $arr["amount"],
'invoiceNumber' => random_strings(20),
'expiryTime' => $arr["expiredTime"],
'info1' => $arr["info1"],
'info2' => $arr["info2"],
'info3' => $arr["info3"],
'reusableStatus' => $arr["reusableStatus"]
);
```For further details of each parameter, please refer to our [Jokul Docs](https://jokul.doku.com/docs/docs/jokul-direct/virtual-account/virtual-account-overview).
#### BCA VA
After preparing the payment request above, call this function to generate BCA VA:
```php
// Call this function to generate BCA VA
$DOKUClient->generateBcaVa($params);
```#### Bank Mandiri VA
After preparing the payment request above, call this function to generate Bank Mandiri VA:
```php
// Call this function to generate Bank Mandiri VA
$DOKUClient->generateMandiriVa($params);
```#### Bank Syariah Indonesia VA
After preparing the payment request above, call this function to generate Bank Syariah Indonesia VA:
```php
// Call this function to generate Bank Syariah Indonesia VA
$DOKUClient->generateBsiVa($params);
```#### DOKU VA
After preparing the payment request above, call this function to generate DOKU VA:
```php
// Call this function to generate DOKU VA
$DOKUClient->generateDokuVa($params);
```### Handling HTTP Notification
For async payment from these channels:
- Virtual Account
We will send the HTTP Notification after the payment made from your customers. Therefore, you will need to handle the notification to update the transaction status on your end. Here is the steps:
1. Create notification URL (endpoint) on your server to receieve HTTP POST notification from Jokul. The notification will be sent to you whenever the transaction status is updated on Jokul side. The sample code available in [Jokul Java Example](https://github.com/PTNUSASATUINTIARTHA-DOKU/jokul-java-example).
1. Setup the notification URL that you made to the Payment Configuration on Jokul Back Office. [Sandbox Jokul Back Office (for testing purpose)](https://sandbox.doku.com/bo/login) / [Production Jokul Back Office (for real payments)](https://jokul.doku.com/bo/login)
1. Test the payment with our [Payment Simulator](https://sandbox.doku.com/integration/simulator) (for testing purpose)Here is the sample of the notification endpoint that you need to setup:
```php
// Mapping the notification received from Jokul
$notifyHeaders = getallheaders();
$notifyBody = json_decode(file_get_contents('php://input'), true); // You can use to parse the value from the notification body
$targetPath = '/payments/notifications'; // Put this value with your payment notification path
$secretKey = 'SK-xxxxxxx'; // Put this value with your Secret Key// Prepare Signature to verify the notification authenticity
$signature = \DOKU\Common\Utils::generateSignature($notifyHeaders, $targetPath, file_get_contents('php://input'), $secretKey);// Verify the notification authenticity
if ($signature == $notifyHeaders['Signature']) {
http_response_code(200); // Return 200 Success to Jokul if the Signature is match
// TODO update transaction status on your end to 'SUCCESS'
} else {
http_response_code(401); // Return 401 Unauthorized to Jokul if the Signature is not match
// TODO Do Not update transaction status on your end yet
}
```For further reference, please refer to our [Jokul Docs](https://jokul.doku.com/docs).
## Sample Project
Please refer to this repo for the example project: [Jokul PHP Example](https://github.com/PTNUSASATUINTIARTHA-DOKU/jokul-php-example).
## Help and Support
Got any issues? Found a bug? Have a feature requests? You can [open new issue](https://github.com/PTNUSASATUINTIARTHA-DOKU/jokul-php-library/issues/new).
For further information, you can contact us on [[email protected]](mailto:[email protected]).