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
67aab6e4
Commit
67aab6e4
authored
6 years ago
by
mattwire
Committed by
mattwire
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix StripeCustomer API params
parent
38eb8676
No related branches found
No related tags found
1 merge request
!33
Implement StripeSubscription.import API
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/v3/StripeCustomer.php
+17
-17
17 additions, 17 deletions
api/v3/StripeCustomer.php
api/v3/StripeSubscription.php
+1
-1
1 addition, 1 deletion
api/v3/StripeSubscription.php
with
18 additions
and
18 deletions
api/v3/StripeCustomer.php
+
17
−
17
View file @
67aab6e4
...
...
@@ -15,8 +15,8 @@ use CRM_Stripe_ExtensionUtil as E;
* @see http://wiki.civicrm.org/confluence/display/CRMDOC/API+Architecture+Standards
*/
function
_civicrm_api3_stripe_customer_get_spec
(
&
$spec
)
{
$spec
[
'id'
][
'title'
]
=
ts
(
"Stripe Customer ID"
);
$spec
[
'id'
][
'type'
]
=
CRM_Utils_Type
::
T_STRING
;
$spec
[
'
customer_
id'
][
'title'
]
=
ts
(
"Stripe Customer ID"
);
$spec
[
'
customer_
id'
][
'type'
]
=
CRM_Utils_Type
::
T_STRING
;
$spec
[
'contact_id'
][
'title'
]
=
ts
(
"CiviCRM Contact ID"
);
$spec
[
'contact_id'
][
'type'
]
=
CRM_Utils_Type
::
T_INT
;
$spec
[
'processor_id'
][
'title'
]
=
ts
(
"Payment Processor ID"
);
...
...
@@ -25,7 +25,7 @@ function _civicrm_api3_stripe_customer_get_spec(&$spec) {
/**
* StripeCustomer.Get API
* This api will
update
the civicrm_stripe_customers table
and add contact IDs for all known email addresses
* This api will
get a customer from
the civicrm_stripe_customers table
*
* @param array $params
* @see civicrm_api3_create_success
...
...
@@ -33,10 +33,10 @@ function _civicrm_api3_stripe_customer_get_spec(&$spec) {
* @return array
*/
function
civicrm_api3_stripe_customer_get
(
$params
)
{
$index
=
1
;
foreach
(
$params
as
$key
=>
$value
)
{
$index
=
1
;
switch
(
$key
)
{
case
'id'
:
case
'
customer_
id'
:
$where
[
$index
]
=
"
{
$key
}
=%
{
$index
}
"
;
$whereParam
[
$index
]
=
[
$value
,
'String'
];
$index
++
;
...
...
@@ -61,7 +61,7 @@ function civicrm_api3_stripe_customer_get($params) {
while
(
$dao
->
fetch
())
{
$result
=
[
'id'
=>
$dao
->
id
,
'
customer_
id'
=>
$dao
->
id
,
'contact_id'
=>
$dao
->
contact_id
,
'processor_id'
=>
$dao
->
processor_id
,
];
...
...
@@ -81,8 +81,8 @@ function civicrm_api3_stripe_customer_get($params) {
* @see http://wiki.civicrm.org/confluence/display/CRMDOC/API+Architecture+Standards
*/
function
_civicrm_api3_stripe_customer_delete_spec
(
&
$spec
)
{
$spec
[
'id'
][
'title'
]
=
ts
(
"Stripe Customer ID"
);
$spec
[
'id'
][
'type'
]
=
CRM_Utils_Type
::
T_STRING
;
$spec
[
'
customer_
id'
][
'title'
]
=
ts
(
"Stripe Customer ID"
);
$spec
[
'
customer_
id'
][
'type'
]
=
CRM_Utils_Type
::
T_STRING
;
$spec
[
'contact_id'
][
'title'
]
=
ts
(
"CiviCRM Contact ID"
);
$spec
[
'contact_id'
][
'type'
]
=
CRM_Utils_Type
::
T_INT
;
$spec
[
'processor_id'
][
'title'
]
=
ts
(
"Payment Processor ID"
);
...
...
@@ -113,9 +113,9 @@ function civicrm_api3_stripe_customer_delete($params) {
* @see http://wiki.civicrm.org/confluence/display/CRMDOC/API+Architecture+Standards
*/
function
_civicrm_api3_stripe_customer_create_spec
(
&
$spec
)
{
$spec
[
'id'
][
'title'
]
=
ts
(
"Stripe Customer ID"
);
$spec
[
'id'
][
'type'
]
=
CRM_Utils_Type
::
T_STRING
;
$spec
[
'id'
][
'api.required'
]
=
TRUE
;
$spec
[
'
customer_
id'
][
'title'
]
=
ts
(
"Stripe Customer ID"
);
$spec
[
'
customer_
id'
][
'type'
]
=
CRM_Utils_Type
::
T_STRING
;
$spec
[
'
customer_
id'
][
'api.required'
]
=
TRUE
;
$spec
[
'contact_id'
][
'title'
]
=
ts
(
"CiviCRM Contact ID"
);
$spec
[
'contact_id'
][
'type'
]
=
CRM_Utils_Type
::
T_INT
;
$spec
[
'contact_id'
][
'api.required'
]
=
TRUE
;
...
...
@@ -216,10 +216,10 @@ function civicrm_api3_stripe_customer_updatecontactids($params) {
}
function
_civicrm_api3_stripe_customer_updatestripemetadata_spec
(
&
$spec
)
{
$spec
[
'id'
][
'title'
]
=
E
::
ts
(
"Stripe Customer ID"
);
$spec
[
'id'
][
'description'
]
=
E
::
ts
(
'If set only this customer will be updated, otherwise we try and update ALL customers'
);
$spec
[
'id'
][
'type'
]
=
CRM_Utils_Type
::
T_STRING
;
$spec
[
'id'
][
'api.required'
]
=
FALSE
;
$spec
[
'
customer_
id'
][
'title'
]
=
E
::
ts
(
"Stripe Customer ID"
);
$spec
[
'
customer_
id'
][
'description'
]
=
E
::
ts
(
'If set only this customer will be updated, otherwise we try and update ALL customers'
);
$spec
[
'
customer_
id'
][
'type'
]
=
CRM_Utils_Type
::
T_STRING
;
$spec
[
'
customer_
id'
][
'api.required'
]
=
FALSE
;
$spec
[
'dryrun'
][
'api.required'
]
=
TRUE
;
$spec
[
'dryrun'
][
'type'
]
=
CRM_Utils_Type
::
T_BOOLEAN
;
$spec
[
'processor_id'
][
'api.required'
]
=
FALSE
;
...
...
@@ -242,7 +242,7 @@ function civicrm_api3_stripe_customer_updatestripemetadata($params) {
throw
new
CiviCRM_API3_Exception
(
'Missing required parameter dryrun'
);
}
// Check params
if
(
empty
(
$params
[
'id'
]))
{
if
(
empty
(
$params
[
'
customer_
id'
]))
{
// We're doing an update on all stripe customers
if
(
!
isset
(
$params
[
'processor_id'
]))
{
throw
new
CiviCRM_API3_Exception
(
'Missing required parameters processor_id when using without a customer id'
);
...
...
@@ -250,7 +250,7 @@ function civicrm_api3_stripe_customer_updatestripemetadata($params) {
$customerIds
=
CRM_Stripe_Customer
::
getAll
(
$params
[
'processor_id'
],
$params
[
'options'
]);
}
else
{
$customerIds
=
[
$params
[
'id'
]];
$customerIds
=
[
$params
[
'
customer_
id'
]];
}
foreach
(
$customerIds
as
$customerId
)
{
$customerParams
=
CRM_Stripe_Customer
::
getParamsForCustomerId
(
$customerId
);
...
...
This diff is collapsed.
Click to expand it.
api/v3/StripeSubscription.php
+
1
−
1
View file @
67aab6e4
...
...
@@ -156,7 +156,7 @@ function civicrm_api3_stripe_subscription_import($params) {
// Create the stripe customer in CiviCRM
$customerParams
=
[
'id'
=>
CRM_Stripe_Api
::
getObjectParam
(
'customer_id'
,
$stripeSubscription
),
'
customer_
id'
=>
CRM_Stripe_Api
::
getObjectParam
(
'customer_id'
,
$stripeSubscription
),
'contact_id'
=>
$params
[
'contact_id'
],
'processor_id'
=>
(
int
)
$params
[
'payment_processor_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