Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mjwshared
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
mjwshared
Commits
6c2e042a
Commit
6c2e042a
authored
4 years ago
by
mattwire
Browse files
Options
Downloads
Patches
Plain Diff
Update comments/docblocks
parent
0e51e8bc
No related branches found
Branches containing commit
Tags
0.4.2
Tags containing commit
1 merge request
!6
0.7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Core/Payment/MJWIPNTrait.php
+17
-2
17 additions, 2 deletions
CRM/Core/Payment/MJWIPNTrait.php
CRM/Mjwshared/Resources.php
+1
-1
1 addition, 1 deletion
CRM/Mjwshared/Resources.php
with
18 additions
and
3 deletions
CRM/Core/Payment/MJWIPNTrait.php
+
17
−
2
View file @
6c2e042a
...
...
@@ -138,6 +138,7 @@ trait CRM_Core_Payment_MJWIPNTrait {
*
* @param array $params
*
* @throws \CRM_Core_Exception
* @throws \CiviCRM_API3_Exception
*/
protected
function
updateContributionRefund
(
$params
)
{
...
...
@@ -170,6 +171,8 @@ trait CRM_Core_Payment_MJWIPNTrait {
* Array of params that are required
* @param array $params
* Array of params to check
*
* @throws \Civi\Payment\Exception\PaymentProcessorException
*/
protected
function
checkRequiredParams
(
$description
,
$requiredParams
,
$params
)
{
foreach
(
$requiredParams
as
$required
)
{
...
...
@@ -184,6 +187,7 @@ trait CRM_Core_Payment_MJWIPNTrait {
* @param array $params
*
* @throws \CiviCRM_API3_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
*/
protected
function
updateRecurCancelled
(
$params
)
{
$this
->
checkRequiredParams
(
'updateRecurCancelled'
,
[
'id'
],
$params
);
...
...
@@ -195,6 +199,7 @@ trait CRM_Core_Payment_MJWIPNTrait {
* @param array $params
*
* @throws \CiviCRM_API3_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
*/
private
function
updateRecurSuccess
(
$params
)
{
$this
->
checkRequiredParams
(
'updateRecurSuccess'
,
[
'id'
],
$params
);
...
...
@@ -210,6 +215,7 @@ trait CRM_Core_Payment_MJWIPNTrait {
* @param array $params
*
* @throws \CiviCRM_API3_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
*/
private
function
updateRecurCompleted
(
$params
)
{
$this
->
checkRequiredParams
(
'updateRecurCompleted'
,
[
'id'
],
$params
);
...
...
@@ -223,6 +229,7 @@ trait CRM_Core_Payment_MJWIPNTrait {
* @param array $params
*
* @throws \CiviCRM_API3_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
*/
private
function
updateRecurFailed
(
$params
)
{
$this
->
checkRequiredParams
(
'updateRecurFailed'
,
[
'id'
],
$params
);
...
...
@@ -243,7 +250,7 @@ trait CRM_Core_Payment_MJWIPNTrait {
/**
* Repeat a contribution (call the Contribution.repeattransaction API)
*
* @param
string $statu
s
* @param
array $param
s
*
* @throws \CiviCRM_API3_Exception
*/
...
...
@@ -259,7 +266,10 @@ trait CRM_Core_Payment_MJWIPNTrait {
/**
* Complete a pending contribution and update associated entities (recur/membership)
*
* @param array $params
*
* @throws \CiviCRM_API3_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
*/
private
function
updateContributionCompleted
(
$params
)
{
$this
->
checkRequiredParams
(
'updateContributionCompleted'
,
[
'id'
,
'trxn_date'
,
'contribution_trxn_id'
,
'payment_trxn_id'
],
$params
);
...
...
@@ -276,6 +286,7 @@ trait CRM_Core_Payment_MJWIPNTrait {
* @param array $params ['id', 'receive_date'{, cancel_date, cancel_reason}]
*
* @throws \CiviCRM_API3_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
*/
private
function
updateContributionFailed
(
$params
)
{
$this
->
checkRequiredParams
(
'updateContributionFailed'
,
[
'id'
,
'receive_date'
,
'payment_trxn_id'
],
$params
);
...
...
@@ -295,6 +306,7 @@ trait CRM_Core_Payment_MJWIPNTrait {
* @param string $orderReference
*
* @throws \CiviCRM_API3_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
*/
private
function
updatePaymentTrxnID
(
$contributionID
,
$trxnID
,
$orderReference
=
''
)
{
// @fixme: There needs to be a better way to do this!!
...
...
@@ -331,6 +343,8 @@ trait CRM_Core_Payment_MJWIPNTrait {
* Log and throw an IPN exception
*
* @param string $message
*
* @throws \Civi\Payment\Exception\PaymentProcessorException
*/
protected
function
exception
(
$message
)
{
$errorMessage
=
$this
->
_paymentProcessor
->
getPaymentProcessorLabel
()
.
' Exception: Event: '
.
$this
->
event_type
.
' Error: '
.
$message
;
...
...
@@ -339,7 +353,8 @@ trait CRM_Core_Payment_MJWIPNTrait {
http_response_code
(
400
);
exit
(
1
);
}
else
{
t
hrow
new
Exception
(
$message
);
T
hrow
new
\Civi\Payment\Exception\PaymentProcessor
Exception
(
$message
);
}
}
}
This diff is collapsed.
Click to expand it.
CRM/Mjwshared/Resources.php
+
1
−
1
View file @
6c2e042a
...
...
@@ -34,7 +34,7 @@ class CRM_Mjwshared_Resources extends CRM_Core_Resources {
* Usually the name of your extension.
* @param array $vars
* @param string $region
* The region to add settings to (eg. for payment processors usually billing-block
* The region to add settings to (eg. for payment processors usually billing-block
)
*
* @return CRM_Core_Resources
*/
...
...
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