Skip to content
Snippets Groups Projects
civicrm_stripe.js 23.8 KiB
Newer Older
  • Learn to ignore specific revisions
  • /**
     * JS Integration between CiviCRM & Stripe.
     */
    
      debugging("civicrm_stripe loaded, dom-ready function firing.");
    
      if (window.civicrmStripeHandleReload) {
        // Call existing instance of this, instead of making new one.
    
        debugging("calling existing civicrmStripeHandleReload.");
        window.civicrmStripeHandleReload();
        return;
      }
    
    
      // On initial load...
    
      var stripe;
      var card;
      var form;
    
      var stripeLoading = false;
    
    
      // Disable the browser "Leave Page Alert" which is triggered because we mess with the form submit function.
      window.onbeforeunload = null;
    
      /**
       * This function boots the UI.
       */
      window.civicrmStripeHandleReload = function() {
        debugging('civicrmStripeHandleReload');
        // Load Stripe onto the form.
        var cardElement = document.getElementById('card-element');
        if ((typeof cardElement !== 'undefined') && (cardElement)) {
          if (!cardElement.children.length) {
            debugging('checkAndLoad from document.ready');
            checkAndLoad();
          }
        }
      };
      // On initial run we need to call this now.
      window.civicrmStripeHandleReload();
    
      function successHandler(type, object) {
        debugging(type + ': success - submitting form');
    
        // Insert the token ID into the form so it gets submitted to the server
        var hiddenInput = document.createElement('input');
        hiddenInput.setAttribute('type', 'hidden');
    
        hiddenInput.setAttribute('name', type);
        hiddenInput.setAttribute('value', object.id);
    
        form.appendChild(hiddenInput);
    
        // Submit the form
        form.submit();
      }
    
      function nonStripeSubmit() {
        // Disable the submit button to prevent repeated clicks
    
        for (i = 0; i < submitButtons.length; ++i) {
          submitButtons[i].setAttribute('disabled', true);
        }
    
      function displayError(error) {
    
        debugging('error: ' + error.message);
    
        // Inform the user if there was an error
        var errorElement = document.getElementById('card-errors');
        errorElement.style.display = 'block';
    
        errorElement.textContent = error.message;
    
        document.querySelector('#billing-payment-block').scrollIntoView();
        window.scrollBy(0, -50);
    
        for (i = 0; i < submitButtons.length; ++i) {
          submitButtons[i].removeAttribute('disabled');
        }
    
    mattwire's avatar
    mattwire committed
        debugging('handle card payment');
    
        stripe.createPaymentMethod('card', card).then(function (result) {
    
          if (result.error) {
    
            displayError(result.error);
    
            if (getIsRecur() || isEventAdditionalParticipants()) {
    
              // Submit the form, if we need to do 3dsecure etc. we do it at the end (thankyou page) once subscription etc has been created
              successHandler('paymentMethodID', result.paymentMethod);
            }
            else {
              // Send paymentMethod.id to server
              var url = CRM.url('civicrm/stripe/confirm-payment');
              $.post(url, {
                payment_method_id: result.paymentMethod.id,
    
                amount: getTotalAmount().toFixed(2),
    
                currency: CRM.vars.stripe.currency,
                id: CRM.vars.stripe.id,
    
                description: document.title,
    
                csrfToken: CRM.vars.stripe.csrfToken,
    
              }).then(function (result) {
                // Handle server response (see Step 3)
                handleServerResponse(result);
              });
            }
    
          }
        });
      }
    
      function handleServerResponse(result) {
        debugging('handleServerResponse');
        if (result.error) {
          // Show error from server on payment form
    
          displayError(result.error);
    
        } else if (result.requires_action) {
          // Use Stripe.js to handle required card action
          handleAction(result);
        } else {
          // All good, we can submit the form
    
          successHandler('paymentIntentID', result.paymentIntent);
    
        stripe.handleCardAction(response.payment_intent_client_secret)
          .then(function(result) {
            if (result.error) {
              // Show error in payment form
    
              displayError(result.error);
    
            } else {
              // The card action has been handled
              // The PaymentIntent can be confirmed again on the server
              successHandler('paymentIntentID', result.paymentIntent);
            }
          });
    
      // Re-prep form when we've loaded a new payproc
    
      $(document).ajaxComplete(function(event, xhr, settings) {
    
        // /civicrm/payment/form? occurs when a payproc is selected on page
        // /civicrm/contact/view/participant occurs when payproc is first loaded on event credit card payment
    
        // On wordpress these are urlencoded
    
        if ((settings.url.match("civicrm(\/|%2F)payment(\/|%2F)form") !== null) ||
          (settings.url.match("civicrm(\/|\%2F)contact(\/|\%2F)view(\/|\%2F)participant") !== null)) {
    
          // See if there is a payment processor selector on this form
          // (e.g. an offline credit card contribution page).
    
          if (typeof CRM.vars.stripe === 'undefined') {
            return;
          }
          var paymentProcessorID = getPaymentProcessorSelectorValue();
          if (paymentProcessorID !== null) {
    
            // There is. Check if the selected payment processor is different
            // from the one we think we should be using.
    
            if (paymentProcessorID !== parseInt(CRM.vars.stripe.id)) {
              debugging('payment processor changed to id: ' + paymentProcessorID);
              if (paymentProcessorID === 0) {
                // Don't bother executing anything below - this is a manual / paylater
                return notStripe();
              }
              // It is! See if the new payment processor is also a Stripe Payment processor.
              // (we don't want to update the stripe pub key with a value from another payment processor).
              // Now, see if the new payment processor id is a stripe payment processor.
              CRM.api3('PaymentProcessor', 'getvalue', {
                "return": "user_name",
                "id": paymentProcessorID,
                "payment_processor_type_id": CRM.vars.stripe.paymentProcessorTypeID,
    
              }).done(function(result) {
    
                var pub_key = result.result;
                if (pub_key) {
                  // It is a stripe payment processor, so update the key.
                  debugging("Setting new stripe key to: " + pub_key);
                  CRM.vars.stripe.publishableKey = pub_key;
                }
                else {
                  return notStripe();
                }
                // Now reload the billing block.
                debugging('checkAndLoad from ajaxComplete');
                checkAndLoad();
    
      function notStripe() {
        debugging("New payment processor is not Stripe, clearing CRM.vars.stripe");
        if ((typeof card !== 'undefined') && (card)) {
    
    mattwire's avatar
    mattwire committed
          debugging("destroying card element");
    
          card.destroy();
          card = undefined;
    
    mattwire's avatar
    mattwire committed
        delete(CRM.vars.stripe);
    
          debugging('CRM.vars.stripe not defined! Not a Stripe processor?');
    
        if (typeof Stripe === 'undefined') {
    
          if (stripeLoading) {
            return;
          }
          stripeLoading = true;
    
          debugging('Stripe.js is not loaded!');
    
          $.getScript("https://js.stripe.com/v3", function () {
            debugging("Script loaded and executed.");
    
            stripeLoading = false;
    
            loadStripeBillingBlock();
          });
        }
        else {
          loadStripeBillingBlock();
        }
      }
    
      function loadStripeBillingBlock() {
    
        debugging('loadStripeBillingBlock');
    
        if (typeof stripe === 'undefined') {
          stripe = Stripe(CRM.vars.stripe.publishableKey);
        }
    
        var elements = stripe.elements({ locale: CRM.vars.stripe.locale });
    
    
        var style = {
          base: {
            fontSize: '20px',
          },
        };
    
    
        // Pre-fill postcode field with existing value from form
        var postCode = document.getElementById('billing_postal_code-' + CRM.vars.stripe.billingAddressID).value;
        debugging('existing postcode: ' + postCode);
    
    
        // Create an instance of the card Element.
    
        card = elements.create('card', {style: style, value: {postalCode: postCode}});
    
        card.mount('#card-element');
    
        debugging("created new card element", card);
    
        // Hide the CiviCRM postcode field so it will still be submitted but will contain the value set in the stripe card-element.
    
        if (document.getElementById('billing_postal_code-5').value) {
          document.getElementById('billing_postal_code-5').setAttribute('disabled', true);
        }
        else {
          document.getElementsByClassName('billing_postal_code-' + CRM.vars.stripe.billingAddressID + '-section')[0].setAttribute('hidden', true);
        }
    
    
        card.addEventListener('change', function (event) {
          cardElementChanged(event);
    
        // Get the form containing payment details
    
        form = getBillingForm();
    
        if (typeof form.length === 'undefined' || form.length === 0) {
    
          debugging('No billing form!');
          return;
    
    
        setBillingFieldsRequiredForJQueryValidate();
    
    
        // If another submit button on the form is pressed (eg. apply discount)
        //  add a flag that we can set to stop payment submission
    
        form.dataset.submitdontprocess = false;
    
    
        // Find submit buttons which should not submit payment
    
        var nonPaymentSubmitButtons = form.querySelectorAll('[type="submit"][formnovalidate="1"], ' +
    
          '[type="submit"][formnovalidate="formnovalidate"], ' +
          '[type="submit"].cancel, ' +
    
          '[type="submit"].webform-previous'), i;
    
        for (i = 0; i < nonPaymentSubmitButtons.length; ++i) {
    
          nonPaymentSubmitButtons[i].addEventListener('click', submitDontProcess());
        }
    
        function submitDontProcess() {
          debugging('adding submitdontprocess');
          form.dataset.submitdontprocess = true;
    
        for (i = 0; i < submitButtons.length; ++i) {
          submitButtons[i].addEventListener('click', submitButtonClick);
        }
    
    
        function submitButtonClick(event) {
    
            return;
          }
          form.dataset.submitted = true;
    
          // Take over the click function of the form.
    
          if (typeof CRM.vars.stripe === 'undefined') {
            // Submit the form
    
          debugging('clearing submitdontprocess');
          form.dataset.submitdontprocess = false;
    
    
          // Run through our own submit, that executes Stripe submission if
          // appropriate for this submit.
    
          return submit(event);
    
        // Remove the onclick attribute added by CiviCRM.
    
        for (i = 0; i < submitButtons.length; ++i) {
          submitButtons[i].removeAttribute('onclick');
        }
    
        if (getIsDrupalWebform()) {
    
          // We need the action field for back/submit to work and redirect properly after submission
    
          $('[type=submit]').click(function() {
    
            addDrupalWebformActionElement(this.value);
    
          });
          // If enter pressed, use our submit function
    
          form.addEventListener('keydown', function (e) {
            if (e.keyCode === 13) {
    
              addDrupalWebformActionElement(this.value);
    
    mattwire's avatar
    mattwire committed
              submit(event);
    
          $('#billingcheckbox:input').hide();
          $('label[for="billingcheckbox"]').hide();
        }
    
    mattwire's avatar
    mattwire committed
        function submit(event) {
    
    mattwire's avatar
    mattwire committed
          event.preventDefault();
    
          if ($(form).valid() === false) {
            debugging('Form not valid');
    
            $('div#card-errors').hide();
    
            document.querySelector('#billing-payment-block').scrollIntoView();
            window.scrollBy(0, -50);
    
            $(form).trigger('crmBillingFormNotValid');
    
          if (typeof CRM.vars.stripe === 'undefined') {
            debugging('Submitting - not a stripe processor');
            return true;
          }
    
    
          if (form.dataset.submitted === true) {
    
            debugging('form already submitted');
            return false;
    
          var stripeProcessorId = parseInt(CRM.vars.stripe.id);
    
          var chosenProcessorId = null;
    
          // Handle multiple payment options and Stripe not being chosen.
    
          // @fixme this needs refactoring as some is not relevant anymore (with stripe 6.0)
    
          if (getIsDrupalWebform()) {
    
            // this element may or may not exist on the webform, but we are dealing with a single (stripe) processor enabled.
            if (!$('input[name="submitted[civicrm_1_contribution_1_contribution_payment_processor_id]"]').length) {
              chosenProcessorId = stripeProcessorId;
            } else {
    
              chosenProcessorId = parseInt(form.querySelector('input[name="submitted[civicrm_1_contribution_1_contribution_payment_processor_id]"]:checked').value);
    
            // Most forms have payment_processor-section but event registration has credit_card_info-section
    
            if ((form.querySelector(".crm-section.payment_processor-section") !== null) ||
              (form.querySelector(".crm-section.credit_card_info-section") !== null)) {
    
              if (form.querySelector('input[name="payment_processor_id"]:checked') !== null) {
    
                chosenProcessorId = parseInt(form.querySelector('input[name="payment_processor_id"]:checked').value);
    
    
          // If any of these are true, we are not using the stripe processor:
          // - Is the selected processor ID pay later (0)
          // - Is the Stripe processor ID defined?
          // - Is selected processor ID and stripe ID undefined? If we only have stripe ID, then there is only one (stripe) processor on the page
    
          if ((chosenProcessorId === 0) || (stripeProcessorId === null) ||
            ((chosenProcessorId === null) && (stripeProcessorId === null))) {
    
            debugging('Not a Stripe transaction, or pay-later');
    
            debugging('Stripe is the selected payprocessor');
    
    mattwire's avatar
    mattwire committed
          // Don't handle submits generated by non-stripe processors
    
          if (typeof CRM.vars.stripe.publishableKey === 'undefined') {
    
            debugging('submit missing stripe-pub-key element or value');
    
    mattwire's avatar
    mattwire committed
            return true;
          }
    
          // Don't handle submits generated by the CiviDiscount button.
    
          if (form.dataset.submitdontprocess === true) {
    
            debugging('non-payment submit detected - not submitting payment');
    
          if (getIsDrupalWebform()) {
    
            // If we have selected Stripe but amount is 0 we don't submit via Stripe
            if ($('#billing-payment-block').is(':hidden')) {
              debugging('no payment processor on webform');
              return true;
    
    
            // If we have more than one processor (user-select) then we have a set of radio buttons:
            var $processorFields = $('[name="submitted[civicrm_1_contribution_1_contribution_payment_processor_id]"]');
    
            if ($processorFields.length) {
    
              if ($processorFields.filter(':checked').val() === '0' || $processorFields.filter(':checked').val() === 0) {
    
    mattwire's avatar
    mattwire committed
                debugging('no payment processor selected');
    
    mattwire's avatar
    mattwire committed
            return nonStripeSubmit();
    
          // Lock to prevent multiple submissions
    
          if (form.dataset.submitted === true) {
    
            // Previously submitted - don't submit again
            alert('Form already submitted. Please wait.');
    
            return false;
    
          } else {
            // Mark it so that the next submit can be ignored
    
            form.dataset.submitted = true;
    
          }
    
          // Disable the submit button to prevent repeated clicks
    
          for (i = 0; i < submitButtons.length; ++i) {
            submitButtons[i].setAttribute('disabled', true);
          }
    
    
          // Create a token when the form is submitted.
    
    mattwire's avatar
    mattwire committed
        }
    
      function getIsDrupalWebform() {
        // form class for drupal webform: webform-client-form (drupal 7); webform-submission-form (drupal 8)
        if (form !== null) {
          return form.classList.contains('webform-client-form') || form.classList.contains('webform-submission-form');
        }
        return false;
    
      }
    
      function getBillingForm() {
    
        // If we have a stripe billing form on the page
    
        var billingFormID = $('div#card-element').closest('form').prop('id');
    
        if ((typeof billingFormID === 'undefined') || (!billingFormID.length)) {
    
          // If we have multiple payment processors to select and stripe is not currently loaded
    
          billingFormID = $('input[name=hidden_processor]').closest('form').prop('id');
    
        // We have to use document.getElementById here so we have the right elementtype for appendChild()
        return document.getElementById(billingFormID);
    
      }
    
      function getBillingSubmit() {
    
        var submit = null;
        if (getIsDrupalWebform()) {
    
          submit = form.querySelectorAll('[type="submit"].webform-submit');
    
            // drupal 8 webform
    
            submit = form.querySelectorAll('[type="submit"].webform-button--submit');
    
          submit = form.querySelectorAll('[type="submit"].validate');
    
        return submit;
    
        if (isEventAdditionalParticipants()) {
          totalFee = null;
    
        }
        else if (document.getElementById('totalTaxAmount') !== null) {
          totalFee = parseFloat(calculateTaxAmount());
          debugging('Calculated amount using internal calculateTaxAmount()');
    
        else if (typeof calculateTotalFee == 'function') {
    
          // This is ONLY triggered in the following circumstances on a CiviCRM contribution page:
          // - With a priceset that allows a 0 amount to be selected.
          // - When Stripe is the ONLY payment processor configured on the page.
    
          totalFee = parseFloat(calculateTotalFee());
    
        else if (getIsDrupalWebform()) {
          // This is how webform civicrm calculates the amount in webform_civicrm_payment.js
          $('.line-item:visible', '#wf-crm-billing-items').each(function() {
            totalFee += parseFloat($(this).data('amount'));
          });
    
    mattwire's avatar
    mattwire committed
        }
        else if (document.getElementById('total_amount')) {
          // The input#total_amount field exists on backend contribution forms
    
          totalFee = parseFloat(document.getElementById('total_amount').value);
        }
    
        debugging('getTotalAmount: ' + totalFee);
    
      }
    
      // This is calculated in CRM/Contribute/Form/Contribution.tpl and is used to calculate the total
      //   amount with tax on backend submit contribution forms.
      // The only way we can get the amount is by parsing the text field and extracting the final bit after the space.
      // eg. "Amount including Tax: $ 4.50" gives us 4.50.
      // The PHP side is responsible for converting money formats (we just parse to cents and remove any ,. chars).
      function calculateTaxAmount() {
        var totalTaxAmount = 0;
        if (document.getElementById('totalTaxAmount') === null) {
          return totalTaxAmount;
    
        // If tax and invoicing is disabled totalTaxAmount div exists but is empty
        if (document.getElementById('totalTaxAmount').textContent.length === 0) {
          totalTaxAmount = document.getElementById('total_amount').value;
        }
        else {
          // Otherwise totalTaxAmount div contains a textual amount including currency symbol
          totalTaxAmount = document.getElementById('totalTaxAmount').textContent.split(' ').pop();
        }
    
    mattwire's avatar
    mattwire committed
        var isRecur = false;
    
        // Auto-renew contributions for CiviCRM Webforms.
        if (getIsDrupalWebform()) {
          if($('input[id$="contribution-installments"]').length !== 0 && $('input[id$="contribution-installments"]').val() > 1 ) {
            isRecur = true;
          }
        }
    
        // Auto-renew contributions
    
        if (document.getElementById('is_recur') !== null) {
    
          if (document.getElementById('is_recur').type == 'hidden') {
    
    mattwire's avatar
    mattwire committed
            isRecur = (document.getElementById('is_recur').value == 1);
          }
          else {
            isRecur = Boolean(document.getElementById('is_recur').checked);
    
        // Auto-renew memberships
    
    mattwire's avatar
    mattwire committed
        // This gets messy quickly!
        // input[name="auto_renew"] : set to 1 when there is a force-renew membership with no priceset.
        else if ($('input[name="auto_renew"]').length !== 0) {
          if ($('input[name="auto_renew"]').prop('checked')) {
            isRecur = true;
          }
          else if (document.getElementById('auto_renew').type == 'hidden') {
            isRecur = (document.getElementById('auto_renew').value == 1);
          }
          else {
            isRecur = Boolean(document.getElementById('auto_renew').checked);
    
    mattwire's avatar
    mattwire committed
        debugging('isRecur is ' + isRecur);
        return isRecur;
    
      function cardElementChanged(event) {
        if (event.empty) {
          $('div#card-errors').hide();
        }
        else if (event.error) {
          displayError(event.error);
        }
        else if (event.complete) {
          $('div#card-errors').hide();
          var postCodeElement = document.getElementById('billing_postal_code-' + CRM.vars.stripe.billingAddressID);
          if (postCodeElement) {
            postCodeElement.value = event.value.postalCode;
          }
    
        }
      }
    
      function addSupportForCiviDiscount() {
        // Add a keypress handler to set flag if enter is pressed
        cividiscountElements = form.querySelectorAll('input#discountcode');
    
        var cividiscountHandleKeydown = function(e) {
    
            if (e.keyCode === 13) {
              e.preventDefault();
              debugging('adding submitdontprocess');
              form.dataset.submitdontprocess = true;
            }
    
        };
    
        for (i = 0; i < cividiscountElements.length; ++i) {
          cividiscountElements[i].addEventListener('keydown', cividiscountHandleKeydown);
    
      function setBillingFieldsRequiredForJQueryValidate() {
        // Work around https://github.com/civicrm/civicrm-core/compare/master...mattwire:stripe_147
        // The main billing fields do not get set to required so don't get checked by jquery validateform.
    
        // This also applies to any radio button in billing/profiles so we flag every element with a crm-marker
    
        // See also https://github.com/civicrm/civicrm-core/pull/16488 for a core fix
    
        $('div.label span.crm-marker').each(function() {
    
          $(this).closest('div').next('div').find('input').addClass('required');
    
        var validator = $(form).validate();
        validator.settings.errorClass = 'crm-inline-error alert alert-danger';
        validator.settings.ignore = '.select2-offscreen, [readonly], :hidden:not(.crm-select2)';
    
      function isEventAdditionalParticipants() {
        if ((document.getElementById('additional_participants') !== null) &&
          (document.getElementById('additional_participants').value.length !== 0)) {
          debugging('We don\'t know the final price - registering additional participants');
          return true;
        }
        return false;
      }
    
    
    mattwire's avatar
    mattwire committed
      function debugging(errorCode) {
    
        // Uncomment the following to debug unexpected returns.
    
        if ((typeof(CRM.vars.stripe) === 'undefined') || (Boolean(CRM.vars.stripe.jsDebug) === true)) {
    
          console.log(new Date().toISOString() + ' civicrm_stripe.js: ' + errorCode);
        }
    
      function addDrupalWebformActionElement(submitAction) {
        var hiddenInput = null;
        if (document.getElementById('action') !== null) {
          hiddenInput = document.getElementById('action');
        }
        else {
          hiddenInput = document.createElement('input');
        }
        hiddenInput.setAttribute('type', 'hidden');
        hiddenInput.setAttribute('name', 'op');
        hiddenInput.setAttribute('id', 'action');
        hiddenInput.setAttribute('value', submitAction);
        form.appendChild(hiddenInput);
      }
    
    
      /**
       * Get the selected payment processor on the form
       * @returns int
       */
      function getPaymentProcessorSelectorValue() {
        if ((typeof form === 'undefined') || (!form)) {
          form = getBillingForm();
          if (!form) {
            return null;
          }
        }
        var paymentProcessorSelected = form.querySelector('input[name="payment_processor_id"]:checked');
        if (paymentProcessorSelected !== null) {
          return parseInt(paymentProcessorSelected.value);
        }
        return null;
      }