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
a7c40820
Commit
a7c40820
authored
10 years ago
by
Richard Burton
Browse files
Options
Downloads
Patches
Plain Diff
Better multiple processor handling; reuse existing stripe token
parent
52ab0372
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
js/civicrm_stripe.js
+27
-1
27 additions, 1 deletion
js/civicrm_stripe.js
stripe.php
+3
-0
3 additions, 0 deletions
stripe.php
with
30 additions
and
1 deletion
js/civicrm_stripe.js
+
27
−
1
View file @
a7c40820
...
...
@@ -61,7 +61,7 @@
if
(
isWebform
)
{
if
(
!
(
$
(
'
#action
'
).
length
))
{
$form
.
append
(
$
(
'
<input type="hidden" name="op" id="action" />
'
)
)
;
$form
.
append
(
'
<input type="hidden" name="op" id="action" />
'
);
}
$
(
document
).
keypress
(
function
(
event
)
{
if
(
event
.
which
==
13
)
{
...
...
@@ -75,6 +75,18 @@
$
(
'
#billingcheckbox:input
'
).
hide
();
$
(
'
label[for="billingcheckbox"]
'
).
hide
();
}
else
{
// This is native civicrm form - check for existing token
if
(
$form
.
find
(
"
input#stripe-token
"
).
val
())
{
$
(
'
.credit_card_info-group
'
).
hide
();
$
(
'
#billing-payment-block
'
).
append
(
'
<input type="button" value="Edit CC details" id="ccButton" />
'
);
$
(
'
#ccButton
'
).
click
(
function
()
{
$
(
'
.credit_card_info-group
'
).
show
();
$
(
'
#ccButton
'
).
hide
();
$form
.
find
(
'
input#stripe-token
'
).
val
(
''
);
});
}
}
$submit
.
removeAttr
(
'
onclick
'
);
...
...
@@ -117,12 +129,26 @@
if
(
!
(
$form
.
find
(
'
input[name="hidden_processor"]
'
).
length
>
0
))
{
return
true
;
}
if
(
$form
.
find
(
'
input[name="payment_processor"]:checked
'
).
length
)
{
processorId
=
$form
.
find
(
'
input[name="payment_processor"]:checked
'
).
val
();
if
(
!
(
$form
.
find
(
'
input[name="stripe_token"]
'
).
length
)
||
(
$
(
'
#stripe-id
'
).
length
&&
$
(
'
#stripe-id
'
).
val
()
!=
processorId
))
{
return
true
;
}
}
}
// Handle pay later (option value '0' in payment_processor radio group)
if
(
$form
.
find
(
'
input[name="payment_processor"]:checked
'
).
length
&&
!
parseInt
(
$form
.
find
(
'
input[name="payment_processor"]:checked
'
).
val
()))
{
return
true
;
}
// Handle reuse of existing token
if
(
$form
.
find
(
"
input#stripe-token
"
).
val
())
{
$form
.
find
(
"
input#credit_card_number
"
).
removeAttr
(
'
name
'
);
$form
.
find
(
"
input#cvv2
"
).
removeAttr
(
'
name
'
);
return
true
;
}
event
.
preventDefault
();
event
.
stopPropagation
();
...
...
This diff is collapsed.
Click to expand it.
stripe.php
+
3
−
0
View file @
a7c40820
...
...
@@ -152,6 +152,7 @@ function stripe_civicrm_buildForm($formName, &$form) {
* $form->_attributes['class'] .= ' stripe-payment-form';
*/
$form
->
addElement
(
'hidden'
,
'stripe_token'
,
NULL
,
array
(
'id'
=>
'stripe-token'
));
$form
->
addElement
(
'hidden'
,
'stripe_id'
,
$form
->
_paymentProcessor
[
'id'
],
array
(
'id'
=>
'stripe-id'
));
stripe_add_stripe_js
(
$form
);
}
}
...
...
@@ -165,6 +166,8 @@ function stripe_civicrm_buildForm($formName, &$form) {
if
(
!
empty
(
$params
[
'stripe_token'
]))
{
// Stash the token (including its value) in Confirm, in case they go backwards.
$form
->
addElement
(
'hidden'
,
'stripe_token'
,
$params
[
'stripe_token'
],
array
(
'id'
=>
'stripe-token'
));
// Stash stripe payment processor id
$form
->
addElement
(
'hidden'
,
'stripe_id'
,
$form
->
_paymentProcessor
[
'id'
],
array
(
'id'
=>
'stripe-id'
));
}
}
}
...
...
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