INFRA-132 - CRM/Contact - Convert single-line @param to multi-line
[civicrm-core.git] / CRM / Contribute / Form / AbstractEditPayment.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for processing a contribution
38 *
39 */
40class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form {
41 public $_mode;
42
43 public $_action;
44
45 public $_bltID;
46
47 public $_fields;
48
a6513ad5
EM
49 /**
50 * @var array current payment processor including a copy of the object in 'object' key
51 */
6a488035
TO
52 public $_paymentProcessor;
53 public $_recurPaymentProcessors;
54
dc913073 55 /**
100fef9d 56 * Array of processor options in the format id => array($id => $label)
dc913073
EM
57 * WARNING it appears that the format used to differ to this and there are places in the code that
58 * expect the old format. $this->_paymentProcessors provides the additional data which this
59 * array seems to have provided in the past
60 * @var array
61 */
6a488035
TO
62 public $_processors;
63
64 /**
100fef9d 65 * Available payment processors with full details including the key 'object' indexed by their id
dc913073
EM
66 * @var array
67 */
68 protected $_paymentProcessors = array();
69 /**
100fef9d 70 * The id of the contribution that we are processing
6a488035
TO
71 *
72 * @var int
6a488035
TO
73 */
74 public $_id;
75
76 /**
100fef9d 77 * The id of the premium that we are proceessing
6a488035
TO
78 *
79 * @var int
6a488035
TO
80 */
81 public $_premiumID = NULL;
4691b077
EM
82
83 /**
84 * @var CRM_Contribute_DAO_ContributionProduct
85 */
6a488035
TO
86 public $_productDAO = NULL;
87
88 /**
100fef9d 89 * The id of the note
6a488035
TO
90 *
91 * @var int
6a488035
TO
92 */
93 public $_noteID;
94
95 /**
100fef9d 96 * The id of the contact associated with this contribution
6a488035
TO
97 *
98 * @var int
6a488035
TO
99 */
100 public $_contactID;
101
102 /**
100fef9d 103 * The id of the pledge payment that we are processing
6a488035
TO
104 *
105 * @var int
6a488035
TO
106 */
107 public $_ppID;
108
109 /**
100fef9d 110 * The id of the pledge that we are processing
6a488035
TO
111 *
112 * @var int
6a488035
TO
113 */
114 public $_pledgeID;
115
116 /**
100fef9d 117 * Is this contribution associated with an online
6a488035
TO
118 * financial transaction
119 *
120 * @var boolean
6a488035
TO
121 */
122 public $_online = FALSE;
123
124 /**
125 * Stores all product option
126 *
127 * @var array
6a488035
TO
128 */
129 public $_options;
130
131 /**
100fef9d 132 * Stores the honor id
6a488035
TO
133 *
134 * @var int
6a488035
TO
135 */
136 public $_honorID = NULL;
137
138 /**
dde5a0ef 139 * Store the financial Type ID
6a488035
TO
140 *
141 * @var array
142 */
143 public $_contributionType;
144
145 /**
146 * The contribution values if an existing contribution
147 */
148 public $_values;
149
150 /**
151 * The pledge values if this contribution is associated with pledge
152 */
153 public $_pledgeValues;
154
155 public $_contributeMode = 'direct';
156
157 public $_context;
158
159 public $_compId;
160
161 /*
162 * Store the line items if price set used.
163 */
164 public $_lineItems;
165
0be0b79d
EM
166 /**
167 * Is this a backoffice form
168 * (this will affect whether paypal express code is displayed)
169 * @var bool
170 */
171 public $isBackOffice = TRUE;
172
6a488035 173 protected $_formType;
dde5a0ef
EM
174
175 /**
176 * @var mystery variable screaming out for documentation
177 */
6a488035
TO
178 protected $_cdType;
179
dde5a0ef 180 /**
100fef9d 181 * 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
182 * be all in this array in order like
183 * 'credit_card' => array('credit_card_number' ...
184 * 'billing_details' => array('first_name' ...
185 *
186 * such that both the fields and the order can be more easily altered by payment processors & other extensions
187 * @var array
188 */
189 public $billingFieldSets = array();
190
186c9c17 191 /**
100fef9d 192 * @param int $id
186c9c17 193 */
d5397f2f
PJ
194 public function showRecordLinkMesssage($id) {
195 $statusId = CRM_Core_DAO::getFieldValue('CRM_Contribute_BAO_Contribution', $id, 'contribution_status_id');
196 if (CRM_Contribute_PseudoConstant::contributionStatus($statusId, 'name') == 'Partially paid') {
197 if ($pid = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_ParticipantPayment', $id, 'participant_id', 'contribution_id')) {
198 $recordPaymentLink = CRM_Utils_System::url('civicrm/payment',
199 "reset=1&id={$pid}&cid={$this->_contactID}&action=add&component=event"
200 );
201 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');
202 }
203 }
204 }
205
186c9c17 206 /**
100fef9d 207 * @param int $id
186c9c17
EM
208 * @param $values
209 */
6a488035
TO
210 public function buildValuesAndAssignOnline_Note_Type($id, &$values) {
211 $ids = array();
212 $params = array('id' => $id);
213 CRM_Contribute_BAO_Contribution::getValues($params, $values, $ids);
214
215 //Check if this is an online transaction (financial_trxn.payment_processor_id NOT NULL)
216 $this->_online = FALSE;
217 $fids = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($id);
a7488080 218 if (!empty($fids['financialTrxnId'])) {
6a488035
TO
219 $this->_online = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $fids['financialTrxnId'], 'payment_processor_id');
220 }
eea16664 221
6a488035
TO
222 // Also don't allow user to update some fields for recurring contributions.
223 if (!$this->_online) {
224 $this->_online = CRM_Utils_Array::value('contribution_recur_id', $values);
225 }
eea16664 226
6a488035
TO
227 $this->assign('isOnline', $this->_online ? TRUE : FALSE);
228
6a488035
TO
229 //to get note id
230 $daoNote = new CRM_Core_BAO_Note();
231 $daoNote->entity_table = 'civicrm_contribution';
232 $daoNote->entity_id = $id;
233 if ($daoNote->find(TRUE)) {
234 $this->_noteID = $daoNote->id;
235 $values['note'] = $daoNote->note;
236 }
237 $this->_contributionType = $values['financial_type_id'];
6a488035
TO
238 }
239
240 /**
241 * @param string $type eg 'Contribution'
242 * @param string $subType
243 * @param int $entityId
244 */
245 public function applyCustomData($type, $subType, $entityId) {
246 $this->set('type', $type);
247 $this->set('subType', $subType);
248 $this->set('entityId', $entityId);
249
250 CRM_Custom_Form_CustomData::preProcess($this, NULL, $subType, 1, $type, $entityId);
251 CRM_Custom_Form_CustomData::buildQuickForm($this);
252 CRM_Custom_Form_CustomData::setDefaultValues($this);
253 }
254
4691b077 255 /**
100fef9d 256 * @param int $id
4691b077
EM
257 * @todo - this function is a long way, non standard of saying $dao = new CRM_Contribute_DAO_ContributionProduct(); $dao->id = $id; $dao->find();
258 */
6a488035
TO
259 public function assignPremiumProduct($id) { //to get Premium id
260 $sql = "
261SELECT *
262FROM civicrm_contribution_product
263WHERE contribution_id = {$id}
264";
265 $dao = CRM_Core_DAO::executeQuery($sql,
266 CRM_Core_DAO::$_nullArray
267 );
268 if ($dao->fetch()) {
269 $this->_premiumID = $dao->id;
270 $this->_productDAO = $dao;
271 }
272 $dao->free();
273 }
274
275 /**
276 * This function process contribution related objects.
03110609
EM
277 *
278 * @param integer $contributionId
279 * @param integer $statusId
280 * @param integer|null $previousStatusId
281 *
282 * @return null|string
6a488035
TO
283 */
284 protected function updateRelatedComponent($contributionId, $statusId, $previousStatusId = NULL) {
285 $statusMsg = NULL;
286 if (!$contributionId || !$statusId) {
287 return $statusMsg;
288 }
289
290 $params = array(
291 'contribution_id' => $contributionId,
292 'contribution_status_id' => $statusId,
293 'previous_contribution_status_id' => $previousStatusId,
294 );
295
296 $updateResult = CRM_Contribute_BAO_Contribution::transitionComponents($params);
297
298 if (!is_array($updateResult) ||
299 !($updatedComponents = CRM_Utils_Array::value('updatedComponents', $updateResult)) ||
300 !is_array($updatedComponents) ||
301 empty($updatedComponents)
302 ) {
303 return $statusMsg;
304 }
305
306 // get the user display name.
307 $sql = "
308 SELECT display_name as displayName
309 FROM civicrm_contact
310LEFT JOIN civicrm_contribution on (civicrm_contribution.contact_id = civicrm_contact.id )
311 WHERE civicrm_contribution.id = {$contributionId}";
312 $userDisplayName = CRM_Core_DAO::singleValueQuery($sql);
313
314 // get the status message for user.
315 foreach ($updatedComponents as $componentName => $updatedStatusId) {
316
317 if ($componentName == 'CiviMember') {
318 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
319 CRM_Member_PseudoConstant::membershipStatus()
320 );
321 if ($updatedStatusName == 'Cancelled') {
322 $statusMsg .= "<br />" . ts("Membership for %1 has been Cancelled.", array(1 => $userDisplayName));
323 }
324 elseif ($updatedStatusName == 'Expired') {
325 $statusMsg .= "<br />" . ts("Membership for %1 has been Expired.", array(1 => $userDisplayName));
326 }
d008a264 327 else {
13299a2b
JM
328 $endDate = CRM_Utils_Array::value('membership_end_date', $updateResult);
329 if ($endDate) {
d008a264
JM
330 $statusMsg .= "<br />" . ts("Membership for %1 has been updated. The membership End Date is %2.",
331 array(
332 1 => $userDisplayName,
333 2 => $endDate
334 )
335 );
336 }
6a488035
TO
337 }
338 }
339
340 if ($componentName == 'CiviEvent') {
341 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
342 CRM_Event_PseudoConstant::participantStatus()
343 );
344 if ($updatedStatusName == 'Cancelled') {
345 $statusMsg .= "<br />" . ts("Event Registration for %1 has been Cancelled.", array(1 => $userDisplayName));
346 }
347 elseif ($updatedStatusName == 'Registered') {
348 $statusMsg .= "<br />" . ts("Event Registration for %1 has been updated.", array(1 => $userDisplayName));
349 }
350 }
351
352 if ($componentName == 'CiviPledge') {
353 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
354 CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name')
355 );
356 if ($updatedStatusName == 'Cancelled') {
357 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Cancelled.", array(1 => $userDisplayName));
358 }
359 elseif ($updatedStatusName == 'Failed') {
360 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Failed.", array(1 => $userDisplayName));
361 }
362 elseif ($updatedStatusName == 'Completed') {
363 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been updated.", array(1 => $userDisplayName));
364 }
365 }
366 }
367
368 return $statusMsg;
369 }
370
371 /**
dc913073 372 * @return array of valid processors. The array resembles the DB table but also has 'object' as a key
fbcb6fba
EM
373 * @throws Exception
374 */
375 public function getValidProcessors() {
fbcb6fba
EM
376 $defaultID = NULL;
377 $capabilities = array('BackOffice');
52767de0
EM
378 if ($this->_mode) {
379 $capabilities[] = (ucfirst($this->_mode) . 'Mode');
fbcb6fba
EM
380 }
381 $processors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors($capabilities);
44b6505d
EM
382 return $processors;
383
6a488035
TO
384 }
385
386 /**
387 * Assign billing type id to bltID
388 *
44b6505d 389 * @throws CRM_Core_Exception
6a488035
TO
390 * @return void
391 */
392 public function assignBillingType() {
180409a4 393 $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id', array(), 'validate');
6a488035
TO
394 $this->_bltID = array_search('Billing', $locationTypes);
395 if (!$this->_bltID) {
44b6505d 396 throw new CRM_Core_Exception(ts('Please set a location type of %1', array(1 => 'Billing')));
6a488035
TO
397 }
398 $this->set('bltID', $this->_bltID);
399 $this->assign('bltID', $this->_bltID);
400 }
401
402 /**
403 * Assign $this->processors, $this->recurPaymentProcessors, and related Smarty variables
404 */
405 public function assignProcessors() {
406 //ensure that processor has a valid config
407 //only valid processors get display to user
44b6505d 408
6a488035 409 if ($this->_mode) {
52767de0 410 $this->assign('processorSupportsFutureStartDate', CRM_Financial_BAO_PaymentProcessor::hasPaymentProcessorSupporting(array('supportsFutureRecurStartDate')));
dc913073
EM
411 $this->_paymentProcessors = $this->getValidProcessors();
412 if (!isset($this->_paymentProcessor['id'])) {
413 // 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
414 $this->_paymentProcessor = reset($this->_paymentProcessors);
415 }
416 if (empty($this->_paymentProcessors)) {
44b6505d
EM
417 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)));
418 }
419 $this->_processors = array();
dc913073 420 foreach ($this->_paymentProcessors as $id => $processor) {
44b6505d
EM
421 $this->_processors[$id] = ts($processor['name']);
422 }
6a488035
TO
423 //get the valid recurring processors.
424 $recurring = CRM_Core_PseudoConstant::paymentProcessor(FALSE, FALSE, 'is_recur = 1');
425 $this->_recurPaymentProcessors = array_intersect_assoc($this->_processors, $recurring);
426 }
427 $this->assign('recurringPaymentProcessorIds',
428 empty($this->_recurPaymentProcessors) ? '' : implode(',', array_keys($this->_recurPaymentProcessors))
429 );
430
431 // this required to show billing block
03110609 432 // @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 433 $this->assign_by_ref('paymentProcessor', $processor);
6a488035
TO
434 }
435
186c9c17
EM
436 /**
437 * @param $submittedValues
438 *
439 * @return mixed
440 */
6a488035
TO
441 public function getCurrency($submittedValues) { // get current currency from DB or use default currency
442 $config = CRM_Core_Config::singleton();
443
444 $currentCurrency = CRM_Utils_Array::value('currency',
445 $this->_values,
446 $config->defaultCurrency
447 );
448
449 // use submitted currency if present else use current currency
450 $result = CRM_Utils_Array::value('currency',
451 $submittedValues,
452 $currentCurrency
453 );
454 return $result;
455 }
456
186c9c17 457 /**
100fef9d 458 * @param int $financialTypeId
186c9c17
EM
459 *
460 * @return array
461 */
6a488035
TO
462 public function getFinancialAccounts($financialTypeId) {
463 $financialAccounts = array();
464 CRM_Core_PseudoConstant::populate($financialAccounts,
465 'CRM_Financial_DAO_EntityFinancialAccount',
466 $all = TRUE,
467 $retrieve = 'financial_account_id',
468 $filter = NULL,
469 " entity_id = {$financialTypeId} ", NULL, 'account_relationship');
470 return $financialAccounts;
471 }
472
186c9c17 473 /**
100fef9d
CW
474 * @param int $financialTypeId
475 * @param int $relationTypeId
186c9c17
EM
476 *
477 * @return mixed
478 */
6a488035
TO
479 public function getFinancialAccount($financialTypeId, $relationTypeId) {
480 $financialAccounts = $this->getFinancialAccounts($financialTypeId);
481 return CRM_Utils_Array::value($relationTypeId, $financialAccounts);
482 }
483
484 public function preProcessPledge() {
485 //get the payment values associated with given pledge payment id OR check for payments due.
486 $this->_pledgeValues = array();
487 if ($this->_ppID) {
488 $payParams = array('id' => $this->_ppID);
489
490 CRM_Pledge_BAO_PledgePayment::retrieve($payParams, $this->_pledgeValues['pledgePayment']);
491 $this->_pledgeID = CRM_Utils_Array::value('pledge_id', $this->_pledgeValues['pledgePayment']);
492 $paymentStatusID = CRM_Utils_Array::value('status_id', $this->_pledgeValues['pledgePayment']);
493 $this->_id = CRM_Utils_Array::value('contribution_id', $this->_pledgeValues['pledgePayment']);
494
495 //get all status
496 $allStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
497 if (!($paymentStatusID == array_search('Pending', $allStatus) || $paymentStatusID == array_search('Overdue', $allStatus))) {
498 CRM_Core_Error::fatal(ts("Pledge payment status should be 'Pending' or 'Overdue'."));
499 }
500
501 //get the pledge values associated with given pledge payment.
502
503 $ids = array();
504 $pledgeParams = array('id' => $this->_pledgeID);
505 CRM_Pledge_BAO_Pledge::getValues($pledgeParams, $this->_pledgeValues, $ids);
506 $this->assign('ppID', $this->_ppID);
507 }
508 else {
509 // 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
510 if (isset($this->_contactID)) {
511 $contactPledges = CRM_Pledge_BAO_Pledge::getContactPledges($this->_contactID);
512
513 if (!empty($contactPledges)) {
514 $payments = $paymentsDue = NULL;
515 $multipleDue = FALSE;
516 foreach ($contactPledges as $key => $pledgeId) {
517 $payments = CRM_Pledge_BAO_PledgePayment::getOldestPledgePayment($pledgeId);
518 if ($payments) {
519 if ($paymentsDue) {
520 $multipleDue = TRUE;
521 break;
522 }
523 else {
524 $paymentsDue = $payments;
525 }
526 }
527 }
528 if ($multipleDue) {
529 // Show link to pledge tab since more than one pledge has a payment due
530 $pledgeTab = CRM_Utils_System::url('civicrm/contact/view',
531 "reset=1&force=1&cid={$this->_contactID}&selectedChild=pledge"
532 );
533 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');
534 }
535 elseif ($paymentsDue) {
536 // Show user link to oldest Pending or Overdue pledge payment
537 $ppAmountDue = CRM_Utils_Money::format($payments['amount'], $payments['currency']);
538 $ppSchedDate = CRM_Utils_Date::customFormat(CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment', $payments['id'], 'scheduled_date'));
539 if ($this->_mode) {
540 $ppUrl = CRM_Utils_System::url('civicrm/contact/view/contribution',
541 "reset=1&action=add&cid={$this->_contactID}&ppid={$payments['id']}&context=pledge&mode=live"
542 );
543 }
544 else {
545 $ppUrl = CRM_Utils_System::url('civicrm/contact/view/contribution',
546 "reset=1&action=add&cid={$this->_contactID}&ppid={$payments['id']}&context=pledge"
547 );
548 }
549 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(
550 1 => $ppUrl,
551 2 => $ppAmountDue,
552 3 => $ppSchedDate
553 )), ts('Notice'), 'alert');
554 }
555 }
556 }
557 }
558 }
559
186c9c17
EM
560 /**
561 * @param $submittedValues
562 *
563 * @return mixed
564 */
6a488035
TO
565 public function unsetCreditCardFields($submittedValues) {
566 //Offline Contribution.
567 $unsetParams = array(
568 'payment_processor_id',
569 "email-{$this->_bltID}",
570 'hidden_buildCreditCard',
571 'hidden_buildDirectDebit',
572 'billing_first_name',
573 'billing_middle_name',
574 'billing_last_name',
575 'street_address-5',
576 "city-{$this->_bltID}",
577 "state_province_id-{$this->_bltID}",
578 "postal_code-{$this->_bltID}",
579 "country_id-{$this->_bltID}",
580 'credit_card_number',
581 'cvv2',
582 'credit_card_exp_date',
583 'credit_card_type',
584 );
585 foreach ($unsetParams as $key) {
586 if (isset($submittedValues[$key])) {
587 unset($submittedValues[$key]);
588 }
589 }
590 return $submittedValues;
591 }
592
cc984198 593 /**
100fef9d 594 * Common block for setting up the parts of a form that relate to credit / debit card
cc984198
EM
595 * @throws Exception
596 */
597 protected function assignPaymentRelatedVariables() {
598 try {
99efbbf8
EM
599 if ($this->_contactID) {
600 list($this->userDisplayName, $this->userEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
601 $this->assign('displayName', $this->userDisplayName);
602 }
cc984198
EM
603 if ($this->_mode) {
604 $this->assignProcessors();
cc984198
EM
605
606 $this->assignBillingType();
607
608 $this->_fields = array();
609 CRM_Core_Payment_Form::setPaymentFieldsByProcessor($this, $this->_paymentProcessor);
610 }
611 }
612 catch (CRM_Core_Exception $e) {
613 CRM_Core_Error::fatal($e->getMessage());
614 }
615 }
6a488035 616}