3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2013
35 class CRM_Core_Payment_BaseIPN
{
40 * Input parameters from payment processor. Store these so that
41 * the code does not need to keep retrieving from the http request
44 protected $_inputParameters = array();
49 function __construct() {
50 self
::$_now = date('YmdHis');
54 * Store input array on the class
55 * @param array $parameters
56 * @throws CRM_Core_Exceptions
58 function setInputParameters($parameters) {
59 if(!is_array($parameters)) {
60 throw new CRM_Core_Exceptions('Invalid input parameters');
62 $this->_inputParameters
= $parameters;
65 * Validate incoming data. This function is intended to ensure that incoming data matches
66 * It provides a form of pseudo-authentication - by checking the calling fn already knows
67 * the correct contact id & contribution id (this can be problematic when that has changed in
68 * the meantime for transactions that are delayed & contacts are merged in-between. e.g
69 * Paypal allows you to resend Instant Payment Notifications if you, for example, moved site
70 * and didn't update your IPN URL.
72 * @param array $input interpreted values from the values returned through the IPN
73 * @param array $ids more interpreted values (ids) from the values returned through the IPN
74 * @param array $objects an empty array that will be populated with loaded object
75 * @param boolean $required boolean Return FALSE if the relevant objects don't exist
76 * @param integer $paymentProcessorID Id of the payment processor ID in use
79 function validateData(&$input, &$ids, &$objects, $required = TRUE, $paymentProcessorID = NULL) {
81 // make sure contact exists and is valid
82 $contact = new CRM_Contact_BAO_Contact();
83 $contact->id
= $ids['contact'];
84 if (!$contact->find(TRUE)) {
85 CRM_Core_Error
::debug_log_message("Could not find contact record: {$ids['contact']} in IPN request: ".print_r($input, TRUE));
86 echo "Failure: Could not find contact record: {$ids['contact']}<p>";
90 // make sure contribution exists and is valid
91 $contribution = new CRM_Contribute_BAO_Contribution();
92 $contribution->id
= $ids['contribution'];
93 if (!$contribution->find(TRUE)) {
94 CRM_Core_Error
::debug_log_message("Could not find contribution record: {$contribution->id} in IPN request: ".print_r($input, TRUE));
95 echo "Failure: Could not find contribution record for {$contribution->id}<p>";
98 $contribution->receive_date
= CRM_Utils_Date
::isoToMysql($contribution->receive_date
);
100 $objects['contact'] = &$contact;
101 $objects['contribution'] = &$contribution;
102 if (!$this->loadObjects($input, $ids, $objects, $required, $paymentProcessorID)) {
110 * Load objects related to contribution
112 * @input array information from Payment processor
114 * @param array $objects
115 * @param boolean $required
116 * @param integer $paymentProcessorID
117 * @param array $error_handling
118 * @return multitype:number NULL |boolean
120 function loadObjects(&$input, &$ids, &$objects, $required, $paymentProcessorID, $error_handling = NULL) {
121 if (empty($error_handling)) {
122 // default options are that we log an error & echo it out
123 // note that we should refactor this error handling into error code @ some point
124 // but for now setting up enough separation so we can do unit tests
125 $error_handling = array(
130 $ids['paymentProcessor'] = $paymentProcessorID;
131 if (is_a($objects['contribution'], 'CRM_Contribute_BAO_Contribution')) {
132 $contribution = &$objects['contribution'];
135 //legacy support - functions are 'used' to be able to pass in a DAO
136 $contribution = new CRM_Contribute_BAO_Contribution();
137 $contribution->id
= CRM_Utils_Array
::value('contribution', $ids);
138 $contribution->find(TRUE);
139 $objects['contribution'] = &$contribution;
142 $success = $contribution->loadRelatedObjects($input, $ids, $required);
144 catch(Exception
$e) {
145 if (CRM_Utils_Array
::value('log_error', $error_handling)) {
146 CRM_Core_Error
::debug_log_message($e->getMessage());
148 if (CRM_Utils_Array
::value('echo_error', $error_handling)) {
149 echo ($e->getMessage());
151 if (CRM_Utils_Array
::value('return_error', $error_handling)) {
154 'error_message' => ($e->getMessage()),
158 $objects = array_merge($objects, $contribution->_relatedObjects
);
163 * Set contribution to failed
164 * @param array $objects
165 * @param object $transaction
166 * @param array $input
169 function failed(&$objects, &$transaction, $input = array()) {
170 $contribution = &$objects['contribution'];
171 $memberships = array();
172 if (CRM_Utils_Array
::value('membership', $objects)) {
173 $memberships = &$objects['membership'];
174 if (is_numeric($memberships)) {
175 $memberships = array($objects['membership']);
179 $addLineItems = FALSE;
180 if (empty($contribution->id
)) {
181 $addLineItems = TRUE;
183 $participant = &$objects['participant'];
185 $contributionStatus = CRM_Contribute_PseudoConstant
::contributionStatus(NULL, 'name');
186 $contribution->receive_date
= CRM_Utils_Date
::isoToMysql($contribution->receive_date
);
187 $contribution->receipt_date
= CRM_Utils_Date
::isoToMysql($contribution->receipt_date
);
188 $contribution->thankyou_date
= CRM_Utils_Date
::isoToMysql($contribution->thankyou_date
);
189 $contribution->contribution_status_id
= array_search('Failed', $contributionStatus);
190 $contribution->save();
192 //add lineitems for recurring payments
193 if (CRM_Utils_Array
::value('contributionRecur', $objects) && $objects['contributionRecur']->id
&& $addLineItems) {
194 $this->addrecurLineItems($objects['contributionRecur']->id
, $contribution->id
, CRM_Core_DAO
::$_nullArray);
197 //copy initial contribution custom fields for recurring contributions
198 if (CRM_Utils_Array
::value('contributionRecur', $objects) && $objects['contributionRecur']->id
) {
199 $this->copyCustomValues($objects['contributionRecur']->id
, $contribution->id
);
202 if (!CRM_Utils_Array
::value('skipComponentSync', $input)) {
203 if (!empty($memberships)) {
204 // if transaction is failed then set "Cancelled" as membership status
205 $cancelStatusId = array_search('Cancelled', CRM_Member_PseudoConstant
::membershipStatus());
206 foreach ($memberships as $membership) {
208 $membership->status_id
= $cancelStatusId;
211 //update related Memberships.
212 $params = array('status_id' => $cancelStatusId);
213 CRM_Member_BAO_Membership
::updateRelatedMemberships($membership->id
, $params);
219 $participant->status_id
= 4;
220 $participant->save();
224 $transaction->commit();
225 CRM_Core_Error
::debug_log_message("Setting contribution status to failed");
226 //echo "Success: Setting contribution status to failed<p>";
231 * Handled pending contribution status
232 * @param array $objects
233 * @param object $transaction
236 function pending(&$objects, &$transaction) {
237 $transaction->commit();
238 CRM_Core_Error
::debug_log_message("returning since contribution status is pending");
239 echo "Success: Returning since contribution status is pending<p>";
243 function cancelled(&$objects, &$transaction, $input = array()) {
244 $contribution = &$objects['contribution'];
245 $memberships = &$objects['membership'];
246 if (is_numeric($memberships)) {
247 $memberships = array($objects['membership']);
250 $participant = &$objects['participant'];
251 $addLineItems = FALSE;
252 if (empty($contribution->id
)) {
253 $addLineItems = TRUE;
255 $contribution->contribution_status_id
= 3;
256 $contribution->cancel_date
= self
::$_now;
257 $contribution->cancel_reason
= CRM_Utils_Array
::value('reasonCode', $input);
258 $contribution->receive_date
= CRM_Utils_Date
::isoToMysql($contribution->receive_date
);
259 $contribution->receipt_date
= CRM_Utils_Date
::isoToMysql($contribution->receipt_date
);
260 $contribution->thankyou_date
= CRM_Utils_Date
::isoToMysql($contribution->thankyou_date
);
261 $contribution->save();
263 //add lineitems for recurring payments
264 if (CRM_Utils_Array
::value('contributionRecur', $objects) && $objects['contributionRecur']->id
&& $addLineItems) {
265 $this->addrecurLineItems($objects['contributionRecur']->id
, $contribution->id
, CRM_Core_DAO
::$_nullArray);
268 //copy initial contribution custom fields for recurring contributions
269 if (CRM_Utils_Array
::value('contributionRecur', $objects) && $objects['contributionRecur']->id
) {
270 $this->copyCustomValues($objects['contributionRecur']->id
, $contribution->id
);
273 if (!CRM_Utils_Array
::value('skipComponentSync', $input)) {
274 if (!empty($memberships)) {
275 foreach ($memberships as $membership) {
277 $membership->status_id
= 6;
280 //update related Memberships.
281 $params = array('status_id' => 6);
282 CRM_Member_BAO_Membership
::updateRelatedMemberships($membership->id
, $params);
288 $participant->status_id
= 4;
289 $participant->save();
292 $transaction->commit();
293 CRM_Core_Error
::debug_log_message("Setting contribution status to cancelled");
294 //echo "Success: Setting contribution status to cancelled<p>";
298 function unhandled(&$objects, &$transaction) {
299 $transaction->rollback();
300 // we dont handle this as yet
301 CRM_Core_Error
::debug_log_message("returning since contribution status: $status is not handled");
302 echo "Failure: contribution status $status is not handled<p>";
306 function completeTransaction(&$input, &$ids, &$objects, &$transaction, $recur = FALSE) {
307 $contribution = &$objects['contribution'];
308 $memberships = &$objects['membership'];
309 if (is_numeric($memberships)) {
310 $memberships = array($objects['membership']);
312 $participant = &$objects['participant'];
313 $event = &$objects['event'];
314 $changeToday = CRM_Utils_Array
::value('trxn_date', $input, self
::$_now);
315 $recurContrib = &$objects['contributionRecur'];
319 if ($input['component'] == 'contribute') {
320 if ($contribution->contribution_page_id
) {
321 CRM_Contribute_BAO_ContributionPage
::setValues($contribution->contribution_page_id
, $values);
322 $source = ts('Online Contribution') . ': ' . $values['title'];
324 elseif ($recurContrib && $recurContrib->id
) {
325 $contribution->contribution_page_id
= NULL;
326 $values['amount'] = $recurContrib->amount
;
327 $values['financial_type_id'] = $objects['contributionType']->id
;
328 $values['title'] = $source = ts('Offline Recurring Contribution');
329 $domainValues = CRM_Core_BAO_Domain
::getNameAndEmail();
330 $values['receipt_from_name'] = $domainValues[0];
331 $values['receipt_from_email'] = $domainValues[1];
333 if($recurContrib && $recurContrib->id
){
334 //CRM-13273 - is_email_receipt setting on recurring contribution should take precedence over contribution page setting
335 $values['is_email_receipt'] = $recurContrib->is_email_receipt
;
338 $contribution->source
= $source;
339 if (CRM_Utils_Array
::value('is_email_receipt', $values)) {
340 $contribution->receipt_date
= self
::$_now;
343 if (!empty($memberships)) {
344 $membershipsUpdate = array( );
345 foreach ($memberships as $membershipTypeIdKey => $membership) {
349 $currentMembership = CRM_Member_BAO_Membership
::getContactMembership($membership->contact_id
,
350 $membership->membership_type_id
,
351 $membership->is_test
, $membership->id
354 // CRM-8141 update the membership type with the value recorded in log when membership created/renewed
355 // this picks up membership type changes during renewals
357 SELECT membership_type_id
358 FROM civicrm_membership_log
359 WHERE membership_id=$membership->id
362 $dao = new CRM_Core_DAO
;
365 if (!empty($dao->membership_type_id
)) {
366 $membership->membership_type_id
= $dao->membership_type_id
;
369 // else fall back to using current membership type
371 // else fall back to using current membership type
374 if ($currentMembership) {
377 * In BAO/Membership.php(renewMembership function), we skip the extend membership date and status
378 * when Contribution mode is notify and membership is for renewal )
380 CRM_Member_BAO_Membership
::fixMembershipStatusBeforeRenew($currentMembership, $changeToday);
382 $dates = CRM_Member_BAO_MembershipType
::getRenewalDatesForMembershipType($membership->id
,
385 $dates['join_date'] = CRM_Utils_Date
::customFormat($currentMembership['join_date'], $format);
388 $dates = CRM_Member_BAO_MembershipType
::getDatesForMembershipType($membership->membership_type_id
);
391 //get the status for membership.
392 $calcStatus = CRM_Member_BAO_MembershipStatus
::getMembershipStatusByDate($dates['start_date'],
399 $formatedParams = array('status_id' => CRM_Utils_Array
::value('id', $calcStatus, 2),
400 'join_date' => CRM_Utils_Date
::customFormat(CRM_Utils_Array
::value('join_date', $dates), $format),
401 'start_date' => CRM_Utils_Date
::customFormat(CRM_Utils_Array
::value('start_date', $dates), $format),
402 'end_date' => CRM_Utils_Date
::customFormat(CRM_Utils_Array
::value('end_date', $dates), $format),
404 //we might be renewing membership,
405 //so make status override false.
406 $formatedParams['is_override'] = FALSE;
407 $membership->copyValues($formatedParams);
410 //updating the membership log
411 $membershipLog = array();
412 $membershipLog = $formatedParams;
414 $logStartDate = $formatedParams['start_date'];
415 if (CRM_Utils_Array
::value('log_start_date', $dates)) {
416 $logStartDate = CRM_Utils_Date
::customFormat($dates['log_start_date'], $format);
417 $logStartDate = CRM_Utils_Date
::isoToMysql($logStartDate);
420 $membershipLog['start_date'] = $logStartDate;
421 $membershipLog['membership_id'] = $membership->id
;
422 $membershipLog['modified_id'] = $membership->contact_id
;
423 $membershipLog['modified_date'] = date('Ymd');
424 $membershipLog['membership_type_id'] = $membership->membership_type_id
;
426 CRM_Member_BAO_MembershipLog
::add($membershipLog, CRM_Core_DAO
::$_nullArray);
428 //update related Memberships.
429 CRM_Member_BAO_Membership
::updateRelatedMemberships($membership->id
, $formatedParams);
431 //update the membership type key of membership relatedObjects array
432 //if it has changed after membership update
433 if ($membershipTypeIdKey != $membership->membership_type_id
) {
434 $membershipsUpdate[$membership->membership_type_id
] = $membership;
435 $contribution->_relatedObjects
['membership'][$membership->membership_type_id
] = $membership;
436 unset($contribution->_relatedObjects
['membership'][$membershipTypeIdKey]);
437 unset($memberships[$membershipTypeIdKey]);
441 //update the memberships object with updated membershipTypeId data
442 //if membershipTypeId has changed after membership update
443 if (!empty($membershipsUpdate)) {
444 $memberships = $memberships +
$membershipsUpdate;
450 $eventParams = array('id' => $objects['event']->id
);
451 $values['event'] = array();
453 CRM_Event_BAO_Event
::retrieve($eventParams, $values['event']);
455 //get location details
456 $locationParams = array('entity_id' => $objects['event']->id
, 'entity_table' => 'civicrm_event');
457 $values['location'] = CRM_Core_BAO_Location
::getValues($locationParams);
459 $ufJoinParams = array(
460 'entity_table' => 'civicrm_event',
461 'entity_id' => $ids['event'],
462 'module' => 'CiviEvent',
467 ) = CRM_Core_BAO_UFJoin
::getUFGroupIds($ufJoinParams);
469 $values['custom_pre_id'] = $custom_pre_id;
470 $values['custom_post_id'] = $custom_post_ids;
472 $contribution->source
= ts('Online Event Registration') . ': ' . $values['event']['title'];
474 if ($values['event']['is_email_confirm']) {
475 $contribution->receipt_date
= self
::$_now;
476 $values['is_email_receipt'] = 1;
478 if (!CRM_Utils_Array
::value('skipComponentSync', $input)) {
479 $participant->status_id
= 1;
481 $participant->save();
484 if (CRM_Utils_Array
::value('net_amount', $input, 0) == 0 &&
485 CRM_Utils_Array
::value('fee_amount', $input, 0) != 0
487 $input['net_amount'] = $input['amount'] - $input['fee_amount'];
489 $addLineItems = FALSE;
490 if (empty($contribution->id
)) {
491 $addLineItems = TRUE;
494 $contribution->contribution_status_id
= 1;
495 $contribution->is_test
= $input['is_test'];
496 $contribution->fee_amount
= CRM_Utils_Array
::value('fee_amount', $input, 0);
497 $contribution->net_amount
= CRM_Utils_Array
::value('net_amount', $input, 0);
498 $contribution->trxn_id
= $input['trxn_id'];
499 $contribution->receive_date
= CRM_Utils_Date
::isoToMysql($contribution->receive_date
);
500 $contribution->thankyou_date
= CRM_Utils_Date
::isoToMysql($contribution->thankyou_date
);
501 $contribution->cancel_date
= 'null';
503 if (CRM_Utils_Array
::value('check_number', $input)) {
504 $contribution->check_number
= $input['check_number'];
507 if (CRM_Utils_Array
::value('payment_instrument_id', $input)) {
508 $contribution->payment_instrument_id
= $input['payment_instrument_id'];
511 if ($contribution->id
) {
512 $contributionId['id'] = $contribution->id
;
513 $input['prevContribution'] = CRM_Contribute_BAO_Contribution
::getValues($contributionId, CRM_Core_DAO
::$_nullArray, CRM_Core_DAO
::$_nullArray);
515 $contribution->save();
517 //add lineitems for recurring payments
518 if (CRM_Utils_Array
::value('contributionRecur', $objects) && $objects['contributionRecur']->id
&& $addLineItems) {
519 $this->addrecurLineItems($objects['contributionRecur']->id
, $contribution->id
, $input);
522 //copy initial contribution custom fields for recurring contributions
523 if ($recurContrib && $recurContrib->id
) {
524 $this->copyCustomValues($recurContrib->id
, $contribution->id
);
527 // next create the transaction record
528 $paymentProcessor = $paymentProcessorId = '';
529 if (isset($objects['paymentProcessor'])) {
530 if (is_array($objects['paymentProcessor'])) {
531 $paymentProcessor = $objects['paymentProcessor']['payment_processor_type'];
532 $paymentProcessorId = $objects['paymentProcessor']['id'];
535 $paymentProcessor = $objects['paymentProcessor']->payment_processor_type
;
536 $paymentProcessorId = $objects['paymentProcessor']->id
;
539 //it's hard to see how it could reach this point without a contributon id as it is saved in line 511 above
540 // which raised the question as to whether this check preceded line 511 & if so whether something could be broken
541 // From a lot of code reading /debugging I'm still not sure the intent WRT first & subsequent payments in this code
542 // it would be good if someone added some comments or refactored this
543 if ($contribution->id
) {
544 $contributionStatuses = CRM_Contribute_PseudoConstant
::contributionStatus(NULL, 'name');
545 if ((empty($input['prevContribution']) && $paymentProcessorId) ||
(!$input['prevContribution']->is_pay_later
&&
546 - $input['prevContribution']->contribution_status_id
== array_search('Pending', $contributionStatuses))) {
547 $input['payment_processor'] = $paymentProcessorId;
549 $input['contribution_status_id'] = array_search('Completed', $contributionStatuses);
550 $input['total_amount'] = $input['amount'];
551 $input['contribution'] = $contribution;
552 $input['financial_type_id'] = $contribution->financial_type_id
;
554 if (CRM_Utils_Array
::value('participant', $contribution->_relatedObjects
)) {
555 $input['contribution_mode'] = 'participant';
556 $input['participant_id'] = $contribution->_relatedObjects
['participant']->id
;
557 $input['skipLineItem'] = 1;
559 //@todo writing a unit test I was unable to create a scenario where this line did not fatal on second
560 // and subsequent payments. In this case the line items are created at $this->addrecurLineItems
561 // and since the contribution is saved prior to this line there is always a contribution-id,
562 // however there is never a prevContribution (which appears to mean original contribution not previous
563 // contribution - or preUpdateContributionObject most accurately)
564 // so, this is always called & only appears to succeed when prevContribution exists - which appears
565 // to mean "are we updating an exisitng pending contribution"
566 //I was able to make the unit test complete as fataling here doesn't prevent
567 // the contribution being created - but activities would not be created or emails sent
568 CRM_Contribute_BAO_Contribution
::recordFinancialAccounts($input, NULL);
571 self
::updateRecurLinkedPledge($contribution);
573 // create an activity record
574 if ($input['component'] == 'contribute') {
576 $targetContactID = NULL;
577 if (CRM_Utils_Array
::value('related_contact', $ids)) {
578 $targetContactID = $contribution->contact_id
;
579 $contribution->contact_id
= $ids['related_contact'];
581 CRM_Activity_BAO_Activity
::addActivity($contribution, NULL, $targetContactID);
585 CRM_Activity_BAO_Activity
::addActivity($participant);
588 CRM_Core_Error
::debug_log_message("Contribution record updated successfully");
589 $transaction->commit();
591 // CRM-9132 legacy behaviour was that receipts were sent out in all instances. Still sending
592 // when array_key 'is_email_receipt doesn't exist in case some instances where is needs setting haven't been set
593 if (!array_key_exists('is_email_receipt', $values) ||
594 $values['is_email_receipt'] == 1
596 self
::sendMail($input, $ids, $objects, $values, $recur, FALSE);
597 CRM_Core_Error
::debug_log_message("Receipt sent");
600 CRM_Core_Error
::debug_log_message("Success: Database updated");
603 function getBillingID(&$ids) {
604 // get the billing location type
605 $locationTypes = CRM_Core_PseudoConstant
::get('CRM_Core_DAO_Address', 'location_type_id');
606 // CRM-8108 remove the ts around the Billing locationtype
607 //$ids['billing'] = array_search( ts('Billing'), $locationTypes );
608 $ids['billing'] = array_search('Billing', $locationTypes);
609 if (!$ids['billing']) {
610 CRM_Core_Error
::debug_log_message(ts('Please set a location type of %1', array(1 => 'Billing')));
611 echo "Failure: Could not find billing location type<p>";
618 * Send receipt from contribution. Note that the compose message part has been moved to contribution
619 * In general LoadObjects is called first to get the objects but the composeMessageArray function now calls it
621 * @params array $input Incoming data from Payment processor
622 * @params array $ids Related object IDs
623 * @params array $values values related to objects that have already been loaded
624 * @params bool $recur is it part of a recurring contribution
625 * @params bool $returnMessageText Should text be returned instead of sent. This
626 * is because the function is also used to generate pdfs
628 function sendMail(&$input, &$ids, &$objects, &$values, $recur = FALSE, $returnMessageText = FALSE) {
629 $contribution = &$objects['contribution'];
630 $input['is_recur'] = $recur;
631 // set receipt from e-mail and name in value
632 if (!$returnMessageText) {
633 $session = CRM_Core_Session
::singleton();
634 $userID = $session->get('userID');
635 if (!empty($userID)) {
636 list($userName, $userEmail) = CRM_Contact_BAO_Contact_Location
::getEmailDetails($userID);
637 $values['receipt_from_email'] = $userEmail;
638 $values['receipt_from_name'] = $userName;
641 return $contribution->composeMessageArray($input, $ids, $values, $recur, $returnMessageText);
645 * Update contribution status - this is only called from one place in the code &
646 * it is unclear whether it is a function on the way in or on the way out
648 * @param unknown_type $params
649 * @return void|Ambigous <value, unknown, array>
651 function updateContributionStatus(&$params) {
652 // get minimum required values.
653 $statusId = CRM_Utils_Array
::value('contribution_status_id', $params);
654 $componentId = CRM_Utils_Array
::value('component_id', $params);
655 $componentName = CRM_Utils_Array
::value('componentName', $params);
656 $contributionId = CRM_Utils_Array
::value('contribution_id', $params);
658 if (!$contributionId ||
!$componentId ||
!$componentName ||
!$statusId) {
662 $input = $ids = $objects = array();
664 //get the required ids.
665 $ids['contribution'] = $contributionId;
667 if (!$ids['contact'] = CRM_Utils_Array
::value('contact_id', $params)) {
668 $ids['contact'] = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution',
674 if ($componentName == 'Event') {
676 $ids['participant'] = $componentId;
678 if (!$ids['event'] = CRM_Utils_Array
::value('event_id', $params)) {
679 $ids['event'] = CRM_Core_DAO
::getFieldValue('CRM_Event_DAO_Participant',
686 if ($componentName == 'Membership') {
687 $name = 'contribute';
688 $ids['membership'] = $componentId;
690 $ids['contributionPage'] = NULL;
691 $ids['contributionRecur'] = NULL;
692 $input['component'] = $name;
694 $baseIPN = new CRM_Core_Payment_BaseIPN();
695 $transaction = new CRM_Core_Transaction();
697 // reset template values.
698 $template = CRM_Core_Smarty
::singleton();
699 $template->clearTemplateVars();
701 if (!$baseIPN->validateData($input, $ids, $objects, FALSE)) {
702 CRM_Core_Error
::fatal();
705 $contribution = &$objects['contribution'];
707 $contributionStatuses = CRM_Contribute_PseudoConstant
::contributionStatus(NULL, 'name');
708 $input['skipComponentSync'] = CRM_Utils_Array
::value('skipComponentSync', $params);
709 if ($statusId == array_search('Cancelled', $contributionStatuses)) {
710 $baseIPN->cancelled($objects, $transaction, $input);
711 $transaction->commit();
714 elseif ($statusId == array_search('Failed', $contributionStatuses)) {
715 $baseIPN->failed($objects, $transaction, $input);
716 $transaction->commit();
720 // status is not pending
721 if ($contribution->contribution_status_id
!= array_search('Pending', $contributionStatuses)) {
722 $transaction->commit();
726 //set values for ipn code.
728 'fee_amount', 'check_number', 'payment_instrument_id') as $field) {
729 if (!$input[$field] = CRM_Utils_Array
::value($field, $params)) {
730 $input[$field] = $contribution->$field;
733 if (!$input['trxn_id'] = CRM_Utils_Array
::value('trxn_id', $params)) {
734 $input['trxn_id'] = $contribution->invoice_id
;
736 if (!$input['amount'] = CRM_Utils_Array
::value('total_amount', $params)) {
737 $input['amount'] = $contribution->total_amount
;
739 $input['is_test'] = $contribution->is_test
;
740 $input['net_amount'] = $contribution->net_amount
;
741 if (CRM_Utils_Array
::value('fee_amount', $input) && CRM_Utils_Array
::value('amount', $input)) {
742 $input['net_amount'] = $input['amount'] - $input['fee_amount'];
745 //complete the contribution.
746 $baseIPN->completeTransaction($input, $ids, $objects, $transaction, FALSE);
748 // reset template values before processing next transactions
749 $template->clearTemplateVars();
755 * Update pledge associated with a recurring contribution
757 * If the contribution has a pledge_payment record pledge, then update the pledge_payment record & pledge based on that linkage.
759 * If a previous contribution in the recurring contribution sequence is linked with a pledge then we assume this contribution
760 * should be linked with the same pledge also. Currently only back-office users can apply a recurring payment to a pledge &
761 * it should be assumed they
762 * do so with the intention that all payments will be linked
764 * The pledge payment record should already exist & will need to be updated with the new contribution ID.
765 * If not the contribution will also need to be linked to the pledge
767 function updateRecurLinkedPledge(&$contribution) {
768 $returnProperties = array('id', 'pledge_id');
769 $paymentDetails = $paymentIDs = array();
771 if (CRM_Core_DAO
::commonRetrieveAll('CRM_Pledge_DAO_PledgePayment', 'contribution_id', $contribution->id
,
772 $paymentDetails, $returnProperties
774 foreach ($paymentDetails as $key => $value) {
775 $paymentIDs[] = $value['id'];
776 $pledgeId = $value['pledge_id'];
780 //payment is not already linked - if it is linked with a pledge we need to create a link.
781 // return if it is not recurring contribution
782 if (!$contribution->contribution_recur_id
) {
786 $relatedContributions = new CRM_Contribute_DAO_Contribution();
787 $relatedContributions->contribution_recur_id
= $contribution->contribution_recur_id
;
788 $relatedContributions->find();
790 while ($relatedContributions->fetch()) {
791 CRM_Core_DAO
::commonRetrieveAll('CRM_Pledge_DAO_PledgePayment', 'contribution_id', $relatedContributions->id
,
792 $paymentDetails, $returnProperties
796 if (empty($paymentDetails)) {
797 // payment is not linked with a pledge and neither are any other contributions on this
801 foreach ($paymentDetails as $key => $value) {
802 $pledgeId = $value['pledge_id'];
805 // we have a pledge now we need to get the oldest unpaid payment
806 $paymentDetails = CRM_Pledge_BAO_PledgePayment
::getOldestPledgePayment($pledgeId);
807 if(empty($paymentDetails['id'])){
808 // we can assume this pledge is now completed
809 // return now so we don't create a core error & roll back
812 $paymentDetails['contribution_id'] = $contribution->id
;
813 $paymentDetails['status_id'] = $contribution->contribution_status_id
;
814 $paymentDetails['actual_amount'] = $contribution->total_amount
;
816 // put contribution against it
817 $payment = CRM_Pledge_BAO_PledgePayment
::add($paymentDetails);
818 $paymentIDs[] = $payment->id
;
821 // update pledge and corresponding payment statuses
822 CRM_Pledge_BAO_PledgePayment
::updatePledgePaymentStatus($pledgeId, $paymentIDs, $contribution->contribution_status_id
,
823 NULL, $contribution->total_amount
827 function addrecurLineItems($recurId, $contributionId, &$input) {
828 $lineSets = $lineItems = array();
830 //Get the first contribution id with recur id
832 $contriID = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $recurId, 'id', 'contribution_recur_id');
833 $lineItems = CRM_Price_BAO_LineItem
::getLineItems($contriID, 'contribution');
834 if (!empty($lineItems)) {
835 foreach ($lineItems as $key => $value) {
836 $pricesetID = new CRM_Price_DAO_PriceField();
837 $pricesetID->id
= $value['price_field_id'];
838 $pricesetID->find(TRUE);
839 $lineSets[$pricesetID->price_set_id
][] = $value;
842 if (!empty($input)) {
843 $input['line_item'] = $lineSets;
846 CRM_Price_BAO_LineItem
::processPriceSet($contributionId, $lineSets);
851 // function to copy custom data of the
852 // initial contribution into its recurring contributions
853 function copyCustomValues($recurId, $targetContributionId) {
854 if ($recurId && $targetContributionId) {
855 // get the initial contribution id of recur id
856 $sourceContributionId = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $recurId, 'id', 'contribution_recur_id');
858 // if the same contribution is being proccessed then return
859 if ($sourceContributionId == $targetContributionId) {
862 // check if proper recurring contribution record is being processed
863 $targetConRecurId = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $targetContributionId, 'contribution_recur_id');
864 if ($targetConRecurId != $recurId) {
869 $extends = array('Contribution');
870 $groupTree = CRM_Core_BAO_CustomGroup
::getGroupDetail(NULL, NULL, $extends);
872 foreach ($groupTree as $groupID => $group) {
873 $table[$groupTree[$groupID]['table_name']] = array('entity_id');
874 foreach ($group['fields'] as $fieldID => $field) {
875 $table[$groupTree[$groupID]['table_name']][] = $groupTree[$groupID]['fields'][$fieldID]['column_name'];
879 foreach ($table as $tableName => $tableColumns) {
880 $insert = 'INSERT INTO ' . $tableName . ' (' . implode(', ', $tableColumns) . ') ';
881 $tableColumns[0] = $targetContributionId;
882 $select = 'SELECT ' . implode(', ', $tableColumns);
883 $from = ' FROM ' . $tableName;
884 $where = " WHERE {$tableName}.entity_id = {$sourceContributionId}";
885 $query = $insert . $select . $from . $where;
886 $dao = CRM_Core_DAO
::executeQuery($query, CRM_Core_DAO
::$_nullArray);