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
f5d1473d
Commit
f5d1473d
authored
8 years ago
by
Peter Hartmann
Browse files
Options
Downloads
Patches
Plain Diff
possible fix for
#155
- makes transactions
parent
5e0af5f3
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
CRM/Core/Payment/Stripe.php
+67
-87
67 additions, 87 deletions
CRM/Core/Payment/Stripe.php
stripe.php
+32
-0
32 additions, 0 deletions
stripe.php
with
99 additions
and
87 deletions
CRM/Core/Payment/Stripe.php
+
67
−
87
View file @
f5d1473d
<?php
/**
* Return the stripe api public key (aka password)
*
* If this form could conceiveably now or at any time in the future
* contain a Stripe payment processor, return the api public key for
* that processor.
*/
function
stripe_get_key
(
$form
)
{
if
(
empty
(
$form
->
_paymentProcessor
))
{
return
;
}
// Only return first value if Stripe is the only/default.
if
(
$form
->
_paymentProcessor
[
'payment_processor_type'
]
==
'Stripe'
)
{
if
(
isset
(
$form
->
_paymentProcessor
[
'password'
]))
{
return
$form
->
_paymentProcessor
[
'password'
];
}
}
// Otherwise we need to look through all active payprocs and find Stripe.
$is_test
=
0
;
if
(
isset
(
$form
->
_mode
))
{
$is_test
=
$form
->
_mode
==
'live'
?
0
:
1
;
}
// The _paymentProcessors array seems to be the most reliable way to find
// if the form is using Stripe.
if
(
!
empty
(
$form
->
_paymentProcessors
))
{
foreach
(
$form
->
_paymentProcessors
as
$pp
)
{
if
(
$pp
[
'payment_processor_type'
]
==
'Stripe'
)
{
if
(
!
empty
(
$pp
[
'password'
]))
{
return
$pp
[
'password'
];
}
// We have a match.
return
stripe_get_key_for_name
(
$pp
[
'name'
],
$is_test
);
}
}
}
// Return NULL if this is not a form with Stripe involved.
return
NULL
;
}
/**
* Given a payment processor name, return the pub key.
*/
function
stripe_get_key_for_name
(
$name
,
$is_test
)
{
try
{
$params
=
array
(
'name'
=>
$name
,
'is_test'
=>
$is_test
);
$results
=
civicrm_api3
(
'PaymentProcessor'
,
'get'
,
$params
);
if
(
$results
[
'count'
]
==
1
)
{
$result
=
array_pop
(
$results
[
'values'
]);
return
$result
[
'password'
];
}
}
catch
(
CiviCRM_API3_Exception
$e
)
{
return
NULL
;
}
}
/**
* Add publishable key and event bindings for Stripe.js.
*/
function
stripe_add_stripe_js
(
$stripe_key
,
$form
)
{
$form
->
addElement
(
'hidden'
,
'stripe_pub_key'
,
$stripe_key
,
array
(
'id'
=>
'stripe-pub-key'
));
CRM_Core_Resources
::
singleton
()
->
addScriptFile
(
'com.drastikbydesign.stripe'
,
'js/civicrm_stripe.js'
,
0
);
}
/*
* Payment Processor class for Stripe
*/
...
...
@@ -231,8 +298,6 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
return
$return
;
}
/**
* Implementation of hook_civicrm_validateForm().
*
...
...
@@ -244,26 +309,7 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
* @param $form - reference to the form object
* @param $errors - Reference to the errors array.
*
* @todo This won't run, and needs to be moved elsewhere.
*/
/*public function stripe_civicrm_validateForm($formName, &$fields, &$files, &$form, &$errors) {
if (empty($form->_paymentProcessor['payment_processor_type'])) {
return;
}
// If Stripe is active here.
if (isset($form->_elementIndex['stripe_token'])) {
if ($form->elementExists('credit_card_number')) {
$cc_field = $form->getElement('credit_card_number');
$form->removeElement('credit_card_number', true);
$form->addElement($cc_field);
}
if ($form->elementExists('cvv2')) {
$cvv2_field = $form->getElement('cvv2');
$form->removeElement('cvv2', true);
$form->addElement($cvv2_field);
}
}
}*/
/**
* Implementation of hook_civicrm_buildForm().
...
...
@@ -296,72 +342,6 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
}
}
/**
* Return the stripe api public key (aka password)
*
* If this form could conceiveably now or at any time in the future
* contain a Stripe payment processor, return the api public key for
* that processor.
*/
public
function
stripe_get_key
(
$form
)
{
if
(
empty
(
$form
->
_paymentProcessor
))
{
return
;
}
// Only return first value if Stripe is the only/default.
if
(
$form
->
_paymentProcessor
[
'payment_processor_type'
]
==
'Stripe'
)
{
if
(
isset
(
$form
->
_paymentProcessor
[
'password'
]))
{
return
$form
->
_paymentProcessor
[
'password'
];
}
}
// Otherwise we need to look through all active payprocs and find Stripe.
$is_test
=
0
;
if
(
isset
(
$form
->
_mode
))
{
$is_test
=
$form
->
_mode
==
'live'
?
0
:
1
;
}
// The _paymentProcessors array seems to be the most reliable way to find
// if the form is using Stripe.
if
(
!
empty
(
$form
->
_paymentProcessors
))
{
foreach
(
$form
->
_paymentProcessors
as
$pp
)
{
if
(
$pp
[
'payment_processor_type'
]
==
'Stripe'
)
{
if
(
!
empty
(
$pp
[
'password'
]))
{
return
$pp
[
'password'
];
}
// We have a match.
return
stripe_get_key_for_name
(
$pp
[
'name'
],
$is_test
);
}
}
}
// Return NULL if this is not a form with Stripe involved.
return
NULL
;
}
/**
* Given a payment processor name, return the pub key.
*/
public
function
stripe_get_key_for_name
(
$name
,
$is_test
)
{
try
{
$params
=
array
(
'name'
=>
$name
,
'is_test'
=>
$is_test
);
$results
=
civicrm_api3
(
'PaymentProcessor'
,
'get'
,
$params
);
if
(
$results
[
'count'
]
==
1
)
{
$result
=
array_pop
(
$results
[
'values'
]);
return
$result
[
'password'
];
}
}
catch
(
CiviCRM_API3_Exception
$e
)
{
return
NULL
;
}
}
/**
* Add publishable key and event bindings for Stripe.js.
*/
public
function
stripe_add_stripe_js
(
$stripe_key
,
$form
)
{
$form
->
addElement
(
'hidden'
,
'stripe_pub_key'
,
$stripe_key
,
array
(
'id'
=>
'stripe-pub-key'
));
CRM_Core_Resources
::
singleton
()
->
addScriptFile
(
'com.drastikbydesign.stripe'
,
'js/civicrm_stripe.js'
,
0
);
}
/**
* Submit a payment using Stripe's PHP API:
* https://stripe.com/docs/api?lang=php
...
...
This diff is collapsed.
Click to expand it.
stripe.php
+
32
−
0
View file @
f5d1473d
...
...
@@ -151,3 +151,35 @@ function stripe_civicrm_managed(&$entities) {
return
_stripe_civix_civicrm_managed
(
$entities
);
}
/**
* 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
(
empty
(
$form
->
_paymentProcessor
[
'payment_processor_type'
]))
{
return
;
}
// If Stripe is active here.
if
(
isset
(
$form
->
_elementIndex
[
'stripe_token'
]))
{
if
(
$form
->
elementExists
(
'credit_card_number'
))
{
$cc_field
=
$form
->
getElement
(
'credit_card_number'
);
$form
->
removeElement
(
'credit_card_number'
,
true
);
$form
->
addElement
(
$cc_field
);
}
if
(
$form
->
elementExists
(
'cvv2'
))
{
$cvv2_field
=
$form
->
getElement
(
'cvv2'
);
$form
->
removeElement
(
'cvv2'
,
true
);
$form
->
addElement
(
$cvv2_field
);
}
}
}
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