cc-aveunue-non-seamless-node
v1.0.0
Published
this is open source npm package to integrate cc avenue payment gateway with nodejs application
Downloads
4
Readme
CCAvenueNonSeamlessNode
Node Module for integrating CCAvenue Payment gateway in Node.js Seamless
Prerequisite
Before using this module, please make sure you have your merchant_id and working_key for test and production environment from CCAVenue payment gateway.
Installation
You can install the package via npm:
npm install cc-avenue-non-seamless-node
or
yarn add node-ccavenue
Initialization
Make sure your test / production workingKey and merchantId are stored as environment variables (best practice)
const CCAvenueNonSeamlessNode = require('cc-avenue-non-seamless-node');
const ccav = new CCAvenueNonSeamlessNode();
Usage
You are free to use the encryption and decryption methods from the package. Which are exported as is.
Get Payment URL
const orderParams = {
order_id: 8765432,
currency: 'INR',
amount: '100',
redirect_url: encodeURIComponent(`http://localhost:3000/api/redirect_url/`),
billing_name: 'Name of the customer',
// etc etc
};
const paymentUrl = ccav.getPaymentUrl(orderParams, accessCode, WorkingKey);
console.log(paymentUrl); // Proceed further
Decrypting the response from CCAvenue to a JSON output
// Considering this is your redirect_url
router.post('/api/redirect_url', (req, res) => {
const { encResp } = req.body;
const decryptedJsonResponse = ccav.getPaymentResponse(encResp, workingKey);
// To check order_status: -
console.log(decryptedJsonResponse.order_status);
});
Sample JSON Response from CCAvenue
This is the json response output after passing the encrypted request to redirectResponseToJson(encResp)
{
"order_id": "9840661",
"tracking_id": "308005007091",
"bank_ref_no": "1555842850653",
"order_status": "Success",
"failure_message": "",
"payment_mode": "Net Banking",
"card_name": "AvenuesTest",
"status_code": "null",
"status_message": "Y",
"currency": "INR",
"amount": "1000.00",
"billing_name": "OPTIONAL",
"billing_address": "OPTIONAL",
"billing_city": "OPTIONAL",
"billing_state": "OPTIONAL",
"billing_zip": "OPTIONAL",
"billing_country": "India",
"billing_tel": "99999999999",
"billing_email": "[email protected]",
"delivery_name": "OPTIONAL",
"delivery_address": "OPTIONAL",
"delivery_city": "OPTIONAL",
"delivery_state": "OPTIONAL",
"delivery_zip": "OPTIONAL",
"delivery_country": "India",
"delivery_tel": "99999999999",
"merchant_param1": "",
"merchant_param2": "",
"merchant_param3": "",
"merchant_param4": "",
"merchant_param5": "",
"vault": "N",
"offer_type": "null",
"offer_code": "null",
"discount_value": "0.0",
"mer_amount": "1200.00",
"eci_value": "null",
"retry": "N",
"response_code": "0",
"billing_notes": "",
"trans_date": "21/04/2019 16:04:38",
"bin_country": ""
}
Contributing
Feel free to open issues if you find any, or simply fork and create a pull request