3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
29 * Class CRM_Core_Payment_BaseIPN.
31 class CRM_Core_Payment_BaseIPN
{
36 * Input parameters from payment processor. Store these so that
37 * the code does not need to keep retrieving from the http request
40 protected $_inputParameters = array();
42 protected $_isRecurring = FALSE;
44 protected $_isFirstOrLastRecurringPayment = FALSE;
49 public function __construct() {
50 self
::$_now = date('YmdHis');
54 * Store input array on the class.
56 * @param array $parameters
58 * @throws CRM_Core_Exception
60 public function setInputParameters($parameters) {
61 if (!is_array($parameters)) {
62 throw new CRM_Core_Exception('Invalid input parameters');
64 $this->_inputParameters
= $parameters;
68 * Validate incoming data.
70 * This function is intended to ensure that incoming data matches
71 * It provides a form of pseudo-authentication - by checking the calling fn already knows
72 * the correct contact id & contribution id (this can be problematic when that has changed in
73 * the meantime for transactions that are delayed & contacts are merged in-between. e.g
74 * Paypal allows you to resend Instant Payment Notifications if you, for example, moved site
75 * and didn't update your IPN URL.
78 * Interpreted values from the values returned through the IPN.
80 * More interpreted values (ids) from the values returned through the IPN.
81 * @param array $objects
82 * An empty array that will be populated with loaded object.
83 * @param bool $required
84 * Boolean Return FALSE if the relevant objects don't exist.
85 * @param int $paymentProcessorID
86 * Id of the payment processor ID in use.
90 public function validateData(&$input, &$ids, &$objects, $required = TRUE, $paymentProcessorID = NULL) {
92 // make sure contact exists and is valid
93 $contact = new CRM_Contact_BAO_Contact();
94 $contact->id
= $ids['contact'];
95 if (!$contact->find(TRUE)) {
96 CRM_Core_Error
::debug_log_message("Could not find contact record: {$ids['contact']} in IPN request: " . print_r($input, TRUE));
97 echo "Failure: Could not find contact record: {$ids['contact']}<p>";
101 // make sure contribution exists and is valid
102 $contribution = new CRM_Contribute_BAO_Contribution();
103 $contribution->id
= $ids['contribution'];
104 if (!$contribution->find(TRUE)) {
105 CRM_Core_Error
::debug_log_message("Could not find contribution record: {$contribution->id} in IPN request: " . print_r($input, TRUE));
106 echo "Failure: Could not find contribution record for {$contribution->id}<p>";
109 $contribution->receive_date
= CRM_Utils_Date
::isoToMysql($contribution->receive_date
);
111 $objects['contact'] = &$contact;
112 $objects['contribution'] = &$contribution;
113 if (!$this->loadObjects($input, $ids, $objects, $required, $paymentProcessorID)) {
116 //the process is that the loadObjects is kind of hacked by loading the objects for the original contribution and then somewhat inconsistently using them for the
117 //current contribution. Here we ensure that the original contribution is available to the complete transaction function
118 //we don't want to fix this in the payment processor classes because we would have to fix all of them - so better to fix somewhere central
119 if (isset($objects['contributionRecur'])) {
120 $objects['first_contribution'] = $objects['contribution'];
126 * Load objects related to contribution.
128 * @input array information from Payment processor
132 * @param array $objects
133 * @param bool $required
134 * @param int $paymentProcessorID
135 * @param array $error_handling
139 public function loadObjects(&$input, &$ids, &$objects, $required, $paymentProcessorID, $error_handling = NULL) {
140 if (empty($error_handling)) {
141 // default options are that we log an error & echo it out
142 // note that we should refactor this error handling into error code @ some point
143 // but for now setting up enough separation so we can do unit tests
144 $error_handling = array(
149 $ids['paymentProcessor'] = $paymentProcessorID;
150 if (is_a($objects['contribution'], 'CRM_Contribute_BAO_Contribution')) {
151 $contribution = &$objects['contribution'];
154 //legacy support - functions are 'used' to be able to pass in a DAO
155 $contribution = new CRM_Contribute_BAO_Contribution();
156 $contribution->id
= CRM_Utils_Array
::value('contribution', $ids);
157 $contribution->find(TRUE);
158 $objects['contribution'] = &$contribution;
161 $success = $contribution->loadRelatedObjects($input, $ids, $required);
163 catch (Exception
$e) {
165 if (!empty($error_handling['log_error'])) {
166 CRM_Core_Error
::debug_log_message($e->getMessage());
168 if (!empty($error_handling['echo_error'])) {
169 echo $e->getMessage();
171 if (!empty($error_handling['return_error'])) {
174 'error_message' => ($e->getMessage()),
178 $objects = array_merge($objects, $contribution->_relatedObjects
);
183 * Set contribution to failed.
185 * @param array $objects
186 * @param object $transaction
187 * @param array $input
191 public function failed(&$objects, &$transaction, $input = array()) {
192 $contribution = &$objects['contribution'];
193 $memberships = array();
194 if (!empty($objects['membership'])) {
195 $memberships = &$objects['membership'];
196 if (is_numeric($memberships)) {
197 $memberships = array($objects['membership']);
201 $addLineItems = FALSE;
202 if (empty($contribution->id
)) {
203 $addLineItems = TRUE;
205 $participant = &$objects['participant'];
208 $contributionStatuses = CRM_Core_PseudoConstant
::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', array(
209 'labelColumn' => 'name',
212 $contribution->receive_date
= CRM_Utils_Date
::isoToMysql($contribution->receive_date
);
213 $contribution->receipt_date
= CRM_Utils_Date
::isoToMysql($contribution->receipt_date
);
214 $contribution->thankyou_date
= CRM_Utils_Date
::isoToMysql($contribution->thankyou_date
);
215 $contribution->contribution_status_id
= $contributionStatuses['Failed'];
216 $contribution->save();
218 // Add line items for recurring payments.
219 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id
&& $addLineItems) {
220 $this->addRecurLineItems($objects['contributionRecur']->id
, $contribution);
223 //add new soft credit against current contribution id and
224 //copy initial contribution custom fields for recurring contributions
225 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id
) {
226 $this->addrecurSoftCredit($objects['contributionRecur']->id
, $contribution->id
);
227 $this->copyCustomValues($objects['contributionRecur']->id
, $contribution->id
);
230 if (empty($input['skipComponentSync'])) {
231 if (!empty($memberships)) {
232 // if transaction is failed then set "Cancelled" as membership status
233 $membershipStatuses = CRM_Core_PseudoConstant
::get('CRM_Member_DAO_Membership', 'status_id', array(
234 'labelColumn' => 'name',
237 foreach ($memberships as $membership) {
239 $membership->status_id
= $membershipStatuses['Cancelled'];
242 //update related Memberships.
243 $params = array('status_id' => $membershipStatuses['Cancelled']);
244 CRM_Member_BAO_Membership
::updateRelatedMemberships($membership->id
, $params);
250 $participantStatuses = CRM_Core_PseudoConstant
::get('CRM_Event_DAO_Participant', 'status_id', array(
251 'labelColumn' => 'name',
254 $participant->status_id
= $participantStatuses['Cancelled'];
255 $participant->save();
259 $transaction->commit();
260 CRM_Core_Error
::debug_log_message("Setting contribution status to failed");
261 //echo "Success: Setting contribution status to failed<p>";
266 * Handled pending contribution status.
268 * @param array $objects
269 * @param object $transaction
273 public function pending(&$objects, &$transaction) {
274 $transaction->commit();
275 CRM_Core_Error
::debug_log_message("returning since contribution status is pending");
276 echo "Success: Returning since contribution status is pending<p>";
281 * Process cancelled payment outcome.
284 * @param $transaction
285 * @param array $input
289 public function cancelled(&$objects, &$transaction, $input = array()) {
290 $contribution = &$objects['contribution'];
291 $memberships = &$objects['membership'];
292 if (is_numeric($memberships)) {
293 $memberships = array($objects['membership']);
296 $participant = &$objects['participant'];
297 $addLineItems = FALSE;
298 if (empty($contribution->id
)) {
299 $addLineItems = TRUE;
301 $contributionStatuses = CRM_Core_PseudoConstant
::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', array(
302 'labelColumn' => 'name',
305 $contribution->contribution_status_id
= $contributionStatuses['Cancelled'];
306 $contribution->cancel_date
= self
::$_now;
307 $contribution->cancel_reason
= CRM_Utils_Array
::value('reasonCode', $input);
308 $contribution->receive_date
= CRM_Utils_Date
::isoToMysql($contribution->receive_date
);
309 $contribution->receipt_date
= CRM_Utils_Date
::isoToMysql($contribution->receipt_date
);
310 $contribution->thankyou_date
= CRM_Utils_Date
::isoToMysql($contribution->thankyou_date
);
311 $contribution->save();
313 //add lineitems for recurring payments
314 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id
&& $addLineItems) {
315 $this->addRecurLineItems($objects['contributionRecur']->id
, $contribution);
318 //add new soft credit against current $contribution and
319 //copy initial contribution custom fields for recurring contributions
320 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id
) {
321 $this->addrecurSoftCredit($objects['contributionRecur']->id
, $contribution->id
);
322 $this->copyCustomValues($objects['contributionRecur']->id
, $contribution->id
);
325 if (empty($input['skipComponentSync'])) {
326 if (!empty($memberships)) {
327 $membershipStatuses = CRM_Core_PseudoConstant
::get('CRM_Member_DAO_Membership', 'status_id', array(
328 'labelColumn' => 'name',
331 foreach ($memberships as $membership) {
333 $membership->status_id
= $membershipStatuses['Cancelled'];
336 //update related Memberships.
337 $params = array('status_id' => $membershipStatuses['Cancelled']);
338 CRM_Member_BAO_Membership
::updateRelatedMemberships($membership->id
, $params);
344 $participantStatuses = CRM_Core_PseudoConstant
::get('CRM_Event_DAO_Participant', 'status_id', array(
345 'labelColumn' => 'name',
348 $participant->status_id
= $participantStatuses['Cancelled'];
349 $participant->save();
352 $transaction->commit();
353 CRM_Core_Error
::debug_log_message("Setting contribution status to cancelled");
354 //echo "Success: Setting contribution status to cancelled<p>";
359 * Rollback unhandled outcomes.
362 * @param $transaction
366 public function unhandled(&$objects, &$transaction) {
367 $transaction->rollback();
368 CRM_Core_Error
::debug_log_message("returning since contribution status: is not handled");
369 echo "Failure: contribution status is not handled<p>";
374 * Jumbled up function.
376 * The purpose of this function is to transition a pending transaction to Completed including updating any
379 * It has been overloaded to also add recurring transactions to the database, cloning the original transaction and
380 * updating related entities.
382 * It is recommended to avoid calling this function directly and call the api functions:
383 * - contribution.completetransaction
384 * - contribution.repeattransaction
386 * These functions are the focus of testing efforts and more accurately reflect the division of roles
387 * (the job of the IPN class is to determine the outcome, transaction id, invoice id & to validate the source
388 * and from there it should be possible to pass off transaction management.)
390 * This function has been problematic for some time but there are now several tests via the api_v3_Contribution test
391 * and the Paypal & Authorize.net IPN tests so any refactoring should be done in conjunction with those.
393 * This function needs to have the 'body' moved to the CRM_Contribution_BAO_Contribute class and to undergo
394 * refactoring to separate the complete transaction and repeat transaction functionality into separate functions with
395 * a shared function that updates related components.
397 * Note that it is not necessary payment processor extension to implement an IPN class now. In general the code on the
398 * IPN class is better accessed through the api which de-jumbles it a bit.
400 * e.g the payment class can have a function like (based on Omnipay extension):
402 * public function handlePaymentNotification() {
403 * $response = $this->getValidatedOutcome();
404 * if ($response->isSuccessful()) {
406 * // @todo check if it is a repeat transaction & call repeattransaction instead.
407 * civicrm_api3('contribution', 'completetransaction', array('id' => $this->transaction_id));
409 * catch (CiviCRM_API3_Exception $e) {
410 * if (!stristr($e->getMessage(), 'Contribution already completed')) {
411 * $this->handleError('error', $this->transaction_id . $e->getMessage(), 'ipn_completion', 9000, 'An error may
412 * have occurred. Please check your receipt is correct');
413 * $this->redirectOrExit('success');
415 * elseif ($this->transaction_id) {
416 * civicrm_api3('contribution', 'create', array('id' => $this->transaction_id, 'contribution_status_id' =>
420 * @param array $input
422 * @param array $objects
423 * @param $transaction
426 public function completeTransaction(&$input, &$ids, &$objects, &$transaction, $recur = FALSE) {
427 $contribution = &$objects['contribution'];
429 $primaryContributionID = isset($contribution->id
) ?
$contribution->id
: $objects['first_contribution']->id
;
431 $memberships = &$objects['membership'];
432 if (is_numeric($memberships)) {
433 $memberships = array($objects['membership']);
435 $participant = &$objects['participant'];
437 $changeToday = CRM_Utils_Array
::value('trxn_date', $input, self
::$_now);
438 $recurContrib = &$objects['contributionRecur'];
442 if ($input['component'] == 'contribute') {
443 if ($contribution->contribution_page_id
) {
444 CRM_Contribute_BAO_ContributionPage
::setValues($contribution->contribution_page_id
, $values);
445 $source = ts('Online Contribution') . ': ' . $values['title'];
447 elseif ($recurContrib && $recurContrib->id
) {
448 $contribution->contribution_page_id
= NULL;
449 $values['amount'] = $recurContrib->amount
;
450 $values['financial_type_id'] = $objects['contributionType']->id
;
451 $values['title'] = $source = ts('Offline Recurring Contribution');
452 $domainValues = CRM_Core_BAO_Domain
::getNameAndEmail();
453 $values['receipt_from_name'] = $domainValues[0];
454 $values['receipt_from_email'] = $domainValues[1];
456 if ($recurContrib && $recurContrib->id
) {
457 //CRM-13273 - is_email_receipt setting on recurring contribution should take precedence over contribution page setting
458 $values['is_email_receipt'] = $recurContrib->is_email_receipt
;
461 $contribution->source
= $source;
462 if (!empty($values['is_email_receipt'])) {
463 $contribution->receipt_date
= self
::$_now;
466 if (!empty($memberships)) {
467 $membershipsUpdate = array();
468 foreach ($memberships as $membershipTypeIdKey => $membership) {
472 $currentMembership = CRM_Member_BAO_Membership
::getContactMembership($membership->contact_id
,
473 $membership->membership_type_id
,
474 $membership->is_test
, $membership->id
477 // CRM-8141 update the membership type with the value recorded in log when membership created/renewed
478 // this picks up membership type changes during renewals
480 SELECT membership_type_id
481 FROM civicrm_membership_log
482 WHERE membership_id=$membership->id
485 $dao = new CRM_Core_DAO();
488 if (!empty($dao->membership_type_id
)) {
489 $membership->membership_type_id
= $dao->membership_type_id
;
492 // else fall back to using current membership type
494 // else fall back to using current membership type
497 $num_terms = $contribution->getNumTermsByContributionAndMembershipType($membership->membership_type_id
, $primaryContributionID);
498 if ($currentMembership) {
501 * In BAO/Membership.php(renewMembership function), we skip the extend membership date and status
502 * when Contribution mode is notify and membership is for renewal )
504 CRM_Member_BAO_Membership
::fixMembershipStatusBeforeRenew($currentMembership, $changeToday);
506 // @todo - we should pass membership_type_id instead of null here but not
507 // adding as not sure of testing
508 $dates = CRM_Member_BAO_MembershipType
::getRenewalDatesForMembershipType($membership->id
,
509 $changeToday, NULL, $num_terms
512 $dates['join_date'] = CRM_Utils_Date
::customFormat($currentMembership['join_date'], $format);
515 $dates = CRM_Member_BAO_MembershipType
::getDatesForMembershipType($membership->membership_type_id
, NULL, NULL, NULL, $num_terms);
518 //get the status for membership.
519 $calcStatus = CRM_Member_BAO_MembershipStatus
::getMembershipStatusByDate($dates['start_date'],
524 $membership->membership_type_id
,
528 $formatedParams = array(
529 'status_id' => CRM_Utils_Array
::value('id', $calcStatus, 2),
530 'join_date' => CRM_Utils_Date
::customFormat(CRM_Utils_Array
::value('join_date', $dates), $format),
531 'start_date' => CRM_Utils_Date
::customFormat(CRM_Utils_Array
::value('start_date', $dates), $format),
532 'end_date' => CRM_Utils_Date
::customFormat(CRM_Utils_Array
::value('end_date', $dates), $format),
534 //we might be renewing membership,
535 //so make status override false.
536 $formatedParams['is_override'] = FALSE;
537 $membership->copyValues($formatedParams);
540 //updating the membership log
541 $membershipLog = array();
542 $membershipLog = $formatedParams;
544 $logStartDate = $formatedParams['start_date'];
545 if (!empty($dates['log_start_date'])) {
546 $logStartDate = CRM_Utils_Date
::customFormat($dates['log_start_date'], $format);
547 $logStartDate = CRM_Utils_Date
::isoToMysql($logStartDate);
550 $membershipLog['start_date'] = $logStartDate;
551 $membershipLog['membership_id'] = $membership->id
;
552 $membershipLog['modified_id'] = $membership->contact_id
;
553 $membershipLog['modified_date'] = date('Ymd');
554 $membershipLog['membership_type_id'] = $membership->membership_type_id
;
556 CRM_Member_BAO_MembershipLog
::add($membershipLog, CRM_Core_DAO
::$_nullArray);
558 //update related Memberships.
559 CRM_Member_BAO_Membership
::updateRelatedMemberships($membership->id
, $formatedParams);
561 //update the membership type key of membership relatedObjects array
562 //if it has changed after membership update
563 if ($membershipTypeIdKey != $membership->membership_type_id
) {
564 $membershipsUpdate[$membership->membership_type_id
] = $membership;
565 $contribution->_relatedObjects
['membership'][$membership->membership_type_id
] = $membership;
566 unset($contribution->_relatedObjects
['membership'][$membershipTypeIdKey]);
567 unset($memberships[$membershipTypeIdKey]);
571 //update the memberships object with updated membershipTypeId data
572 //if membershipTypeId has changed after membership update
573 if (!empty($membershipsUpdate)) {
574 $memberships = $memberships +
$membershipsUpdate;
580 $eventParams = array('id' => $objects['event']->id
);
581 $values['event'] = array();
583 CRM_Event_BAO_Event
::retrieve($eventParams, $values['event']);
585 //get location details
586 $locationParams = array('entity_id' => $objects['event']->id
, 'entity_table' => 'civicrm_event');
587 $values['location'] = CRM_Core_BAO_Location
::getValues($locationParams);
589 $ufJoinParams = array(
590 'entity_table' => 'civicrm_event',
591 'entity_id' => $ids['event'],
592 'module' => 'CiviEvent',
597 ) = CRM_Core_BAO_UFJoin
::getUFGroupIds($ufJoinParams);
599 $values['custom_pre_id'] = $custom_pre_id;
600 $values['custom_post_id'] = $custom_post_ids;
601 //for tasks 'Change Participant Status' and 'Batch Update Participants Via Profile' case
602 //and cases involving status updation through ipn
603 $values['totalAmount'] = $input['amount'];
605 $contribution->source
= ts('Online Event Registration') . ': ' . $values['event']['title'];
607 if ($values['event']['is_email_confirm']) {
608 $contribution->receipt_date
= self
::$_now;
609 $values['is_email_receipt'] = 1;
611 if (empty($input['skipComponentSync'])) {
612 $participantStatuses = CRM_Core_PseudoConstant
::get('CRM_Event_DAO_Participant', 'status_id', array(
613 'labelColumn' => 'name',
616 $participant->status_id
= $participantStatuses['Registered'];
618 $participant->save();
621 if (CRM_Utils_Array
::value('net_amount', $input, 0) == 0 &&
622 CRM_Utils_Array
::value('fee_amount', $input, 0) != 0
624 $input['net_amount'] = $input['amount'] - $input['fee_amount'];
626 // This complete transaction function is being overloaded to create new contributions too.
627 // here we record if it is a new contribution.
628 // @todo separate the 2 more appropriately.
629 $isNewContribution = FALSE;
630 if (empty($contribution->id
)) {
631 $isNewContribution = TRUE;
633 $contributionStatuses = CRM_Core_PseudoConstant
::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', array(
634 'labelColumn' => 'name',
638 // @todo this section should call the api in order to have hooks called &
639 // because all this 'messiness' setting variables could be avoided
640 // by letting the api resolve pseudoconstants & copy set values and format dates.
641 $contribution->contribution_status_id
= $contributionStatuses['Completed'];
642 $contribution->is_test
= $input['is_test'];
644 // CRM-15960 If we don't have a value we 'want' for the amounts, leave it to the BAO to sort out.
645 if (isset($input['net_amount'])) {
646 $contribution->fee_amount
= CRM_Utils_Array
::value('fee_amount', $input, 0);
648 if (isset($input['net_amount'])) {
649 $contribution->net_amount
= $input['net_amount'];
652 $contribution->trxn_id
= $input['trxn_id'];
653 $contribution->receive_date
= CRM_Utils_Date
::isoToMysql($contribution->receive_date
);
654 $contribution->thankyou_date
= CRM_Utils_Date
::isoToMysql($contribution->thankyou_date
);
655 $contribution->receipt_date
= CRM_Utils_Date
::isoToMysql($contribution->receipt_date
);
656 $contribution->cancel_date
= 'null';
658 if (!empty($input['check_number'])) {
659 $contribution->check_number
= $input['check_number'];
662 if (!empty($input['payment_instrument_id'])) {
663 $contribution->payment_instrument_id
= $input['payment_instrument_id'];
666 if (!empty($contribution->id
)) {
667 $contributionId['id'] = $contribution->id
;
668 $input['prevContribution'] = CRM_Contribute_BAO_Contribution
::getValues($contributionId, CRM_Core_DAO
::$_nullArray, CRM_Core_DAO
::$_nullArray);
670 $contribution->save();
672 // Add new soft credit against current $contribution.
673 if (CRM_Utils_Array
::value('contributionRecur', $objects) && $objects['contributionRecur']->id
) {
674 $this->addrecurSoftCredit($objects['contributionRecur']->id
, $contribution->id
);
677 //add line items for recurring payments
678 if (!empty($contribution->contribution_recur_id
)) {
679 if ($isNewContribution) {
680 $input['line_item'] = $this->addRecurLineItems($contribution->contribution_recur_id
, $contribution);
683 // this is just to prevent e-notices when we call recordFinancialAccounts - per comments on that line - intention is somewhat unclear
684 $input['line_item'] = array();
688 //copy initial contribution custom fields for recurring contributions
689 if ($recurContrib && $recurContrib->id
) {
690 $this->copyCustomValues($recurContrib->id
, $contribution->id
);
693 // next create the transaction record
694 $paymentProcessor = $paymentProcessorId = '';
695 if (isset($objects['paymentProcessor'])) {
696 if (is_array($objects['paymentProcessor'])) {
697 $paymentProcessor = $objects['paymentProcessor']['payment_processor_type'];
698 $paymentProcessorId = $objects['paymentProcessor']['id'];
701 $paymentProcessor = $objects['paymentProcessor']->payment_processor_type
;
702 $paymentProcessorId = $objects['paymentProcessor']->id
;
705 //it's hard to see how it could reach this point without a contributon id as it is saved in line 511 above
706 // which raised the question as to whether this check preceded line 511 & if so whether something could be broken
707 // From a lot of code reading /debugging I'm still not sure the intent WRT first & subsequent payments in this code
708 // it would be good if someone added some comments or refactored this
709 if ($contribution->id
) {
710 $contributionStatuses = CRM_Core_PseudoConstant
::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', array(
711 'labelColumn' => 'name',
714 if ((empty($input['prevContribution']) && $paymentProcessorId) ||
(!$input['prevContribution']->is_pay_later
&& $input['prevContribution']->contribution_status_id
== $contributionStatuses['Pending'])) {
715 $input['payment_processor'] = $paymentProcessorId;
717 $input['contribution_status_id'] = $contributionStatuses['Completed'];
718 $input['total_amount'] = $input['amount'];
719 $input['contribution'] = $contribution;
720 $input['financial_type_id'] = $contribution->financial_type_id
;
722 if (!empty($contribution->_relatedObjects
['participant'])) {
723 $input['contribution_mode'] = 'participant';
724 $input['participant_id'] = $contribution->_relatedObjects
['participant']->id
;
725 $input['skipLineItem'] = 1;
727 elseif (!empty($contribution->_relatedObjects
['membership'])) {
728 $input['skipLineItem'] = TRUE;
729 $input['contribution_mode'] = 'membership';
731 //@todo writing a unit test I was unable to create a scenario where this line did not fatal on second
732 // and subsequent payments. In this case the line items are created at $this->addRecurLineItems
733 // and since the contribution is saved prior to this line there is always a contribution-id,
734 // however there is never a prevContribution (which appears to mean original contribution not previous
735 // contribution - or preUpdateContributionObject most accurately)
736 // so, this is always called & only appears to succeed when prevContribution exists - which appears
737 // to mean "are we updating an exisitng pending contribution"
738 //I was able to make the unit test complete as fataling here doesn't prevent
739 // the contribution being created - but activities would not be created or emails sent
741 CRM_Contribute_BAO_Contribution
::recordFinancialAccounts($input, NULL);
744 self
::updateRecurLinkedPledge($contribution);
746 // create an activity record
747 if ($input['component'] == 'contribute') {
749 $targetContactID = NULL;
750 if (!empty($ids['related_contact'])) {
751 $targetContactID = $contribution->contact_id
;
752 $contribution->contact_id
= $ids['related_contact'];
754 CRM_Activity_BAO_Activity
::addActivity($contribution, NULL, $targetContactID);
758 CRM_Activity_BAO_Activity
::addActivity($participant);
761 CRM_Core_Error
::debug_log_message("Contribution record updated successfully");
762 $transaction->commit();
764 // CRM-9132 legacy behaviour was that receipts were sent out in all instances. Still sending
765 // when array_key 'is_email_receipt doesn't exist in case some instances where is needs setting haven't been set
766 if (!array_key_exists('is_email_receipt', $values) ||
767 $values['is_email_receipt'] == 1
769 self
::sendMail($input, $ids, $objects, $values, $recur, FALSE);
770 CRM_Core_Error
::debug_log_message("Receipt sent");
773 CRM_Core_Error
::debug_log_message("Success: Database updated");
774 if ($this->_isRecurring
) {
775 $this->sendRecurringStartOrEndNotification($ids, $recur);
780 * Get site billing ID.
786 public function getBillingID(&$ids) {
787 // get the billing location type
788 $locationTypes = CRM_Core_PseudoConstant
::get('CRM_Core_DAO_Address', 'location_type_id', array(), 'validate');
789 // CRM-8108 remove the ts around the Billing location type
790 //$ids['billing'] = array_search( ts('Billing'), $locationTypes );
791 $ids['billing'] = array_search('Billing', $locationTypes);
792 if (!$ids['billing']) {
793 CRM_Core_Error
::debug_log_message(ts('Please set a location type of %1', array(1 => 'Billing')));
794 echo "Failure: Could not find billing location type<p>";
801 * Send receipt from contribution.
803 * Note that the compose message part has been moved to contribution
804 * In general LoadObjects is called first to get the objects but the composeMessageArray function now calls it
806 * @param array $input
807 * Incoming data from Payment processor.
809 * Related object IDs.
811 * @param array $values
812 * Values related to objects that have already been loaded.
814 * Is it part of a recurring contribution.
815 * @param bool $returnMessageText
816 * Should text be returned instead of sent. This.
817 * is because the function is also used to generate pdfs
821 public function sendMail(&$input, &$ids, &$objects, &$values, $recur = FALSE, $returnMessageText = FALSE) {
822 $contribution = &$objects['contribution'];
823 $input['is_recur'] = $recur;
824 // set receipt from e-mail and name in value
825 if (!$returnMessageText) {
826 $session = CRM_Core_Session
::singleton();
827 $userID = $session->get('userID');
828 if (!empty($userID)) {
829 list($userName, $userEmail) = CRM_Contact_BAO_Contact_Location
::getEmailDetails($userID);
830 $values['receipt_from_email'] = $userEmail;
831 $values['receipt_from_name'] = $userName;
834 return $contribution->composeMessageArray($input, $ids, $values, $recur, $returnMessageText);
838 * Send start or end notification for recurring payments.
843 public function sendRecurringStartOrEndNotification($ids, $recur) {
844 if ($this->_isFirstOrLastRecurringPayment
) {
845 $autoRenewMembership = FALSE;
847 isset($ids['membership']) && $ids['membership']
849 $autoRenewMembership = TRUE;
852 //send recurring Notification email for user
853 CRM_Contribute_BAO_ContributionPage
::recurringNotify($this->_isFirstOrLastRecurringPayment
,
855 $ids['contributionPage'],
863 * Update contribution status.
866 * This is only called from one place in the code &
867 * it is unclear whether it is a function on the way in or on the way out
869 * @param array $params
871 * @return void|NULL|int
873 public function updateContributionStatus(&$params) {
874 // get minimum required values.
875 $statusId = CRM_Utils_Array
::value('contribution_status_id', $params);
876 $componentId = CRM_Utils_Array
::value('component_id', $params);
877 $componentName = CRM_Utils_Array
::value('componentName', $params);
878 $contributionId = CRM_Utils_Array
::value('contribution_id', $params);
880 if (!$contributionId ||
!$componentId ||
!$componentName ||
!$statusId) {
884 $input = $ids = $objects = array();
886 //get the required ids.
887 $ids['contribution'] = $contributionId;
889 if (!$ids['contact'] = CRM_Utils_Array
::value('contact_id', $params)) {
890 $ids['contact'] = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution',
896 if ($componentName == 'Event') {
898 $ids['participant'] = $componentId;
900 if (!$ids['event'] = CRM_Utils_Array
::value('event_id', $params)) {
901 $ids['event'] = CRM_Core_DAO
::getFieldValue('CRM_Event_DAO_Participant',
908 if ($componentName == 'Membership') {
909 $name = 'contribute';
910 $ids['membership'] = $componentId;
912 $ids['contributionPage'] = NULL;
913 $ids['contributionRecur'] = NULL;
914 $input['component'] = $name;
916 $baseIPN = new CRM_Core_Payment_BaseIPN();
917 $transaction = new CRM_Core_Transaction();
919 // reset template values.
920 $template = CRM_Core_Smarty
::singleton();
921 $template->clearTemplateVars();
923 if (!$baseIPN->validateData($input, $ids, $objects, FALSE)) {
924 CRM_Core_Error
::fatal();
927 $contribution = &$objects['contribution'];
929 $contributionStatuses = CRM_Core_PseudoConstant
::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', array(
930 'labelColumn' => 'name',
933 $input['skipComponentSync'] = CRM_Utils_Array
::value('skipComponentSync', $params);
934 if ($statusId == $contributionStatuses['Cancelled']) {
935 $baseIPN->cancelled($objects, $transaction, $input);
936 $transaction->commit();
939 elseif ($statusId == $contributionStatuses['Failed']) {
940 $baseIPN->failed($objects, $transaction, $input);
941 $transaction->commit();
945 // status is not pending
946 if ($contribution->contribution_status_id
!= $contributionStatuses['Pending']) {
947 $transaction->commit();
951 //set values for ipn code.
955 'payment_instrument_id',
957 if (!$input[$field] = CRM_Utils_Array
::value($field, $params)) {
958 $input[$field] = $contribution->$field;
961 if (!$input['trxn_id'] = CRM_Utils_Array
::value('trxn_id', $params)) {
962 $input['trxn_id'] = $contribution->invoice_id
;
964 if (!$input['amount'] = CRM_Utils_Array
::value('total_amount', $params)) {
965 $input['amount'] = $contribution->total_amount
;
967 $input['is_test'] = $contribution->is_test
;
968 $input['net_amount'] = $contribution->net_amount
;
969 if (!empty($input['fee_amount']) && !empty($input['amount'])) {
970 $input['net_amount'] = $input['amount'] - $input['fee_amount'];
973 //complete the contribution.
974 $baseIPN->completeTransaction($input, $ids, $objects, $transaction, FALSE);
976 // reset template values before processing next transactions
977 $template->clearTemplateVars();
983 * Update pledge associated with a recurring contribution.
985 * If the contribution has a pledge_payment record pledge, then update the pledge_payment record & pledge based on that linkage.
987 * If a previous contribution in the recurring contribution sequence is linked with a pledge then we assume this contribution
988 * should be linked with the same pledge also. Currently only back-office users can apply a recurring payment to a pledge &
989 * it should be assumed they
990 * do so with the intention that all payments will be linked
992 * The pledge payment record should already exist & will need to be updated with the new contribution ID.
993 * If not the contribution will also need to be linked to the pledge
995 * @param CRM_Contribute_BAO_Contribution $contribution
997 public function updateRecurLinkedPledge(&$contribution) {
998 $returnProperties = array('id', 'pledge_id');
999 $paymentDetails = $paymentIDs = array();
1001 if (CRM_Core_DAO
::commonRetrieveAll('CRM_Pledge_DAO_PledgePayment', 'contribution_id', $contribution->id
,
1002 $paymentDetails, $returnProperties
1005 foreach ($paymentDetails as $key => $value) {
1006 $paymentIDs[] = $value['id'];
1007 $pledgeId = $value['pledge_id'];
1011 //payment is not already linked - if it is linked with a pledge we need to create a link.
1012 // return if it is not recurring contribution
1013 if (!$contribution->contribution_recur_id
) {
1017 $relatedContributions = new CRM_Contribute_DAO_Contribution();
1018 $relatedContributions->contribution_recur_id
= $contribution->contribution_recur_id
;
1019 $relatedContributions->find();
1021 while ($relatedContributions->fetch()) {
1022 CRM_Core_DAO
::commonRetrieveAll('CRM_Pledge_DAO_PledgePayment', 'contribution_id', $relatedContributions->id
,
1023 $paymentDetails, $returnProperties
1027 if (empty($paymentDetails)) {
1028 // payment is not linked with a pledge and neither are any other contributions on this
1032 foreach ($paymentDetails as $key => $value) {
1033 $pledgeId = $value['pledge_id'];
1036 // we have a pledge now we need to get the oldest unpaid payment
1037 $paymentDetails = CRM_Pledge_BAO_PledgePayment
::getOldestPledgePayment($pledgeId);
1038 if (empty($paymentDetails['id'])) {
1039 // we can assume this pledge is now completed
1040 // return now so we don't create a core error & roll back
1043 $paymentDetails['contribution_id'] = $contribution->id
;
1044 $paymentDetails['status_id'] = $contribution->contribution_status_id
;
1045 $paymentDetails['actual_amount'] = $contribution->total_amount
;
1047 // put contribution against it
1048 $payment = CRM_Pledge_BAO_PledgePayment
::add($paymentDetails);
1049 $paymentIDs[] = $payment->id
;
1052 // update pledge and corresponding payment statuses
1053 CRM_Pledge_BAO_PledgePayment
::updatePledgePaymentStatus($pledgeId, $paymentIDs, $contribution->contribution_status_id
,
1054 NULL, $contribution->total_amount
1059 * Add line items for recurring contribution.
1061 * @param int $recurId
1062 * @param $contribution
1066 public function addRecurLineItems($recurId, $contribution) {
1067 $lineSets = array();
1069 $originalContributionID = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $recurId, 'id', 'contribution_recur_id');
1070 $lineItems = CRM_Price_BAO_LineItem
::getLineItemsByContributionID($originalContributionID);
1071 if (!empty($lineItems)) {
1072 foreach ($lineItems as $key => $value) {
1073 $priceField = new CRM_Price_DAO_PriceField();
1074 $priceField->id
= $value['price_field_id'];
1075 $priceField->find(TRUE);
1076 $lineSets[$priceField->price_set_id
][] = $value;
1077 if ($value['entity_table'] == 'civicrm_membership') {
1079 civicrm_api3('membership_payment', 'create', array(
1080 'membership_id' => $value['entity_id'],
1081 'contribution_id' => $contribution->id
,
1084 catch (CiviCRM_API3_Exception
$e) {
1085 // we are catching & ignoring errors as an extra precaution since lost IPNs may be more serious that lost membership_payment data
1086 // this fn is unit-tested so risk of changes elsewhere breaking it are otherwise mitigated
1092 CRM_Price_BAO_LineItem
::processPriceSet($contribution->id
, $lineSets, $contribution);
1098 * Copy custom data of the initial contribution into its recurring contributions.
1100 * @param int $recurId
1101 * @param int $targetContributionId
1103 public function copyCustomValues($recurId, $targetContributionId) {
1104 if ($recurId && $targetContributionId) {
1105 // get the initial contribution id of recur id
1106 $sourceContributionId = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $recurId, 'id', 'contribution_recur_id');
1108 // if the same contribution is being proccessed then return
1109 if ($sourceContributionId == $targetContributionId) {
1112 // check if proper recurring contribution record is being processed
1113 $targetConRecurId = CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $targetContributionId, 'contribution_recur_id');
1114 if ($targetConRecurId != $recurId) {
1119 $extends = array('Contribution');
1120 $groupTree = CRM_Core_BAO_CustomGroup
::getGroupDetail(NULL, NULL, $extends);
1122 foreach ($groupTree as $groupID => $group) {
1123 $table[$groupTree[$groupID]['table_name']] = array('entity_id');
1124 foreach ($group['fields'] as $fieldID => $field) {
1125 $table[$groupTree[$groupID]['table_name']][] = $groupTree[$groupID]['fields'][$fieldID]['column_name'];
1129 foreach ($table as $tableName => $tableColumns) {
1130 $insert = 'INSERT INTO ' . $tableName . ' (' . implode(', ', $tableColumns) . ') ';
1131 $tableColumns[0] = $targetContributionId;
1132 $select = 'SELECT ' . implode(', ', $tableColumns);
1133 $from = ' FROM ' . $tableName;
1134 $where = " WHERE {$tableName}.entity_id = {$sourceContributionId}";
1135 $query = $insert . $select . $from . $where;
1136 $dao = CRM_Core_DAO
::executeQuery($query, CRM_Core_DAO
::$_nullArray);
1143 * Add soft credit to for recurring payment.
1145 * copy soft credit record of first recurring contribution.
1146 * and add new soft credit against $targetContributionId
1148 * @param int $recurId
1149 * @param int $targetContributionId
1151 public function addrecurSoftCredit($recurId, $targetContributionId) {
1152 $soft_contribution = new CRM_Contribute_DAO_ContributionSoft();
1153 $soft_contribution->contribution_id
= CRM_Core_DAO
::getFieldValue('CRM_Contribute_DAO_Contribution', $recurId, 'id', 'contribution_recur_id');
1155 // Check if first recurring contribution has any associated soft credit.
1156 if ($soft_contribution->find(TRUE)) {
1157 $soft_contribution->contribution_id
= $targetContributionId;
1158 unset($soft_contribution->id
);
1159 $soft_contribution->save();