hdolinski / paymentwall-node

Paymentwall Node.js Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#About Paymentwall Paymentwall is the leading digital payments platform for globally monetizing digital goods and services. Paymentwall assists game publishers, dating sites, rewards sites, SaaS companies and many other verticals to monetize their digital content and services. Merchants can plugin Paymentwall's API to accept payments from over 100 different methods including credit cards, debit cards, bank transfers, SMS/Mobile payments, prepaid cards, eWallets, landline payments and others.

To sign up for a Paymentwall Merchant Account, click here.

Build Status Code Climate devDependency Status Coverage Status

#Paymentwall Node.js Library This library allows developers to use Paymentwall APIs (Virtual Currency, Digital Goods featuring recurring billing, and Virtual Cart).

To use Paymentwall, all you need to do is to sign up for a Paymentwall Merchant Account so you can setup an Application designed for your site. To open your merchant account and set up an application, you can sign up here.

#Installation To install the library in your environment, simply run the following command:

npm install paymentwall

Then use a code sample below.

#Code Samples

##Digital Goods API

Web API details

####Initializing Paymentwall

var Paymentwall = require('paymentwall');
Paymentwall.configure(
  Paymentwall.Base.API_GOODS,
  'YOUR_APPLICATION_KEY',
  'YOUR_SECRET_KEY'
);

####Widget Call

The widget is a payment page hosted by Paymentwall that embeds the entire payment flow: selecting the payment method, completing the billing details, and providing customer support via the Help section. You can redirect the users to this page or embed it via iframe. The sample code below renders an iframe with Paymentwall Widget.

var widget = new Paymentwall.Widget(
  'user40012',      // id of the end-user who's making the payment
  'p1',             // widget code, e.g. p1; can be picked in the Widgets section of your merchant account 
  [                 // product details for Flexible Widget Call. 
                    // Leave empty if product selection happens on Paymentwall's side
    new Paymentwall.Product(
      'product301',                           // id of the product in your system  
      9.99,                                   // price
      'USD',                                  // currency code
      'Gold Membership',                      // product name
      Paymentwall.Product.TYPE_SUBSCRIPTION,   // this is a time-based product
      1,                                      // duration is 1
      Paymentwall.Product.PERIOD_TYPE_MONTH,   //              month
      true                                    // this is a recurring product
    )
  ],
  {'email': 'user@hostname.com'}              // additional parameters. for full list check API docs
);
console.log(widget.getHtmlCode());

####Pingback Processing

The Pingback is a webhook notifying about a payment being made. Pingbacks are sent via HTTP/HTTPS to your servers. To process pingbacks use the following code:

var pingback = new Paymentwall.Pingback(queryData, ipAddress);
if (pingback.validate()) {
  var productId = pingback.getProduct().getId();
  if (pingback.isDeliverable()) {
    // deliver the product
  } else if (pingback.isCancelable()) {
    // withdraw the product
  } 
  console.log('OK'); // Paymentwall expects the string OK in response, otherwise the pingback will be resent
} else {
  console.log(pingback.getErrorSummary());
}

Virtual Currency API

Web API Details

Initializing Paymentwall

var Paymentwall = require('paymentwall');

Paymentwall.configure(
  Paymentwall.Base.API_VC,
  'YOUR_APPLICATION_KEY',
  'YOUR_SECRET_KEY'
);

Widget Call

var widget = new Paymentwall.Widget(
  'user40012',
  'p10',
  [],
  {'email': 'user@hostname.com'}
);
console.log(widget.getHtmlCode());

Pingback Processing

var pingback = new Paymentwall.Pingback(queryData, ipAddress);

if (pingback.validate()) {
  var virtualCurrency = pingback.getVirtualCurrencyAmount();
  if (pingback.isDeliverable()) {
    // deliver the virtual currency
  } else if (pingback.isCancelable()) {
    // withdraw the virtual currency
  } 
  console.log('OK'); // Paymentwall expects the string OK in response, otherwise the pingback will be resent
} else {
  console.log(pingback.getErrorSummary());
}

Cart API

Web API Details

Initializing Paymentwall

var Paymentwall = require('paymentwall');

Paymentwall.configure(
  Paymentwall.Base.API_CART,
  'YOUR_APPLICATION_KEY',
  'YOUR_SECRET_KEY'
);

Widget Call

var widget = new Paymentwall.Widget(
  'user40012',
  'p10',
  [
    new Paymentwall.Product('product301', 3.33, 'EUR'), // first product in cart
    new Paymentwall.Product('product607', 7.77, 'EUR')  // second product in cart
  ],
  {'email': 'user@hostname.com'}
);
console.log(widget.getHtmlCode());

