New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ogone-directlink

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ogone-directlink

Thin wrapper around the directlink http api of the ogone payment service

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

A thin wrapper around the HTTPS DirectLink API of the ogone payment services with validation functionality.

This library is based on the request, json-schema and xml2js libraries.

Installation

npm install ogone-directlink

Running the Tests

npm test

Howto Use

First of all read the Ogone DirectLink documentation and then continue reading.

var Ogone = require('ogone-directlink');

// Creates a ogone object in test mode. Change the last parameter to switch in prod mode.
var ogone = new Ogone('test' /* 'prod' */, {
	pspid: 'mypspid', 
	userid: 'myuserid', 
	pswd: 'mypswd'
});

Create your first order request:

var order = ogone.createOrderRequest({
	orderid: '123',
	amount: 1.50, // Amount is automatically multiplied by 100
	brand: 'VISA',
	ed: '09/12',
	cvc: '123',
	cardno: '4111111111111111'
});


// Create a request with the operation 'SAL'
// Use order.res(...) for an request with operation 'RES'
// Use order.rfd(...) for an request with operation 'RFD'
order.sal(function(err, result) {
    console.log(err || result);
});

Create an order with SHA-SIGN:

var order = ogone.createOrderRequest({
	// My parameters
}, 'sha1', 'myshapassword');

Create your first maintenance request:

var maintenance = ogone.createMaintenanceOrder({
	payid: 'abc',
	amount: 1.50
});

// Create a request with the operation 'REN'
// Use maintenance.del(...) for an request with operation 'DEL'
// Use maintenance.des(...) for an request with operation 'DES'
// Use maintenance.sal(...) for an request with operation 'SAL'
// Use maintenance.sas(...) for an request with operation 'SAS'
// Use maintenance.rfd(...) for an request with operation 'RFD'
// Use maintenance.rfs(...) for an request with operation 'RFS'
maintenance.ren(function(err, result) {
    console.log(err || result);
});

Create your first query request:

var query = ogone.createQueryRequest({
	payid: 'abc'
});
query.status(function(err, result) {
    console.log(err || result);
});

Note: All parameters in the ogone documentation are available in camelcase notation.

Contribution and Issues

This API is used in production, but when you found bugs or want new features open and ticket or send me a pull request.

License

MIT

FAQs

Package last updated on 26 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts