e-ghl / param-validator
validates eGHL API input params array
Requires
- e-ghl/exception: ^1.0
Requires (Dev)
- phpunit/phpunit: 4.0.*
This package is auto-updated.
Last update: 2025-03-14 15:23:22 UTC
README
Validate input parameters for eGHL API requests for Capture, Payment, Query, Refund, Reversal & Settlement.
Composer Require command
composer require eghl/param-validator
Introduction
This library/package can be used prior to sending request to eGHL. This library validate the request parameters and throws exception with explicit error message. However, if all the parameters are valid no exception will be thrown and the code will continue.
Supported Request Types
This library supports validation of parameters for following request types.
- Capture
- Payment
- Query
- Refund
- Reversal
- Settlement
Scope of Validation
Following are the scopes of validation performed by this package for the above mentioned request types.
- Look for Required parameters. Also validates if some parameter is conditionally required.
- validate data type i.e. Numeric, Alphabetic and Alphanumeric for each parameter.
- validate max character length for each parameter.
- validate amount format, IP address, email address, and URL for some parameters at ad hoc basis.
Usage
The eghl/param-validator package can be used in two ways.
- Explicitly define request type class.
- Using Factory class.
Explicitly define request type class
The following code example explains the validation of parameters of Query request type.
// Require composer generated autoloader
require_once('../vendor/autoload.php');
// Namespace to be used
use eGHL\ParamValidator\QueryRequest;
// Request Parameters to be validated
$params = array(
'TransactionType' => 'QUERY',
'PymtMethod' => 'CC',
'ServiceID' => 'SIT',
'PaymentID' => '123',
'Amount' => '100.00',
'CurrencyCode' => 'MYR',
'HashValue' => 'adasdasdasd'
);
try{
$Request = new QueryRequest($params);
$params = $Request->validate(); // This line actually performs validation and will throw exception if any parameter is invalid. If all parameters are defined correctly, the function will retrun array of parameters to be sent to respective eGHL API.
}
catch(\Exception $e){
echo "<pre>".$e->getMessage()."</pre>";
}
Using Factory Class
The following code example explains the validation of parameters of Query request type.
// Require composer generated autoloader
require_once('../vendor/autoload.php');
// use Namespace of validatorFactory
use eGHL\ParamValidator\core\validatorFactory;
// Request Parameters to be validated
$params = array(
'TransactionType' => 'QUERY',
'PymtMethod' => 'CC',
'ServiceID' => 'SIT',
'PaymentID' => '123',
'Amount' => '100.00',
'CurrencyCode' => 'MYR',
'HashValue' => 'adasdasdasd'
);
try{
// The first parameter is type of request (Case-Sensitive) i.e. 'Query' in the current example
$Request = validatorFactory::create('Query', $params);
$params = $Request->validate();// This line actually performs validation and will throw exception if any parameter is invalid. If all parameters are defined correctly, the function will retrun array of parameters to be sent to respective eGHL API.
}
catch(\Exception $e){
echo "<pre>".$e->getMessage()."</pre>";
}