Sevotransact Payment Gateway PHP SDK Can be used with your favorite framework or your plain PHP project.
The package can be installed via composer. Install it if you don't have it yet. Then open a terminal in your project root folder and run:
composer require prinx/sevotransact
First create a .env
file in your project root folder, if you don't have any already.
Next, configure the .env by putting your sevotransact credentials and account informations:
#...
SEVOTRANSACT_ID=your_sevotransact_id
SEVOTRANSACT_KEY=your_sevotransact_key
SEVOTRANSACT_ACCOUNT=your_sevotransact_account
SEVOTRANSACT_NICKNAME=your_sevotransact_nickname
SEVOTRANSACT_DESCRIPTION=your_sevotransact_description
SEVOTRANSACT_PRIMARY_CALLBACK=primary_callback
SEVOTRANSACT_SECONDARY_CALLBACK=secondary_callback
The primary and secondary callbacks are URL where SEVOTRANSACT
will send the result of the transaction. YOu can check how to handle the transaction callback here.
The secondary callback is optional.
require 'path/to/vendor/autoload.php'; // Not needed if using a framework.
use Prinx\Sevotransact\MobileMoney;
$payment = new MobileMoney;
$amount = 1; // 1 GHC
$phone = '233...';
$network = 'MTN'; // MTN|AIRTEL|VODAFONE
$request = $payment->request($amount, $phone, $network);
Some networks (typically VODAFONE) require the user to generate a voucher code. This code can be easily passed to the request:
$request = $payment->request($amount, $phone, $network, $voucherCode);
// or
$payment->setVoucherCode($voucherCode);
$request = $payment->request($amount, $phone, $network);
The voucher code is now optional. If not passed, the user will directly receive a prompt on their phone to accept the transaction.
The mobile money request will automatically return a response from which you can determine if the request is being processed or not.
$request = $payment->request($amount, $phone, $network);
if ($request->isBeingProcessed()) {
$status = $request->getStatus();
// ...
} else {
$error = $request->getError();
// ...
}
WARNING: This response is just to notify you that your request has been received and is been processed or something went wrong when sending the request. This is not the actual response of the mobile money request. The actual response of the mobile money request will be sent to your provided callback URL.
The result of the transaction will be sent to the callback URL provided when sending the request.
To process the callback, create a new route in your favorite framework, or create an php file in your project to handle the callback. The URL resolving to that route or that file is (must be) the one you provided in the .env.
as callback URL.
Now you can create a callback instance that will receive the status of your transactions:
// File: callback.php
require 'path/to/vendor/autoload.php';
use Prinx\Sevotransact\Callback;
$callback = new Callback;
Or if you are using a framework and the callback route is handled by a controller:
// This is just an example.
// Write your controller the way you are used to with your favorite framework.
namespace Controllers;
use Prinx\Sevotransact\Callback;
class MobileMoneyCallbackController extends Controller
{
public function processCallback()
{
$callback = new Callback;
}
}
We can now register the callback functions that will be run on success, failure or some defined custom condition of the mobile money transaciton. The callback functions will receive the $callback
instance.
$callback->success(function (Callback $callback) {
// Transaction was successful. Do stuff.
})->failure(function (Callback $callback) {
// Transaction failed. Do stuff.
})->always(function (Callback $callback) {
// Do stuff whether transaction was successful or not.
});
You are not require to use all the callbacks. Just use the one that is needed.
Now, run everything, by calling the process
method on the callback.
$callback->process();
The full code will be:
$callback = new Callback;
$callback->success(function (Callback $callback) {
//
})->failure(function (Callback $callback) {
//
})->always(function (Callback $callback) {
//
})->process();
TIP: In case you have only one callback function that will be run whether the transaction is successful or not, you can simply pass the function to the process method:
$callback = new Callback;
$callback->process(function (Callback $callback) {
//
});
The code of the transaction determines if the transaction is successful or has failed. By default, the successful transaction codes are in the array returned by $callback->getSuccessCodes()
. You can decide (for any reason it may be) to consider a failure code as success code by adding it to the success codes with the $callback->addSuccessCode($code)
method.
The on
method is a powerful way of listening to the transaction request callbacks. It takes as first parameter an array of conditions that can match the request payload and as second parameter a callback function that will be run if the conditions match the payload.
A string can be passed as condition, then it will be considered as the code sent in the payload to the callback URL.
use Prinx\Sevotransact\Callback;
$callback = new Callback;
$callback->on('000', function (Callback $callback) {
//
})->on('101', function (Callback $callback) {
//
})->on(['code' => '000', 'phone' => '233...'], function (Callback $callback) {
//
})->success(function (Callback $callback){
// We can still chain the success or failure methods.
})->failure(function (Callback $callback) {
//
})->process();
The Callback class implements the fluent interface. You can chain most of its methods (like the on
, success
, failure
methods), in any order.
The callbacks will be run in the order they were registered.
A payload is sent to the callback URL. It contains 8 parameters:
The code of the request.
$requestCode = $callback->getCode();
$requestStatus = $callback->getStatus(); // approved, declined...
The detail message of the status.
$requestDetails = $callback->getDetails();
The transaction ID.
$transactionId = $callback->getId();
The phone number to which the request was made.
$phone = $callback->getPhone(); // 233...
The network to which belong the phone number.
$network = $callback->getNetwork(); // MTN, AIRTEL, VODAFONE, ...
The amount of the transaction.
$amount = $callback->getAmount();
The currency in which the transaction was made.
$currency = $callback->getCurrency(); // GHS
You can get all the payload array by calling the getPayload
method without parameter.
$payload = $callback->getPayload();
You can also get any of the payload parameters by passing the name of the parameter to the getPayload
method, for example:
$transactionId = $callback->getPayload('id');
$transactionCode = $callback->getPayload('code');
You can get the message associated to the request by calling the message
method of the callback instance.
$message = $callback->getMessage();
The message is associated to the code in the payload.
These are the possible messages:
[
'000' => 'Transaction successful. Your transaction ID is '.$transactionId,
'101' => 'Transaction failed. Insufficient fund in wallet.',
'102' => 'Transaction failed. Number non-registered for mobile money.',
'103' => 'Transaction failed. Wrong PIN. Transaction timed out.',
'104' => 'Transaction failed. Transaction declined',
'114' => 'Transaction failed. Invalid voucher',
'909' => 'Transaction failed. Duplicate transaction id.',
'default' => 'Transaction failed.',
];
The callback instance is automatically passed to the closure. You can then use it as below:
$callback->success(function (Callback $callback) {
$message = $callback->getMessage();
});
You can easily pass other parameters to the closure by using the PHP use
keyword on the closure:
// SmsService is your own implementation.
$sms = new SmsService();
$callback->success(function (Callback $callback) use ($sms) {
$message = $callback->getMessage();
$phone = $callback->getPhone();
$sms->send($message, $phone);
});
Instead of directly passing the callbacks closures to the success
, failure
or on
methods, you can move all the callbacks to a class and just pass the class to the process
method.
First, create a class containing a callbacks
methods:
class CallbackHandler
{
public function callbacks(Callback $callback)
{
//
}
}
The callbacks
method must return an array containing the mapping of your conditions with the callback closures:
class CallbackHandler
{
public function callbacks(Callback $callback)
{
return [
['000', function (Callback $callback) {
$message = $callback->getMessage();
}],
['101', function (Callback $callback) {
//
}],
];
}
}
The mappings can be duplicated:
class CallbackHandler
{
public function callbacks(Callback $callback)
{
return [
['000', function (Callback $callback) {
//
}],
['000', function (Callback $callback) {
// Another callback that will be run for the same code.
}],
['101', function (Callback $callback) {
//
}],
];
}
}
Or you can rather passed an array of closures:
class CallbackHandler
{
public function callbacks(Callback $callback)
{
return [
['000', [
function (Callback $callback) {
//
},
function (Callback $callback) {
// Another callback that will be run for the same code.
},
]],
['101', function (Callback $callback) {
//
}],
];
}
}
You can pass the custom conditions success
, failure
or always
:
class CallbackHandler
{
public function callbacks(Callback $callback)
{
return [
['success', function (Callback $callback) {
//
}],
['failure', function (Callback $callback) {
//
}],
['always', function (Callback $callback) {
//
}],
];
}
}
You can also pass an array of conditions:
class CallbackHandler
{
public function callbacks(Callback $callback)
{
return [
[['code' => '000', 'phone' => '233...'], function (Callback $callback) {
//
}],
];
}
}
All these can be mixed according to your need:
class CallbackHandler
{
public function callbacks(Callback $callback)
{
return [
['000', function (Callback $callback) {
//
}],
[['code' => '000', 'phone' => '233...'], function (Callback $callback) {
//
}],
['success', function (Callback $callback) {
//
}],
['always', function (Callback $callback) {
//
}],
];
}
}
Instead of returning directly closures in the callbacks methods, you can create public methods in the callback handler class and reference those methods in the array returned in the callbacks
method:
class CallbackHandler
{
public function callbacks(Callback $callback)
{
return [
['000', 'sendSms'],
['101', ['notifyAdmin', 'sendSms']]
['always', 'log'],
];
}
public function notifyAdmin(Callback $callback)
{
// Notify admin...
}
public function sendSms(Callback $callback)
{
//
}
public function log(Callback $callback)
{
//
}
}
After writing the callback handler class, you just need to pass it to the process method:
// Do not forget to import the class from it namespace
use App\Helpers\CallbackHandler;
$callback = new Callback;
$callback->process(CallbackHandler::class);
You can provide a log folder where the transactions will be automatically logged.
$callback->setLogFolder($path);
If no folder has been set, a default log folder will be created at YOUR_PROJECT_ROOT_FOLDER/storage/logs/sevotransact/
.
You can disable local logs by using the env variable (It is enabled by default):
SEVOTRANSACT_LOCAL_LOG_ENABLED=false
You can provide in your .env
file a slack webhook to automatically log transactions to slack.
SEVOTRANSACT_SLACK_LOG_WEBHOOK=https://
You can disable logging to SLACK by putting in the .env
:
SEVOTRANSACT_SLACK_LOG_ENABLED=false
It is enabled by default.
To disable the whole logging system, put in your .env
file:
SEVOTRANSACT_LOG_ENABLED=false
Star ⭐ the repo, fork it, fix a bug, add a new feature, write tests, correct documentation, and submit a pull request.