GithubHelp home page GithubHelp logo

panduroab / openpay-js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from open-pay/openpay-js

0.0 2.0 0.0 240 KB

Openpay Javascript bindings

License: Apache License 2.0

JavaScript 81.90% HTML 18.10%

openpay-js's Introduction

Openpay JS

Introduction

What is Openpay.js?

Openpay.js is a Javascript library designed to makes it easy to collect credit card data without having the information touch your server.

Benefits:

  • The transaction information does not have to pass through your server, it is sent directly to Openpay.
  • It is the easiest and fastest way to integrate a charges module on your ecommerce website.

Getting started

The first step in the integration is to add the library to the page from which payments will be made. Add the following script tag:

<script type="text/javascript" src="https://resources.openpay.mx/lib/openpay.v1.min.js"></script>

Configuration

Before you can use Openpay.js is necessary to configure both the merchant id, and public key that were assigned when you created your OpenPay account. With these data, Openpay can identify the account to which the charges are paid.

You can configure both fields with the following methods OpenPay.setId() and OpenPay.setApiKey(), respectively:

OpenPay.setId('MERCHANT_ID');
OpenPay.setApiKey('PUBLIC_API_KEY');
Notes:
* Both MERCHANT_ID as PUBLIC_API_KEY, are obtained from the homepage of your OpenPay account.
* You should never use your private key along with the library, because it is visible on the client side.

Enable sandbox Mode

To test your implementation, there Sandox environment, which is enabled with the method: OpenPay.setSandboxMode()

OpenPay.setSandboxMode(FLAG);

The FLAG parameter is a true / false flag to enable or disable test mode.

If is necessary, you can use the OpenPay.getSandboxMode() method to determine the status of the Sandbox Mode at any time:

OpenPay.getSandboxMode(); // TRUE/FALSE, depends if is activated or not activated.
Notes:
* The sandbox environment has the same features as production, but only allows the use of certain card numbers, chosen so that you can test, more information on the test section.

Creating tokens

Once you installed and configured the library, to create a token is necessary call the method: OpenPay.token.create()

OpenPay.token.create(CREATE_PARAMETERS_OBJECT, SUCCESS_CALLBACK, ERROR_CALLBACK);

The method's params are:

  • The CREATE_PARAMETERS_OBJECT parameter is an javascript object with credit card information.
  • The SUCCESS_CALLBACK parameter define the callback method which will be called when the operation is correct.
  • The ERROR_CALLBACK parameter define the callback method which will be called when the operation has failed.

The method returns an object token. The definition of object token find it here.

Example of creating a token card:

OpenPay.token.create({
      "card_number":"4111111111111111",
      "holder_name":"Juan Perez Ramirez",
      "expiration_year":"20",
      "expiration_month":"12",
      "cvv2":"110",
      "address":{
         "city":"Querétaro",
         "line3":"Queretaro",
         "postal_code":"76900",
         "line1":"Av 5 de Febrero",
         "line2":"Roble 207",
         "state":"Queretaro",
         "country_code":"MX"
      }
}, onSuccess, onError);

Creating tokens from html form

The Openpay.js library provides you extraction of the card information from the html form and subsequent delivery by the method: OpenPay.token.extractFormAndCreate()

OpenPay.token.extractFormAndCreate(CREATE_FORM_OBJECT, SUCCESS_CALLBACK, ERROR_CALLBACK, {CLIENTE-ID});

The method's params are:

  • The CREATE_PARAMETERS_OBJECT parameter is an javascript object with credit card information.
  • The SUCCESS_CALLBACK parameter define the callback method which will be called when the operation is correct.
  • The ERROR_CALLBACK parameter define the callback method which will be called when the operation has failed.