Pingback Processing

var pingback = new Paymentwall.Pingback(queryData, ipAddress);

if (pingback.validate()) {
  var productId = pingback.getProduct().getId();
  if (pingback.isDeliverable()) {
    // deliver the product
  } else if (pingback.isCancelable()) {
    // withdraw the product
  } 
  console.log('OK'); // Paymentwall expects the string OK in response, otherwise the pingback will be resent
} else {
  console.log(pingback.getErrorSummary());
}

##Brick API

Web API details

####Initializing Paymentwall

var Paymentwall = require('paymentwall');
Paymentwall.configure(
  Paymentwall.Base.API_GOODS,
  'YOUR_APPLICATION_KEY',
  'YOUR_SECRET_KEY'
);

####Create a one-time token

var onetimetoken = new Paymentwall.Onetimetoken(
4000000000000002,// Card number, digits only
01,// Expiration month, 2 digits from 01 to 12
2017,// Expiration year, 4 digits
222// CVC/CVV, 3-4 digits
);

onetimetoken.createOnetimetoken(function(onetimetoken_response){
// get the parameter in response
console.log('onetimetoken='+onetimetoken_response.token);
});

####Charge

var charge = new Paymentwall.Charge(
0.5, //price
'USD', //currency code
'description', //description of the product
'useremail@example.com', // user's email which can be gotten by req.body.email
'fingerprint', // fingerprint which can be gotten by req.body.brick_fingerprint
// if generated via backend please use this Charge in the callback function of createOnetimetoken
//onetimetoken_response.token,
// if generated via brick.js
req.body.brick_token, //one-time token
{'custom[User_prfile_API]':'Value'} //custom parameters
);

charge.createCharge(function(Charge_response){
  console.log('response of Charge ='+Charge_response);
});

####Charge Details

//get the charge details through chargeid
var charge = new Paymentwall.Charge();

charge.otherOperation(chargeid,'detail',function(data){
  console.log('detail'+data);
});

####Charge-capture

//capture a charge through chargeid
var charge = new Paymentwall.Charge();

charge.otherOperation(chargeid,'capture',function(data){
  console.log('capture_data'+data);
});

####Charge-void

//void a charge through chargeid
var charge = new Paymentwall.Charge();

charge.otherOperation(chargeid,'void',function(data){
  console.log('void_data'+data);
});

####Charge-refund

//refund a charge through chargeid
var charge = new Paymentwall.Charge();

charge.otherOperation(chargeid,'refund',function(data){
  console.log('refund_data'+data);
});

####Subscription

//create a subscription
var subscription = new Paymentwall.Subscription(
0.5, //price
'USD', //currency code
'description', //description of the product
'useremail@example.com', // user's email which can be gotten by req.body.email
'fingerprint', // fingerprint which can be gotten by req.body.brick_fingerprint
// if generated via backend please use this Charge in the callback function of createOnetimetoken
//onetimetoken_response.token,
// if generated via brick.js
req.body.brick_token, //one-time token
'day', // day/week/month/year
3, // duration
{
  'trial[amount]':0.5,
  'trial[currency]':'USD',
  'trial[period]':'day',
  'trial[period_duration]':3
}// parameters for trial period
{'custom[User_prfile_API]':'Value'} //custom parameters, if there is a trail, plan is required
);

subscription.createSubscription(function(subscription_response){
  console.log(subscription_response);
});

####Subscription-details

//get the subscription details through subscriptionid
var subscription = new Paymentwall.Subscription();

subscription.otherOperation(subscriptionid,'detail',function(data){
  console.log('subscription_data'+data);
});

####Subscription-cancel

//cancel a subscription through subscriptionid
var subscription = new Paymentwall.Subscription();

subscription.otherOperation(subscriptionid,'cancel',function(data){
  console.log('cancel_data'+data);
});

####Pingback Processing

The Pingback is a webhook notifying about a payment being made. Pingbacks are sent via HTTP/HTTPS to your servers. To process pingbacks use the following code:

var pingback = new Paymentwall.Pingback(queryData, ipAddress, true);
if (pingback.validate()) {
  var productId = pingback.getProduct().getId();
  if (pingback.isDeliverable()) {
    // deliver the product
  } else if (pingback.isCancelable()) {
    // withdraw the product
  } 
  console.log('OK'); // Paymentwall expects the string OK in response, otherwise the pingback will be resent
} else {
  console.log(pingback.getErrorSummary());
}

About

Paymentwall Node.js Library

License:MIT License


Languages

Language:JavaScript 70.5%Language:Gherkin 29.5%