Merge pull request #6799 from yashodha/CRM-17221
[civicrm-core.git] / CRM / Contribute / Form / AbstractEditPayment.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 usefusul, 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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33
34/**
35 * This class generates form components for processing a contribution
803d4bc0 36 * CRM-16229 - During the event registration bulk action via search we
37 * need to inherit CRM_Contact_Form_Task so that we can inherit functions
38 * like getContactIds and make use of controller state. But this is not possible
39 * because CRM_Event_Form_Participant inherits this class.
40 * Ideal situation would be something like
41 * CRM_Event_Form_Participant extends CRM_Contact_Form_Task,
42 * CRM_Contribute_Form_AbstractEditPayment
43 * However this is not possible. Currently PHP does not support multiple
44 * inheritance. So work around solution is to extend this class with
45 * CRM_Contact_Form_Task which further extends CRM_Core_Form.
6a488035
TO
46 *
47 */
5b7c9ebc 48class CRM_Contribute_Form_AbstractEditPayment extends CRM_Contact_Form_Task {
6a488035
TO
49 public $_mode;
50
51 public $_action;
52
53 public $_bltID;
54
a8215a8d 55 public $_fields = array();
6a488035 56
a6513ad5
EM
57 /**
58 * @var array current payment processor including a copy of the object in 'object' key
59 */
6a488035 60 public $_paymentProcessor;
7036a6d0
EM
61
62 /**
63 * Available recurring processors.
64 *
65 * @var array
66 */
67 public $_recurPaymentProcessors = array();
6a488035 68
dc913073 69 /**
100fef9d 70 * Array of processor options in the format id => array($id => $label)
dc913073
EM
71 * WARNING it appears that the format used to differ to this and there are places in the code that
72 * expect the old format. $this->_paymentProcessors provides the additional data which this
73 * array seems to have provided in the past
74 * @var array
75 */
6a488035
TO
76 public $_processors;
77
78 /**
100fef9d 79 * Available payment processors with full details including the key 'object' indexed by their id
dc913073
EM
80 * @var array
81 */
82 protected $_paymentProcessors = array();
bf4253e7
EM
83
84 /**
85 * Instance of the payment processor object.
86 *
87 * @var CRM_Core_Payment
88 */
89 protected $_paymentObject;
90
dc913073 91 /**
fe482240 92 * The id of the contribution that we are processing.
6a488035
TO
93 *
94 * @var int
6a488035
TO
95 */
96 public $_id;
97
98 /**
fe482240 99 * The id of the premium that we are proceessing.
6a488035
TO
100 *
101 * @var int
6a488035
TO
102 */
103 public $_premiumID = NULL;
4691b077
EM
104
105 /**
106 * @var CRM_Contribute_DAO_ContributionProduct
107 */
6a488035
TO
108 public $_productDAO = NULL;
109
110 /**
100fef9d 111 * The id of the note
6a488035
TO
112 *
113 * @var int
6a488035
TO
114 */
115 public $_noteID;
116
117 /**
100fef9d 118 * The id of the contact associated with this contribution
6a488035
TO
119 *
120 * @var int
6a488035
TO
121 */
122 public $_contactID;
123
124 /**
100fef9d 125 * The id of the pledge payment that we are processing
6a488035
TO
126 *
127 * @var int
6a488035
TO
128 */
129 public $_ppID;
130
131 /**
100fef9d 132 * The id of the pledge that we are processing
6a488035
TO
133 *
134 * @var int
6a488035
TO
135 */
136 public $_pledgeID;
137
138 /**
100fef9d 139 * Is this contribution associated with an online
6a488035
TO
140 * financial transaction
141 *
142 * @var boolean
6a488035
TO
143 */
144 public $_online = FALSE;
145
146 /**
147 * Stores all product option
148 *
149 * @var array
6a488035
TO
150 */
151 public $_options;
152
153 /**
100fef9d 154 * Stores the honor id
6a488035
TO
155 *
156 * @var int
6a488035
TO
157 */
158 public $_honorID = NULL;
159
160 /**
dde5a0ef 161 * Store the financial Type ID
6a488035
TO
162 *
163 * @var array
164 */
165 public $_contributionType;
166
167 /**
168 * The contribution values if an existing contribution
169 */
170 public $_values;
171
172 /**
173 * The pledge values if this contribution is associated with pledge
174 */
175 public $_pledgeValues;
176
177 public $_contributeMode = 'direct';
178
179 public $_context;
180
181 public $_compId;
182
d424ffde 183 /**
6a488035
TO
184 * Store the line items if price set used.
185 */
186 public $_lineItems;
187
0be0b79d
EM
188 /**
189 * Is this a backoffice form
190 * (this will affect whether paypal express code is displayed)
191 * @var bool
192 */
193 public $isBackOffice = TRUE;
194
6a488035 195 protected $_formType;
dde5a0ef 196
dde5a0ef 197 /**
100fef9d 198 * Array of fields to display on billingBlock.tpl - this is not fully implemented but basically intent is the panes/fieldsets on this page should
dde5a0ef
EM
199 * be all in this array in order like
200 * 'credit_card' => array('credit_card_number' ...
201 * 'billing_details' => array('first_name' ...
202 *
203 * such that both the fields and the order can be more easily altered by payment processors & other extensions
204 * @var array
205 */
206 public $billingFieldSets = array();
207
42e8b05c
EM
208 /**
209 * Pre process function with common actions.
210 */
211 public function preProcess() {
212 $this->_contactID = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
213 $this->assign('contactID', $this->_contactID);
9977ae61 214 CRM_Core_Resources::singleton()->addVars('coreForm', array('contact_id' => (int) $this->_contactID));
42e8b05c
EM
215 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'add');
216 }
217
186c9c17 218 /**
100fef9d 219 * @param int $id
186c9c17 220 */
d5397f2f
PJ
221 public function showRecordLinkMesssage($id) {
222 $statusId = CRM_Core_DAO::getFieldValue('CRM_Contribute_BAO_Contribution', $id, 'contribution_status_id');
223 if (CRM_Contribute_PseudoConstant::contributionStatus($statusId, 'name') == 'Partially paid') {
224 if ($pid = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_ParticipantPayment', $id, 'participant_id', 'contribution_id')) {
225 $recordPaymentLink = CRM_Utils_System::url('civicrm/payment',
226 "reset=1&id={$pid}&cid={$this->_contactID}&action=add&component=event"
227 );
228 CRM_Core_Session::setStatus(ts('Please use the <a href="%1">Record Payment</a> form if you have received an additional payment for this Partially paid contribution record.', array(1 => $recordPaymentLink)), ts('Notice'), 'alert');
229 }
230 }
231 }
232
186c9c17 233 /**
100fef9d 234 * @param int $id
186c9c17
EM
235 * @param $values
236 */
6a488035
TO
237 public function buildValuesAndAssignOnline_Note_Type($id, &$values) {
238 $ids = array();
239 $params = array('id' => $id);
240 CRM_Contribute_BAO_Contribution::getValues($params, $values, $ids);
241
242 //Check if this is an online transaction (financial_trxn.payment_processor_id NOT NULL)
243 $this->_online = FALSE;
244 $fids = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($id);
a7488080 245 if (!empty($fids['financialTrxnId'])) {
6a488035
TO
246 $this->_online = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $fids['financialTrxnId'], 'payment_processor_id');
247 }
eea16664 248
6a488035
TO
249 // Also don't allow user to update some fields for recurring contributions.
250 if (!$this->_online) {
251 $this->_online = CRM_Utils_Array::value('contribution_recur_id', $values);
252 }
eea16664 253
6a488035
TO
254 $this->assign('isOnline', $this->_online ? TRUE : FALSE);
255
6a488035
TO
256 //to get note id
257 $daoNote = new CRM_Core_BAO_Note();
258 $daoNote->entity_table = 'civicrm_contribution';
259 $daoNote->entity_id = $id;
260 if ($daoNote->find(TRUE)) {
261 $this->_noteID = $daoNote->id;
262 $values['note'] = $daoNote->note;
263 }
264 $this->_contributionType = $values['financial_type_id'];
6a488035
TO
265 }
266
267 /**
014c4014
TO
268 * @param string $type
269 * Eg 'Contribution'.
6a488035
TO
270 * @param string $subType
271 * @param int $entityId
272 */
273 public function applyCustomData($type, $subType, $entityId) {
274 $this->set('type', $type);
275 $this->set('subType', $subType);
276 $this->set('entityId', $entityId);
277
278 CRM_Custom_Form_CustomData::preProcess($this, NULL, $subType, 1, $type, $entityId);
279 CRM_Custom_Form_CustomData::buildQuickForm($this);
280 CRM_Custom_Form_CustomData::setDefaultValues($this);
281 }
282
4691b077 283 /**
100fef9d 284 * @param int $id
4691b077
EM
285 * @todo - this function is a long way, non standard of saying $dao = new CRM_Contribute_DAO_ContributionProduct(); $dao->id = $id; $dao->find();
286 */
6ea503d4 287 public function assignPremiumProduct($id) {
6a488035
TO
288 $sql = "
289SELECT *
290FROM civicrm_contribution_product
291WHERE contribution_id = {$id}
292";
293 $dao = CRM_Core_DAO::executeQuery($sql,
294 CRM_Core_DAO::$_nullArray
295 );
296 if ($dao->fetch()) {
297 $this->_premiumID = $dao->id;
298 $this->_productDAO = $dao;
299 }
300 $dao->free();
301 }
302
303 /**
304 * This function process contribution related objects.
03110609 305 *
014c4014
TO
306 * @param int $contributionId
307 * @param int $statusId
308 * @param int|null $previousStatusId
03110609
EM
309 *
310 * @return null|string
6a488035 311 */
35874a67 312 protected function updateRelatedComponent($contributionId, $statusId, $previousStatusId = NULL, $receiveDate = NULL) {
6a488035
TO
313 $statusMsg = NULL;
314 if (!$contributionId || !$statusId) {
315 return $statusMsg;
316 }
317
318 $params = array(
319 'contribution_id' => $contributionId,
320 'contribution_status_id' => $statusId,
321 'previous_contribution_status_id' => $previousStatusId,
35874a67 322 'receive_date' => $receiveDate,
6a488035
TO
323 );
324
325 $updateResult = CRM_Contribute_BAO_Contribution::transitionComponents($params);
326
327 if (!is_array($updateResult) ||
328 !($updatedComponents = CRM_Utils_Array::value('updatedComponents', $updateResult)) ||
329 !is_array($updatedComponents) ||
330 empty($updatedComponents)
331 ) {
332 return $statusMsg;
333 }
334
335 // get the user display name.
336 $sql = "
337 SELECT display_name as displayName
338 FROM civicrm_contact
339LEFT JOIN civicrm_contribution on (civicrm_contribution.contact_id = civicrm_contact.id )
340 WHERE civicrm_contribution.id = {$contributionId}";
341 $userDisplayName = CRM_Core_DAO::singleValueQuery($sql);
342
343 // get the status message for user.
344 foreach ($updatedComponents as $componentName => $updatedStatusId) {
345
346 if ($componentName == 'CiviMember') {
347 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
348 CRM_Member_PseudoConstant::membershipStatus()
349 );
350 if ($updatedStatusName == 'Cancelled') {
351 $statusMsg .= "<br />" . ts("Membership for %1 has been Cancelled.", array(1 => $userDisplayName));
352 }
353 elseif ($updatedStatusName == 'Expired') {
354 $statusMsg .= "<br />" . ts("Membership for %1 has been Expired.", array(1 => $userDisplayName));
355 }
d008a264 356 else {
13299a2b
JM
357 $endDate = CRM_Utils_Array::value('membership_end_date', $updateResult);
358 if ($endDate) {
d008a264 359 $statusMsg .= "<br />" . ts("Membership for %1 has been updated. The membership End Date is %2.",
353ffa53
TO
360 array(
361 1 => $userDisplayName,
362 2 => $endDate,
363 )
364 );
d008a264 365 }
6a488035
TO
366 }
367 }
368
369 if ($componentName == 'CiviEvent') {
370 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
371 CRM_Event_PseudoConstant::participantStatus()
372 );
373 if ($updatedStatusName == 'Cancelled') {
374 $statusMsg .= "<br />" . ts("Event Registration for %1 has been Cancelled.", array(1 => $userDisplayName));
375 }
376 elseif ($updatedStatusName == 'Registered') {
377 $statusMsg .= "<br />" . ts("Event Registration for %1 has been updated.", array(1 => $userDisplayName));
378 }
379 }
380
381 if ($componentName == 'CiviPledge') {
382 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
383 CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name')
384 );
385 if ($updatedStatusName == 'Cancelled') {
386 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Cancelled.", array(1 => $userDisplayName));
387 }
388 elseif ($updatedStatusName == 'Failed') {
389 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Failed.", array(1 => $userDisplayName));
390 }
391 elseif ($updatedStatusName == 'Completed') {
392 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been updated.", array(1 => $userDisplayName));
393 }
394 }
395 }
396
397 return $statusMsg;
398 }
399
400 /**
a6c01b45 401 * @return array
16b10e64 402 * Array of valid processors. The array resembles the DB table but also has 'object' as a key
fbcb6fba
EM
403 * @throws Exception
404 */
405 public function getValidProcessors() {
fbcb6fba
EM
406 $defaultID = NULL;
407 $capabilities = array('BackOffice');
52767de0
EM
408 if ($this->_mode) {
409 $capabilities[] = (ucfirst($this->_mode) . 'Mode');
fbcb6fba
EM
410 }
411 $processors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors($capabilities);
44b6505d
EM
412 return $processors;
413
6a488035
TO
414 }
415
6a488035
TO
416 /**
417 * Assign $this->processors, $this->recurPaymentProcessors, and related Smarty variables
418 */
419 public function assignProcessors() {
420 //ensure that processor has a valid config
421 //only valid processors get display to user
44b6505d 422
6a488035 423 if ($this->_mode) {
11d48665 424 $this->assign('processorSupportsFutureStartDate', CRM_Financial_BAO_PaymentProcessor::hasPaymentProcessorSupporting(array('FutureRecurStartDate')));
dc913073
EM
425 $this->_paymentProcessors = $this->getValidProcessors();
426 if (!isset($this->_paymentProcessor['id'])) {
427 // if the payment processor isn't set yet (as indicated by the presence of an id,) we'll grab the first one which should be the default
428 $this->_paymentProcessor = reset($this->_paymentProcessors);
429 }
430 if (empty($this->_paymentProcessors)) {
44b6505d
EM
431 throw new CRM_Core_Exception(ts('You will need to configure the %1 settings for your Payment Processor before you can submit a credit card transactions.', array(1 => $this->_mode)));
432 }
353ffa53 433 $this->_processors = array();
dc913073 434 foreach ($this->_paymentProcessors as $id => $processor) {
b9948b3c
EM
435 // @todo review this. The inclusion of this IF was to address test processors being incorrectly loaded.
436 // However the function $this->getValidProcessors() is expected to only return the processors relevant
437 // to the mode (using the actual id - ie. the id of the test processor for the test processor).
438 // for some reason there was a need to filter here per commit history - but this indicates a problem
439 // somewhere else.
bc8526fa
CW
440 if ($processor['is_test'] == ($this->_mode == 'test')) {
441 $this->_processors[$id] = ts($processor['name']);
442 if (!empty($processor['description'])) {
443 $this->_processors[$id] .= ' : ' . ts($processor['description']);
444 }
445 if ($processor['is_recur']) {
446 $this->_recurPaymentProcessors[$id] = $this->_processors[$id];
447 }
7036a6d0 448 }
44b6505d 449 }
071fee77 450 CRM_Financial_Form_Payment::addCreditCardJs();
6a488035
TO
451 }
452 $this->assign('recurringPaymentProcessorIds',
453 empty($this->_recurPaymentProcessors) ? '' : implode(',', array_keys($this->_recurPaymentProcessors))
454 );
455
456 // this required to show billing block
03110609 457 // @todo remove this assignment the billing block is now designed to be always included but will not show fieldsets unless those sets of fields are assigned
44b6505d 458 $this->assign_by_ref('paymentProcessor', $processor);
6a488035
TO
459 }
460
186c9c17 461 /**
6ea503d4
TO
462 * Get current currency from DB or use default currency.
463 *
186c9c17
EM
464 * @param $submittedValues
465 *
466 * @return mixed
467 */
6ea503d4 468 public function getCurrency($submittedValues) {
6a488035
TO
469 $config = CRM_Core_Config::singleton();
470
471 $currentCurrency = CRM_Utils_Array::value('currency',
472 $this->_values,
473 $config->defaultCurrency
474 );
475
476 // use submitted currency if present else use current currency
477 $result = CRM_Utils_Array::value('currency',
478 $submittedValues,
479 $currentCurrency
480 );
481 return $result;
482 }
483
186c9c17 484 /**
100fef9d 485 * @param int $financialTypeId
186c9c17
EM
486 *
487 * @return array
488 */
6a488035
TO
489 public function getFinancialAccounts($financialTypeId) {
490 $financialAccounts = array();
491 CRM_Core_PseudoConstant::populate($financialAccounts,
492 'CRM_Financial_DAO_EntityFinancialAccount',
493 $all = TRUE,
494 $retrieve = 'financial_account_id',
495 $filter = NULL,
496 " entity_id = {$financialTypeId} ", NULL, 'account_relationship');
497 return $financialAccounts;
498 }
499
186c9c17 500 /**
100fef9d
CW
501 * @param int $financialTypeId
502 * @param int $relationTypeId
186c9c17
EM
503 *
504 * @return mixed
505 */
6a488035
TO
506 public function getFinancialAccount($financialTypeId, $relationTypeId) {
507 $financialAccounts = $this->getFinancialAccounts($financialTypeId);
508 return CRM_Utils_Array::value($relationTypeId, $financialAccounts);
509 }
510
511 public function preProcessPledge() {
512 //get the payment values associated with given pledge payment id OR check for payments due.
513 $this->_pledgeValues = array();
514 if ($this->_ppID) {
515 $payParams = array('id' => $this->_ppID);
516
517 CRM_Pledge_BAO_PledgePayment::retrieve($payParams, $this->_pledgeValues['pledgePayment']);
518 $this->_pledgeID = CRM_Utils_Array::value('pledge_id', $this->_pledgeValues['pledgePayment']);
519 $paymentStatusID = CRM_Utils_Array::value('status_id', $this->_pledgeValues['pledgePayment']);
520 $this->_id = CRM_Utils_Array::value('contribution_id', $this->_pledgeValues['pledgePayment']);
521
522 //get all status
523 $allStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
524 if (!($paymentStatusID == array_search('Pending', $allStatus) || $paymentStatusID == array_search('Overdue', $allStatus))) {
525 CRM_Core_Error::fatal(ts("Pledge payment status should be 'Pending' or 'Overdue'."));
526 }
527
528 //get the pledge values associated with given pledge payment.
529
530 $ids = array();
531 $pledgeParams = array('id' => $this->_pledgeID);
532 CRM_Pledge_BAO_Pledge::getValues($pledgeParams, $this->_pledgeValues, $ids);
533 $this->assign('ppID', $this->_ppID);
534 }
535 else {
536 // Not making a pledge payment, so if adding a new contribution we should check if pledge payment(s) are due for this contact so we can alert the user. CRM-5206
537 if (isset($this->_contactID)) {
538 $contactPledges = CRM_Pledge_BAO_Pledge::getContactPledges($this->_contactID);
539
540 if (!empty($contactPledges)) {
541 $payments = $paymentsDue = NULL;
542 $multipleDue = FALSE;
543 foreach ($contactPledges as $key => $pledgeId) {
544 $payments = CRM_Pledge_BAO_PledgePayment::getOldestPledgePayment($pledgeId);
545 if ($payments) {
546 if ($paymentsDue) {
547 $multipleDue = TRUE;
548 break;
549 }
550 else {
551 $paymentsDue = $payments;
552 }
553 }
554 }
555 if ($multipleDue) {
556 // Show link to pledge tab since more than one pledge has a payment due
557 $pledgeTab = CRM_Utils_System::url('civicrm/contact/view',
558 "reset=1&force=1&cid={$this->_contactID}&selectedChild=pledge"
559 );
560 CRM_Core_Session::setStatus(ts('This contact has pending or overdue pledge payments. <a href="%1">Click here to view their Pledges tab</a> and verify whether this contribution should be applied as a pledge payment.', array(1 => $pledgeTab)), ts('Notice'), 'alert');
561 }
562 elseif ($paymentsDue) {
563 // Show user link to oldest Pending or Overdue pledge payment
564 $ppAmountDue = CRM_Utils_Money::format($payments['amount'], $payments['currency']);
565 $ppSchedDate = CRM_Utils_Date::customFormat(CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment', $payments['id'], 'scheduled_date'));
566 if ($this->_mode) {
567 $ppUrl = CRM_Utils_System::url('civicrm/contact/view/contribution',
568 "reset=1&action=add&cid={$this->_contactID}&ppid={$payments['id']}&context=pledge&mode=live"
569 );
570 }
571 else {
572 $ppUrl = CRM_Utils_System::url('civicrm/contact/view/contribution',
573 "reset=1&action=add&cid={$this->_contactID}&ppid={$payments['id']}&context=pledge"
574 );
575 }
576 CRM_Core_Session::setStatus(ts('This contact has a pending or overdue pledge payment of %2 which is scheduled for %3. <a href="%1">Click here to enter a pledge payment</a>.', array(
577 1 => $ppUrl,
578 2 => $ppAmountDue,
21dfd5f5 579 3 => $ppSchedDate,
6a488035
TO
580 )), ts('Notice'), 'alert');
581 }
582 }
583 }
584 }
585 }
586
186c9c17 587 /**
07f8d162 588 * @param array $submittedValues
186c9c17
EM
589 *
590 * @return mixed
591 */
6a488035
TO
592 public function unsetCreditCardFields($submittedValues) {
593 //Offline Contribution.
594 $unsetParams = array(
595 'payment_processor_id',
596 "email-{$this->_bltID}",
597 'hidden_buildCreditCard',
598 'hidden_buildDirectDebit',
599 'billing_first_name',
600 'billing_middle_name',
601 'billing_last_name',
602 'street_address-5',
603 "city-{$this->_bltID}",
604 "state_province_id-{$this->_bltID}",
605 "postal_code-{$this->_bltID}",
606 "country_id-{$this->_bltID}",
607 'credit_card_number',
608 'cvv2',
609 'credit_card_exp_date',
610 'credit_card_type',
611 );
612 foreach ($unsetParams as $key) {
613 if (isset($submittedValues[$key])) {
614 unset($submittedValues[$key]);
615 }
616 }
617 return $submittedValues;
618 }
619
cc984198 620 /**
100fef9d 621 * Common block for setting up the parts of a form that relate to credit / debit card
cc984198
EM
622 * @throws Exception
623 */
624 protected function assignPaymentRelatedVariables() {
625 try {
99efbbf8
EM
626 if ($this->_contactID) {
627 list($this->userDisplayName, $this->userEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
628 $this->assign('displayName', $this->userDisplayName);
629 }
cc984198
EM
630 if ($this->_mode) {
631 $this->assignProcessors();
cc984198
EM
632
633 $this->assignBillingType();
634
dfc68e82 635 CRM_Core_Payment_Form::setPaymentFieldsByProcessor($this, $this->_paymentProcessor, FALSE, TRUE);
cc984198
EM
636 }
637 }
638 catch (CRM_Core_Exception $e) {
639 CRM_Core_Error::fatal($e->getMessage());
640 }
641 }
96025800 642
3b8e6c3f 643 /**
644 * Begin post processing.
645 *
646 * This function aims to start to bring together common postProcessing functions.
647 *
648 * Eventually these are also shared with the front end forms & may need to be moved to where they can also
649 * access this function.
650 */
651 protected function beginPostProcess() {
ba2f3f65 652 if ($this->_mode) {
2c89742a 653 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment(
654 $this->_params['payment_processor_id'],
655 ($this->_mode == 'test')
656 );
ba2f3f65 657 if (in_array('credit_card_exp_date', array_keys($this->_params))) {
658 $this->_params['year'] = CRM_Core_Payment_Form::getCreditCardExpirationYear($this->_params);
659 $this->_params['month'] = CRM_Core_Payment_Form::getCreditCardExpirationMonth($this->_params);
660 }
661 $this->assign('credit_card_exp_date', CRM_Utils_Date::mysqlToIso(CRM_Utils_Date::format($this->_params['credit_card_exp_date'])));
662 $this->assign('credit_card_number',
663 CRM_Utils_System::mungeCreditCard($this->_params['credit_card_number'])
664 );
275fba6b 665 $this->assign('credit_card_type', CRM_Utils_Array::value('credit_card_type', $this->_params));
3b8e6c3f 666 }
3b8e6c3f 667 $this->_params['ip_address'] = CRM_Utils_System::ipAddress();
668 }
669
670
671 /**
672 * Add the billing address to the contact who paid.
673 *
674 * Note that this function works based on the presence or otherwise of billing fields & can be called regardless of
675 * whether they are 'expected' (due to assumptions about the payment processor type or the setting to collect billing
676 * for pay later.
677 */
678 protected function processBillingAddress() {
679 $fields = array();
680
681 $fields['email-Primary'] = 1;
682 $this->_params['email-5'] = $this->_params['email-Primary'] = $this->_contributorEmail;
683 // now set the values for the billing location.
684 foreach (array_keys($this->_fields) as $name) {
685 $fields[$name] = 1;
686 }
687
688 // also add location name to the array
689 $this->_params["address_name-{$this->_bltID}"] = CRM_Utils_Array::value('billing_first_name', $this->_params) . ' ' . CRM_Utils_Array::value('billing_middle_name', $this->_params) . ' ' . CRM_Utils_Array::value('billing_last_name', $this->_params);
690 $this->_params["address_name-{$this->_bltID}"] = trim($this->_params["address_name-{$this->_bltID}"]);
691
692 $fields["address_name-{$this->_bltID}"] = 1;
693
694 //ensure we don't over-write the payer's email with the member's email
695 if ($this->_contributorContactID == $this->_contactID) {
696 $fields["email-{$this->_bltID}"] = 1;
697 }
698
699 list($hasBillingField, $addressParams) = CRM_Contribute_BAO_Contribution::getPaymentProcessorReadyAddressParams($this->_params, $this->_bltID);
700 $nameFields = array('first_name', 'middle_name', 'last_name');
701
702 foreach ($nameFields as $name) {
703 $fields[$name] = 1;
704 if (array_key_exists("billing_$name", $this->_params)) {
705 $this->_params[$name] = $this->_params["billing_{$name}"];
706 $this->_params['preserveDBName'] = TRUE;
707 }
708 }
709
710 if ($hasBillingField) {
711 $addressParams = array_merge($this->_params, $addressParams);
712 //here we are setting up the billing contact - if different from the member they are already created
713 // but they will get billing details assigned
714 CRM_Contact_BAO_Contact::createProfileContact($addressParams, $fields,
715 $this->_contributorContactID, NULL, NULL,
716 CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_contactID, 'contact_type')
717 );
718 }
719 // Add additional parameters that the payment processors are used to receiving.
720 if (!empty($this->_params["billing_state_province_id-{$this->_bltID}"])) {
721 $this->_params["state_province-{$this->_bltID}"] = $this->_params["billing_state_province-{$this->_bltID}"] = CRM_Core_PseudoConstant::stateProvinceAbbreviation($this->_params["billing_state_province_id-{$this->_bltID}"]);
722 }
723 if (!empty($this->_params["billing_country_id-{$this->_bltID}"])) {
724 $this->_params["country-{$this->_bltID}"] = $this->_params["billing_country-{$this->_bltID}"] = CRM_Core_PseudoConstant::countryIsoCode($this->_params["billing_country_id-{$this->_bltID}"]);
725 }
726 }
727
6a488035 728}