To begin to create tokens, you need a html form like this:

 <form id="processCard" name="processCard">
     <p>Holder Name:</p><input data-openpay-card="holder_name" size="50" type="text">
     <p>Card number:</p><input data-openpay-card="card_number" size="50" type="text">
     <p>Expiration year:</p><input data-openpay-card="expiration_year" size="4" type="text">
     <p>Expiration month:</p><input data-openpay-card="expiration_month" size="4" type="text">
     <p>cvv2:</p><input data-openpay-card="cvv2" size="5" type="text">
     <p>Street:</p><input data-openpay-card-address="line1" size="20" type="text">
     <p>Number:</p><input data-openpay-card-address="line2" size="20" type="text">
     <p>References:</p><input data-openpay-card-address="line3" size="20" type="text">
     <p>Postal code:</p><input data-openpay-card-address="postal_code" size="6" type="text">
     <p>City:</p><input data-openpay-card-address="city" size="20" type="text">
     <p>State:</p><input data-openpay-card-address="state" size="20" type="text">
     <p>Country code:</p><input data-openpay-card-address="country_code" size="3" type="text"> 
     <input id="makeRequestCard" type="button" value="Make Card">
 </form>

Note: The more important thing is add data-attributes data-openpay-card and data-card-data-openpay-address on inputs where card information is captured and address respectively.

Later when generating the token, make an invocation to OpenPay.token.extractFormAndCreate(), as show below:

OpenPay.token.extractFormAndCreate(
      $('#processCard'), 
      successCard, 
      errorCard, 
      _customerId);

The method returns an object type token. The definition of object token find it here.

For a complete example, download the test from the github site:openpay.js

How to handle responses

The response functions serve as handles of the result of the transaction. These, are simple Javascript functions but receive and object type response.

The response object fields are described below:

Field Format Description
status Integer Describe the HTTP status of the transaction. If an error before sending the request occurs, the status will be zero. In case of success the response will be 200
message String Only occurs in cases of error. Short description of the error that occurred. It can be one of the following values: "Unknown error", "Request error", "Response error (end Unknown status)", "Empty or invalid OpenPay ID", "Empty or invalid API Key", "Browser error", "timeout after X milliseconds ".
data Objeto Contains an [Object Error](http://docs.openpay.mx/ # errors) with the error information in the transaction provided by the server OpenPay. On success contains a token type object.
Notes
* Although the response functions are optional, we recommend to implement the outcome of the transaction can be monitored on the website.

On success: SuccessCallback

This function is called when the operation is successful from start to finish. It receives a single parameter which is a Javascript object with a data property representing a card or a token object. Complete example of implementing a function SuccessCallback:

function SuccessCallback(response) {
    alert('Successful operation');
	var content = '', results = document.getElementById('resultDetail');
	content .= 'Id card: ' + response.data.id+ '<br />';
	content .= 'Holder Name: ' + response.data.holder_name + '<br />';
	content .= 'Card brand: ' + response.data.brand + '<br />';
	results.innerHTML = content;
}
}

In case of error: ErrorCallback

This function will be executed each time an operation has failed (for any reason, before or after sending the request). Like the method SuccessCallback(), takes a single parameter which is a Javascript object with detailed fault.

Complete example of implementing a function ErrorCallback:

function ErrorCallback(response) {
	alert('Fallo en la transacción');
	var content = '', results = document.getElementById('resultDetail');
	content .= 'Estatus del error: ' + response.data.status + '<br />';
	content .= 'Error: ' + response.message + '<br />';
	content .= 'Descripción: ' + response.data.description + '<br />';
	content .= 'ID de la petición: ' + response.data.request_id + '<br />';
	results.innerHTML = content;
}

Types error responses

In addition to the status field that saves the state of the transaction, it is possible to determine the error that happened through the message field. The message may be one of the following:

  • "Empty or invalid OpenPay ID": It happens when you have not properly configured the user ID with the OpenPay.setId () method
  • "Empty or invalid API Key": Like the above error happens when you have not configured your API Key with OpenPay.setApiKey () method
  • "Browser error": It is triggered when there is an error in the browser that prevents the request to succeed. It may be caused by caracterísiticas that are necessary to run some code and are missing in the browser. For more information see the "Compatibility and Requirements" section.
  • "Request error": This error indicates that an error occurred in the server Openpay. May be due to missing parameters, formats, or some other problem that prevents a successful transaction.
  • "Response error (Unknown final status)": When this error occurs, it means that the transaction request was submitted successfully to Openpay server but no response was received. This may be due to a problem in Openpay. For more information contact OpenPay.
  • "Timeout after X milliseconds": Thrown when the request has taken a long time to run and therefore the response time expires.
  • "Unknown error": Raised when there is an unknown error that prevents the request is made. It may be due to problems in the browser or connectivity.

Card Validation Functions

Besides the functions to process card charges, Openpay.js also includes some functions to validate key data necessary to carry out the transaction, especially regarding card numbers.

Available methods are:

  • OpenPay.card.validateCardNumber()
  • OpenPay.card.validateCVC()
  • OpenPay.card.validateExpiry()
  • OpenPay.card.cardType()

Number card validation

To validate a card number can use the method OpenPay.card.validateCardNumber().

This method receives as parameter a String with the card number to be validated and return one true / false if it is a valid card number and is accepted by Openpay. Example:

OpenPay.card.validateCardNumber('5555555555554444');

This method is very useful for determining whether a card number is a valid candidate for use with Openpay, so we recommend that you use it before attempting to charge a card.

Examples:

OpenPay.card.validateCardNumber('5555555555554444'); // TRUE. Valid card number and accepted by OpenPay (MASTERCARD)

OpenPay.card.validateCardNumber('378282246310005'); // FALSE. Number of valid card but not accepted by OpenPay (AMEX)

Security Code Validation

To validate a security code is used the method OpenPay.card.validateCVC().

This method takes a String as a parameter and returns true / false if the string is valid. Example:

OpenPay.card.validateCVC('123'); // válido
OpenPay.card.validateCVC('1234'); // válido
OpenPay.card.validateCVC('A23'); // inválido

Expiration date validation

For this purpose is used the method OpenPay.card.validateExpiry().

Receive two strings as parameters to represent the month and year of expiry of the card. Returns true / false if the combination of both data, month and year, determine a valid expiration date. Example:

OpenPay.card.validateExpiry('01', '2013'); // inválido
OpenPay.card.validateExpiry('05', '2015'); // válido

Card Type

The type of card that a card number belongs to can be determined most of the time. For this, use the method OpenPay.card.cardType().

The method receives as a parameter a card number and returns a String with the name of the card type. Examples:

OpenPay.card.cardType('5555555555554444'); // MastercardOpenPay.card.cardType('4111111111111111'); //​ Visa
OpenPay.card.cardType('4917300800000000'); // Visa Electron
OpenPay.card.cardType('378282246310005'); // American Express
OpenPay.card.cardType('30569309025904'); // Diners Club Carte Blanche
OpenPay.card.cardType('6011111111111117'); // Discover
OpenPay.card.cardType('3530111333300000'); // JCB

Fraud detection using device data

OpenPay can use the device information of a transaction in order to better detect fraudulent transactions. To do this, add the following code to your checkout page, when collecting payment information:

<script type="text/javascript" src="https://resources.openpay.mx/lib/openpay-data.v1.min.js"></script>

Then, in your javascript, call OpenPay.deviceData.setup() to generate a Device Data.

// If you are testing your application, set Sandbox Mode first
// OpenPay.setSandboxMode(true);
var deviceDataId = OpenPay.deviceData.setup("formId");

This method generates an identifier for the customer's device data. This value needs to be stored during checkout, and sent to OpenPay when processing the charge.

The method takes two optional parameters:

The first is an existing form's id. If given, a new hidden input field will be added to it, with the value of the generated deviceDataId.

The second parameter specifies the generated field's name and id. If ommited, they will default to "deviceDataId".

Compatibility and requirements

To use Openpay.js You must have one of the following browsers:

  • Chrome 29.0+
  • Firefox 23.0+
  • Safari 5.1+
  • Opera 17.0+
  • iOS Safari 4.0+
  • Android Browser 2.1+
  • Blackberry Browser 7.0+
  • IE Mobile 10.0

Browsers must have support for XMLHttpRequest and JSON Parser libraries.

openpay-js's People

Contributors

guillermo-delucio avatar ismaelem avatar marcosalvarado avatar oswaldopenpay avatar panduroab avatar darkaz avatar ecarloslr avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.