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;
471 //for tasks 'Change Participant Status' and 'Batch Update Participants Via Profile' case
472 //and cases involving status updation through ipn
473 $values['totalAmount'] = $input['amount'];
475 $contribution->source
= ts('Online Event Registration') . ': ' . $values['event']['title'];
477 if ($values['event']['is_email_confirm']) {
478 $contribution->receipt_date
= self
::$_now;
479 $values['is_email_receipt'] = 1;
481 if (!CRM_Utils_Array
::value('skipComponentSync', $input)) {
482 $participant->status_id
= 1;
484 $participant->save();
487 if (CRM_Utils_Array
::value('net_amount', $input, 0) == 0 &&
488 CRM_Utils_Array
::value('fee_amount', $input, 0) != 0
490 $input['net_amount'] = $input['amount'] - $input['fee_amount'];
492 $addLineItems = FALSE;
493 if (empty($contribution->id
)) {
494 $addLineItems = TRUE;
497 $contribution->contribution_status_id
= 1;
498 $contribution->is_test
= $input['is_test'];
499 $contribution->fee_amount
= CRM_Utils_Array
::value('fee_amount', $input, 0);
500 $contribution->net_amount
= CRM_Utils_Array
::value('net_amount', $input, 0);
501 $contribution->trxn_id
= $input['trxn_id'];
502 $contribution->receive_date
= CRM_Utils_Date
::isoToMysql($contribution->receive_date
);
503 $contribution->thankyou_date
= CRM_Utils_Date
::isoToMysql($contribution->thankyou_date
);
504 $contribution->cancel_date
= 'null';
506 if (CRM_Utils_Array
::value('check_number', $input)) {
507 $contribution->check_number
= $input['check_number'];
510 if (CRM_Utils_Array
::value('payment_instrument_id', $input)) {
511 $contribution->payment_instrument_id
= $input['payment_instrument_id'];
514 if ($contribution->id
) {
515 $contributionId['id'] = $contribution->id
;
516 $input['prevContribution'] = CRM_Contribute_BAO_Contribution
::getValues($contributionId, CRM_Core_DAO
::$_nullArray, CRM_Core_DAO
::$_nullArray);
518 $contribution->save();
520 //add lineitems for recurring payments
521 if (CRM_Utils_Array
::value('contributionRecur', $objects) && $objects['contributionRecur']->id
&& $addLineItems) {
522 $this->addrecurLineItems($objects['contributionRecur']->id
, $contribution->id
, $input);
525 //copy initial contribution custom fields for recurring contributions
526 if ($recurContrib && $recurContrib->id
) {
527 $this->copyCustomValues($recurContrib->id
, $contribution->id
);
530 // next create the transaction record
531 $paymentProcessor = $paymentProcessorId = '';
532 if (isset($objects['paymentProcessor'])) {
533 if (is_array($objects['paymentProcessor'])) {
534 $paymentProcessor = $objects['paymentProcessor']['payment_processor_type'];
535 $paymentProcessorId = $objects['paymentProcessor']['id'];
538 $paymentProcessor = $objects['paymentProcessor']->payment_processor_type
;
539 $paymentProcessorId = $objects['paymentProcessor']->id
;
542 //it's hard to see how it could reach this point without a contributon id as it is saved in line 511 above
543 // which raised the question as to whether this check preceded line 511 & if so whether something could be broken
544 // From a lot of code reading /debugging I'm still not sure the intent WRT first & subsequent payments in this code
545 // it would be good if someone added some comments or refactored this
546 if ($contribution->id
) {
547 $contributionStatuses = CRM_Contribute_PseudoConstant
::contributionStatus(NULL, 'name');
548 if ((empty($input['prevContribution']) && $paymentProcessorId) ||
(!$input['prevContribution']->is_pay_later
&&
549 - $input['prevContribution']->contribution_status_id
== array_search('Pending', $contributionStatuses))) {
550 $input['payment_processor'] = $paymentProcessorId;
552 $input['contribution_status_id'] = array_search('Completed', $contributionStatuses);
553 $input['total_amount'] = $input['amount'];
554 $input['contribution'] = $contribution;
555 $input['financial_type_id'] = $contribution->financial_type_id
;
557 if (CRM_Utils_Array
::value('participant', $contribution->_relatedObjects
)) {
558 $input['contribution_mode'] = 'participant';
559 $input['participant_id'] = $contribution->_relatedObjects
['participant']->id
;
560 $input['skipLineItem'] = 1;
562 //@todo writing a unit test I was unable to create a scenario where this line did not fatal on second
563 // and subsequent payments. In this case the line items are created at $this->addrecurLineItems
564 // and since the contribution is saved prior to this line there is always a contribution-id,
565 // however there is never a prevContribution (which appears to mean original contribution not previous
566 // contribution - or preUpdateContributionObject most accurately)
567 // so, this is always called & only appears to succeed when prevContribution exists - which appears
568 // to mean "are we updating an exisitng pending contribution"
569 //I was able to make the unit test complete as fataling here doesn't prevent
570 // the contribution being created - but activities would not be created or emails sent
571 CRM_Contribute_BAO_Contribution
::recordFinancialAccounts($input, NULL);
574 self
::updateRecurLinkedPledge($contribution);
576 // create an activity record
577 if ($input['component'] == 'contribute') {
579 $targetContactID = NULL;
580 if (CRM_Utils_Array
::value('related_contact', $ids)) {
581 $targetContactID = $contribution->contact_id
;
582 $contribution->contact_id
= $ids['related_contact'];
584 CRM_Activity_BAO_Activity
::addActivity($contribution, NULL, $targetContactID);
588 CRM_Activity_BAO_Activity
::addActivity($participant);
591 CRM_Core_Error
::debug_log_message("Contribution record updated successfully");
592 $transaction->commit();
594 // CRM-9132 legacy behaviour was that receipts were sent out in all instances. Still sending
595 // when array_key 'is_email_receipt doesn't exist in case some instances where is needs setting haven't been set
596 if (!array_key_exists('is_email_receipt', $values) ||
597 $values['is_email_receipt'] == 1
599 self
::sendMail($input, $ids, $objects, $values, $recur, FALSE);
600 CRM_Core_Error
::debug_log_message("Receipt sent");
603 CRM_Core_Error
::debug_log_message("Success: Database updated");
606 function getBillingID(&$ids) {
607 // get the billing location type
608 $locationTypes = CRM_Core_PseudoConstant
::get('CRM_Core_DAO_Address', 'location_type_id', array(), 'validate');
609 // CRM-8108 remove the ts around the Billing locationtype
610 //$ids['billing'] = array_search( ts('Billing'), $locationTypes );
611 $ids['billing'] = array_search('Billing', $locationTypes);
612 if (!$ids['billing']) {
613 CRM_Core_Error
::debug_log_message(ts('Please set a location type of %1', array(1 => 'Billing')));
614 echo "Failure: Could not find billing location type<p>";
621 * Send receipt from contribution. Note that the compose message part has been moved to contribution
622 * In general LoadObjects is called first to get the objects but the composeMessageArray function now calls it
624 * @params array $input Incoming data from Payment processor
625 * @params array $ids Related object IDs
626 * @params array $values values related to objects that have already been loaded
627 * @params bool $recur is it part of a recurring contribution
628 * @params bool $returnMessageText Should text be returned instead of sent. This
629 * is because the function is also used to generate pdfs
631 function sendMail(&$input, &$ids, &$objects, &$values, $recur = FALSE, $returnMessageText = FALSE) {
632 $contribution = &$objects['contribution'];
633 $input['is_recur'] = $recur;
634 // set receipt from e-mail and name in value
635 if (!$returnMessageText) {
636 $session = CRM_Core_Session
::singleton();
637 $userID = $session->get('userID');
638 if (!empty($userID)) {
639 list($userName, $userEmail) = CRM_Contact_BAO_Contact_Location
::getEmailDetails($userID);
640 $values['receipt_from_email'] = $userEmail;
641 $values['receipt_from_name'] = $userName;
644 return $contribution->composeMessageArray($input, $ids, $values, $recur, $returnMessageText);
648 * Update contribution status - this is only called from one place in the code &
649 * it is unclear whether it is a function on the way in or on the way out
651 * @param unknown_type $params
652 * @return void|Ambigous <value, unknown, array>
654 function updateContributionStatus(&$params) {
655 // get minimum required values.
656 $statusId = CRM_Utils_Array
::value('contribution_status_id', $params);
657 $componentId = CRM_Utils_Array
::value('component_id', $params);
658 $componentName = CRM_Utils_Array
::value('componentName', $params);
659 $contributionId = CRM_Utils_Array
::value('contribution_id', $params);
661 if (!$contributionId ||
!$componentId ||
!$componentName ||
!$statusId) {
665 $input = $ids = $objects = array();
667 //get the required ids.
668 $ids['contribution'] = $contributionId;
670 if (!$ids['contact'] = CRM_Utils_Array
::value('contact_id', $params)) {
671 $ids['contact'] = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution',
677 if ($componentName == 'Event') {
679 $ids['participant'] = $componentId;
681 if (!$ids['event'] = CRM_Utils_Array
::value('event_id', $params)) {
682 $ids['event'] = CRM_Core_DAO
::getFieldValue('CRM_Event_DAO_Participant',
689 if ($componentName == 'Membership') {
690 $name = 'contribute';
691 $ids['membership'] = $componentId;
693 $ids['contributionPage'] = NULL;
694 $ids['contributionRecur'] = NULL;
695 $input['component'] = $name;
697 $baseIPN = new CRM_Core_Payment_BaseIPN();
698 $transaction = new CRM_Core_Transaction();
700 // reset template values.
701 $template = CRM_Core_Smarty
::singleton();
702 $template->clearTemplateVars();
704 if (!$baseIPN->validateData($input, $ids, $objects, FALSE)) {
705 CRM_Core_Error
::fatal();
708 $contribution = &$objects['contribution'];
710 $contributionStatuses = CRM_Contribute_PseudoConstant
::contributionStatus(NULL, 'name');
711 $input['skipComponentSync'] = CRM_Utils_Array
::value('skipComponentSync', $params);
712 if ($statusId == array_search('Cancelled', $contributionStatuses)) {
713 $baseIPN->cancelled($objects, $transaction, $input);
714 $transaction->commit();
717 elseif ($statusId == array_search('Failed', $contributionStatuses)) {
718 $baseIPN->failed($objects, $transaction, $input);
719 $transaction->commit();
723 // status is not pending
724 if ($contribution->contribution_status_id
!= array_search('Pending', $contributionStatuses)) {
725 $transaction->commit();
729 //set values for ipn code.
731 'fee_amount', 'check_number', 'payment_instrument_id') as $field) {
732 if (!$input[$field] = CRM_Utils_Array
::value($field, $params)) {
733 $input[$field] = $contribution->$field;
736 if (!$input['trxn_id'] = CRM_Utils_Array
::value('trxn_id', $params)) {
737 $input['trxn_id'] = $contribution->invoice_id
;
739 if (!$input['amount'] = CRM_Utils_Array
::value('total_amount', $params)) {
740 $input['amount'] = $contribution->total_amount
;
742 $input['is_test'] = $contribution->is_test
;
743 $input['net_amount'] = $contribution->net_amount
;
744 if (CRM_Utils_Array
::value('fee_amount', $input) && CRM_Utils_Array
::value('amount', $input)) {
745 $input['net_amount'] = $input['amount'] - $input['fee_amount'];
748 //complete the contribution.
749 $baseIPN->completeTransaction($input, $ids, $objects, $transaction, FALSE);
751 // reset template values before processing next transactions
752 $template->clearTemplateVars();
758 * Update pledge associated with a recurring contribution
760 * If the contribution has a pledge_payment record pledge, then update the pledge_payment record & pledge based on that linkage.
762 * If a previous contribution in the recurring contribution sequence is linked with a pledge then we assume this contribution
763 * should be linked with the same pledge also. Currently only back-office users can apply a recurring payment to a pledge &
764 * it should be assumed they
765 * do so with the intention that all payments will be linked
767 * The pledge payment record should already exist & will need to be updated with the new contribution ID.
768 * If not the contribution will also need to be linked to the pledge
770 function updateRecurLinkedPledge(&$contribution) {
771 $returnProperties = array('id', 'pledge_id');
772 $paymentDetails = $paymentIDs = array();
774 if (CRM_Core_DAO
::commonRetrieveAll('CRM_Pledge_DAO_PledgePayment', 'contribution_id', $contribution->id
,
775 $paymentDetails, $returnProperties
777 foreach ($paymentDetails as $key => $value) {
778 $paymentIDs[] = $value['id'];
779 $pledgeId = $value['pledge_id'];
783 //payment is not already linked - if it is linked with a pledge we need to create a link.
784 // return if it is not recurring contribution
785 if (!$contribution->contribution_recur_id
) {
789 $relatedContributions = new CRM_Contribute_DAO_Contribution();
790 $relatedContributions->contribution_recur_id
= $contribution->contribution_recur_id
;
791 $relatedContributions->find();
793 while ($relatedContributions->fetch()) {
794 CRM_Core_DAO
::commonRetrieveAll('CRM_Pledge_DAO_PledgePayment', 'contribution_id', $relatedContributions->id
,
795 $paymentDetails, $returnProperties
799 if (empty($paymentDetails)) {
800 // payment is not linked with a pledge and neither are any other contributions on this
804 foreach ($paymentDetails as $key => $value) {
805 $pledgeId = $value['pledge_id'];
808 // we have a pledge now we need to get the oldest unpaid payment
809 $paymentDetails = CRM_Pledge_BAO_PledgePayment
::getOldestPledgePayment($pledgeId);
810 if(empty($paymentDetails['id'])){
811 // we can assume this pledge is now completed
812 // return now so we don't create a core error & roll back
815 $paymentDetails['contribution_id'] = $contribution->id
;
816 $paymentDetails['status_id'] = $contribution->contribution_status_id
;
817 $paymentDetails['actual_amount'] = $contribution->total_amount
;
819 // put contribution against it
820 $payment = CRM_Pledge_BAO_PledgePayment
::add($paymentDetails);
821 $paymentIDs[] = $payment->id
;
824 // update pledge and corresponding payment statuses
825 CRM_Pledge_BAO_PledgePayment
::updatePledgePaymentStatus($pledgeId, $paymentIDs, $contribution->contribution_status_id
,
826 NULL, $contribution->total_amount
830 function addrecurLineItems($recurId, $contributionId, &$input) {
831 $lineSets = $lineItems = array();
833 //Get the first contribution id with recur id
835 $contriID = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $recurId, 'id', 'contribution_recur_id');
836 $lineItems = CRM_Price_BAO_LineItem
::getLineItems($contriID, 'contribution');
837 if (!empty($lineItems)) {
838 foreach ($lineItems as $key => $value) {
839 $pricesetID = new CRM_Price_DAO_PriceField();
840 $pricesetID->id
= $value['price_field_id'];
841 $pricesetID->find(TRUE);
842 $lineSets[$pricesetID->price_set_id
][] = $value;
845 if (!empty($input)) {
846 $input['line_item'] = $lineSets;
849 CRM_Price_BAO_LineItem
::processPriceSet($contributionId, $lineSets);
854 // function to copy custom data of the
855 // initial contribution into its recurring contributions
856 function copyCustomValues($recurId, $targetContributionId) {
857 if ($recurId && $targetContributionId) {
858 // get the initial contribution id of recur id
859 $sourceContributionId = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $recurId, 'id', 'contribution_recur_id');
861 // if the same contribution is being proccessed then return
862 if ($sourceContributionId == $targetContributionId) {
865 // check if proper recurring contribution record is being processed
866 $targetConRecurId = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $targetContributionId, 'contribution_recur_id');
867 if ($targetConRecurId != $recurId) {
872 $extends = array('Contribution');
873 $groupTree = CRM_Core_BAO_CustomGroup
::getGroupDetail(NULL, NULL, $extends);
875 foreach ($groupTree as $groupID => $group) {
876 $table[$groupTree[$groupID]['table_name']] = array('entity_id');
877 foreach ($group['fields'] as $fieldID => $field) {
878 $table[$groupTree[$groupID]['table_name']][] = $groupTree[$groupID]['fields'][$fieldID]['column_name'];
882 foreach ($table as $tableName => $tableColumns) {
883 $insert = 'INSERT INTO ' . $tableName . ' (' . implode(', ', $tableColumns) . ') ';
884 $tableColumns[0] = $targetContributionId;
885 $select = 'SELECT ' . implode(', ', $tableColumns);
886 $from = ' FROM ' . $tableName;
887 $where = " WHERE {$tableName}.entity_id = {$sourceContributionId}";
888 $query = $insert . $select . $from . $where;
889 $dao = CRM_Core_DAO
::executeQuery($query, CRM_Core_DAO
::$_nullArray);