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
1ee49d4d
Commit
1ee49d4d
authored
3 years ago
by
mattwire
Browse files
Options
Downloads
Patches
Plain Diff
Switch final instances of static Stripe library access to object
parent
82391755
No related branches found
Branches containing commit
No related tags found
1 merge request
!176
Release 6.7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CRM/Stripe/Customer.php
+1
-1
1 addition, 1 deletion
CRM/Stripe/Customer.php
CRM/Stripe/Upgrader.php
+7
-6
7 additions, 6 deletions
CRM/Stripe/Upgrader.php
stripe.php
+2
-3
2 additions, 3 deletions
stripe.php
utils/fix-issue-44.php
+4
-2
4 additions, 2 deletions
utils/fix-issue-44.php
with
14 additions
and
12 deletions
CRM/Stripe/Customer.php
+
1
−
1
View file @
1ee49d4d
...
...
@@ -180,7 +180,7 @@ class CRM_Stripe_Customer {
$stripeCustomerParams
=
self
::
getStripeCustomerMetadata
(
$params
);
try
{
$stripeCustomer
=
\Stripe\C
ustomer
::
update
(
$stripeCustomerID
,
$stripeCustomerParams
);
$stripeCustomer
=
$stripe
->
stripeClient
->
c
ustomer
s
->
update
(
$stripeCustomerID
,
$stripeCustomerParams
);
}
catch
(
Exception
$e
)
{
$err
=
CRM_Core_Payment_Stripe
::
parseStripeException
(
'create_customer'
,
$e
,
FALSE
);
...
...
This diff is collapsed.
Click to expand it.
CRM/Stripe/Upgrader.php
+
7
−
6
View file @
1ee49d4d
...
...
@@ -158,21 +158,22 @@ class CRM_Stripe_Upgrader extends CRM_Stripe_Upgrader_Base {
$dbName
=
DB
::
connect
(
$config
->
dsn
)
->
_db
;
$null_count
=
CRM_Core_DAO
::
executeQuery
(
'SELECT COUNT(*) FROM civicrm_stripe_subscriptions where subscription_id IS NULL'
);
if
(
$null_count
==
0
)
{
if
(
$null_count
==
0
)
{
$this
->
ctx
->
log
->
info
(
'Skipped civicrm_stripe update 5004. No nulls found in column subscription_id in our civicrm_stripe_subscriptions table.'
);
}
else
{
$customer_infos
=
CRM_Core_DAO
::
executeQuery
(
"SELECT customer_id,processor_id
FROM `civicrm_stripe_subscriptions`;"
);
while
(
$customer_infos
->
fetch
()
)
{
while
(
$customer_infos
->
fetch
())
{
$processor_id
=
$customer_infos
->
processor_id
;
$customer_id
=
$customer_infos
->
customer_id
;
try
{
$processor
=
new
CRM_Core_Payment_Stripe
(
''
,
civicrm_api3
(
'PaymentProcessor'
,
'getsingle'
,
[
'id'
=>
$processor_id
]));
/** @var \CRM_Core_Payment_Stripe $paymentProcessor */
$paymentProcessor
=
\Civi\Payment\System
::
singleton
()
->
getById
(
$processor_id
);
$subscription
=
\Stripe\S
ubscription
::
all
([
'customer'
=>
$customer_id
,
'limit'
=>
1
,
$subscription
=
$paymentProcessor
->
stripeClient
->
s
ubscription
s
->
all
([
'customer'
=>
$customer_id
,
'limit'
=>
1
,
]);
}
catch
(
Exception
$e
)
{
...
...
This diff is collapsed.
Click to expand it.
stripe.php
+
2
−
3
View file @
1ee49d4d
...
...
@@ -150,7 +150,6 @@ function stripe_civicrm_buildForm($formName, &$form) {
/** @var \CRM_Core_Payment_Stripe $paymentProcessor */
$paymentProcessor
=
\Civi\Payment\System
::
singleton
()
->
getById
(
$form
->
_paymentProcessor
[
'id'
]);
$paymentProcessor
->
setAPIParams
();
try
{
$jsVars
=
[
'id'
=>
$form
->
_paymentProcessor
[
'id'
],
...
...
@@ -164,7 +163,7 @@ function stripe_civicrm_buildForm($formName, &$form) {
switch
(
substr
(
$paymentIntent
[
'stripe_intent_id'
],
0
,
2
))
{
case
'pi'
:
// pi_ Stripe PaymentIntent
$stripePaymentIntent
=
\Stripe\P
aymentIntent
::
retrieve
(
$paymentIntent
[
'stripe_intent_id'
]);
$stripePaymentIntent
=
$paymentProcessor
->
stripeClient
->
p
aymentIntent
s
->
retrieve
(
$paymentIntent
[
'stripe_intent_id'
]);
// We need the confirmation_method to decide whether to use handleCardAction (manual) or handleCardPayment (automatic) on the js side
$jsVars
[
'paymentIntentID'
]
=
$stripePaymentIntent
->
id
;
$jsVars
[
'intentStatus'
]
=
$stripePaymentIntent
->
status
;
...
...
@@ -173,7 +172,7 @@ function stripe_civicrm_buildForm($formName, &$form) {
case
'se'
:
// seti_ Stripe SetupIntent
$stripeSetupIntent
=
\Stripe\S
etupIntent
::
retrieve
(
$paymentIntent
[
'stripe_intent_id'
]);
$stripeSetupIntent
=
$paymentProcessor
->
stripeClient
->
s
etupIntent
s
->
retrieve
(
$paymentIntent
[
'stripe_intent_id'
]);
$jsVars
[
'setupIntentID'
]
=
$stripeSetupIntent
->
id
;
$jsVars
[
'setupIntentNextAction'
]
=
$stripeSetupIntent
->
next_action
;
$jsVars
[
'setupIntentClientSecret'
]
=
$stripeSetupIntent
->
client_secret
;
...
...
This diff is collapsed.
Click to expand it.
utils/fix-issue-44.php
+
4
−
2
View file @
1ee49d4d
...
...
@@ -51,10 +51,12 @@ while ($dao->fetch()) {
if
(
!
$paymentProcessor
)
{
echo
"Failed to find a stripe payment processor for recurring contrib
$dao->contribution_recur_id
\n
"
;
}
$processor
=
new
CRM_Core_Payment_Stripe
(
''
,
civicrm_api3
(
'PaymentProcessor'
,
'getsingle'
,
[
'id'
=>
$paymentProcessor
[
'id'
]]));
/** @var \CRM_Core_Payment_Stripe $processor */
$processor
=
\Civi\Payment\System
::
singleton
()
->
getById
(
$paymentProcessor
[
'id'
]);
try
{
$results
=
C
harge
::
retrieve
(
[
'id'
=>
$dao
->
trxn_id
]
);
$results
=
$processor
->
stripeClient
->
c
harge
s
->
retrieve
(
$dao
->
trxn_id
);
//print json_encode($results, JSON_PRETTY_PRINT);
if
(
empty
(
$results
->
created
))
{
echo
" Failed to retrieve a charge created date
\n
"
;
...
...
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