Filter groups according to included profiles
[civicrm-core.git] / CRM / Contribute / Form / Contribution / Confirm.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
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. |
13 | |
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. |
18 | |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
35 * form to process actions on the group aspect of Custom Data
36 */
37class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_ContributionBase {
97dc7b64 38 use CRM_Financial_Form_FrontEndPaymentFormTrait;
6a488035
TO
39
40 /**
fe482240 41 * The id of the contact associated with this contribution.
6a488035
TO
42 *
43 * @var int
6a488035
TO
44 */
45 public $_contactID;
46
1f1740fe
DL
47
48 /**
fe482240 49 * The id of the contribution object that is created when the form is submitted.
1f1740fe
DL
50 *
51 * @var int
1f1740fe
DL
52 */
53 public $_contributionID;
54
423616fa
CW
55 public $submitOnce = TRUE;
56
356bfcaf 57 /**
58 * @param $form
59 * @param $params
60 * @param $contributionParams
61 * @param $pledgeID
62 * @param $contribution
63 * @param $isEmailReceipt
64 * @return mixed
65 */
66 public static function handlePledge(&$form, $params, $contributionParams, $pledgeID, $contribution, $isEmailReceipt) {
67 if ($pledgeID) {
68 //when user doing pledge payments.
69 //update the schedule when payment(s) are made
70 $amount = $params['amount'];
be2fb01f 71 $pledgePaymentParams = [];
356bfcaf 72 foreach ($params['pledge_amount'] as $paymentId => $dontCare) {
73 $scheduledAmount = CRM_Core_DAO::getFieldValue(
74 'CRM_Pledge_DAO_PledgePayment',
75 $paymentId,
76 'scheduled_amount',
77 'id'
78 );
79
80 $pledgePayment = ($amount >= $scheduledAmount) ? $scheduledAmount : $amount;
81 if ($pledgePayment > 0) {
be2fb01f 82 $pledgePaymentParams[] = [
356bfcaf 83 'id' => $paymentId,
84 'contribution_id' => $contribution->id,
85 'status_id' => $contribution->contribution_status_id,
86 'actual_amount' => $pledgePayment,
be2fb01f 87 ];
356bfcaf 88 $amount -= $pledgePayment;
89 }
90 }
91 if ($amount > 0 && count($pledgePaymentParams)) {
92 $pledgePaymentParams[count($pledgePaymentParams) - 1]['actual_amount'] += $amount;
93 }
94 foreach ($pledgePaymentParams as $p) {
95 CRM_Pledge_BAO_PledgePayment::add($p);
96 }
97
98 //update pledge status according to the new payment statuses
99 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($pledgeID);
100 return $form;
101 }
102 else {
103 //when user creating pledge record.
be2fb01f 104 $pledgeParams = [];
356bfcaf 105 $pledgeParams['contact_id'] = $contribution->contact_id;
106 $pledgeParams['installment_amount'] = $pledgeParams['actual_amount'] = $contribution->total_amount;
107 $pledgeParams['contribution_id'] = $contribution->id;
108 $pledgeParams['contribution_page_id'] = $contribution->contribution_page_id;
109 $pledgeParams['financial_type_id'] = $contribution->financial_type_id;
110 $pledgeParams['frequency_interval'] = $params['pledge_frequency_interval'];
111 $pledgeParams['installments'] = $params['pledge_installments'];
112 $pledgeParams['frequency_unit'] = $params['pledge_frequency_unit'];
113 if ($pledgeParams['frequency_unit'] == 'month') {
114 $pledgeParams['frequency_day'] = intval(date("d"));
115 }
116 else {
117 $pledgeParams['frequency_day'] = 1;
118 }
119 $pledgeParams['create_date'] = $pledgeParams['start_date'] = $pledgeParams['scheduled_date'] = date("Ymd");
de6c59ca 120 if (!empty($params['start_date'])) {
356bfcaf 121 $pledgeParams['frequency_day'] = intval(date("d", strtotime(CRM_Utils_Array::value('start_date', $params))));
122 $pledgeParams['start_date'] = $pledgeParams['scheduled_date'] = date('Ymd', strtotime(CRM_Utils_Array::value('start_date', $params)));
123 }
124 $pledgeParams['status_id'] = $contribution->contribution_status_id;
125 $pledgeParams['max_reminders'] = $form->_values['max_reminders'];
126 $pledgeParams['initial_reminder_day'] = $form->_values['initial_reminder_day'];
127 $pledgeParams['additional_reminder_day'] = $form->_values['additional_reminder_day'];
128 $pledgeParams['is_test'] = $contribution->is_test;
129 $pledgeParams['acknowledge_date'] = date('Ymd');
130 $pledgeParams['original_installment_amount'] = $pledgeParams['installment_amount'];
131
132 //inherit campaign from contirb page.
133 $pledgeParams['campaign_id'] = CRM_Utils_Array::value('campaign_id', $contributionParams);
134
135 $pledge = CRM_Pledge_BAO_Pledge::create($pledgeParams);
136
137 $form->_params['pledge_id'] = $pledge->id;
138
139 //send acknowledgment email. only when pledge is created
140 if ($pledge->id && $isEmailReceipt) {
141 //build params to send acknowledgment.
142 $pledgeParams['id'] = $pledge->id;
143 $pledgeParams['receipt_from_name'] = $form->_values['receipt_from_name'];
144 $pledgeParams['receipt_from_email'] = $form->_values['receipt_from_email'];
145
146 //scheduled amount will be same as installment_amount.
147 $pledgeParams['scheduled_amount'] = $pledgeParams['installment_amount'];
148
149 //get total pledge amount.
150 $pledgeParams['total_pledge_amount'] = $pledge->amount;
151
152 CRM_Pledge_BAO_Pledge::sendAcknowledgment($form, $pledgeParams);
153 return $form;
154 }
155 return $form;
156 }
157 }
158
c8bde7ea 159 /**
fe482240 160 * Set the parameters to be passed to contribution create function.
c8bde7ea
EM
161 *
162 * @param array $params
100fef9d 163 * @param int $financialTypeID
ab8fe4ef 164 * @param array $paymentProcessorOutcome
165 * @param string $receiptDate
100fef9d 166 * @param int $recurringContributionID
c8bde7ea 167 *
c8bde7ea
EM
168 * @return array
169 */
a13f3d8c 170 public static function getContributionParams(
0ede7391 171 $params, $financialTypeID,
f6261e9d 172 $paymentProcessorOutcome, $receiptDate, $recurringContributionID) {
be2fb01f 173 $contributionParams = [
c8bde7ea 174 'financial_type_id' => $financialTypeID,
c8bde7ea 175 'receive_date' => (CRM_Utils_Array::value('receive_date', $params)) ? CRM_Utils_Date::processDate($params['receive_date']) : date('YmdHis'),
17ab42dd 176 'tax_amount' => CRM_Utils_Array::value('tax_amount', $params),
c8bde7ea
EM
177 'amount_level' => CRM_Utils_Array::value('amount_level', $params),
178 'invoice_id' => $params['invoiceID'],
179 'currency' => $params['currencyID'],
c8bde7ea
EM
180 'is_pay_later' => CRM_Utils_Array::value('is_pay_later', $params, 0),
181 //configure cancel reason, cancel date and thankyou date
182 //from 'contribution' type profile if included
183 'cancel_reason' => CRM_Utils_Array::value('cancel_reason', $params, 0),
a1a2a83d
TO
184 'cancel_date' => isset($params['cancel_date']) ? CRM_Utils_Date::format($params['cancel_date']) : NULL,
185 'thankyou_date' => isset($params['thankyou_date']) ? CRM_Utils_Date::format($params['thankyou_date']) : NULL,
c8bde7ea 186 //setting to make available to hook - although seems wrong to set on form for BAO hook availability
21dfd5f5 187 'skipLineItem' => CRM_Utils_Array::value('skipLineItem', $params, 0),
be2fb01f 188 ];
3febe800 189
a7a33651
EM
190 if ($paymentProcessorOutcome) {
191 $contributionParams['payment_processor'] = CRM_Utils_Array::value('payment_processor', $paymentProcessorOutcome);
192 }
7127b69c 193 if (!empty($params["is_email_receipt"])) {
be2fb01f 194 $contributionParams += [
7127b69c 195 'receipt_date' => $receiptDate,
be2fb01f 196 ];
7127b69c 197 }
c8bde7ea 198
c8bde7ea
EM
199 if ($recurringContributionID) {
200 $contributionParams['contribution_recur_id'] = $recurringContributionID;
201 }
202
0ede7391 203 $contributionParams['contribution_status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Pending');
c8bde7ea
EM
204 if (isset($contributionParams['invoice_id'])) {
205 $contributionParams['id'] = CRM_Core_DAO::getFieldValue(
206 'CRM_Contribute_DAO_Contribution',
207 $contributionParams['invoice_id'],
208 'id',
209 'invoice_id'
210 );
211 }
212
213 return $contributionParams;
214 }
215
fda99f2f
EM
216 /**
217 * Get non-deductible amount.
218 *
219 * This is a bit too much about wierd form interpretation to be this deep.
220 *
221 * CRM-11885
222 * if non_deductible_amount exists i.e. Additional Details fieldset was opened [and staff typed something] -> keep
223 * it.
ceb9fecb
EM
224 *
225 * @param array $params
226 * @param CRM_Financial_BAO_FinancialType $financialType
227 * @param bool $online
5afce5ad 228 * @param CRM_Contribute_Form_Contribution_Confirm $form
fda99f2f
EM
229 *
230 * @return array
231 */
5afce5ad 232 protected static function getNonDeductibleAmount($params, $financialType, $online, $form) {
fda99f2f
EM
233 if (isset($params['non_deductible_amount']) && (!empty($params['non_deductible_amount']))) {
234 return $params['non_deductible_amount'];
235 }
5afce5ad 236 $priceSetId = CRM_Utils_Array::value('priceSetId', $params);
5afce5ad 237 // return non-deductible amount if it is set at the price field option level
05465712 238 if ($priceSetId && !empty($form->_lineItem)) {
239 $nonDeductibleAmount = CRM_Price_BAO_PriceSet::getNonDeductibleAmountFromPriceSet($priceSetId, $form->_lineItem);
240 }
241
242 if (!empty($nonDeductibleAmount)) {
243 return $nonDeductibleAmount;
5afce5ad 244 }
fda99f2f
EM
245 else {
246 if ($financialType->is_deductible) {
247 if ($online && isset($params['selectProduct'])) {
248 $selectProduct = CRM_Utils_Array::value('selectProduct', $params);
249 }
250 if (!$online && isset($params['product_name'][0])) {
251 $selectProduct = $params['product_name'][0];
252 }
253 // if there is a product - compare the value to the contribution amount
254 if (isset($selectProduct) &&
255 $selectProduct != 'no_thanks'
256 ) {
257 $productDAO = new CRM_Contribute_DAO_Product();
258 $productDAO->id = $selectProduct;
259 $productDAO->find(TRUE);
260 // product value exceeds contribution amount
261 if ($params['amount'] < $productDAO->price) {
262 $nonDeductibleAmount = $params['amount'];
263 return $nonDeductibleAmount;
264 }
265 // product value does NOT exceed contribution amount
266 else {
267 return $productDAO->price;
268 }
269 }
270 // contribution is deductible - but there is no product
271 else {
272 return '0.00';
273 }
274 }
275 // contribution is NOT deductible
276 else {
277 return $params['amount'];
278 }
279 }
280 }
281
6a488035 282 /**
fe482240 283 * Set variables up before form is built.
6a488035
TO
284 */
285 public function preProcess() {
6a488035 286 parent::preProcess();
cde484fd 287
6a488035
TO
288 // lineItem isn't set until Register postProcess
289 $this->_lineItem = $this->get('lineItem');
58466af1 290 $this->_ccid = $this->get('ccid');
9a7ba24d 291
a9768188
EM
292 $this->_params = $this->controller->exportValues('Main');
293 $this->_params['ip_address'] = CRM_Utils_System::ipAddress();
294 $this->_params['amount'] = $this->get('amount');
295 if (isset($this->_params['amount'])) {
296 $this->setFormAmountFields($this->_params['priceSetId']);
6a488035 297 }
6a488035 298
a9768188
EM
299 $this->_params['tax_amount'] = $this->get('tax_amount');
300 $this->_useForMember = $this->get('useForMember');
6a488035 301
a9768188
EM
302 if (isset($this->_params['credit_card_exp_date'])) {
303 $this->_params['year'] = CRM_Core_Payment_Form::getCreditCardExpirationYear($this->_params);
304 $this->_params['month'] = CRM_Core_Payment_Form::getCreditCardExpirationMonth($this->_params);
305 }
5df36634 306
358b59a5 307 $this->_params['currencyID'] = CRM_Core_Config::singleton()->defaultCurrency;
6a488035 308
a9768188
EM
309 if (!empty($this->_membershipBlock)) {
310 $this->_params['selectMembership'] = $this->get('selectMembership');
311 }
9c86599c 312 if (!empty($this->_paymentProcessor) && $this->_paymentProcessor['object']->supports('preApproval')) {
313 $preApprovalParams = $this->_paymentProcessor['object']->getPreApprovalDetails($this->get('pre_approval_parameters'));
314 $this->_params = array_merge($this->_params, $preApprovalParams);
dd22a911 315
9c86599c 316 // We may have fetched some billing details from the getPreApprovalDetails function so we
317 // want to ensure we set this after that function has been called.
318 CRM_Core_Payment_Form::mapParams($this->_bltID, $preApprovalParams, $this->_params, FALSE);
2db8bc3f 319 }
6a488035
TO
320
321 $this->_params['is_pay_later'] = $this->get('is_pay_later');
322 $this->assign('is_pay_later', $this->_params['is_pay_later']);
323 if ($this->_params['is_pay_later']) {
1488ce4d 324 $this->assign('pay_later_receipt', CRM_Utils_Array::value('pay_later_receipt', $this->_values));
6a488035
TO
325 }
326 // if onbehalf-of-organization
4779abb3 327 if (!empty($this->_values['onbehalf_profile_id']) && !empty($this->_params['onbehalf']['organization_name'])) {
f85a1a75
JP
328 if (empty($this->_params['org_option']) && empty($this->_params['organization_id'])) {
329 $this->_params['organization_id'] = CRM_Utils_Array::value('onbehalfof_id', $this->_params);
330 }
6a488035 331 $this->_params['organization_name'] = $this->_params['onbehalf']['organization_name'];
be2fb01f 332 $addressBlocks = [
a13f3d8c
TO
333 'street_address',
334 'city',
335 'state_province',
336 'postal_code',
337 'country',
338 'supplemental_address_1',
339 'supplemental_address_2',
340 'supplemental_address_3',
341 'postal_code_suffix',
342 'geo_code_1',
343 'geo_code_2',
344 'address_name',
be2fb01f 345 ];
6a488035 346
be2fb01f 347 $blocks = ['email', 'phone', 'im', 'url', 'openid'];
6a488035
TO
348 foreach ($this->_params['onbehalf'] as $loc => $value) {
349 $field = $typeId = NULL;
350 if (strstr($loc, '-')) {
351 list($field, $locType) = explode('-', $loc);
352 }
353
354 if (in_array($field, $addressBlocks)) {
355 if ($locType == 'Primary') {
356 $defaultLocationType = CRM_Core_BAO_LocationType::getDefault();
357 $locType = $defaultLocationType->id;
cde484fd
DL
358 }
359
6a488035
TO
360 if ($field == 'country') {
361 $value = CRM_Core_PseudoConstant::countryIsoCode($value);
362 }
363 elseif ($field == 'state_province') {
364 $value = CRM_Core_PseudoConstant::stateProvinceAbbreviation($value);
365 }
cde484fd 366
6a488035
TO
367 $isPrimary = 1;
368 if (isset($this->_params['onbehalf_location']['address'])
a13f3d8c
TO
369 && count($this->_params['onbehalf_location']['address']) > 0
370 ) {
6a488035
TO
371 $isPrimary = 0;
372 }
cde484fd 373
6a488035 374 $this->_params['onbehalf_location']['address'][$locType][$field] = $value;
a7488080 375 if (empty($this->_params['onbehalf_location']['address'][$locType]['is_primary'])) {
6a488035 376 $this->_params['onbehalf_location']['address'][$locType]['is_primary'] = $isPrimary;
a13f3d8c 377 }
6a488035
TO
378 $this->_params['onbehalf_location']['address'][$locType]['location_type_id'] = $locType;
379 }
380 elseif (in_array($field, $blocks)) {
381 if (!$typeId || is_numeric($typeId)) {
a13f3d8c
TO
382 $blockName = $fieldName = $field;
383 $locationType = 'location_type_id';
384 if ($locType == 'Primary') {
6a488035
TO
385 $defaultLocationType = CRM_Core_BAO_LocationType::getDefault();
386 $locationValue = $defaultLocationType->id;
387 }
388 else {
389 $locationValue = $locType;
390 }
a13f3d8c 391 $locTypeId = '';
be2fb01f 392 $phoneExtField = [];
6a488035
TO
393
394 if ($field == 'url') {
a13f3d8c 395 $blockName = 'website';
887e764d
PN
396 $locationType = 'website_type_id';
397 list($field, $locationValue) = explode('-', $loc);
6a488035
TO
398 }
399 elseif ($field == 'im') {
400 $fieldName = 'name';
401 $locTypeId = 'provider_id';
a13f3d8c 402 $typeId = $this->_params['onbehalf']["{$loc}-provider_id"];
6a488035
TO
403 }
404 elseif ($field == 'phone') {
405 list($field, $locType, $typeId) = explode('-', $loc);
406 $locTypeId = 'phone_type_id';
407
408 //check if extension field exists
a13f3d8c 409 $extField = str_replace('phone', 'phone_ext', $loc);
6a488035 410 if (isset($this->_params['onbehalf'][$extField])) {
be2fb01f 411 $phoneExtField = ['phone_ext' => $this->_params['onbehalf'][$extField]];
6a488035
TO
412 }
413 }
414
415 $isPrimary = 1;
f1b56c48 416 if (isset($this->_params['onbehalf_location'][$blockName])
a13f3d8c
TO
417 && count($this->_params['onbehalf_location'][$blockName]) > 0
418 ) {
419 $isPrimary = 0;
6a488035
TO
420 }
421 if ($locationValue) {
be2fb01f 422 $blockValues = [
a13f3d8c 423 $fieldName => $value,
6a488035 424 $locationType => $locationValue,
a13f3d8c 425 'is_primary' => $isPrimary,
be2fb01f 426 ];
6a488035
TO
427
428 if ($locTypeId) {
be2fb01f 429 $blockValues = array_merge($blockValues, [$locTypeId => $typeId]);
6a488035
TO
430 }
431 if (!empty($phoneExtField)) {
432 $blockValues = array_merge($blockValues, $phoneExtField);
433 }
434
435 $this->_params['onbehalf_location'][$blockName][] = $blockValues;
436 }
437 }
438 }
439 elseif (strstr($loc, 'custom')) {
440 if ($value && isset($this->_params['onbehalf']["{$loc}_id"])) {
441 $value = $this->_params['onbehalf']["{$loc}_id"];
442 }
443 $this->_params['onbehalf_location']["{$loc}"] = $value;
444 }
445 else {
446 if ($loc == 'contact_sub_type') {
447 $this->_params['onbehalf_location'][$loc] = $value;
448 }
449 else {
450 $this->_params['onbehalf_location'][$field] = $value;
451 }
452 }
453 }
454 }
a7488080 455 elseif (!empty($this->_values['is_for_organization'])) {
6a488035
TO
456 // no on behalf of an organization, CRM-5519
457 // so reset loc blocks from main params.
be2fb01f 458 foreach ([
1330f57a
SL
459 'phone',
460 'email',
461 'address',
462 ] as $blk) {
6a488035
TO
463 if (isset($this->_params[$blk])) {
464 unset($this->_params[$blk]);
465 }
466 }
467 }
90102a32 468 $this->setRecurringMembershipParams();
6a488035
TO
469
470 if ($this->_pcpId) {
471 $params = $this->processPcp($this, $this->_params);
472 $this->_params = $params;
473 }
474 $this->_params['invoiceID'] = $this->get('invoiceID');
475
476 //carry campaign from profile.
477 if (array_key_exists('contribution_campaign_id', $this->_params)) {
478 $this->_params['campaign_id'] = $this->_params['contribution_campaign_id'];
479 }
480
569df8ec
DG
481 // assign contribution page id to the template so we can add css class for it
482 $this->assign('contributionPageID', $this->_id);
de5ce535 483 $this->assign('is_for_organization', CRM_Utils_Array::value('is_for_organization', $this->_params));
569df8ec 484
6a488035
TO
485 $this->set('params', $this->_params);
486 }
487
488 /**
fe482240 489 * Build the form object.
6a488035
TO
490 */
491 public function buildQuickForm() {
8684f612 492 // FIXME: Some of this code is identical to Thankyou.php and should be broken out into a shared function
6a488035
TO
493 $this->assignToTemplate();
494
495 $params = $this->_params;
6a488035 496 // make sure we have values for it
2f44fc96 497 if (!empty($this->_values['honoree_profile_id']) && !empty($params['soft_credit_type_id']) && empty($this->_ccid)) {
a13f3d8c 498 $honorName = NULL;
133e2c99 499 $softCreditTypes = CRM_Core_OptionGroup::values("soft_credit_type", FALSE);
500
133e2c99 501 $this->assign('soft_credit_type', $softCreditTypes[$params['soft_credit_type_id']]);
4779abb3 502 CRM_Contribute_BAO_ContributionSoft::formatHonoreeProfileFields($this, $params['honor']);
6a488035 503
be2fb01f 504 $fieldTypes = ['Contact'];
4779abb3 505 $fieldTypes[] = CRM_Core_BAO_UFGroup::getContactType($this->_values['honoree_profile_id']);
506 $this->buildCustom($this->_values['honoree_profile_id'], 'honoreeProfileFields', TRUE, 'honor', $fieldTypes);
6a488035
TO
507 }
508 $this->assign('receiptFromEmail', CRM_Utils_Array::value('receipt_from_email', $this->_values));
509 $amount_block_is_active = $this->get('amount_block_is_active');
510 $this->assign('amount_block_is_active', $amount_block_is_active);
511
147b56dc
MW
512 // Make a copy of line items array to use for display only
513 $tplLineItems = $this->_lineItem;
97288cdc 514 if (CRM_Invoicing_Utils::isInvoicingEnabled()) {
f1b56c48 515 // @todo $params seems like exactly the wrong place to get totalTaxAmount from
516 // this is a calculated variable so we it should be transparent how we
517 // calculated it rather than coming from 'params'
03b412ae
PB
518 $this->assign('totalTaxAmount', $params['tax_amount']);
519 }
f1b56c48 520 $this->assignLineItemsToTemplate($tplLineItems);
521
522 $isDisplayLineItems = $this->_priceSetId && !CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config');
523
524 $this->assign('isDisplayLineItems', $isDisplayLineItems);
525
526 if (!$isDisplayLineItems) {
527 // quickConfig is deprecated in favour of isDisplayLineItems. Lots of logic has been harnessed to quick config
528 // whereas isDisplayLineItems is specific & clear.
97288cdc 529 $this->assign('is_quick_config', 1);
530 $this->_params['is_quick_config'] = 1;
531 }
532
a7488080 533 if (!empty($params['selectProduct']) && $params['selectProduct'] != 'no_thanks') {
6a488035
TO
534 $option = CRM_Utils_Array::value('options_' . $params['selectProduct'], $params);
535 $productID = $params['selectProduct'];
536 CRM_Contribute_BAO_Premium::buildPremiumBlock($this, $this->_id, FALSE,
537 $productID, $option
538 );
539 $this->set('productID', $productID);
540 $this->set('option', $option);
541 }
542 $config = CRM_Core_Config::singleton();
2f44fc96 543 if (in_array('CiviMember', $config->enableComponents) && empty($this->_ccid)) {
6a488035
TO
544 if (isset($params['selectMembership']) &&
545 $params['selectMembership'] != 'no_thanks'
546 ) {
42e3a033 547 $this->buildMembershipBlock(
5b757295 548 $this->_membershipContactID,
6a488035
TO
549 FALSE,
550 $params['selectMembership'],
5b757295 551 FALSE
6a488035 552 );
9cc96227 553 if (!empty($params['auto_renew'])) {
554 $this->assign('auto_renew', TRUE);
555 }
6a488035
TO
556 }
557 else {
558 $this->assign('membershipBlock', FALSE);
559 }
560 }
2f44fc96 561 if (empty($this->_ccid)) {
562 $this->buildCustom($this->_values['custom_pre_id'], 'customPre', TRUE);
563 $this->buildCustom($this->_values['custom_post_id'], 'customPost', TRUE);
564 }
6a488035 565
a9653117 566 if (!empty($this->_values['onbehalf_profile_id']) &&
567 !empty($params['onbehalf']) &&
568 ($this->_values['is_for_organization'] == 2 ||
569 !empty($params['is_for_organization'])
2f44fc96 570 ) && empty($this->_ccid)
a9653117 571 ) {
be2fb01f 572 $fieldTypes = ['Contact', 'Organization'];
6a488035 573 $contactSubType = CRM_Contact_BAO_ContactType::subTypes('Organization');
a13f3d8c 574 $fieldTypes = array_merge($fieldTypes, $contactSubType);
6a488035 575 if (is_array($this->_membershipBlock) && !empty($this->_membershipBlock)) {
be2fb01f 576 $fieldTypes = array_merge($fieldTypes, ['Membership']);
6a488035
TO
577 }
578 else {
be2fb01f 579 $fieldTypes = array_merge($fieldTypes, ['Contribution']);
6a488035
TO
580 }
581
4779abb3 582 $this->buildCustom($this->_values['onbehalf_profile_id'], 'onbehalfProfile', TRUE, 'onbehalf', $fieldTypes);
6a488035
TO
583 }
584
585 $this->_separateMembershipPayment = $this->get('separateMembershipPayment');
586 $this->assign('is_separate_payment', $this->_separateMembershipPayment);
97288cdc 587
6a488035 588 $this->assign('priceSetID', $this->_priceSetId);
6a488035 589
229159bf
CW
590 // The concept of contributeMode is deprecated.
591 // the is_monetary concept probably should be too as it can be calculated from
592 // the existence of 'amount' & seems fragile.
bd53b1b9 593 if ($this->_contributeMode == 'notify' ||
a4859929 594 $this->_amount <= 0.0 || $this->_params['is_pay_later']
229159bf
CW
595 ) {
596 $contribButton = ts('Continue');
6a488035 597 }
fe552de9 598 elseif (!empty($this->_ccid)) {
599 $contribButton = ts('Make Payment');
fe552de9 600 }
6a488035 601 else {
229159bf 602 $contribButton = ts('Make Contribution');
6a488035 603 }
a4859929 604 $this->assign('button', $contribButton);
e364c762 605
606 $this->assign('continueText',
607 $this->getPaymentProcessorObject()->getText('contributionPageContinueText', [
608 'is_payment_to_existing' => !empty($this->_ccid),
609 'amount' => $this->_amount,
1330f57a 610 ])
e364c762 611 );
612
be2fb01f 613 $this->addButtons([
1330f57a
SL
614 [
615 'type' => 'next',
616 'name' => $contribButton,
617 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
618 'isDefault' => TRUE,
1330f57a
SL
619 ],
620 [
621 'type' => 'back',
622 'name' => ts('Go Back'),
623 ],
624 ]);
6a488035 625
be2fb01f 626 $defaults = [];
9c80939e 627 $fields = array_fill_keys(array_keys($this->_fields), 1);
6a488035
TO
628 $fields["billing_state_province-{$this->_bltID}"] = $fields["billing_country-{$this->_bltID}"] = $fields["email-{$this->_bltID}"] = 1;
629
630 $contact = $this->_params;
631 foreach ($fields as $name => $dontCare) {
9c80939e
CW
632 // Recursively set defaults for nested fields
633 if (isset($contact[$name]) && is_array($contact[$name]) && ($name == 'onbehalf' || $name == 'honor')) {
634 foreach ($contact[$name] as $fieldName => $fieldValue) {
be2fb01f 635 if (is_array($fieldValue) && !in_array($this->_fields[$name][$fieldName]['html_type'], [
1330f57a
SL
636 'Multi-Select',
637 'AdvMulti-Select',
638 ])
a13f3d8c 639 ) {
38b95e0f 640 foreach ($fieldValue as $key => $value) {
641 $defaults["{$name}[{$fieldName}][{$key}]"] = $value;
642 }
643 }
644 else {
645 $defaults["{$name}[{$fieldName}]"] = $fieldValue;
646 }
9c80939e
CW
647 }
648 }
649 elseif (isset($contact[$name])) {
6a488035
TO
650 $defaults[$name] = $contact[$name];
651 if (substr($name, 0, 7) == 'custom_') {
652 $timeField = "{$name}_time";
653 if (isset($contact[$timeField])) {
654 $defaults[$timeField] = $contact[$timeField];
655 }
656 if (isset($contact["{$name}_id"])) {
657 $defaults["{$name}_id"] = $contact["{$name}_id"];
658 }
659 }
be2fb01f 660 elseif (in_array($name, [
1330f57a
SL
661 'addressee',
662 'email_greeting',
663 'postal_greeting',
664 ]) && !empty($contact[$name . '_custom'])
a13f3d8c 665 ) {
6a488035
TO
666 $defaults[$name . '_custom'] = $contact[$name . '_custom'];
667 }
668 }
669 }
670
671 $this->assign('useForMember', $this->get('useForMember'));
672
6a488035
TO
673 $this->setDefaults($defaults);
674
675 $this->freeze();
676 }
677
678 /**
ab8fe4ef 679 * Overwrite action.
680 *
681 * Since we are only showing elements in frozen mode no help display needed.
6a488035
TO
682 *
683 * @return int
6a488035 684 */
00be9182 685 public function getAction() {
6a488035
TO
686 if ($this->_action & CRM_Core_Action::PREVIEW) {
687 return CRM_Core_Action::VIEW | CRM_Core_Action::PREVIEW;
688 }
689 else {
690 return CRM_Core_Action::VIEW;
691 }
692 }
693
694 /**
5e4f7f74 695 * Set default values for the form.
6a488035 696 *
5e4f7f74
EM
697 * Note that in edit/view mode
698 * the default values are retrieved from the database
6a488035 699 */
a13f3d8c
TO
700 public function setDefaultValues() {
701 }
6a488035
TO
702
703 /**
fe482240 704 * Process the form.
6a488035
TO
705 */
706 public function postProcess() {
da8d9879 707 $contactID = $this->getContactID();
77beddbe 708 try {
709 $result = $this->processFormSubmission($contactID);
710 }
711 catch (CRM_Core_Exception $e) {
712 $this->bounceOnError($e->getMessage());
713 }
714
75637f22 715 if (is_array($result) && !empty($result['is_payment_failure'])) {
77beddbe 716 $this->bounceOnError($result['error']->getMessage());
cc789d46 717 }
5fb28746
EM
718 // Presumably this is for hooks to access? Not quite clear & perhaps not required.
719 $this->set('params', $this->_params);
75637f22 720 }
6a488035 721
75637f22
EM
722 /**
723 * Wrangle financial type ID.
724 *
725 * This wrangling of the financialType ID was happening in a shared function rather than in the form it relates to & hence has been moved to that form
726 * Pledges are not relevant to the membership code so that portion will not go onto the membership form.
727 *
728 * Comments from previous refactor indicate doubt as to what was going on.
729 *
d1aed9dc 730 * @param int $financialTypeID
75637f22
EM
731 *
732 * @return null|string
733 */
d1aed9dc
MW
734 public function wrangleFinancialTypeID($financialTypeID) {
735 if (empty($financialTypeID) && !empty($this->_values['pledge_id'])) {
736 $financialTypeID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_Pledge',
75637f22
EM
737 $this->_values['pledge_id'],
738 'financial_type_id'
739 );
6a488035 740 }
d1aed9dc 741 return $financialTypeID;
75637f22 742 }
6a488035 743
75637f22
EM
744 /**
745 * Process the form.
746 *
747 * @param array $premiumParams
748 * @param CRM_Contribute_BAO_Contribution $contribution
749 */
5fb28746 750 protected function postProcessPremium($premiumParams, $contribution) {
75637f22
EM
751 $hour = $minute = $second = 0;
752 // assigning Premium information to receipt tpl
753 $selectProduct = CRM_Utils_Array::value('selectProduct', $premiumParams);
754 if ($selectProduct &&
755 $selectProduct != 'no_thanks'
756 ) {
757 $startDate = $endDate = "";
758 $this->assign('selectPremium', TRUE);
759 $productDAO = new CRM_Contribute_DAO_Product();
760 $productDAO->id = $selectProduct;
761 $productDAO->find(TRUE);
762 $this->assign('product_name', $productDAO->name);
763 $this->assign('price', $productDAO->price);
764 $this->assign('sku', $productDAO->sku);
765 $this->assign('option', CRM_Utils_Array::value('options_' . $premiumParams['selectProduct'], $premiumParams));
6a488035 766
75637f22 767 $periodType = $productDAO->period_type;
6a488035 768
75637f22
EM
769 if ($periodType) {
770 $fixed_period_start_day = $productDAO->fixed_period_start_day;
771 $duration_unit = $productDAO->duration_unit;
772 $duration_interval = $productDAO->duration_interval;
773 if ($periodType == 'rolling') {
774 $startDate = date('Y-m-d');
775 }
776 elseif ($periodType == 'fixed') {
777 if ($fixed_period_start_day) {
778 $date = explode('-', date('Y-m-d'));
779 $month = substr($fixed_period_start_day, 0, strlen($fixed_period_start_day) - 2);
780 $day = substr($fixed_period_start_day, -2) . "<br/>";
781 $year = $date[0];
782 $startDate = $year . '-' . $month . '-' . $day;
783 }
784 else {
785 $startDate = date('Y-m-d');
786 }
6a488035 787 }
6a488035 788
75637f22
EM
789 $date = explode('-', $startDate);
790 $year = $date[0];
791 $month = $date[1];
792 $day = $date[2];
6a488035 793
75637f22
EM
794 switch ($duration_unit) {
795 case 'year':
796 $year = $year + $duration_interval;
797 break;
6a488035 798
75637f22
EM
799 case 'month':
800 $month = $month + $duration_interval;
801 break;
6a488035 802
75637f22
EM
803 case 'day':
804 $day = $day + $duration_interval;
805 break;
6a488035 806
75637f22
EM
807 case 'week':
808 $day = $day + ($duration_interval * 7);
6a488035 809 }
75637f22
EM
810 $endDate = date('Y-m-d H:i:s', mktime($hour, $minute, $second, $month, $day, $year));
811 $this->assign('start_date', $startDate);
812 $this->assign('end_date', $endDate);
6a488035
TO
813 }
814
75637f22
EM
815 $dao = new CRM_Contribute_DAO_Premium();
816 $dao->entity_table = 'civicrm_contribution_page';
817 $dao->entity_id = $this->_id;
818 $dao->find(TRUE);
819 $this->assign('contact_phone', $dao->premiums_contact_phone);
820 $this->assign('contact_email', $dao->premiums_contact_email);
821
822 //create Premium record
be2fb01f 823 $params = [
75637f22
EM
824 'product_id' => $premiumParams['selectProduct'],
825 'contribution_id' => $contribution->id,
826 'product_option' => CRM_Utils_Array::value('options_' . $premiumParams['selectProduct'], $premiumParams),
827 'quantity' => 1,
828 'start_date' => CRM_Utils_Date::customFormat($startDate, '%Y%m%d'),
829 'end_date' => CRM_Utils_Date::customFormat($endDate, '%Y%m%d'),
be2fb01f 830 ];
75637f22
EM
831 if (!empty($premiumParams['selectProduct'])) {
832 $daoPremiumsProduct = new CRM_Contribute_DAO_PremiumsProduct();
833 $daoPremiumsProduct->product_id = $premiumParams['selectProduct'];
834 $daoPremiumsProduct->premiums_id = $dao->id;
835 $daoPremiumsProduct->find(TRUE);
836 $params['financial_type_id'] = $daoPremiumsProduct->financial_type_id;
6a488035 837 }
75637f22
EM
838 //Fixed For CRM-3901
839 $daoContrProd = new CRM_Contribute_DAO_ContributionProduct();
840 $daoContrProd->contribution_id = $contribution->id;
841 if ($daoContrProd->find(TRUE)) {
842 $params['id'] = $daoContrProd->id;
6a488035 843 }
6a488035 844
75637f22
EM
845 CRM_Contribute_BAO_Contribution::addPremium($params);
846 if ($productDAO->cost && !empty($params['financial_type_id'])) {
be2fb01f 847 $trxnParams = [
75637f22
EM
848 'cost' => $productDAO->cost,
849 'currency' => $productDAO->currency,
850 'financial_type_id' => $params['financial_type_id'],
851 'contributionId' => $contribution->id,
be2fb01f 852 ];
75637f22 853 CRM_Core_BAO_FinancialTrxn::createPremiumTrxn($trxnParams);
6a488035
TO
854 }
855 }
75637f22
EM
856 elseif ($selectProduct == 'no_thanks') {
857 //Fixed For CRM-3901
858 $daoContrProd = new CRM_Contribute_DAO_ContributionProduct();
859 $daoContrProd->contribution_id = $contribution->id;
860 if ($daoContrProd->find(TRUE)) {
861 $daoContrProd->delete();
6a488035
TO
862 }
863 }
75637f22 864 }
6a488035 865
75637f22
EM
866 /**
867 * Process the contribution.
868 *
869 * @param CRM_Core_Form $form
870 * @param array $params
871 * @param array $result
f6261e9d 872 * @param array $contributionParams
873 * Parameters to be passed to contribution create action.
3febe800 874 * This differs from params in that we are currently adding params to it and 1) ensuring they are being
875 * passed consistently & 2) documenting them here.
876 * - contact_id
877 * - line_item
878 * - is_test
879 * - campaign_id
880 * - contribution_page_id
881 * - source
882 * - payment_type_id
883 * - thankyou_date (not all forms will set this)
884 *
75637f22 885 * @param CRM_Financial_DAO_FinancialType $financialType
75637f22 886 * @param bool $online
3febe800 887 * Is the form a front end form? If so set a bunch of unpredictable things that should be passed in from the form.
75637f22 888 *
75637f22
EM
889 * @param int $billingLocationID
890 * ID of billing location type.
10490499 891 * @param bool $isRecur
892 * Is this recurring?
75637f22
EM
893 *
894 * @return \CRM_Contribute_DAO_Contribution
12fde6ae 895 *
896 * @throws \CRM_Core_Exception
897 * @throws \CiviCRM_API3_Exception
75637f22
EM
898 */
899 public static function processFormContribution(
900 &$form,
901 $params,
902 $result,
f6261e9d 903 $contributionParams,
75637f22 904 $financialType,
75637f22 905 $online,
449f4c90 906 $billingLocationID,
907 $isRecur
75637f22
EM
908 ) {
909 $transaction = new CRM_Core_Transaction();
f6261e9d 910 $contactID = $contributionParams['contact_id'];
911
75637f22 912 $isEmailReceipt = !empty($form->_values['is_email_receipt']);
09108d7d 913 $isSeparateMembershipPayment = empty($params['separate_membership_payment']) ? FALSE : TRUE;
530a05b3 914 $pledgeID = !empty($params['pledge_id']) ? $params['pledge_id'] : CRM_Utils_Array::value('pledge_id', $form->_values);
75637f22 915 if (!$isSeparateMembershipPayment && !empty($form->_values['pledge_block_id']) &&
09108d7d 916 (!empty($params['is_pledge']) || $pledgeID)) {
75637f22 917 $isPledge = TRUE;
6a488035
TO
918 }
919 else {
75637f22 920 $isPledge = FALSE;
6a488035
TO
921 }
922
75637f22
EM
923 // add these values for the recurringContrib function ,CRM-10188
924 $params['financial_type_id'] = $financialType->id;
6a488035 925
3febe800 926 $contributionParams['address_id'] = CRM_Contribute_BAO_Contribution::createAddress($params, $billingLocationID);
6a488035 927
75637f22
EM
928 //@todo - this is being set from the form to resolve CRM-10188 - an
929 // eNotice caused by it not being set @ the front end
930 // however, we then get it being over-written with null for backend contributions
931 // a better fix would be to set the values in the respective forms rather than require
932 // a function being shared by two forms to deal with their respective values
933 // moving it to the BAO & not taking the $form as a param would make sense here.
934 if (!isset($params['is_email_receipt']) && $isEmailReceipt) {
935 $params['is_email_receipt'] = $isEmailReceipt;
51e89def 936 }
449f4c90 937 $params['is_recur'] = $isRecur;
675c3323 938 $params['payment_instrument_id'] = CRM_Utils_Array::value('payment_instrument_id', $contributionParams);
449f4c90 939 $recurringContributionID = self::processRecurringContribution($form, $params, $contactID, $financialType);
51e89def 940
75637f22
EM
941 $now = date('YmdHis');
942 $receiptDate = CRM_Utils_Array::value('receipt_date', $params);
943 if ($isEmailReceipt) {
944 $receiptDate = $now;
6a488035
TO
945 }
946
75637f22 947 if (isset($params['amount'])) {
f6261e9d 948 $contributionParams = array_merge(self::getContributionParams(
0ede7391 949 $params, $financialType->id,
f6261e9d 950 $result, $receiptDate,
951 $recurringContributionID), $contributionParams
75637f22 952 );
83644f47 953 $contributionParams['non_deductible_amount'] = self::getNonDeductibleAmount($params, $financialType, $online, $form);
954 $contributionParams['skipCleanMoney'] = TRUE;
955 // @todo this is the wrong place for this - it should be done as close to form submission
956 // as possible
957 $contributionParams['total_amount'] = $params['amount'];
77beddbe 958
f6261e9d 959 $contribution = CRM_Contribute_BAO_Contribution::add($contributionParams);
6a488035 960
aaffa79f 961 $invoiceSettings = Civi::settings()->get('contribution_invoice_settings');
75637f22
EM
962 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
963 if ($invoicing) {
be2fb01f 964 $dataArray = [];
f6261e9d 965 // @todo - interrogate the line items passed in on the params array.
966 // No reason to assume line items will be set on the form.
75637f22
EM
967 foreach ($form->_lineItem as $lineItemKey => $lineItemValue) {
968 foreach ($lineItemValue as $key => $value) {
969 if (isset($value['tax_amount']) && isset($value['tax_rate'])) {
970 if (isset($dataArray[$value['tax_rate']])) {
971 $dataArray[$value['tax_rate']] = $dataArray[$value['tax_rate']] + CRM_Utils_Array::value('tax_amount', $value);
972 }
973 else {
974 $dataArray[$value['tax_rate']] = CRM_Utils_Array::value('tax_amount', $value);
975 }
976 }
6a488035
TO
977 }
978 }
75637f22
EM
979 $smarty = CRM_Core_Smarty::singleton();
980 $smarty->assign('dataArray', $dataArray);
981 $smarty->assign('totalTaxAmount', $params['tax_amount']);
982 }
6a488035 983
75637f22
EM
984 // lets store it in the form variable so postProcess hook can get to this and use it
985 $form->_contributionID = $contribution->id;
986 }
6a488035 987
7a13735b 988 // process soft credit / pcp params first
989 CRM_Contribute_BAO_ContributionSoft::formatSoftCreditParams($params, $form);
75637f22 990
7a13735b 991 //CRM-13981, processing honor contact into soft-credit contribution
992 CRM_Contribute_BAO_ContributionSoft::processSoftContribution($params, $contribution);
75637f22 993
75637f22 994 if ($isPledge) {
356bfcaf 995 $form = self::handlePledge($form, $params, $contributionParams, $pledgeID, $contribution, $isEmailReceipt);
6a488035 996 }
6a488035 997
75637f22 998 if ($online && $contribution) {
09108d7d 999 CRM_Core_BAO_CustomValueTable::postProcess($params,
75637f22
EM
1000 'civicrm_contribution',
1001 $contribution->id,
1002 'Contribution'
1003 );
1004 }
1005 elseif ($contribution) {
1006 //handle custom data.
1007 $params['contribution_id'] = $contribution->id;
1008 if (!empty($params['custom']) &&
77beddbe 1009 is_array($params['custom'])
6a488035 1010 ) {
75637f22 1011 CRM_Core_BAO_CustomValueTable::store($params['custom'], 'civicrm_contribution', $contribution->id);
6a488035 1012 }
75637f22
EM
1013 }
1014 // Save note
1015 if ($contribution && !empty($params['contribution_note'])) {
be2fb01f 1016 $noteParams = [
75637f22
EM
1017 'entity_table' => 'civicrm_contribution',
1018 'note' => $params['contribution_note'],
1019 'entity_id' => $contribution->id,
1020 'contact_id' => $contribution->contact_id,
1021 'modified_date' => date('Ymd'),
be2fb01f 1022 ];
75637f22 1023
be2fb01f 1024 CRM_Core_BAO_Note::add($noteParams, []);
cc789d46 1025 }
cc789d46 1026
75637f22
EM
1027 if (isset($params['related_contact'])) {
1028 $contactID = $params['related_contact'];
cc789d46 1029 }
75637f22
EM
1030 elseif (isset($params['cms_contactID'])) {
1031 $contactID = $params['cms_contactID'];
6a488035 1032 }
75637f22
EM
1033
1034 //create contribution activity w/ individual and target
1035 //activity w/ organisation contact id when onbelf, CRM-4027
1036 $targetContactID = NULL;
1037 if (!empty($params['hidden_onbehalf_profile'])) {
1038 $targetContactID = $contribution->contact_id;
1039 $contribution->contact_id = $contactID;
1040 }
1041
1042 // create an activity record
1043 if ($contribution) {
1044 CRM_Activity_BAO_Activity::addActivity($contribution, NULL, $targetContactID);
1045 }
1046
1047 $transaction->commit();
1048 // CRM-13074 - create the CMSUser after the transaction is completed as it
1049 // is not appropriate to delete a valid contribution if a user create problem occurs
1050 CRM_Contribute_BAO_Contribution_Utils::createCMSUser($params,
1051 $contactID,
1052 'email-' . $billingLocationID
1053 );
1054 return $contribution;
6a488035
TO
1055 }
1056
1057 /**
75637f22 1058 * Create the recurring contribution record.
6a488035 1059 *
75637f22
EM
1060 * @param CRM_Core_Form $form
1061 * @param array $params
1062 * @param int $contactID
1063 * @param string $contributionType
75637f22 1064 *
449f4c90 1065 * @return int|null
6a488035 1066 */
449f4c90 1067 public static function processRecurringContribution(&$form, &$params, $contactID, $contributionType) {
cde484fd 1068
449f4c90 1069 if (empty($params['is_recur'])) {
75637f22
EM
1070 return NULL;
1071 }
6a488035 1072
be2fb01f 1073 $recurParams = ['contact_id' => $contactID];
75637f22
EM
1074 $recurParams['amount'] = CRM_Utils_Array::value('amount', $params);
1075 $recurParams['auto_renew'] = CRM_Utils_Array::value('auto_renew', $params);
1076 $recurParams['frequency_unit'] = CRM_Utils_Array::value('frequency_unit', $params);
1077 $recurParams['frequency_interval'] = CRM_Utils_Array::value('frequency_interval', $params);
1078 $recurParams['installments'] = CRM_Utils_Array::value('installments', $params);
1079 $recurParams['financial_type_id'] = CRM_Utils_Array::value('financial_type_id', $params);
1080 $recurParams['currency'] = CRM_Utils_Array::value('currency', $params);
f69a9ac3 1081 $recurParams['payment_instrument_id'] = $params['payment_instrument_id'];
6a488035 1082
75637f22
EM
1083 // CRM-14354: For an auto-renewing membership with an additional contribution,
1084 // if separate payments is not enabled, make sure only the membership fee recurs
1085 if (!empty($form->_membershipBlock)
1086 && $form->_membershipBlock['is_separate_payment'] === '0'
1087 && isset($params['selectMembership'])
1088 && $form->_values['is_allow_other_amount'] == '1'
1089 // CRM-16331
1090 && !empty($form->_membershipTypeValues)
1091 && !empty($form->_membershipTypeValues[$params['selectMembership']]['minimum_fee'])
1092 ) {
1093 $recurParams['amount'] = $form->_membershipTypeValues[$params['selectMembership']]['minimum_fee'];
1094 }
6a488035 1095
75637f22
EM
1096 $recurParams['is_test'] = 0;
1097 if (($form->_action & CRM_Core_Action::PREVIEW) ||
1098 (isset($form->_mode) && ($form->_mode == 'test'))
1099 ) {
1100 $recurParams['is_test'] = 1;
1101 }
6a488035 1102
75637f22
EM
1103 $recurParams['start_date'] = $recurParams['create_date'] = $recurParams['modified_date'] = date('YmdHis');
1104 if (!empty($params['receive_date'])) {
12e53254 1105 $recurParams['start_date'] = date('YmdHis', strtotime($params['receive_date']));
75637f22
EM
1106 }
1107 $recurParams['invoice_id'] = CRM_Utils_Array::value('invoiceID', $params);
1108 $recurParams['contribution_status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Pending');
1109 $recurParams['payment_processor_id'] = CRM_Utils_Array::value('payment_processor_id', $params);
1110 $recurParams['is_email_receipt'] = CRM_Utils_Array::value('is_email_receipt', $params);
1111 // we need to add a unique trxn_id to avoid a unique key error
1112 // in paypal IPN we reset this when paypal sends us the real trxn id, CRM-2991
1113 $recurParams['trxn_id'] = CRM_Utils_Array::value('trxn_id', $params, $params['invoiceID']);
1114 $recurParams['financial_type_id'] = $contributionType->id;
6a488035 1115
449f4c90 1116 $campaignId = CRM_Utils_Array::value('campaign_id', $params, CRM_Utils_Array::value('campaign_id', $form->_values));
75637f22 1117 $recurParams['campaign_id'] = $campaignId;
75637f22
EM
1118 $recurring = CRM_Contribute_BAO_ContributionRecur::add($recurParams);
1119 if (is_a($recurring, 'CRM_Core_Error')) {
1120 CRM_Core_Error::displaySessionError($recurring);
1121 $urlString = 'civicrm/contribute/transact';
1122 $urlParams = '_qf_Main_display=true';
1123 if (get_class($form) == 'CRM_Contribute_Form_Contribution') {
1124 $urlString = 'civicrm/contact/view/contribution';
1125 $urlParams = "action=add&cid={$form->_contactID}";
1126 if ($form->_mode) {
1127 $urlParams .= "&mode={$form->_mode}";
1128 }
6a488035 1129 }
75637f22 1130 CRM_Utils_System::redirect(CRM_Utils_System::url($urlString, $urlParams));
6a488035 1131 }
dccd9f4f
ERL
1132 // Only set contribution recur ID for contributions since offline membership recur payments are handled somewhere else.
1133 if (!is_a($form, "CRM_Member_Form_Membership")) {
1134 $form->_params['contributionRecurID'] = $recurring->id;
1135 }
75637f22
EM
1136
1137 return $recurring->id;
6a488035
TO
1138 }
1139
1140 /**
75637f22 1141 * Add on behalf of organization and it's location.
cd6994fc 1142 *
75637f22
EM
1143 * This situation occurs when on behalf of is enabled for the contribution page and the person
1144 * signing up does so on behalf of an organization.
a1a94e61 1145 *
75637f22
EM
1146 * @param array $behalfOrganization
1147 * array of organization info.
1148 * @param int $contactID
1149 * individual contact id. One.
1150 * who is doing the process of signup / contribution.
9fc4e1d9 1151 *
75637f22
EM
1152 * @param array $values
1153 * form values array.
1154 * @param array $params
1155 * @param array $fields
1156 * Array of fields from the onbehalf profile relevant to the organization.
6a488035 1157 */
75637f22 1158 public static function processOnBehalfOrganization(&$behalfOrganization, &$contactID, &$values, &$params, $fields = NULL) {
33260076 1159 $isNotCurrentEmployer = FALSE;
be2fb01f 1160 $dupeIDs = [];
75637f22 1161 $orgID = NULL;
6cc679d2 1162 if (!empty($behalfOrganization['organization_id'])) {
75637f22
EM
1163 $orgID = $behalfOrganization['organization_id'];
1164 unset($behalfOrganization['organization_id']);
33260076 1165 }
1166 // create employer relationship with $contactID only when new organization is there
1167 // else retain the existing relationship
1168 else {
1169 // get the Employee relationship type id
1170 $relTypeId = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_RelationshipType', 'Employee of', 'id', 'name_a_b');
b9dc56f5 1171
33260076 1172 // keep relationship params ready
1173 $relParams['relationship_type_id'] = $relTypeId . '_a_b';
1174 $relParams['is_permission_a_b'] = 1;
1175 $relParams['is_active'] = 1;
1176 $isNotCurrentEmployer = TRUE;
bb06e9ed 1177 }
6a488035 1178
75637f22
EM
1179 // formalities for creating / editing organization.
1180 $behalfOrganization['contact_type'] = 'Organization';
c8bde7ea 1181
75637f22
EM
1182 if (!$orgID) {
1183 // check if matching organization contact exists
be2fb01f 1184 $dupeIDs = CRM_Contact_BAO_Contact::getDuplicateContacts($behalfOrganization, 'Organization', 'Unsupervised', [], FALSE);
6a488035 1185
75637f22
EM
1186 // CRM-6243 says to pick the first org even if more than one match
1187 if (count($dupeIDs) >= 1) {
75c07fde 1188 $behalfOrganization['contact_id'] = $orgID = $dupeIDs[0];
75637f22
EM
1189 // don't allow name edit
1190 unset($behalfOrganization['organization_name']);
6a488035
TO
1191 }
1192 }
1193 else {
75637f22
EM
1194 // if found permissioned related organization, allow location edit
1195 $behalfOrganization['contact_id'] = $orgID;
1196 // don't allow name edit
1197 unset($behalfOrganization['organization_name']);
6a488035
TO
1198 }
1199
75637f22
EM
1200 // handling for image url
1201 if (!empty($behalfOrganization['image_URL'])) {
1202 CRM_Contact_BAO_Contact::processImageParams($behalfOrganization);
6a488035
TO
1203 }
1204
75637f22
EM
1205 // create organization, add location
1206 $orgID = CRM_Contact_BAO_Contact::createProfileContact($behalfOrganization, $fields, $orgID,
1207 NULL, NULL, 'Organization'
1208 );
1209 // create relationship
33260076 1210 if ($isNotCurrentEmployer) {
1211 $relParams['contact_check'][$orgID] = 1;
be2fb01f 1212 $cid = ['contact' => $contactID];
33260076 1213 CRM_Contact_BAO_Relationship::legacyCreateMultiple($relParams, $cid);
1214 }
1f1740fe 1215
75637f22
EM
1216 // if multiple match - send a duplicate alert
1217 if ($dupeIDs && (count($dupeIDs) > 1)) {
1218 $values['onbehalf_dupe_alert'] = 1;
1219 // required for IPN
1220 $params['onbehalf_dupe_alert'] = 1;
6a488035 1221 }
cde484fd 1222
75637f22
EM
1223 // make sure organization-contact-id is considered for recording
1224 // contribution/membership etc..
1225 if ($contactID != $orgID) {
1226 // take a note of contact-id, so we can send the
1227 // receipt to individual contact as well.
6a488035 1228
75637f22
EM
1229 // required for mailing/template display ..etc
1230 $values['related_contact'] = $contactID;
6a488035 1231
0462a5b2 1232 //CRM-19172: Create CMS user for individual on whose behalf organization is doing contribution
1233 $params['onbehalf_contact_id'] = $contactID;
1234
75637f22
EM
1235 //make this employee of relationship as current
1236 //employer / employee relationship, CRM-3532
33260076 1237 if ($isNotCurrentEmployer &&
75637f22
EM
1238 ($orgID != CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $contactID, 'employer_id'))
1239 ) {
33260076 1240 $isNotCurrentEmployer = FALSE;
6a488035 1241 }
6a488035 1242
33260076 1243 if (!$isNotCurrentEmployer && $orgID) {
75637f22
EM
1244 //build current employer params
1245 $currentEmpParams[$contactID] = $orgID;
1246 CRM_Contact_BAO_Contact_Utils::setCurrentEmployer($currentEmpParams);
6a488035 1247 }
6a488035 1248
75637f22
EM
1249 // contribution / signup will be done using this
1250 // organization id.
1251 $contactID = $orgID;
6a488035 1252 }
75637f22
EM
1253 }
1254
6a488035 1255 /**
75637f22 1256 * Function used to send notification mail to pcp owner.
6a488035 1257 *
75637f22 1258 * This is used by contribution and also event PCPs.
03110609 1259 *
75637f22
EM
1260 * @param object $contribution
1261 * @param object $contributionSoft
1262 * Contribution object.
12f92dbd 1263 */
12f92dbd 1264 public static function pcpNotifyOwner($contribution, $contributionSoft) {
be2fb01f 1265 $params = ['id' => $contributionSoft->pcp_id];
5fe87df6
N
1266 CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCP', $params, $pcpInfo);
1267 $ownerNotifyID = CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCPBlock', $pcpInfo['pcp_block_id'], 'owner_notify_id');
ed71bbca 1268 $ownerNotifyOption = CRM_Core_PseudoConstant::getName('CRM_PCP_DAO_PCPBlock', 'owner_notify_id', $ownerNotifyID);
5fe87df6 1269
ed71bbca 1270 if ($ownerNotifyOption != 'no_notifications' &&
1271 (($ownerNotifyOption == 'owner_chooses' &&
5fe87df6 1272 CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP', $contributionSoft->pcp_id, 'is_notify')) ||
ed71bbca 1273 $ownerNotifyOption == 'all_owners')) {
5fe87df6
N
1274 $pcpInfoURL = CRM_Utils_System::url('civicrm/pcp/info',
1275 "reset=1&id={$contributionSoft->pcp_id}",
1276 TRUE, NULL, FALSE, TRUE
1277 );
12f92dbd 1278 // set email in the template here
5fe87df6 1279
b576d770 1280 if (CRM_Core_BAO_LocationType::getBilling()) {
1281 list($donorName, $email) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contribution->contact_id,
1282 FALSE, CRM_Core_BAO_LocationType::getBilling());
5fe87df6
N
1283 }
1284 // get primary location email if no email exist( for billing location).
1285 if (!$email) {
1286 list($donorName, $email) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contribution->contact_id);
1287 }
1288 list($ownerName, $ownerEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contributionSoft->contact_id);
be2fb01f 1289 $tplParams = [
5fe87df6 1290 'page_title' => $pcpInfo['title'],
12f92dbd
N
1291 'receive_date' => $contribution->receive_date,
1292 'total_amount' => $contributionSoft->amount,
1293 'donors_display_name' => $donorName,
5fe87df6
N
1294 'donors_email' => $email,
1295 'pcpInfoURL' => $pcpInfoURL,
12f92dbd 1296 'is_honor_roll_enabled' => $contributionSoft->pcp_display_in_roll,
dd55005c 1297 'currency' => $contributionSoft->currency,
be2fb01f 1298 ];
12f92dbd 1299 $domainValues = CRM_Core_BAO_Domain::getNameAndEmail();
be2fb01f 1300 $sendTemplateParams = [
12f92dbd
N
1301 'groupName' => 'msg_tpl_workflow_contribution',
1302 'valueName' => 'pcp_owner_notify',
1303 'contactId' => $contributionSoft->contact_id,
5fe87df6
N
1304 'toEmail' => $ownerEmail,
1305 'toName' => $ownerName,
12f92dbd
N
1306 'from' => "$domainValues[0] <$domainValues[1]>",
1307 'tplParams' => $tplParams,
1308 'PDFFilename' => 'receipt.pdf',
be2fb01f 1309 ];
12f92dbd 1310 CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
6a488035
TO
1311 }
1312 }
1313
1314 /**
5e4f7f74
EM
1315 * Function used to se pcp related defaults / params.
1316 *
1317 * This is used by contribution and also event PCPs
6a488035 1318 *
014c4014
TO
1319 * @param CRM_Core_Form $page
1320 * Form object.
1321 * @param array $params
6a488035 1322 *
cd6994fc 1323 * @return array
6a488035 1324 */
00be9182 1325 public static function processPcp(&$page, $params) {
547206bc 1326 $params['pcp_made_through_id'] = $page->_pcpId;
6a488035 1327 $page->assign('pcpBlock', TRUE);
8cc574cf 1328 if (!empty($params['pcp_display_in_roll']) && empty($params['pcp_roll_nickname'])) {
6a488035
TO
1329 $params['pcp_roll_nickname'] = ts('Anonymous');
1330 $params['pcp_is_anonymous'] = 1;
1331 }
1332 else {
1333 $params['pcp_is_anonymous'] = 0;
1334 }
be2fb01f 1335 foreach ([
1330f57a
SL
1336 'pcp_display_in_roll',
1337 'pcp_is_anonymous',
1338 'pcp_roll_nickname',
1339 'pcp_personal_note',
1340 ] as $val) {
a7488080 1341 if (!empty($params[$val])) {
6a488035
TO
1342 $page->assign($val, $params[$val]);
1343 }
1344 }
1345
1346 return $params;
1347 }
705b4205
EM
1348
1349 /**
5e4f7f74
EM
1350 * Process membership.
1351 *
5624f515 1352 * @param array $membershipParams
014c4014 1353 * @param int $contactID
5624f515
EM
1354 * @param array $customFieldsFormatted
1355 * @param array $fieldTypes
1356 * @param array $premiumParams
014c4014
TO
1357 * @param array $membershipLineItems
1358 * Line items specifically relating to memberships.
705b4205 1359 */
4b6c8c1e 1360 protected function processMembership($membershipParams, $contactID, $customFieldsFormatted, $fieldTypes, $premiumParams,
f2bca231 1361 $membershipLineItems) {
8bc79dfc 1362
4b6c8c1e 1363 $membershipTypeIDs = (array) $membershipParams['selectMembership'];
1364 $membershipTypes = CRM_Member_BAO_Membership::buildMembershipTypeValues($this, $membershipTypeIDs);
be2fb01f 1365 $membershipType = empty($membershipTypes) ? [] : reset($membershipTypes);
5624f515 1366
4b6c8c1e 1367 $this->assign('membership_name', CRM_Utils_Array::value('name', $membershipType));
1fc22ffa 1368 $this->_values['membership_name'] = CRM_Utils_Array::value('name', $membershipType);
7c113627 1369
4b6c8c1e 1370 $isPaidMembership = FALSE;
1371 if ($this->_amount >= 0.0 && isset($membershipParams['amount'])) {
1372 //amount must be greater than zero for
1373 //adding contribution record to contribution table.
1374 //this condition arises when separate membership payment is
1375 //enabled and contribution amount is not selected. fix for CRM-3010
1376 $isPaidMembership = TRUE;
1377 }
1378 $isProcessSeparateMembershipTransaction = $this->isSeparateMembershipTransaction($this->_id, $this->_values['amount_block_is_active']);
7c113627 1379
4b6c8c1e 1380 if ($this->_values['amount_block_is_active']) {
1381 $financialTypeID = $this->_values['financial_type_id'];
705b4205 1382 }
4b6c8c1e 1383 else {
1384 $financialTypeID = CRM_Utils_Array::value('financial_type_id', $membershipType, CRM_Utils_Array::value('financial_type_id', $membershipParams));
705b4205 1385 }
4b6c8c1e 1386
1387 if (CRM_Utils_Array::value('membership_source', $this->_params)) {
1388 $membershipParams['contribution_source'] = $this->_params['membership_source'];
1389 }
1390
1391 $this->postProcessMembership($membershipParams, $contactID,
1392 $this, $premiumParams, $customFieldsFormatted, $fieldTypes, $membershipType, $membershipTypeIDs, $isPaidMembership, $this->_membershipId, $isProcessSeparateMembershipTransaction, $financialTypeID,
5b9d3ce8 1393 $membershipLineItems);
4b6c8c1e 1394
1395 $this->assign('membership_assign', TRUE);
1396 $this->set('membershipTypeID', $membershipParams['selectMembership']);
705b4205 1397 }
fb49fa48 1398
8bc79dfc 1399 /**
668ddfc2
EM
1400 * Process the Memberships.
1401 *
1402 * @param array $membershipParams
1403 * Array of membership fields.
1404 * @param int $contactID
1405 * Contact id.
1406 * @param CRM_Contribute_Form_Contribution_Confirm $form
1407 * Confirmation form object.
1408 *
1409 * @param array $premiumParams
1410 * @param null $customFieldsFormatted
1411 * @param null $includeFieldTypes
1412 *
1413 * @param array $membershipDetails
1414 *
1415 * @param array $membershipTypeIDs
1416 *
1417 * @param bool $isPaidMembership
1418 * @param array $membershipID
1419 *
1420 * @param bool $isProcessSeparateMembershipTransaction
1421 *
1422 * @param int $financialTypeID
f2bca231 1423 * @param array $unprocessedLineItems
1424 * Line items for payment options chosen on the form.
668ddfc2
EM
1425 *
1426 * @throws \CRM_Core_Exception
5b9d3ce8
MWMC
1427 * @throws \CiviCRM_API3_Exception
1428 * @throws \Civi\Payment\Exception\PaymentProcessorException
668ddfc2
EM
1429 */
1430 protected function postProcessMembership(
1431 $membershipParams, $contactID, &$form, $premiumParams,
1432 $customFieldsFormatted = NULL, $includeFieldTypes = NULL, $membershipDetails, $membershipTypeIDs, $isPaidMembership, $membershipID,
5b9d3ce8 1433 $isProcessSeparateMembershipTransaction, $financialTypeID, $unprocessedLineItems) {
f2bca231 1434
82583880 1435 $membershipContribution = NULL;
668ddfc2 1436 $isTest = CRM_Utils_Array::value('is_test', $membershipParams, FALSE);
be2fb01f 1437 $errors = $paymentResults = [];
858f7096 1438 $form->_values['isMembership'] = TRUE;
cf5f7a42 1439 $isRecurForFirstTransaction = CRM_Utils_Array::value('is_recur', $form->_params, CRM_Utils_Array::value('is_recur', $membershipParams));
f2bca231 1440
858f7096 1441 $totalAmount = $membershipParams['amount'];
449f4c90 1442
668ddfc2
EM
1443 if ($isPaidMembership) {
1444 if ($isProcessSeparateMembershipTransaction) {
1445 // If we have 2 transactions only one can use the invoice id.
1446 $membershipParams['invoiceID'] .= '-2';
449f4c90 1447 if (!empty($membershipParams['auto_renew'])) {
1448 $isRecurForFirstTransaction = FALSE;
1449 }
668ddfc2
EM
1450 }
1451
417c6834 1452 if (!$isProcessSeparateMembershipTransaction) {
f2bca231 1453 // Skip line items in the contribution processing transaction.
1454 // We will create them with the membership for proper linking.
417c6834 1455 $membershipParams['skipLineItem'] = 1;
1456 }
8e8d287f 1457 else {
1458 $membershipParams['total_amount'] = $totalAmount;
f2bca231 1459 $membershipParams['skipLineItem'] = 0;
8e8d287f 1460 CRM_Price_BAO_LineItem::getLineItemArray($membershipParams);
1461
1462 }
f2bca231 1463 $paymentResult = CRM_Contribute_BAO_Contribution_Utils::processConfirm(
1464 $form,
1465 $membershipParams,
5fb28746 1466 $contactID,
668ddfc2 1467 $financialTypeID,
449f4c90 1468 $isTest,
1469 $isRecurForFirstTransaction
668ddfc2 1470 );
82583880 1471 if (!empty($paymentResult['contribution'])) {
be2fb01f 1472 $paymentResults[] = ['contribution_id' => $paymentResult['contribution']->id, 'result' => $paymentResult];
5fb28746 1473 $this->postProcessPremium($premiumParams, $paymentResult['contribution']);
668ddfc2
EM
1474 //note that this will be over-written if we are using a separate membership transaction. Otherwise there is only one
1475 $membershipContribution = $paymentResult['contribution'];
1476 // Save the contribution ID so that I can be used in email receipts
1477 // For example, if you need to generate a tax receipt for the donation only.
1478 $form->_values['contribution_other_id'] = $membershipContribution->id;
1479 }
1480 }
1481
1482 if ($isProcessSeparateMembershipTransaction) {
1483 try {
f2bca231 1484 $form->_lineItem = $unprocessedLineItems;
668ddfc2
EM
1485 if (empty($form->_params['auto_renew']) && !empty($membershipParams['is_recur'])) {
1486 unset($membershipParams['is_recur']);
1487 }
be2fb01f 1488 list($membershipContribution, $secondPaymentResult) = $this->processSecondaryFinancialTransaction($contactID, $form, array_merge($membershipParams, ['skipLineItem' => 1]),
f2bca231 1489 $isTest, $unprocessedLineItems, CRM_Utils_Array::value('minimum_fee', $membershipDetails, 0), CRM_Utils_Array::value('financial_type_id', $membershipDetails));
be2fb01f 1490 $paymentResults[] = ['contribution_id' => $membershipContribution->id, 'result' => $secondPaymentResult];
d275cdb2 1491 $totalAmount = $membershipContribution->total_amount;
668ddfc2
EM
1492 }
1493 catch (CRM_Core_Exception $e) {
1494 $errors[2] = $e->getMessage();
1495 $membershipContribution = NULL;
1496 }
1497 }
1498
1499 $membership = NULL;
1500 if (!empty($membershipContribution) && !is_a($membershipContribution, 'CRM_Core_Error')) {
1501 $membershipContributionID = $membershipContribution->id;
1502 }
1503
1504 //@todo - why is this nested so deep? it seems like it could be just set on the calling function on the form layer
1505 if (isset($membershipParams['onbehalf']) && !empty($membershipParams['onbehalf']['member_campaign_id'])) {
1506 $form->_params['campaign_id'] = $membershipParams['onbehalf']['member_campaign_id'];
1507 }
1508 //@todo it should no longer be possible for it to get to this point & membership to not be an array
1509 if (is_array($membershipTypeIDs) && !empty($membershipContributionID)) {
be2fb01f 1510 $typesTerms = CRM_Utils_Array::value('types_terms', $membershipParams, []);
65e172a3 1511
be2fb01f 1512 $membershipLines = $nonMembershipLines = [];
65e172a3 1513 foreach ($unprocessedLineItems as $priceSetID => $lines) {
1514 foreach ($lines as $line) {
1515 if (!empty($line['membership_type_id'])) {
1516 $membershipLines[$line['membership_type_id']] = $line['price_field_value_id'];
1517 }
1518 }
1519 }
1520
1521 $i = 1;
be2fb01f 1522 $form->_params['createdMembershipIDs'] = [];
668ddfc2 1523 foreach ($membershipTypeIDs as $memType) {
be2fb01f 1524 $membershipLineItems = [];
65e172a3 1525 if ($i < count($membershipTypeIDs)) {
1526 $membershipLineItems[$priceSetID][$membershipLines[$memType]] = $unprocessedLineItems[$priceSetID][$membershipLines[$memType]];
1527 unset($unprocessedLineItems[$priceSetID][$membershipLines[$memType]]);
1528 }
1529 else {
1530 $membershipLineItems = $unprocessedLineItems;
1531 }
1532 $i++;
668ddfc2 1533 $numTerms = CRM_Utils_Array::value($memType, $typesTerms, 1);
668ddfc2
EM
1534 $contributionRecurID = isset($form->_params['contributionRecurID']) ? $form->_params['contributionRecurID'] : NULL;
1535
1536 $membershipSource = NULL;
1537 if (!empty($form->_params['membership_source'])) {
1538 $membershipSource = $form->_params['membership_source'];
1539 }
1540 elseif (isset($form->_values['title']) && !empty($form->_values['title'])) {
1541 $membershipSource = ts('Online Contribution:') . ' ' . $form->_values['title'];
1542 }
1543 $isPayLater = NULL;
1544 if (isset($form->_params)) {
1545 $isPayLater = CRM_Utils_Array::value('is_pay_later', $form->_params);
1546 }
1547 $campaignId = NULL;
1548 if (isset($form->_values) && is_array($form->_values) && !empty($form->_values)) {
1549 $campaignId = CRM_Utils_Array::value('campaign_id', $form->_params);
1550 if (!array_key_exists('campaign_id', $form->_params)) {
1551 $campaignId = CRM_Utils_Array::value('campaign_id', $form->_values);
1552 }
1553 }
1554
5b9d3ce8
MWMC
1555 // @todo Move this into CRM_Member_BAO_Membership::processMembership
1556 if (!empty($membershipContribution)) {
ec834b84 1557 $pending = ($membershipContribution->contribution_status_id == CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Pending')) ? TRUE : FALSE;
5b9d3ce8
MWMC
1558 }
1559 else {
1560 $pending = $this->getIsPending();
1561 }
356bfcaf 1562 list($membership, $renewalMode, $dates) = CRM_Member_BAO_Membership::processMembership(
668ddfc2
EM
1563 $contactID, $memType, $isTest,
1564 date('YmdHis'), CRM_Utils_Array::value('cms_contactID', $membershipParams),
1565 $customFieldsFormatted,
1566 $numTerms, $membershipID, $pending,
be2fb01f 1567 $contributionRecurID, $membershipSource, $isPayLater, $campaignId, [], $membershipContribution,
65e172a3 1568 $membershipLineItems
668ddfc2 1569 );
bd53b1b9 1570
668ddfc2
EM
1571 $form->set('renewal_mode', $renewalMode);
1572 if (!empty($dates)) {
1fc22ffa 1573 $form->assign('mem_start_date', CRM_Utils_Date::customFormat($dates['start_date'], '%Y%m%d'));
1574 $form->assign('mem_end_date', CRM_Utils_Date::customFormat($dates['end_date'], '%Y%m%d'));
668ddfc2
EM
1575 }
1576
1577 if (!empty($membershipContribution)) {
c9cc6e3a
MWMC
1578 // Next line is probably redundant. Checks prevent it happening twice.
1579 $membershipPaymentParams = [
1580 'membership_id' => $membership->id,
1581 'membership_type_id' => $membership->membership_type_id,
1582 'contribution_id' => $membershipContribution->id,
1583 ];
1584 civicrm_api3('MembershipPayment', 'create', $membershipPaymentParams);
668ddfc2 1585 }
040728f5
AF
1586 if ($membership) {
1587 CRM_Core_BAO_CustomValueTable::postProcess($form->_params, 'civicrm_membership', $membership->id, 'Membership');
1588 $form->_params['createdMembershipIDs'][] = $membership->id;
1589 $form->_params['membershipID'] = $membership->id;
1590
1591 //CRM-15232: Check if membership is created and on the basis of it use
1592 //membership receipt template to send payment receipt
1593 $form->_values['isMembership'] = TRUE;
1594 }
668ddfc2
EM
1595 }
1596 if ($form->_priceSetId && !empty($form->_useForMember) && !empty($form->_lineItem)) {
1597 foreach ($form->_lineItem[$form->_priceSetId] as & $priceFieldOp) {
e894942a
WA
1598 if (!empty($priceFieldOp['membership_type_id']) && $membership->membership_type_id == $priceFieldOp['membership_type_id']) {
1599 $membershipOb = $membership;
668ddfc2
EM
1600 $priceFieldOp['start_date'] = $membershipOb->start_date ? CRM_Utils_Date::customFormat($membershipOb->start_date, '%B %E%f, %Y') : '-';
1601 $priceFieldOp['end_date'] = $membershipOb->end_date ? CRM_Utils_Date::customFormat($membershipOb->end_date, '%B %E%f, %Y') : '-';
1602 }
1603 else {
1604 $priceFieldOp['start_date'] = $priceFieldOp['end_date'] = 'N/A';
1605 }
1606 }
1607 $form->_values['lineItem'] = $form->_lineItem;
1608 $form->assign('lineItem', $form->_lineItem);
1609 }
1610 }
1611
1612 if (!empty($errors)) {
1613 $message = $this->compileErrorMessage($errors);
1614 throw new CRM_Core_Exception($message);
1615 }
28da8ecd 1616
82583880
EM
1617 if (isset($membershipContributionID)) {
1618 $form->_values['contribution_id'] = $membershipContributionID;
1619 }
a506739a 1620
1fc22ffa 1621 if (empty($form->_params['is_pay_later']) && $form->_paymentProcessor) {
a506739a 1622 // the is_monetary concept probably should be deprecated as it can be calculated from
1623 // the existence of 'amount' & seems fragile.
668ddfc2
EM
1624 if ($form->_values['is_monetary'] && $form->_amount > 0.0 && !$form->_params['is_pay_later']) {
1625 // call postProcess hook before leaving
1626 $form->postProcessHook();
668ddfc2 1627 }
a506739a 1628
82583880 1629 $payment = Civi\Payment\System::singleton()->getByProcessor($form->_paymentProcessor);
fe3dbce1 1630 // The contribution_other_id is effectively the ID for the only contribution or the non-membership contribution.
1631 // Since we have called the membership contribution (in a 2 contribution scenario) this is out
1632 // primary-contribution compared to that - but let's face it - it's all just too hard & confusing at the moment!
be2fb01f 1633 $paymentParams = array_merge($form->_params, ['contributionID' => $form->_values['contribution_other_id']]);
b43ed44b
PN
1634
1635 // CRM-19792 : set necessary fields for payment processor
1636 CRM_Core_Payment_Form::mapParams($form->_bltID, $paymentParams, $paymentParams, TRUE);
1637
15816cb4
AS
1638 // If this is a single membership-related contribution, it won't have
1639 // be performed yet, so do it now.
1640 if ($isPaidMembership && !$isProcessSeparateMembershipTransaction) {
1641 $paymentActionResult = $payment->doPayment($paymentParams, 'contribute');
be2fb01f 1642 $paymentResults[] = ['contribution_id' => $paymentResult['contribution']->id, 'result' => $paymentActionResult];
15816cb4 1643 }
668ddfc2
EM
1644 // Do not send an email if Recurring transaction is done via Direct Mode
1645 // Email will we sent when the IPN is received.
63137f3a 1646 foreach ($paymentResults as $result) {
7c864699
TL
1647 //CRM-18211: Fix situation where second contribution doesn't exist because it is optional.
1648 if ($result['contribution_id']) {
1649 $this->completeTransaction($result['result'], $result['contribution_id']);
1650 }
63137f3a 1651 }
668ddfc2
EM
1652 return;
1653 }
1654
1fc22ffa 1655 $emailValues = array_merge($membershipParams, $form->_values);
1656 $emailValues['membership_assign'] = 1;
05d09dc4
JP
1657 $emailValues['useForMember'] = !empty($form->_useForMember);
1658
858f7096 1659 // Finally send an email receipt for pay-later scenario (although it might sometimes be caught above!)
1660 if ($totalAmount == 0) {
1661 // This feels like a bizarre hack as the variable name doesn't seem to be directly connected to it's use in the template.
1662 $emailValues['useForMember'] = 0;
858f7096 1663 $emailValues['amount'] = 0;
036c6315 1664
1665 //CRM-18071, where on selecting $0 free membership payment section got hidden and
1666 // also it reset any payment processor selection result into pending free membership
1667 // so its a kind of hack to complete free membership at this point since there is no $form->_paymentProcessor info
bd53b1b9 1668 if (!empty($membershipContribution) && !is_a($membershipContribution, 'CRM_Core_Error')) {
18135422 1669 if (empty($form->_paymentProcessor)) {
1670 // @todo this can maybe go now we are setting payment_processor_id = 0 more reliably.
1671 $paymentProcessorIDs = explode(CRM_Core_DAO::VALUE_SEPARATOR, CRM_Utils_Array::value('payment_processor', $this->_values));
036c6315 1672 $this->_paymentProcessor['id'] = $paymentProcessorIDs[0];
1673 }
be2fb01f 1674 $result = ['payment_status_id' => 1, 'contribution' => $membershipContribution];
036c6315 1675 $this->completeTransaction($result, $result['contribution']->id);
1676 }
1e584dec
JP
1677 // return as completeTransaction() already sends the receipt mail.
1678 return;
858f7096 1679 }
1fc22ffa 1680
668ddfc2 1681 CRM_Contribute_BAO_ContributionPage::sendMail($contactID,
858f7096 1682 $emailValues,
668ddfc2
EM
1683 $isTest, FALSE,
1684 $includeFieldTypes
1685 );
1686 }
1687
1688 /**
1689 * Turn array of errors into message string.
1690 *
1691 * @param array $errors
1692 *
1693 * @return string
1694 */
1695 protected function compileErrorMessage($errors) {
1696 foreach ($errors as $error) {
1697 if (is_string($error)) {
1698 $message[] = $error;
1699 }
1700 }
1701 return ts('Payment Processor Error message') . ': ' . implode('<br/>', $message);
1702 }
1703
1704 /**
1705 * Where a second separate financial transaction is supported we will process it here.
1706 *
1707 * @param int $contactID
1708 * @param CRM_Contribute_Form_Contribution_Confirm $form
1709 * @param array $tempParams
1710 * @param bool $isTest
1711 * @param array $lineItems
1712 * @param $minimumFee
1713 * @param int $financialTypeID
1714 *
1715 * @throws CRM_Core_Exception
1716 * @throws Exception
1717 * @return CRM_Contribute_BAO_Contribution
1718 */
1719 protected function processSecondaryFinancialTransaction($contactID, &$form, $tempParams, $isTest, $lineItems, $minimumFee,
1720 $financialTypeID) {
1721 $financialType = new CRM_Financial_DAO_FinancialType();
1722 $financialType->id = $financialTypeID;
1723 $financialType->find(TRUE);
1724 $tempParams['amount'] = $minimumFee;
1725 $tempParams['invoiceID'] = md5(uniqid(rand(), TRUE));
449f4c90 1726 $isRecur = CRM_Utils_Array::value('is_recur', $tempParams);
668ddfc2 1727
668ddfc2
EM
1728 //assign receive date when separate membership payment
1729 //and contribution amount not selected.
1730 if ($form->_amount == 0) {
1731 $now = date('YmdHis');
1732 $form->_params['receive_date'] = $now;
1733 $receiveDate = CRM_Utils_Date::mysqlToIso($now);
1734 $form->set('params', $form->_params);
1735 $form->assign('receive_date', $receiveDate);
1736 }
1737
668ddfc2 1738 $form->set('membership_amount', $minimumFee);
668ddfc2
EM
1739 $form->assign('membership_amount', $minimumFee);
1740
1741 // we don't need to create the user twice, so lets disable cms_create_account
1742 // irrespective of the value, CRM-2888
1743 $tempParams['cms_create_account'] = 0;
1744
668ddfc2
EM
1745 //set this variable as we are not creating pledge for
1746 //separate membership payment contribution.
1747 //so for differentiating membership contribution from
1748 //main contribution.
1749 $form->_params['separate_membership_payment'] = 1;
be2fb01f 1750 $contributionParams = [
3febe800 1751 'contact_id' => $contactID,
1752 'line_item' => $lineItems,
1753 'is_test' => $isTest,
1754 'campaign_id' => CRM_Utils_Array::value('campaign_id', $tempParams, CRM_Utils_Array::value('campaign_id',
1755 $form->_values)),
1756 'contribution_page_id' => $form->_id,
1757 'source' => CRM_Utils_Array::value('source', $tempParams, CRM_Utils_Array::value('description', $tempParams)),
be2fb01f 1758 ];
3febe800 1759 $isMonetary = !empty($form->_values['is_monetary']);
1760 if ($isMonetary) {
1761 if (empty($paymentParams['is_pay_later'])) {
f3a63d1e 1762 $contributionParams['payment_instrument_id'] = $form->_paymentProcessor['payment_instrument_id'];
3febe800 1763 }
1764 }
b43ed44b
PN
1765
1766 // CRM-19792 : set necessary fields for payment processor
1767 CRM_Core_Payment_Form::mapParams($form->_bltID, $form->_params, $tempParams, TRUE);
1768
668ddfc2
EM
1769 $membershipContribution = CRM_Contribute_Form_Contribution_Confirm::processFormContribution($form,
1770 $tempParams,
0193ebdb 1771 $tempParams,
3febe800 1772 $contributionParams,
668ddfc2 1773 $financialType,
668ddfc2 1774 TRUE,
449f4c90 1775 $form->_bltID,
1776 $isRecur
668ddfc2 1777 );
0193ebdb 1778
be2fb01f 1779 $result = [];
15816cb4 1780
7f5ae3a0
AS
1781 // We're not processing the line item here because we are processing a membership.
1782 // To ensure processing of the correct parameters, replace relevant parameters
1783 // in $tempParams with those in $membershipContribution.
1784 $tempParams['amount_level'] = $membershipContribution->amount_level;
1785 $tempParams['total_amount'] = $membershipContribution->total_amount;
1786 $tempParams['tax_amount'] = $membershipContribution->tax_amount;
1787 $tempParams['contactID'] = $membershipContribution->contact_id;
1788 $tempParams['financialTypeID'] = $membershipContribution->financial_type_id;
1789 $tempParams['invoiceID'] = $membershipContribution->invoice_id;
1790 $tempParams['trxn_id'] = $membershipContribution->trxn_id;
1791 $tempParams['contributionID'] = $membershipContribution->id;
15816cb4 1792
0193ebdb 1793 if ($form->_values['is_monetary'] && !$form->_params['is_pay_later'] && $minimumFee > 0.0) {
1794 // At the moment our tests are calling this form in a way that leaves 'object' empty. For
1795 // now we compensate here.
1796 if (empty($form->_paymentProcessor['object'])) {
1797 $payment = Civi\Payment\System::singleton()->getByProcessor($this->_paymentProcessor);
1798 }
1799 else {
1800 $payment = $form->_paymentProcessor['object'];
1801 }
1802 $result = $payment->doPayment($tempParams, 'contribute');
1803 $form->set('membership_trx_id', $result['trxn_id']);
1804 $form->assign('membership_trx_id', $result['trxn_id']);
0193ebdb 1805 }
1806
be2fb01f 1807 return [$membershipContribution, $result];
668ddfc2
EM
1808 }
1809
1810 /**
8bc79dfc
EM
1811 * Is the payment a pending payment.
1812 *
1813 * We are moving towards always creating as pending and updating at the end (based on payment), so this should be
1814 * an interim refactoring. It was shared with another unrelated form & some parameters may not apply to this form.
1815 *
8bc79dfc
EM
1816 * @return bool
1817 */
1818 protected function getIsPending() {
0f2b049e 1819 // The concept of contributeMode is deprecated.
1820 // the is_monetary concept probably should be too as it can be calculated from
1821 // the existence of 'amount' & seems fragile.
f1b56c48 1822 if (((isset($this->_contributeMode)) || !empty($this->_params['is_pay_later'])
8bc79dfc
EM
1823 ) &&
1824 (($this->_values['is_monetary'] && $this->_amount > 0.0))
1825 ) {
1826 return TRUE;
1827 }
1828 return FALSE;
1829 }
1830
fb49fa48 1831 /**
5e4f7f74 1832 * Are we going to do 2 financial transactions.
fb49fa48 1833 *
5e4f7f74
EM
1834 * Ie the membership block supports a separate transactions AND the contribution form has been configured for a
1835 * contribution
81355da3 1836 * transaction AND a membership transaction AND the payment processor supports double financial transactions (ie. NOT doTransferCheckout style)
fb49fa48 1837 *
014c4014 1838 * @param int $formID
fb49fa48
EM
1839 * @param bool $amountBlockActiveOnForm
1840 *
1841 * @return bool
1842 */
1843 public function isSeparateMembershipTransaction($formID, $amountBlockActiveOnForm) {
1844 $memBlockDetails = CRM_Member_BAO_Membership::getMembershipBlock($formID);
1845 if (!empty($memBlockDetails['is_separate_payment']) && $amountBlockActiveOnForm) {
1846 return TRUE;
1847 }
1848 return FALSE;
1849 }
df6c4f28
EM
1850
1851 /**
5e4f7f74
EM
1852 * This function sets the fields.
1853 *
df6c4f28
EM
1854 * - $this->_params['amount_level']
1855 * - $this->_params['selectMembership']
1856 * And under certain circumstances sets
1857 * $this->_params['amount'] = null;
1858 *
100fef9d 1859 * @param int $priceSetID
df6c4f28
EM
1860 */
1861 public function setFormAmountFields($priceSetID) {
1862 $isQuickConfig = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_params['priceSetId'], 'is_quick_config');
1863 $priceField = new CRM_Price_DAO_PriceField();
1864 $priceField->price_set_id = $priceSetID;
1865 $priceField->orderBy('weight');
1866 $priceField->find();
06b4ee3e 1867 $paramWeDoNotUnderstand = NULL;
df6c4f28
EM
1868
1869 while ($priceField->fetch()) {
df6c4f28
EM
1870 if ($priceField->name == "contribution_amount") {
1871 $paramWeDoNotUnderstand = $priceField->id;
1872 }
1873 if ($isQuickConfig && !empty($this->_params["price_{$priceField->id}"])) {
1874 if ($this->_values['fee'][$priceField->id]['html_type'] != 'Text') {
c039f658 1875 // @todo - stop setting amount level in this function & call the CRM_Price_BAO_PriceSet::getAmountLevel
1876 // function to get correct amount level consistently. Remove setting of the amount level in
1877 // CRM_Price_BAO_PriceSet::processAmount. Extend the unit tests in CRM_Price_BAO_PriceSetTest
1878 // to cover all variants.
df6c4f28
EM
1879 $this->_params['amount_level'] = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue',
1880 $this->_params["price_{$priceField->id}"], 'label');
1881 }
1882 if ($priceField->name == "membership_amount") {
1883 $this->_params['selectMembership'] = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue',
1884 $this->_params["price_{$priceField->id}"], 'membership_type_id');
1885 }
5e4f7f74
EM
1886 }
1887 // If separate payment we set contribution amount to be null, so that it will not show contribution amount same
1888 // as membership amount.
df6c4f28
EM
1889 // @todo - this needs more documentation - it appears the setting to null is tied up with separate membership payments
1890 // but the circumstances are very confusing. Many of these conditions are repeated in the next conditional
1891 // so we should merge them together
1892 // the quick config seems like a red-herring - if this is about a separate membership payment then there
f64a217a 1893 // are 2 types of line items - membership ones & non-membership ones - regardless of whether quick config is set
df6c4f28
EM
1894 elseif (
1895 CRM_Utils_Array::value('is_separate_payment', $this->_membershipBlock)
1896 && !empty($this->_values['fee'][$priceField->id])
1897 && ($this->_values['fee'][$priceField->id]['name'] == "other_amount")
1898 && CRM_Utils_Array::value("price_{$paramWeDoNotUnderstand}", $this->_params) < 1
1899 && empty($this->_params["price_{$priceField->id}"])
1900 ) {
a13f3d8c 1901 $this->_params['amount'] = NULL;
df6c4f28
EM
1902 }
1903
1904 // Fix for CRM-14375 - If we are using separate payments and "no
1905 // thank you" is selected for the additional contribution, set
1906 // contribution amount to be null, so that it will not show
1907 // contribution amount same as membership amount.
1908 //@todo - merge with section above
1909 if ($this->_membershipBlock['is_separate_payment']
3c0201c9 1910 && !empty($this->_values['fee'][$priceField->id])
df6c4f28
EM
1911 && CRM_Utils_Array::value('name', $this->_values['fee'][$priceField->id]) == 'contribution_amount'
1912 && CRM_Utils_Array::value("price_{$priceField->id}", $this->_params) == '-1'
1913 ) {
a13f3d8c 1914 $this->_params['amount'] = NULL;
df6c4f28
EM
1915 }
1916 }
1917 }
be26f3e0 1918
03110609 1919 /**
5e4f7f74
EM
1920 * Submit function.
1921 *
03110609
EM
1922 * @param array $params
1923 *
1924 * @throws CiviCRM_API3_Exception
1925 */
00be9182 1926 public static function submit($params) {
be26f3e0
EM
1927 $form = new CRM_Contribute_Form_Contribution_Confirm();
1928 $form->_id = $params['id'];
75637f22 1929
f64a217a
EM
1930 CRM_Contribute_BAO_ContributionPage::setValues($form->_id, $form->_values);
1931 $form->_separateMembershipPayment = CRM_Contribute_BAO_ContributionPage::getIsMembershipPayment($form->_id);
be26f3e0
EM
1932 //this way the mocked up controller ignores the session stuff
1933 $_SERVER['REQUEST_METHOD'] = 'GET';
1934 $form->controller = new CRM_Contribute_Controller_Contribution();
1935 $params['invoiceID'] = md5(uniqid(rand(), TRUE));
1936 $paramsProcessedForForm = $form->_params = self::getFormParams($params['id'], $params);
f64a217a 1937 $form->_amount = $params['amount'];
870156d6 1938 // hack these in for test support.
1939 $form->_fields['billing_first_name'] = 1;
1940 $form->_fields['billing_last_name'] = 1;
dccd9f4f 1941 // CRM-18854 - Set form values to allow pledge to be created for api test.
de6c59ca 1942 if (!empty($params['pledge_block_id'])) {
3044f490 1943 $form->_values['pledge_id'] = CRM_Utils_Array::value('pledge_id', $params, NULL);
dccd9f4f
ERL
1944 $form->_values['pledge_block_id'] = $params['pledge_block_id'];
1945 $pledgeBlock = CRM_Pledge_BAO_PledgeBlock::getPledgeBlock($params['id']);
1946 $form->_values['max_reminders'] = $pledgeBlock['max_reminders'];
1947 $form->_values['initial_reminder_day'] = $pledgeBlock['initial_reminder_day'];
1948 $form->_values['additional_reminder_day'] = $pledgeBlock['additional_reminder_day'];
1949 $form->_values['is_email_receipt'] = FALSE;
1950 }
be26f3e0
EM
1951 $priceSetID = $form->_params['priceSetId'] = $paramsProcessedForForm['price_set_id'];
1952 $priceFields = CRM_Price_BAO_PriceSet::getSetDetail($priceSetID);
f64a217a
EM
1953 $priceSetFields = reset($priceFields);
1954 $form->_values['fee'] = $priceSetFields['fields'];
5624f515 1955 $form->_priceSetId = $priceSetID;
be26f3e0 1956 $form->setFormAmountFields($priceSetID);
be2fb01f 1957 $capabilities = [];
18135422 1958 if ($form->_mode) {
1959 $capabilities[] = (ucfirst($form->_mode) . 'Mode');
1960 }
1961 $form->_paymentProcessors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors($capabilities);
04b24bb5 1962 $form->_params['payment_processor_id'] = isset($params['payment_processor_id']) ? $params['payment_processor_id'] : 0;
1963 if ($form->_params['payment_processor_id'] !== '') {
1964 // It can be blank with a $0 transaction - then no processor needs to be selected
1965 $form->_paymentProcessor = $form->_paymentProcessors[$form->_params['payment_processor_id']];
1966 }
e02d7e96 1967 if (!empty($params['payment_processor_id'])) {
0f2b049e 1968 // The concept of contributeMode is deprecated as is the billing_mode concept.
a13f3d8c 1969 if ($form->_paymentProcessor['billing_mode'] == 1) {
e6fa4056
EM
1970 $form->_contributeMode = 'direct';
1971 }
1972 else {
1973 $form->_contributeMode = 'notify';
1974 }
d25e4224 1975 }
65e172a3 1976
ed781038
JP
1977 if (!empty($params['useForMember'])) {
1978 $form->set('useForMember', 1);
1979 $form->_useForMember = 1;
1980 }
be26f3e0 1981 $priceFields = $priceFields[$priceSetID]['fields'];
be2fb01f 1982 $lineItems = [];
f436577a 1983 CRM_Price_BAO_PriceSet::processAmount($priceFields, $paramsProcessedForForm, $lineItems, 'civicrm_contribution', $priceSetID);
be2fb01f
CW
1984 $form->_lineItem = [$priceSetID => $lineItems];
1985 $membershipPriceFieldIDs = [];
65e172a3 1986 foreach ((array) $lineItems as $lineItem) {
1987 if (!empty($lineItem['membership_type_id'])) {
1988 $form->set('useForMember', 1);
1989 $form->_useForMember = 1;
1990 $membershipPriceFieldIDs['id'] = $priceSetID;
1991 $membershipPriceFieldIDs[] = $lineItem['price_field_value_id'];
1992 }
1993 }
1994 $form->set('memberPriceFieldIDS', $membershipPriceFieldIDs);
35bdddf0 1995 $form->setRecurringMembershipParams();
75637f22 1996 $form->processFormSubmission(CRM_Utils_Array::value('contact_id', $params));
be26f3e0
EM
1997 }
1998
1999 /**
ceb9fecb
EM
2000 * Helper function for static submit function.
2001 *
2002 * Set relevant params - help us to build up an array that we can pass in.
5e4f7f74 2003 *
100fef9d 2004 * @param int $id
be26f3e0
EM
2005 * @param array $params
2006 *
2007 * @return array
2008 * @throws CiviCRM_API3_Exception
2009 */
00be9182 2010 public static function getFormParams($id, array $params) {
a13f3d8c 2011 if (!isset($params['is_pay_later'])) {
e02d7e96 2012 if (!empty($params['payment_processor_id'])) {
d25e4224
DG
2013 $params['is_pay_later'] = 0;
2014 }
04b24bb5 2015 elseif ($params['amount'] !== 0) {
be2fb01f 2016 $params['is_pay_later'] = civicrm_api3('contribution_page', 'getvalue', [
a13f3d8c 2017 'id' => $id,
21dfd5f5 2018 'return' => 'is_pay_later',
be2fb01f 2019 ]);
d25e4224 2020 }
be26f3e0 2021 }
a13f3d8c 2022 if (empty($params['price_set_id'])) {
be26f3e0
EM
2023 $params['price_set_id'] = CRM_Price_BAO_PriceSet::getFor('civicrm_contribution_page', $params['id']);
2024 }
2025 return $params;
2026 }
96025800 2027
75637f22
EM
2028 /**
2029 * Post form submission handling.
2030 *
2031 * This is also called from the test suite.
2032 *
2033 * @param int $contactID
2034 *
2035 * @return array
2036 */
2037 protected function processFormSubmission($contactID) {
858f7096 2038 if (!isset($this->_params['payment_processor_id'])) {
2039 // If there is no processor we are using the pay-later manual pseudo-processor.
2040 // (note it might make sense to make this a row in the processor table in the db).
2041 $this->_params['payment_processor_id'] = 0;
2042 }
036c6315 2043 if (isset($this->_params['payment_processor_id']) && $this->_params['payment_processor_id'] === 0) {
75637f22
EM
2044 $this->_params['is_pay_later'] = $isPayLater = TRUE;
2045 }
58466af1 2046
2047 if (!empty($this->_ccid)) {
2048 $this->_params['contribution_id'] = $this->_ccid;
2049 }
67c998f4
JP
2050 //Set email-bltID if pre/post profile contains an email.
2051 if ($this->_emailExists == TRUE) {
2052 foreach ($this->_params as $key => $val) {
2053 if (substr($key, 0, 6) == 'email-' && empty($this->_params["email-{$this->_bltID}"])) {
2054 $this->_params["email-{$this->_bltID}"] = $this->_params[$key];
2055 }
2056 }
2057 }
75637f22
EM
2058 // add a description field at the very beginning
2059 $this->_params['description'] = ts('Online Contribution') . ': ' . (($this->_pcpInfo['title']) ? $this->_pcpInfo['title'] : $this->_values['title']);
2060
2061 $this->_params['accountingCode'] = CRM_Utils_Array::value('accountingCode', $this->_values);
2062
2063 // fix currency ID
2064 $this->_params['currencyID'] = CRM_Core_Config::singleton()->defaultCurrency;
2065
a55e39e9 2066 CRM_Contribute_Form_AbstractEditPayment::formatCreditCardDetails($this->_params);
2067
dccd9f4f 2068 // CRM-18854
cdc7779f 2069 if (CRM_Utils_Array::value('is_pledge', $this->_params) && !CRM_Utils_Array::value('pledge_id', $this->_values) && CRM_Utils_Array::value('adjust_recur_start_date', $this->_values)) {
dccd9f4f 2070 $pledgeBlock = CRM_Pledge_BAO_PledgeBlock::getPledgeBlock($this->_id);
d9a9ea3b
E
2071 if (CRM_Utils_Array::value('start_date', $this->_params) || !CRM_Utils_Array::value('is_pledge_start_date_visible', $pledgeBlock)
2072 || !CRM_Utils_Array::value('is_pledge_start_date_editable', $pledgeBlock)) {
dccd9f4f
ERL
2073 $pledgeStartDate = CRM_Utils_Array::value('start_date', $this->_params, NULL);
2074 $this->_params['receive_date'] = CRM_Pledge_BAO_Pledge::getPledgeStartDate($pledgeStartDate, $pledgeBlock);
2075 $recurParams = CRM_Pledge_BAO_Pledge::buildRecurParams($this->_params);
2076 $this->_params = array_merge($this->_params, $recurParams);
2077 }
2078 }
2079
75637f22
EM
2080 //carry payment processor id.
2081 if (CRM_Utils_Array::value('id', $this->_paymentProcessor)) {
2082 $this->_params['payment_processor_id'] = $this->_paymentProcessor['id'];
2083 }
f85b8063
KJ
2084
2085 $premiumParams = $membershipParams = $params = $this->_params;
75637f22
EM
2086 if (!empty($params['image_URL'])) {
2087 CRM_Contact_BAO_Contact::processImageParams($params);
2088 }
f85b8063 2089
be2fb01f 2090 $fields = ['email-Primary' => 1];
75637f22
EM
2091
2092 // get the add to groups
be2fb01f 2093 $addToGroups = [];
75637f22
EM
2094
2095 // now set the values for the billing location.
2096 foreach ($this->_fields as $name => $value) {
2097 $fields[$name] = 1;
2098
2099 // get the add to groups for uf fields
2100 if (!empty($value['add_to_group_id'])) {
2101 $addToGroups[$value['add_to_group_id']] = $value['add_to_group_id'];
2102 }
2103 }
2104
bddc8a28 2105 $fields = $this->formatParamsForPaymentProcessor($fields);
75637f22
EM
2106
2107 // billing email address
2108 $fields["email-{$this->_bltID}"] = 1;
2109
75637f22
EM
2110 // if onbehalf-of-organization contribution, take out
2111 // organization params in a separate variable, to make sure
2112 // normal behavior is continued. And use that variable to
2113 // process on-behalf-of functionality.
2f44fc96 2114 if (!empty($this->_values['onbehalf_profile_id']) && empty($this->_ccid)) {
be2fb01f
CW
2115 $behalfOrganization = [];
2116 $orgFields = ['organization_name', 'organization_id', 'org_option'];
75637f22
EM
2117 foreach ($orgFields as $fld) {
2118 if (array_key_exists($fld, $params)) {
2119 $behalfOrganization[$fld] = $params[$fld];
2120 unset($params[$fld]);
2121 }
2122 }
2123
2124 if (is_array($params['onbehalf']) && !empty($params['onbehalf'])) {
2125 foreach ($params['onbehalf'] as $fld => $values) {
2126 if (strstr($fld, 'custom_')) {
2127 $behalfOrganization[$fld] = $values;
2128 }
2129 elseif (!(strstr($fld, '-'))) {
be2fb01f 2130 if (in_array($fld, [
75637f22
EM
2131 'contribution_campaign_id',
2132 'member_campaign_id',
be2fb01f 2133 ])) {
75637f22
EM
2134 $fld = 'campaign_id';
2135 }
2136 else {
2137 $behalfOrganization[$fld] = $values;
2138 }
2139 $this->_params[$fld] = $values;
2140 }
2141 }
2142 }
2143
2144 if (array_key_exists('onbehalf_location', $params) && is_array($params['onbehalf_location'])) {
2145 foreach ($params['onbehalf_location'] as $block => $vals) {
2146 //fix for custom data (of type checkbox, multi-select)
2147 if (substr($block, 0, 7) == 'custom_') {
2148 continue;
2149 }
2150 // fix the index of block elements
2151 if (is_array($vals)) {
2152 foreach ($vals as $key => $val) {
2153 //dont adjust the index of address block as
2154 //it's index is WRT to location type
2155 $newKey = ($block == 'address') ? $key : ++$key;
2156 $behalfOrganization[$block][$newKey] = $val;
2157 }
2158 }
2159 }
2160 unset($params['onbehalf_location']);
2161 }
2162 if (!empty($params['onbehalf[image_URL]'])) {
2163 $behalfOrganization['image_URL'] = $params['onbehalf[image_URL]'];
2164 }
2165 }
2166
2167 // check for profile double opt-in and get groups to be subscribed
2168 $subscribeGroupIds = CRM_Core_BAO_UFGroup::getDoubleOptInGroupIds($params, $contactID);
2169
2170 // since we are directly adding contact to group lets unset it from mailing
2171 if (!empty($addToGroups)) {
2172 foreach ($addToGroups as $groupId) {
2173 if (isset($subscribeGroupIds[$groupId])) {
2174 unset($subscribeGroupIds[$groupId]);
2175 }
2176 }
2177 }
2178
2179 foreach ($addToGroups as $k) {
2180 if (array_key_exists($k, $subscribeGroupIds)) {
2181 unset($addToGroups[$k]);
2182 }
2183 }
2184
2185 if (empty($contactID)) {
2186 $dupeParams = $params;
2187 if (!empty($dupeParams['onbehalf'])) {
2188 unset($dupeParams['onbehalf']);
2189 }
2190 if (!empty($dupeParams['honor'])) {
2191 unset($dupeParams['honor']);
2192 }
2193
be2fb01f 2194 $contactID = CRM_Contact_BAO_Contact::getFirstDuplicateContact($dupeParams, 'Individual', 'Unsupervised', [], FALSE);
75637f22
EM
2195
2196 // Fetch default greeting id's if creating a contact
2197 if (!$contactID) {
2198 foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) {
2199 if (!isset($params[$greeting])) {
2200 $params[$greeting] = CRM_Contact_BAO_Contact_Utils::defaultGreeting('Individual', $greeting);
2201 }
2202 }
2203 }
2204 $contactType = NULL;
2205 }
2206 else {
2207 $contactType = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $contactID, 'contact_type');
2208 }
43bc5eb5
AE
2209
2210 // sudoman hack: re-insert filtered group memberships
7918286c
AE
2211 if (isset($this->_fields['group'])) {
2212 $params = CRM_Contact_Form_Edit_TagsAndGroups::reInsertFilteredGroupMemberships([$this->_fields['group']['group_id']], $contactID, TRUE, $params);
2213 }
43bc5eb5 2214
75637f22
EM
2215 $contactID = CRM_Contact_BAO_Contact::createProfileContact(
2216 $params,
2217 $fields,
2218 $contactID,
2219 $addToGroups,
2220 NULL,
2221 $contactType,
2222 TRUE
2223 );
2224
2225 // Make the contact ID associated with the contribution available at the Class level.
2226 // Also make available to the session.
2227 //@todo consider handling this in $this->getContactID();
2228 $this->set('contactID', $contactID);
2229 $this->_contactID = $contactID;
2230
2231 //get email primary first if exist
be2fb01f 2232 $subscriptionEmail = ['email' => CRM_Utils_Array::value('email-Primary', $params)];
75637f22
EM
2233 if (!$subscriptionEmail['email']) {
2234 $subscriptionEmail['email'] = CRM_Utils_Array::value("email-{$this->_bltID}", $params);
2235 }
2236 // subscribing contact to groups
2237 if (!empty($subscribeGroupIds) && $subscriptionEmail['email']) {
2238 CRM_Mailing_Event_BAO_Subscribe::commonSubscribe($subscribeGroupIds, $subscriptionEmail, $contactID);
2239 }
2240
2241 // If onbehalf-of-organization contribution / signup, add organization
2242 // and it's location.
a9653117 2243 if (isset($this->_values['onbehalf_profile_id']) &&
2244 isset($behalfOrganization['organization_name']) &&
2245 ($this->_values['is_for_organization'] == 2 ||
2246 !empty($this->_params['is_for_organization'])
2247 )
2248 ) {
be2fb01f 2249 $ufFields = [];
75637f22
EM
2250 foreach ($this->_fields['onbehalf'] as $name => $value) {
2251 $ufFields[$name] = 1;
2252 }
2253 self::processOnBehalfOrganization($behalfOrganization, $contactID, $this->_values,
2254 $this->_params, $ufFields
2255 );
2256 }
2257 elseif (!empty($this->_membershipContactID) && $contactID != $this->_membershipContactID) {
2258 // this is an onbehalf renew case for inherited membership. For e.g a permissioned member of household,
2259 // store current user id as related contact for later use for mailing / activity..
2260 $this->_values['related_contact'] = $contactID;
2261 $this->_params['related_contact'] = $contactID;
2262 // swap contact like we do for on-behalf-org case, so parent/primary membership is affected
2263 $contactID = $this->_membershipContactID;
2264 }
2265
2266 // lets store the contactID in the session
2267 // for things like tell a friend
2268 $session = CRM_Core_Session::singleton();
2269 if (!$session->get('userID')) {
2270 $session->set('transaction.userID', $contactID);
2271 }
2272 else {
2273 $session->set('transaction.userID', NULL);
2274 }
2275
2276 $this->_useForMember = $this->get('useForMember');
2277
2278 // store the fact that this is a membership and membership type is selected
c6f840fa 2279 if ($this->isMembershipSelected($membershipParams)) {
75637f22
EM
2280 if (!$this->_useForMember) {
2281 $this->assign('membership_assign', TRUE);
2282 $this->set('membershipTypeID', $this->_params['selectMembership']);
2283 }
2284
2285 if ($this->_action & CRM_Core_Action::PREVIEW) {
2286 $membershipParams['is_test'] = 1;
2287 }
2288 if ($this->_params['is_pay_later']) {
2289 $membershipParams['is_pay_later'] = 1;
2290 }
75637f22 2291
2dc204ea 2292 if (isset($this->_params['onbehalf_contact_id'])) {
2293 $membershipParams['onbehalf_contact_id'] = $this->_params['onbehalf_contact_id'];
2294 }
75637f22
EM
2295 //inherit campaign from contribution page.
2296 if (!array_key_exists('campaign_id', $membershipParams)) {
2297 $membershipParams['campaign_id'] = CRM_Utils_Array::value('campaign_id', $this->_values);
2298 }
2299
3be4a20e 2300 $this->_params = CRM_Core_Payment_Form::mapParams($this->_bltID, $this->_params, $membershipParams, TRUE);
f2bca231 2301 $this->doMembershipProcessing($contactID, $membershipParams, $premiumParams, $this->_lineItem);
75637f22
EM
2302 }
2303 else {
2304 // at this point we've created a contact and stored its address etc
2305 // all the payment processors expect the name and address to be in the
2306 // so we copy stuff over to first_name etc.
2307 $paymentParams = $this->_params;
f2bca231 2308 // Make it explict that we are letting the processConfirm function figure out the line items.
2309 $paymentParams['skipLineItem'] = 0;
75637f22 2310
1659de20
PN
2311 if (!isset($paymentParams['line_item'])) {
2312 $paymentParams['line_item'] = $this->_lineItem;
2313 }
2314
75637f22
EM
2315 if (!empty($paymentParams['onbehalf']) &&
2316 is_array($paymentParams['onbehalf'])
2317 ) {
2318 foreach ($paymentParams['onbehalf'] as $key => $value) {
2319 if (strstr($key, 'custom_')) {
2320 $this->_params[$key] = $value;
2321 }
2322 }
75637f22 2323 }
10490499 2324
a8a4259e 2325 $result = CRM_Contribute_BAO_Contribution_Utils::processConfirm($this, $paymentParams,
5fb28746 2326 $contactID,
46763692 2327 $this->wrangleFinancialTypeID($this->_values['financial_type_id']),
449f4c90 2328 ($this->_mode == 'test') ? 1 : 0,
10490499 2329 CRM_Utils_Array::value('is_recur', $paymentParams)
75637f22 2330 );
82583880 2331
0193ebdb 2332 if (empty($result['is_payment_failure'])) {
2333 // @todo move premium processing to complete transaction if it truly is an 'after' action.
2334 $this->postProcessPremium($premiumParams, $result['contribution']);
2335 }
2336 if (!empty($result['contribution'])) {
04b24bb5 2337 // It seems this line is hit when there is a zero dollar transaction & in tests, not sure when else.
0193ebdb 2338 $this->completeTransaction($result, $result['contribution']->id);
a8a4259e
EM
2339 }
2340 return $result;
75637f22
EM
2341 }
2342 }
2343
c6f840fa
MWMC
2344 /**
2345 * Return True/False if we have a membership selected on the contribution page
2346 * @param array $membershipParams
2347 *
2348 * @return bool
2349 */
2350 private function isMembershipSelected($membershipParams) {
2351 $priceFieldIds = $this->get('memberPriceFieldIDS');
2352 if ((!empty($membershipParams['selectMembership']) && $membershipParams['selectMembership'] != 'no_thanks')
2353 && empty($priceFieldIds)) {
2354 return TRUE;
2355 }
2356 else {
2357 $membershipParams = $this->getMembershipParamsFromPriceSet($membershipParams);
2358 }
2359 return !empty($membershipParams['selectMembership']);
2360 }
2361
2362 /**
2363 * Extract the selected memberships from a priceSet
2364 *
2365 * @param array $membershipParams
2366 *
2367 * @return array
2368 */
2369 private function getMembershipParamsFromPriceSet($membershipParams) {
2370 $priceFieldIds = $this->get('memberPriceFieldIDS');
2371 if (empty($priceFieldIds)) {
2372 return $membershipParams;
2373 }
2374 $membershipParams['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceFieldIds['id'], 'financial_type_id');
2375 unset($priceFieldIds['id']);
2376 $membershipTypeIds = [];
2377 $membershipTypeTerms = [];
2378 foreach ($priceFieldIds as $priceFieldId) {
2379 $membershipTypeId = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue', $priceFieldId, 'membership_type_id');
2380 if ($membershipTypeId) {
2381 $membershipTypeIds[] = $membershipTypeId;
2382 $term = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue', $priceFieldId, 'membership_num_terms') ?: 1;
2383 $membershipTypeTerms[$membershipTypeId] = ($term > 1) ? $term : 1;
2384 }
2385 }
2386 $membershipParams['selectMembership'] = $membershipTypeIds;
2387 $membershipParams['types_terms'] = $membershipTypeTerms;
2388 return $membershipParams;
2389 }
2390
7dd9ca37
EM
2391 /**
2392 * Membership processing section.
2393 *
2394 * This is in a separate function as part of a move towards refactoring.
2395 *
2396 * @param int $contactID
2397 * @param array $membershipParams
2398 * @param array $premiumParams
f2bca231 2399 * @param array $formLineItems
7dd9ca37 2400 */
f2bca231 2401 protected function doMembershipProcessing($contactID, $membershipParams, $premiumParams, $formLineItems) {
0d9ff2d4 2402 // This could be set by a hook.
2403 if (!empty($this->_params['installments'])) {
2404 $membershipParams['installments'] = $this->_params['installments'];
2405 }
7dd9ca37
EM
2406 // added new parameter for cms user contact id, needed to distinguish behaviour for on behalf of sign-ups
2407 if (isset($this->_params['related_contact'])) {
2408 $membershipParams['cms_contactID'] = $this->_params['related_contact'];
2409 }
2410 else {
2411 $membershipParams['cms_contactID'] = $contactID;
2412 }
2413
2414 if (!empty($membershipParams['onbehalf']) &&
2415 is_array($membershipParams['onbehalf']) && !empty($membershipParams['onbehalf']['member_campaign_id'])
2416 ) {
2417 $this->_params['campaign_id'] = $membershipParams['onbehalf']['member_campaign_id'];
2418 }
2419
be2fb01f 2420 $customFieldsFormatted = $fieldTypes = [];
7dd9ca37
EM
2421 if (!empty($membershipParams['onbehalf']) &&
2422 is_array($membershipParams['onbehalf'])
2423 ) {
2424 foreach ($membershipParams['onbehalf'] as $key => $value) {
2425 if (strstr($key, 'custom_')) {
2426 $customFieldId = explode('_', $key);
2427 CRM_Core_BAO_CustomField::formatCustomField(
2428 $customFieldId[1],
2429 $customFieldsFormatted,
2430 $value,
2431 'Membership',
2432 NULL,
2433 $contactID
2434 );
2435 }
2436 }
be2fb01f 2437 $fieldTypes = ['Contact', 'Organization', 'Membership'];
7dd9ca37
EM
2438 }
2439
c6f840fa 2440 $membershipParams = $this->getMembershipParamsFromPriceSet($membershipParams);
7dd9ca37
EM
2441 if (!empty($membershipParams['selectMembership'])) {
2442 // CRM-12233
f2bca231 2443 $membershipLineItems = $formLineItems;
7dd9ca37 2444 if ($this->_separateMembershipPayment && $this->_values['amount_block_is_active']) {
be2fb01f 2445 $membershipLineItems = [];
7dd9ca37
EM
2446 foreach ($this->_values['fee'] as $key => $feeValues) {
2447 if ($feeValues['name'] == 'membership_amount') {
2448 $fieldId = $this->_params['price_' . $key];
2449 $membershipLineItems[$this->_priceSetId][$fieldId] = $this->_lineItem[$this->_priceSetId][$fieldId];
2450 unset($this->_lineItem[$this->_priceSetId][$fieldId]);
2451 break;
2452 }
2453 }
2454 }
4b6c8c1e 2455 try {
f2bca231 2456 $this->processMembership($membershipParams, $contactID, $customFieldsFormatted, $fieldTypes, $premiumParams, $membershipLineItems);
4b6c8c1e 2457 }
d23860d8
SP
2458 catch (\Civi\Payment\Exception\PaymentProcessorException $e) {
2459 CRM_Core_Session::singleton()->setStatus($e->getMessage());
2460 if (!empty($this->_contributionID)) {
2461 CRM_Contribute_BAO_Contribution::failPayment($this->_contributionID,
2462 $contactID, $e->getMessage());
2463 }
2464 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contribute/transact', "_qf_Main_display=true&qfKey={$this->_params['qfKey']}"));
2465 }
4b6c8c1e 2466 catch (CRM_Core_Exception $e) {
2467 CRM_Core_Session::singleton()->setStatus($e->getMessage());
2468 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contribute/transact', "_qf_Main_display=true&qfKey={$this->_params['qfKey']}"));
2469 }
7dd9ca37
EM
2470 if (!$this->_amount > 0.0 || !$membershipParams['amount']) {
2471 // we need to explicitly create a CMS user in case of free memberships
2472 // since it is done under processConfirm for paid memberships
2473 CRM_Contribute_BAO_Contribution_Utils::createCMSUser($membershipParams,
2474 $membershipParams['cms_contactID'],
2475 'email-' . $this->_bltID
2476 );
2477 }
2478 }
2479 }
2480
0193ebdb 2481 /**
2482 * Complete transaction if payment has been processed.
2483 *
2484 * Check the result for a success outcome & if paid then complete the transaction.
2485 *
2486 * Completing will trigger update of related entities and emails.
2487 *
2488 * @param array $result
2489 * @param int $contributionID
2490 *
ec7e3954
E
2491 * @throws \CiviCRM_API3_Exception
2492 * @throws \Exception
0193ebdb 2493 */
2494 protected function completeTransaction($result, $contributionID) {
2495 if (CRM_Utils_Array::value('payment_status_id', $result) == 1) {
2496 try {
be2fb01f 2497 civicrm_api3('contribution', 'completetransaction', [
a55e39e9 2498 'id' => $contributionID,
2499 'trxn_id' => CRM_Utils_Array::value('trxn_id', $result),
04b24bb5 2500 'payment_processor_id' => CRM_Utils_Array::value('payment_processor_id', $result, $this->_paymentProcessor['id']),
a55e39e9 2501 'is_transactional' => FALSE,
2502 'fee_amount' => CRM_Utils_Array::value('fee_amount', $result),
2503 'receive_date' => CRM_Utils_Array::value('receive_date', $result),
2504 'card_type_id' => CRM_Utils_Array::value('card_type_id', $result),
2505 'pan_truncation' => CRM_Utils_Array::value('pan_truncation', $result),
be2fb01f 2506 ]);
0193ebdb 2507 }
2508 catch (CiviCRM_API3_Exception $e) {
2509 if ($e->getErrorCode() != 'contribution_completed') {
2510 throw new CRM_Core_Exception('Failed to update contribution in database');
2511 }
2512 }
2513 }
2514 }
2515
77beddbe 2516 /**
2517 * Bounce the user back to retry when an error occurs.
2518 *
2519 * @param string $message
2520 */
2521 protected function bounceOnError($message) {
2522 CRM_Core_Session::singleton()
2523 ->setStatus(ts("Payment Processor Error message :") .
2524 $message);
2525 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contribute/transact',
2526 "_qf_Main_display=true&qfKey={$this->_params['qfKey']}"
2527 ));
2528 }
2529
6a488035 2530}