dvsa / mot-cpms-client
CPMS Common Client Module
Installs: 4 527
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 0
Open Issues: 1
Type:project
Requires
- php: ^8.2
- dvsa/mot-cpms-notifications: ^3.0.0
- laminas/laminas-cache: ^3.12.0
- laminas/laminas-cache-storage-adapter-apcu: ^2.5.0
- laminas/laminas-cache-storage-adapter-filesystem: ^2.0
- laminas/laminas-cache-storage-adapter-memory: ^2.0
- laminas/laminas-dependency-plugin: ^2.6.0
- laminas/laminas-filter: ^2.13
- laminas/laminas-log: ^2.13
- laminas/laminas-mvc: ^3.3.0
Requires (Dev)
- captainhook/captainhook: ^5.16
- captainhook/plugin-composer: ^5.3
- friendsofphp/php-cs-fixer: ^3.17
- laminas/laminas-component-installer: ^3.4.0
- laminas/laminas-test: ^4.0.0
- phpunit/phpunit: ^9.5
- dev-main
- v3.1.0
- v3.0.0
- v2.0.0
- v1.1.0
- v1.0.0
- dev-feature-bl-15040-code-linting
- dev-feature-bl-17031-php-82-update
- dev-fix-remove-strict-types
- dev-feat/bl-15039-add-static-analysis
- dev-feat-bl-15039-add-static-analysis-php-8.2
- dev-feature-BL-15591-update-cpms-php-81
- dev-feature-bl-14412-migrate-cpms-client-to-github
This package is auto-updated.
Last update: 2024-10-29 15:23:10 UTC
README
Introduction
This a module designed to make restful API calls to CPMS backend API. It handles
- The generation of the required access token based on the scope
- Logging when a logger alias is provided
- Caching of access tokens when caching is setup and enabled.
Installation
The recommended way to install is through [Composer][composer].
composer require dvsa/mot-cpms-client
Configuration
-
Modify the configuration in the client-config.global.php file as follows:
``` return array( 'cpms_api' => array( 'version' => 1, 'logger_alias' => '', 'identity_provider' => '', 'enable_cache' => true, //Enable of caching of access tokens for reuse 'cache_storage' => 'filesystem', 'rest_client' => array( 'options' => array( 'domain' => '' ), ), ), );
-
version
: This is the version of CPMS API to target, currently on version 1 -
logger_alias
: Zend Service Manager alias for retrieving a Laminas\Log instance -
identity_provider
: This is the service manager alias that should return an object which implementsCpmsClient\Authenticate\IdentityProviderInterface
. This is mandatory. The following information is retrieved from the classclient_id
: The ID issues by CPMS that uniquely identifies the Scheme e.g. OLCSclient_secret
: Hash value issued by CPMSuser_id
: This is the OpenAM UUID of the logged in user. It is the responsiblity of the scheme to ensure that the data provided is valid as it would be logged against any action performed in CPMS for audit purposes.customer_reference
: This is the unique identifier for the customer on who is making the payment. In MoT this is the AE and in OLCS it would be the operator etc.
-
enable_cache
: Enable caching of access tokens for reuse. -
cache_storage
: Zend cache storage alias which would be load using Zend's StorageCacheAbstractServiceFactory. The default isfilesystem
-
domain
: The API domain to which all API calls will be sent.
-
Controller Plugin
The cpms-client
module ships with a controller plugin which simplifies usage of the Rest Client. In your controller:
$client = $this->getCpmsRestClient();
Usage
Below a typical usage of the cpms-client
module.
-
Requesting access token to make a card payment
POST
. Note that this is just an example for usage. By default, the module does this for you behind the scenes.$requiredScope = 'CARD'; $endPoint = '/api/token'; $client = $this->getCpmsRestClient(); $params = [ 'sales_reference' => 'your invoice number ', ...... ]; $response = $client->post($endPoint, $requiredScope, $params);
-
Retrieving payment details and specifying required fields, page, depth etc
GET
. The client would generate the required access token for you, so you do not need to manually generate the access token.$requiredScope = 'QUERY_TXN'; $endPoint = '/api/payment'; $params = array( 'page' => 1, 'sort' => 'id:desc', 'params' => array( 'depth' => -2, 'required_fields' => array( 'payment' => array( 'created_on', 'receipt_reference', 'scope', 'total_amount', 'payment_details', 'payment_status', 'customer_reference', 'created_by' ), 'paymentDetail' => array( 'product_reference', 'sales_reference', 'payment_reference', 'amount' ), 'scope' => array( 'code', 'name' ), 'paymentStatus' => array( 'code', 'name', ) ) ), ); $payments = $this->getCpmsRestClient()->get($endPoint, $requiredScope, $params);
-
Updating the status of a mandate
PUT
$requiredScope = 'DIRECT_DEBIT'; $endPoint = '/api/mandate/<mandate_reference>/status'; $params = [ 'status' => '<status code>' ]; $response = $this->getCpmsRestClient()->get($endPoint, $requiredScope, $params);
-
Specifying Required Fields
When querying CPMS for data e.g. payment details, it is recommended that you specify the fields you want returned in the request. If not specified, CMS would return the defaults fields which may change. The fields available are the column names as specified in the [database scheme] (https://wiki.i-env.net/display/EA/CPMS+Interface+Service+Definition#CPMSInterfaceServiceDefinition-DataModel).
Required field from main table e.g. Payment
$requiredFields = [
'created_on',
'receipt_reference',
'scope',
'total_amount',
'payment_details',
'payment_status',
'customer_reference',
'created_by'
]
Required fields from join tables e.g PaymentDetails. Payment has a (one-to-many) relationship with PaymentDetails.
Note that the field names are underscore separated while the entity names are camel cases.
$requiredFields = [
'payment' => [
'created_on',
'receipt_reference',
'scope',
'total_amount',
'payment_details',
'payment_status',
'customer_reference',
'created_by'
],
'paymentDetail' => [
'product_reference',
'sales_reference',
'payment_reference',
'amount'
],
]
Contributing
Please refer to our Contribution Guide.