From db59bb7340a85d3864a596231f5199a82aee80f2 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Thu, 23 Jul 2015 16:50:02 +1200 Subject: [PATCH] CRM-16524 relocate functions relating to completing contributions & sending receipts from baseIPN to ContributionBAO These functions are not IPN specific & going off to the IPN for them has been a sore point that is worth resolved before fixing lack of hook calling --- CRM/Contribute/BAO/Contribution.php | 424 ++++++++++++++++++++++++++++ CRM/Core/Payment/BaseIPN.php | 386 +------------------------ 2 files changed, 431 insertions(+), 379 deletions(-) diff --git a/CRM/Contribute/BAO/Contribution.php b/CRM/Contribute/BAO/Contribution.php index 876a6d32fe..c03ad18d81 100644 --- a/CRM/Contribute/BAO/Contribution.php +++ b/CRM/Contribute/BAO/Contribution.php @@ -3932,4 +3932,428 @@ WHERE con.id = {$contributionId} } } + /** + * Complete an order. + * + * Do not call this directly - use the contribution.completetransaction api as this function is being refactored. + * + * Currently overloaded to complete a transaction & repeat a transaction - fix! + * + * Moving it out of the BaseIPN class is just the first step. + * + * @param array $input + * @param array $ids + * @param array $objects + * @param CRM_Core_Transaction $transaction + * @param int $recur + * @param CRM_Contribute_BAO_Contribution $contribution + * @param bool $isRecurring + * Duplication of param needs review. + * @param int $isFirstOrLastRecurringPayment + */ + public static function completeOrder(&$input, &$ids, $objects, &$transaction, $recur, $contribution, $isRecurring, + $isFirstOrLastRecurringPayment) { + $primaryContributionID = isset($contribution->id) ? $contribution->id : $objects['first_contribution']->id; + + $participant = CRM_Utils_Array::value('participant', $objects); + $memberships = CRM_Utils_Array::value('membership', $objects); + $recurContrib = CRM_Utils_Array::value('contributionRecur', $objects); + + if (is_numeric($memberships)) { + $memberships = array($objects['membership']); + } + + $changeDate = CRM_Utils_Array::value('trxn_date', $input, date('YmdHis')); + + $values = array(); + if (isset($input['is_email_receipt'])) { + $values['is_email_receipt'] = $input['is_email_receipt']; + } + $source = NULL; + if ($input['component'] == 'contribute') { + if ($contribution->contribution_page_id) { + CRM_Contribute_BAO_ContributionPage::setValues($contribution->contribution_page_id, $values); + $source = ts('Online Contribution') . ': ' . $values['title']; + } + elseif ($recurContrib && $recurContrib->id) { + $contribution->contribution_page_id = NULL; + $values['amount'] = $recurContrib->amount; + $values['financial_type_id'] = $objects['contributionType']->id; + $values['title'] = $source = ts('Offline Recurring Contribution'); + $domainValues = CRM_Core_BAO_Domain::getNameAndEmail(); + $values['receipt_from_name'] = $domainValues[0]; + $values['receipt_from_email'] = $domainValues[1]; + } + + if ($recurContrib && $recurContrib->id && !isset($input['is_email_receipt'])) { + //CRM-13273 - is_email_receipt setting on recurring contribution should take precedence over contribution page setting + // but CRM-16124 if $input['is_email_receipt'] is set then that should not be overridden. + $values['is_email_receipt'] = $recurContrib->is_email_receipt; + } + + $contribution->source = $source; + if (!empty($values['is_email_receipt'])) { + $contribution->receipt_date = $changeDate; + } + + if (!empty($memberships)) { + $membershipsUpdate = array(); + foreach ($memberships as $membershipTypeIdKey => $membership) { + if ($membership) { + $format = '%Y%m%d'; + + $currentMembership = CRM_Member_BAO_Membership::getContactMembership($membership->contact_id, + $membership->membership_type_id, + $membership->is_test, $membership->id + ); + + // CRM-8141 update the membership type with the value recorded in log when membership created/renewed + // this picks up membership type changes during renewals + $sql = " +SELECT membership_type_id +FROM civicrm_membership_log +WHERE membership_id=$membership->id +ORDER BY id DESC +LIMIT 1;"; + $dao = new CRM_Core_DAO(); + $dao->query($sql); + if ($dao->fetch()) { + if (!empty($dao->membership_type_id)) { + $membership->membership_type_id = $dao->membership_type_id; + $membership->save(); + } + // else fall back to using current membership type + } + // else fall back to using current membership type + $dao->free(); + + $num_terms = $contribution->getNumTermsByContributionAndMembershipType($membership->membership_type_id, $primaryContributionID); + if ($currentMembership) { + /* + * Fixed FOR CRM-4433 + * In BAO/Membership.php(renewMembership function), we skip the extend membership date and status + * when Contribution mode is notify and membership is for renewal ) + */ + CRM_Member_BAO_Membership::fixMembershipStatusBeforeRenew($currentMembership, $changeDate); + + // @todo - we should pass membership_type_id instead of null here but not + // adding as not sure of testing + $dates = CRM_Member_BAO_MembershipType::getRenewalDatesForMembershipType($membership->id, + $changeDate, NULL, $num_terms + ); + + $dates['join_date'] = CRM_Utils_Date::customFormat($currentMembership['join_date'], $format); + } + else { + $dates = CRM_Member_BAO_MembershipType::getDatesForMembershipType($membership->membership_type_id, NULL, NULL, NULL, $num_terms); + } + + //get the status for membership. + $calcStatus = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($dates['start_date'], + $dates['end_date'], + $dates['join_date'], + 'today', + TRUE, + $membership->membership_type_id, + (array) $membership + ); + + $formatedParams = array( + 'status_id' => CRM_Utils_Array::value('id', $calcStatus, 2), + 'join_date' => CRM_Utils_Date::customFormat(CRM_Utils_Array::value('join_date', $dates), $format), + 'start_date' => CRM_Utils_Date::customFormat(CRM_Utils_Array::value('start_date', $dates), $format), + 'end_date' => CRM_Utils_Date::customFormat(CRM_Utils_Array::value('end_date', $dates), $format), + ); + //we might be renewing membership, + //so make status override false. + $formatedParams['is_override'] = FALSE; + $membership->copyValues($formatedParams); + $membership->save(); + + //updating the membership log + $membershipLog = array(); + $membershipLog = $formatedParams; + + $logStartDate = $formatedParams['start_date']; + if (!empty($dates['log_start_date'])) { + $logStartDate = CRM_Utils_Date::customFormat($dates['log_start_date'], $format); + $logStartDate = CRM_Utils_Date::isoToMysql($logStartDate); + } + + $membershipLog['start_date'] = $logStartDate; + $membershipLog['membership_id'] = $membership->id; + $membershipLog['modified_id'] = $membership->contact_id; + $membershipLog['modified_date'] = date('Ymd'); + $membershipLog['membership_type_id'] = $membership->membership_type_id; + + CRM_Member_BAO_MembershipLog::add($membershipLog, CRM_Core_DAO::$_nullArray); + + //update related Memberships. + CRM_Member_BAO_Membership::updateRelatedMemberships($membership->id, $formatedParams); + + //update the membership type key of membership relatedObjects array + //if it has changed after membership update + if ($membershipTypeIdKey != $membership->membership_type_id) { + $membershipsUpdate[$membership->membership_type_id] = $membership; + $contribution->_relatedObjects['membership'][$membership->membership_type_id] = $membership; + unset($contribution->_relatedObjects['membership'][$membershipTypeIdKey]); + unset($memberships[$membershipTypeIdKey]); + } + } + } + //update the memberships object with updated membershipTypeId data + //if membershipTypeId has changed after membership update + if (!empty($membershipsUpdate)) { + $memberships = $memberships + $membershipsUpdate; + } + } + } + else { + // event + $eventParams = array('id' => $objects['event']->id); + $values['event'] = array(); + + CRM_Event_BAO_Event::retrieve($eventParams, $values['event']); + + //get location details + $locationParams = array('entity_id' => $objects['event']->id, 'entity_table' => 'civicrm_event'); + $values['location'] = CRM_Core_BAO_Location::getValues($locationParams); + + $ufJoinParams = array( + 'entity_table' => 'civicrm_event', + 'entity_id' => $ids['event'], + 'module' => 'CiviEvent', + ); + + list($custom_pre_id, + $custom_post_ids + ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams); + + $values['custom_pre_id'] = $custom_pre_id; + $values['custom_post_id'] = $custom_post_ids; + //for tasks 'Change Participant Status' and 'Batch Update Participants Via Profile' case + //and cases involving status updation through ipn + $values['totalAmount'] = $input['amount']; + + $contribution->source = ts('Online Event Registration') . ': ' . $values['event']['title']; + + if ($values['event']['is_email_confirm']) { + $contribution->receipt_date = $changeDate; + $values['is_email_receipt'] = 1; + } + if (empty($input['skipComponentSync'])) { + $participantStatuses = CRM_Core_PseudoConstant::get('CRM_Event_DAO_Participant', 'status_id', array( + 'labelColumn' => 'name', + 'flip' => 1, + )); + $participant->status_id = $participantStatuses['Registered']; + } + $participant->save(); + } + + if (CRM_Utils_Array::value('net_amount', $input, 0) == 0 && + CRM_Utils_Array::value('fee_amount', $input, 0) != 0 + ) { + $input['net_amount'] = $input['amount'] - $input['fee_amount']; + } + // This complete transaction function is being overloaded to create new contributions too. + // here we record if it is a new contribution. + // @todo separate the 2 more appropriately. + $isNewContribution = FALSE; + if (empty($contribution->id)) { + $isNewContribution = TRUE; + if (!empty($input['amount']) && $input['amount'] != $contribution->total_amount) { + $contribution->total_amount = $input['amount']; + // The BAO does this stuff but we are actually kinda bypassing it here (bad code! go sit in the corner) + // so we have to handle net_amount in this (naughty) code. + if (isset($input['fee_amount']) && is_numeric($input['fee_amount'])) { + $contribution->fee_amount = $input['fee_amount']; + } + $contribution->net_amount = $contribution->total_amount - $contribution->fee_amount; + } + if (!empty($input['campaign_id'])) { + $contribution->campaign_id = $input['campaign_id']; + } + } + + $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', array( + 'labelColumn' => 'name', + 'flip' => 1, + )); + + // @todo this section should call the api in order to have hooks called & + // because all this 'messiness' setting variables could be avoided + // by letting the api resolve pseudoconstants & copy set values and format dates. + $contribution->contribution_status_id = $contributionStatuses['Completed']; + $contribution->is_test = $input['is_test']; + + // CRM-15960 If we don't have a value we 'want' for the amounts, leave it to the BAO to sort out. + if (isset($input['net_amount'])) { + $contribution->fee_amount = CRM_Utils_Array::value('fee_amount', $input, 0); + } + if (isset($input['net_amount'])) { + $contribution->net_amount = $input['net_amount']; + } + + $contribution->trxn_id = $input['trxn_id']; + $contribution->receive_date = CRM_Utils_Date::isoToMysql($contribution->receive_date); + $contribution->thankyou_date = CRM_Utils_Date::isoToMysql($contribution->thankyou_date); + $contribution->receipt_date = CRM_Utils_Date::isoToMysql($contribution->receipt_date); + $contribution->cancel_date = 'null'; + + if (!empty($input['check_number'])) { + $contribution->check_number = $input['check_number']; + } + + if (!empty($input['payment_instrument_id'])) { + $contribution->payment_instrument_id = $input['payment_instrument_id']; + } + + if (!empty($contribution->id)) { + $input['prevContribution'] = CRM_Contribute_BAO_Contribution::getValues(array('id' => $contribution->id), + CRM_Core_DAO::$_nullArray, CRM_Core_DAO::$_nullArray); + } + + $contribution->save(); + + // Add new soft credit against current $contribution. + if (CRM_Utils_Array::value('contributionRecur', $objects) && $objects['contributionRecur']->id) { + CRM_Contribute_BAO_ContributionRecur::addrecurSoftCredit($objects['contributionRecur']->id, $contribution->id); + } + + //add line items for recurring payments + if (!empty($contribution->contribution_recur_id)) { + if ($isNewContribution) { + $input['line_item'] = CRM_Contribute_BAO_ContributionRecur::addRecurLineItems($contribution->contribution_recur_id, $contribution); + } + else { + // this is just to prevent e-notices when we call recordFinancialAccounts - per comments on that line - intention is somewhat unclear + $input['line_item'] = array(); + } + } + + //copy initial contribution custom fields for recurring contributions + if ($recurContrib && $recurContrib->id) { + CRM_Contribute_BAO_ContributionRecur::copyCustomValues($recurContrib->id, $contribution->id); + } + + $paymentProcessorId = ''; + if (isset($objects['paymentProcessor'])) { + if (is_array($objects['paymentProcessor'])) { + $paymentProcessorId = $objects['paymentProcessor']['id']; + } + else { + $paymentProcessorId = $objects['paymentProcessor']->id; + } + } + + $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', array( + 'labelColumn' => 'name', + 'flip' => 1, + )); + if ((empty($input['prevContribution']) && $paymentProcessorId) || (!$input['prevContribution']->is_pay_later && $input['prevContribution']->contribution_status_id == $contributionStatuses['Pending'])) { + $input['payment_processor'] = $paymentProcessorId; + } + $input['contribution_status_id'] = $contributionStatuses['Completed']; + $input['total_amount'] = $input['amount']; + $input['contribution'] = $contribution; + $input['financial_type_id'] = $contribution->financial_type_id; + + if (!empty($contribution->_relatedObjects['participant'])) { + $input['contribution_mode'] = 'participant'; + $input['participant_id'] = $contribution->_relatedObjects['participant']->id; + $input['skipLineItem'] = 1; + } + elseif (!empty($contribution->_relatedObjects['membership'])) { + $input['skipLineItem'] = TRUE; + $input['contribution_mode'] = 'membership'; + } + //@todo writing a unit test I was unable to create a scenario where this line did not fatal on second + // and subsequent payments. In this case the line items are created at + // CRM_Contribute_BAO_ContributionRecur::addRecurLineItems + // and since the contribution is saved prior to this line there is always a contribution-id, + // however there is never a prevContribution (which appears to mean original contribution not previous + // contribution - or preUpdateContributionObject most accurately) + // so, this is always called & only appears to succeed when prevContribution exists - which appears + // to mean "are we updating an exisitng pending contribution" + //I was able to make the unit test complete as fataling here doesn't prevent + // the contribution being created - but activities would not be created or emails sent + + CRM_Contribute_BAO_Contribution::recordFinancialAccounts($input, NULL); + + CRM_Core_Error::debug_log_message("Contribution record updated successfully"); + $transaction->commit(); + + CRM_Contribute_BAO_ContributionRecur::updateRecurLinkedPledge($contribution); + + // create an activity record + if ($input['component'] == 'contribute') { + //CRM-4027 + $targetContactID = NULL; + if (!empty($ids['related_contact'])) { + $targetContactID = $contribution->contact_id; + $contribution->contact_id = $ids['related_contact']; + } + CRM_Activity_BAO_Activity::addActivity($contribution, NULL, $targetContactID); + // event + } + else { + CRM_Activity_BAO_Activity::addActivity($participant); + } + + // CRM-9132 legacy behaviour was that receipts were sent out in all instances. Still sending + // when array_key 'is_email_receipt doesn't exist in case some instances where is needs setting haven't been set + if (!array_key_exists('is_email_receipt', $values) || + $values['is_email_receipt'] == 1 + ) { + self::sendMail($input, $ids, $objects, $values, $recur, FALSE); + CRM_Core_Error::debug_log_message("Receipt sent"); + } + + CRM_Core_Error::debug_log_message("Success: Database updated"); + if ($isRecurring) { + CRM_Contribute_BAO_ContributionRecur::sendRecurringStartOrEndNotification($ids, $recur, + $isFirstOrLastRecurringPayment); + } + } + + /** + * Send receipt from contribution. + * + * Do not call this directly - it is being refactored. use contribution.sendmessage api call. + * + * Note that the compose message part has been moved to contribution + * In general LoadObjects is called first to get the objects but the composeMessageArray function now calls it. + * + * @param array $input + * Incoming data from Payment processor. + * @param array $ids + * Related object IDs. + * @param $objects + * @param array $values + * Values related to objects that have already been loaded. + * @param bool $recur + * Is it part of a recurring contribution. + * @param bool $returnMessageText + * Should text be returned instead of sent. This. + * is because the function is also used to generate pdfs + * + * @return array + */ + public static function sendMail(&$input, &$ids, &$objects, &$values, $recur = FALSE, $returnMessageText = FALSE) { + $contribution = &$objects['contribution']; + $input['is_recur'] = $recur; + // set receipt from e-mail and name in value + if (!$returnMessageText) { + $session = CRM_Core_Session::singleton(); + $userID = $session->get('userID'); + if (!empty($userID)) { + list($userName, $userEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($userID); + $values['receipt_from_email'] = CRM_Utils_Array::value('receipt_from_email', $input, $userEmail); + $values['receipt_from_name'] = CRM_Utils_Array::value('receipt_from_name', $input, $userName); + } + } + return $contribution->composeMessageArray($input, $ids, $values, $recur, $returnMessageText); + } + } diff --git a/CRM/Core/Payment/BaseIPN.php b/CRM/Core/Payment/BaseIPN.php index 47fbc75e60..9192b867d6 100644 --- a/CRM/Core/Payment/BaseIPN.php +++ b/CRM/Core/Payment/BaseIPN.php @@ -424,374 +424,12 @@ class CRM_Core_Payment_BaseIPN { * @param bool $recur */ public function completeTransaction(&$input, &$ids, &$objects, &$transaction, $recur = FALSE) { + $isRecurring = $this->_isRecurring; + $isFirstOrLastRecurringPayment = $this->_isFirstOrLastRecurringPayment; $contribution = &$objects['contribution']; - $primaryContributionID = isset($contribution->id) ? $contribution->id : $objects['first_contribution']->id; - - $memberships = &$objects['membership']; - if (is_numeric($memberships)) { - $memberships = array($objects['membership']); - } - $participant = &$objects['participant']; - - $changeToday = CRM_Utils_Array::value('trxn_date', $input, self::$_now); - $recurContrib = &$objects['contributionRecur']; - - $values = array(); - if (isset($input['is_email_receipt'])) { - $values['is_email_receipt'] = $input['is_email_receipt']; - } - $source = NULL; - if ($input['component'] == 'contribute') { - if ($contribution->contribution_page_id) { - CRM_Contribute_BAO_ContributionPage::setValues($contribution->contribution_page_id, $values); - $source = ts('Online Contribution') . ': ' . $values['title']; - } - elseif ($recurContrib && $recurContrib->id) { - $contribution->contribution_page_id = NULL; - $values['amount'] = $recurContrib->amount; - $values['financial_type_id'] = $objects['contributionType']->id; - $values['title'] = $source = ts('Offline Recurring Contribution'); - $domainValues = CRM_Core_BAO_Domain::getNameAndEmail(); - $values['receipt_from_name'] = $domainValues[0]; - $values['receipt_from_email'] = $domainValues[1]; - } - - if ($recurContrib && $recurContrib->id && !isset($input['is_email_receipt'])) { - //CRM-13273 - is_email_receipt setting on recurring contribution should take precedence over contribution page setting - // but CRM-16124 if $input['is_email_receipt'] is set then that should not be overridden. - $values['is_email_receipt'] = $recurContrib->is_email_receipt; - } - - $contribution->source = $source; - if (!empty($values['is_email_receipt'])) { - $contribution->receipt_date = self::$_now; - } - - if (!empty($memberships)) { - $membershipsUpdate = array(); - foreach ($memberships as $membershipTypeIdKey => $membership) { - if ($membership) { - $format = '%Y%m%d'; - - $currentMembership = CRM_Member_BAO_Membership::getContactMembership($membership->contact_id, - $membership->membership_type_id, - $membership->is_test, $membership->id - ); - - // CRM-8141 update the membership type with the value recorded in log when membership created/renewed - // this picks up membership type changes during renewals - $sql = " -SELECT membership_type_id -FROM civicrm_membership_log -WHERE membership_id=$membership->id -ORDER BY id DESC -LIMIT 1;"; - $dao = new CRM_Core_DAO(); - $dao->query($sql); - if ($dao->fetch()) { - if (!empty($dao->membership_type_id)) { - $membership->membership_type_id = $dao->membership_type_id; - $membership->save(); - } - // else fall back to using current membership type - } - // else fall back to using current membership type - $dao->free(); - - $num_terms = $contribution->getNumTermsByContributionAndMembershipType($membership->membership_type_id, $primaryContributionID); - if ($currentMembership) { - /* - * Fixed FOR CRM-4433 - * In BAO/Membership.php(renewMembership function), we skip the extend membership date and status - * when Contribution mode is notify and membership is for renewal ) - */ - CRM_Member_BAO_Membership::fixMembershipStatusBeforeRenew($currentMembership, $changeToday); - - // @todo - we should pass membership_type_id instead of null here but not - // adding as not sure of testing - $dates = CRM_Member_BAO_MembershipType::getRenewalDatesForMembershipType($membership->id, - $changeToday, NULL, $num_terms - ); - - $dates['join_date'] = CRM_Utils_Date::customFormat($currentMembership['join_date'], $format); - } - else { - $dates = CRM_Member_BAO_MembershipType::getDatesForMembershipType($membership->membership_type_id, NULL, NULL, NULL, $num_terms); - } - - //get the status for membership. - $calcStatus = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($dates['start_date'], - $dates['end_date'], - $dates['join_date'], - 'today', - TRUE, - $membership->membership_type_id, - (array) $membership - ); - - $formatedParams = array( - 'status_id' => CRM_Utils_Array::value('id', $calcStatus, 2), - 'join_date' => CRM_Utils_Date::customFormat(CRM_Utils_Array::value('join_date', $dates), $format), - 'start_date' => CRM_Utils_Date::customFormat(CRM_Utils_Array::value('start_date', $dates), $format), - 'end_date' => CRM_Utils_Date::customFormat(CRM_Utils_Array::value('end_date', $dates), $format), - ); - //we might be renewing membership, - //so make status override false. - $formatedParams['is_override'] = FALSE; - $membership->copyValues($formatedParams); - $membership->save(); - - //updating the membership log - $membershipLog = array(); - $membershipLog = $formatedParams; - - $logStartDate = $formatedParams['start_date']; - if (!empty($dates['log_start_date'])) { - $logStartDate = CRM_Utils_Date::customFormat($dates['log_start_date'], $format); - $logStartDate = CRM_Utils_Date::isoToMysql($logStartDate); - } - - $membershipLog['start_date'] = $logStartDate; - $membershipLog['membership_id'] = $membership->id; - $membershipLog['modified_id'] = $membership->contact_id; - $membershipLog['modified_date'] = date('Ymd'); - $membershipLog['membership_type_id'] = $membership->membership_type_id; - - CRM_Member_BAO_MembershipLog::add($membershipLog, CRM_Core_DAO::$_nullArray); - - //update related Memberships. - CRM_Member_BAO_Membership::updateRelatedMemberships($membership->id, $formatedParams); - - //update the membership type key of membership relatedObjects array - //if it has changed after membership update - if ($membershipTypeIdKey != $membership->membership_type_id) { - $membershipsUpdate[$membership->membership_type_id] = $membership; - $contribution->_relatedObjects['membership'][$membership->membership_type_id] = $membership; - unset($contribution->_relatedObjects['membership'][$membershipTypeIdKey]); - unset($memberships[$membershipTypeIdKey]); - } - } - } - //update the memberships object with updated membershipTypeId data - //if membershipTypeId has changed after membership update - if (!empty($membershipsUpdate)) { - $memberships = $memberships + $membershipsUpdate; - } - } - } - else { - // event - $eventParams = array('id' => $objects['event']->id); - $values['event'] = array(); - - CRM_Event_BAO_Event::retrieve($eventParams, $values['event']); - - //get location details - $locationParams = array('entity_id' => $objects['event']->id, 'entity_table' => 'civicrm_event'); - $values['location'] = CRM_Core_BAO_Location::getValues($locationParams); - - $ufJoinParams = array( - 'entity_table' => 'civicrm_event', - 'entity_id' => $ids['event'], - 'module' => 'CiviEvent', - ); - - list($custom_pre_id, - $custom_post_ids - ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams); - - $values['custom_pre_id'] = $custom_pre_id; - $values['custom_post_id'] = $custom_post_ids; - //for tasks 'Change Participant Status' and 'Batch Update Participants Via Profile' case - //and cases involving status updation through ipn - $values['totalAmount'] = $input['amount']; - - $contribution->source = ts('Online Event Registration') . ': ' . $values['event']['title']; - - if ($values['event']['is_email_confirm']) { - $contribution->receipt_date = self::$_now; - $values['is_email_receipt'] = 1; - } - if (empty($input['skipComponentSync'])) { - $participantStatuses = CRM_Core_PseudoConstant::get('CRM_Event_DAO_Participant', 'status_id', array( - 'labelColumn' => 'name', - 'flip' => 1, - )); - $participant->status_id = $participantStatuses['Registered']; - } - $participant->save(); - } - - if (CRM_Utils_Array::value('net_amount', $input, 0) == 0 && - CRM_Utils_Array::value('fee_amount', $input, 0) != 0 - ) { - $input['net_amount'] = $input['amount'] - $input['fee_amount']; - } - // This complete transaction function is being overloaded to create new contributions too. - // here we record if it is a new contribution. - // @todo separate the 2 more appropriately. - $isNewContribution = FALSE; - if (empty($contribution->id)) { - $isNewContribution = TRUE; - if (!empty($input['amount']) && $input['amount'] != $contribution->total_amount) { - $contribution->total_amount = $input['amount']; - // The BAO does this stuff but we are actually kinda bypassing it here (bad code! go sit in the corner) - // so we have to handle net_amount in this (naughty) code. - if (isset($input['fee_amount']) && is_numeric($input['fee_amount'])) { - $contribution->fee_amount = $input['fee_amount']; - } - $contribution->net_amount = $contribution->total_amount - $contribution->fee_amount; - } - if (!empty($input['campaign_id'])) { - $contribution->campaign_id = $input['campaign_id']; - } - } - - $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', array( - 'labelColumn' => 'name', - 'flip' => 1, - )); - - // @todo this section should call the api in order to have hooks called & - // because all this 'messiness' setting variables could be avoided - // by letting the api resolve pseudoconstants & copy set values and format dates. - $contribution->contribution_status_id = $contributionStatuses['Completed']; - $contribution->is_test = $input['is_test']; - - // CRM-15960 If we don't have a value we 'want' for the amounts, leave it to the BAO to sort out. - if (isset($input['net_amount'])) { - $contribution->fee_amount = CRM_Utils_Array::value('fee_amount', $input, 0); - } - if (isset($input['net_amount'])) { - $contribution->net_amount = $input['net_amount']; - } - - $contribution->trxn_id = $input['trxn_id']; - $contribution->receive_date = CRM_Utils_Date::isoToMysql($contribution->receive_date); - $contribution->thankyou_date = CRM_Utils_Date::isoToMysql($contribution->thankyou_date); - $contribution->receipt_date = CRM_Utils_Date::isoToMysql($contribution->receipt_date); - $contribution->cancel_date = 'null'; - - if (!empty($input['check_number'])) { - $contribution->check_number = $input['check_number']; - } - - if (!empty($input['payment_instrument_id'])) { - $contribution->payment_instrument_id = $input['payment_instrument_id']; - } - - if (!empty($contribution->id)) { - $contributionId['id'] = $contribution->id; - $input['prevContribution'] = CRM_Contribute_BAO_Contribution::getValues($contributionId, CRM_Core_DAO::$_nullArray, CRM_Core_DAO::$_nullArray); - } - - $contribution->save(); - - // Add new soft credit against current $contribution. - if (CRM_Utils_Array::value('contributionRecur', $objects) && $objects['contributionRecur']->id) { - CRM_Contribute_BAO_ContributionRecur::addrecurSoftCredit($objects['contributionRecur']->id, $contribution->id); - } - - //add line items for recurring payments - if (!empty($contribution->contribution_recur_id)) { - if ($isNewContribution) { - $input['line_item'] = CRM_Contribute_BAO_ContributionRecur::addRecurLineItems($contribution->contribution_recur_id, $contribution); - } - else { - // this is just to prevent e-notices when we call recordFinancialAccounts - per comments on that line - intention is somewhat unclear - $input['line_item'] = array(); - } - } - - //copy initial contribution custom fields for recurring contributions - if ($recurContrib && $recurContrib->id) { - CRM_Contribute_BAO_ContributionRecur::copyCustomValues($recurContrib->id, $contribution->id); - } - - $paymentProcessorId = ''; - if (isset($objects['paymentProcessor'])) { - if (is_array($objects['paymentProcessor'])) { - $paymentProcessorId = $objects['paymentProcessor']['id']; - } - else { - $paymentProcessorId = $objects['paymentProcessor']->id; - } - } - //it's hard to see how it could reach this point without a contributon id as it is saved in line 511 above - // which raised the question as to whether this check preceded line 511 & if so whether something could be broken - // From a lot of code reading /debugging I'm still not sure the intent WRT first & subsequent payments in this code - // it would be good if someone added some comments or refactored this - if ($contribution->id) { - $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', array( - 'labelColumn' => 'name', - 'flip' => 1, - )); - if ((empty($input['prevContribution']) && $paymentProcessorId) || (!$input['prevContribution']->is_pay_later && $input['prevContribution']->contribution_status_id == $contributionStatuses['Pending'])) { - $input['payment_processor'] = $paymentProcessorId; - } - $input['contribution_status_id'] = $contributionStatuses['Completed']; - $input['total_amount'] = $input['amount']; - $input['contribution'] = $contribution; - $input['financial_type_id'] = $contribution->financial_type_id; - - if (!empty($contribution->_relatedObjects['participant'])) { - $input['contribution_mode'] = 'participant'; - $input['participant_id'] = $contribution->_relatedObjects['participant']->id; - $input['skipLineItem'] = 1; - } - elseif (!empty($contribution->_relatedObjects['membership'])) { - $input['skipLineItem'] = TRUE; - $input['contribution_mode'] = 'membership'; - } - //@todo writing a unit test I was unable to create a scenario where this line did not fatal on second - // and subsequent payments. In this case the line items are created at - // CRM_Contribute_BAO_ContributionRecur::addRecurLineItems - // and since the contribution is saved prior to this line there is always a contribution-id, - // however there is never a prevContribution (which appears to mean original contribution not previous - // contribution - or preUpdateContributionObject most accurately) - // so, this is always called & only appears to succeed when prevContribution exists - which appears - // to mean "are we updating an exisitng pending contribution" - //I was able to make the unit test complete as fataling here doesn't prevent - // the contribution being created - but activities would not be created or emails sent - - CRM_Contribute_BAO_Contribution::recordFinancialAccounts($input, NULL); - } - - CRM_Contribute_BAO_ContributionRecur::updateRecurLinkedPledge($contribution); - - // create an activity record - if ($input['component'] == 'contribute') { - //CRM-4027 - $targetContactID = NULL; - if (!empty($ids['related_contact'])) { - $targetContactID = $contribution->contact_id; - $contribution->contact_id = $ids['related_contact']; - } - CRM_Activity_BAO_Activity::addActivity($contribution, NULL, $targetContactID); - // event - } - else { - CRM_Activity_BAO_Activity::addActivity($participant); - } - - CRM_Core_Error::debug_log_message("Contribution record updated successfully"); - $transaction->commit(); - - // CRM-9132 legacy behaviour was that receipts were sent out in all instances. Still sending - // when array_key 'is_email_receipt doesn't exist in case some instances where is needs setting haven't been set - if (!array_key_exists('is_email_receipt', $values) || - $values['is_email_receipt'] == 1 - ) { - self::sendMail($input, $ids, $objects, $values, $recur, FALSE); - CRM_Core_Error::debug_log_message("Receipt sent"); - } - - CRM_Core_Error::debug_log_message("Success: Database updated"); - if ($this->_isRecurring) { - CRM_Contribute_BAO_ContributionRecur::sendRecurringStartOrEndNotification($ids, $recur, - $this->_isFirstOrLastRecurringPayment); - } + CRM_Contribute_BAO_Contribution::completeOrder($input, $ids, $objects, $transaction, $recur, $contribution, + $isRecurring, $isFirstOrLastRecurringPayment); } /** @@ -818,6 +456,8 @@ LIMIT 1;"; /** * Send receipt from contribution. * + * @deprecated + * * Note that the compose message part has been moved to contribution * In general LoadObjects is called first to get the objects but the composeMessageArray function now calls it * @@ -837,19 +477,7 @@ LIMIT 1;"; * @return array */ public function sendMail(&$input, &$ids, &$objects, &$values, $recur = FALSE, $returnMessageText = FALSE) { - $contribution = &$objects['contribution']; - $input['is_recur'] = $recur; - // set receipt from e-mail and name in value - if (!$returnMessageText) { - $session = CRM_Core_Session::singleton(); - $userID = $session->get('userID'); - if (!empty($userID)) { - list($userName, $userEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($userID); - $values['receipt_from_email'] = CRM_Utils_Array::value('receipt_from_email', $input, $userEmail); - $values['receipt_from_name'] = CRM_Utils_Array::value('receipt_from_name', $input, $userName); - } - } - return $contribution->composeMessageArray($input, $ids, $values, $recur, $returnMessageText); + return CRM_Contribute_BAO_Contribution::sendMail($input, $ids, $objects, $values, $recur, $returnMessageText); } } -- 2.25.1