Skip to content
Snippets Groups Projects
Commit d1bf71d2 authored by Richard Burton's avatar Richard Burton
Browse files

handle return key; add validateForm hook; better error messages

parent ab887e3a
No related branches found
No related tags found
No related merge requests found
...@@ -181,8 +181,9 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment { ...@@ -181,8 +181,9 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
else { else {
// Don't have return url - return error object to api // Don't have return url - return error object to api
$core_err = CRM_Core_Error::singleton(); $core_err = CRM_Core_Error::singleton();
$message = 'Oops! Looks like there was an error. Payment Response: <br />' . $error_message;
if ($err['code']) { if ($err['code']) {
$core_err->push($err['code'], 0, NULL, $err['message']); $core_err->push($err['code'], 0, NULL, $message);
} }
else { else {
$core_err->push(9000, 0, NULL, 'Unknown Error'); $core_err->push(9000, 0, NULL, 'Unknown Error');
...@@ -223,8 +224,9 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment { ...@@ -223,8 +224,9 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
else { else {
// Don't have return url - return error object to api // Don't have return url - return error object to api
$core_err = CRM_Core_Error::singleton(); $core_err = CRM_Core_Error::singleton();
$message = 'Oops! Looks like there was an error. Payment Response: <br />' . $error_message;
if ($err['code']) { if ($err['code']) {
$core_err->push($err['code'], 0, NULL, $err['message']); $core_err->push($err['code'], 0, NULL, $message);
} }
else { else {
$core_err->push(9000, 0, NULL, 'Unknown Error'); $core_err->push(9000, 0, NULL, 'Unknown Error');
......
...@@ -30,10 +30,8 @@ ...@@ -30,10 +30,8 @@
var token = response['id']; var token = response['id'];
// Update form with the token & submit. // Update form with the token & submit.
$form.find("input#stripe-token").val(token); $form.find("input#stripe-token").val(token);
if (isWebform) { $form.find("input#credit_card_number").removeAttr('name');
$form.find("input#credit_card_number").removeAttr('name'); $form.find("input#cvv2").removeAttr('name');
$form.find("input#cvv2").removeAttr('name');
}
$submit.prop('disabled', false); $submit.prop('disabled', false);
window.onbeforeunload = null; window.onbeforeunload = null;
$form.get(0).submit(); $form.get(0).submit();
...@@ -65,7 +63,12 @@ ...@@ -65,7 +63,12 @@
if (!($('#action').length)) { if (!($('#action').length)) {
$form.append($('<input type="hidden" name="op" id="action" />')); $form.append($('<input type="hidden" name="op" id="action" />'));
} }
var $actions = $form.find('input[type=submit]'); $(document).keypress(function(event) {
if (event.which == 13) {
event.preventDefault();
$submit.click();
}
});
$(":submit").click(function() { $(":submit").click(function() {
$('#action').val(this.value); $('#action').val(this.value);
}); });
......
...@@ -111,6 +111,28 @@ function stripe_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { ...@@ -111,6 +111,28 @@ function stripe_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
return _stripe_civix_civicrm_upgrade($op, $queue); return _stripe_civix_civicrm_upgrade($op, $queue);
} }
/**
* Implementation of hook_civicrm_validateForm().
*
* Prevent server validation of cc fields
*
* @param $formName - the name of the form
* @param $fields - Array of name value pairs for all 'POST'ed form values
* @param $files - Array of file properties as sent by PHP POST protocol
* @param $form - reference to the form object
* @param $errors - Reference to the errors array.
*/
function stripe_civicrm_validateForm($formName, &$fields, &$files, &$form, &$errors) {
if (isset($form->_paymentProcessor['payment_processor_type']) &&$form->_paymentProcessor['payment_processor_type'] == 'Stripe') {
if($form->elementExists('credit_card_number')){
$form->removeElement('credit_card_number');
}
if($form->elementExists('cvv2')){
$form->removeElement('cvv2');
}
}
}
/** /**
* Implementation of hook_civicrm_buildForm(). * Implementation of hook_civicrm_buildForm().
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment