Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Stripe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Extensions
Stripe
Commits
d1bf71d2
Commit
d1bf71d2
authored
10 years ago
by
Richard Burton
Browse files
Options
Downloads
Patches
Plain Diff
handle return key; add validateForm hook; better error messages
parent
ab887e3a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CRM/Core/Payment/Stripe.php
+4
-2
4 additions, 2 deletions
CRM/Core/Payment/Stripe.php
js/civicrm_stripe.js
+8
-5
8 additions, 5 deletions
js/civicrm_stripe.js
stripe.php
+22
-0
22 additions, 0 deletions
stripe.php
with
34 additions
and
7 deletions
CRM/Core/Payment/Stripe.php
+
4
−
2
View file @
d1bf71d2
...
@@ -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'
);
...
...
This diff is collapsed.
Click to expand it.
js/civicrm_stripe.js
+
8
−
5
View file @
d1bf71d2
...
@@ -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
);
});
});
...
...
This diff is collapsed.
Click to expand it.
stripe.php
+
22
−
0
View file @
d1bf71d2
...
@@ -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().
*
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment