Sha256: 735e31f8ce7a5fce18af988699404dee4990d178d6ecb7b4e70fc5c719a710b0

Contents?: true

Size: 1.72 KB

Versions: 2

Compression:

Stored size: 1.72 KB

Contents

$(document).ready(function () {

  function VT_createTokenData() {
    return {
      // Optional params:
      // secure: true
      // bank: 'MANDIRI'
      // gross_amount: 1000

      card_number: $('#credit_card_number').val(),
      card_cvv: $('#credit_card_cvv').val(),
      card_exp_month: $('#credit_card_expire').val().match(/(\d+) \//)[1],
      card_exp_year: '20' + $('#credit_card_expire').val().match(/\/ (\d+)/)[1],
      gross_amount: $('#payment_amount').val(),
      secure: $('#payment_credit_card_secure')[0].checked
    };
  }

  $('.veritrans-payment-form').on('submit', function (event) {
    event.preventDefault();

    var form = this;
    var button = $(form).find('input[type=submit]:last');
    var buttonValBefore = button.val();
    button.val("Processing ...");

    Veritrans.token(VT_createTokenData, function (data) {
      console.log('Get token response:');
      console.log(data);

      // if we get redirect_url then it's 3d-secure transaction
      // so we need to open that page
      // this callback function will be called again after user confirm 3d-secure
      // you can also redirect on server side

      if (data.redirect_url) {
        // it works nice with lightbox js libraries
        $('#3d-secure-iframe').attr('src', data.redirect_url).show();
      // if no redirect_url and we have token_id then just make charge request
      } else if (data.token_id) {
        $('#payment_token_id').val(data.token_id);
        form.submit();
      // if no redirect_url and no token_id, then it should be error
      } else {
        alert(data.validation_messages ? data.validation_messages.join("\n") : data.status_message);
        button.removeAttr('disabled').val(buttonValBefore);
      }
    });
  });
});

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
veritrans-2.0.0 lib/generators/templates/assets/credit_card_form.js
veritrans-2.0.0beta lib/generators/templates/assets/credit_card_form.js