Merge pull request #10155 from totten/master-pdf-save2
[civicrm-core.git] / CRM / Contribute / Form / AbstractEditPayment.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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
31 * @copyright CiviCRM LLC (c) 2004-2017
32 */
33
34 /**
35 * This class generates form components for processing a contribution
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.
46 *
47 */
48 class CRM_Contribute_Form_AbstractEditPayment extends CRM_Contact_Form_Task {
49 public $_mode;
50
51 public $_action;
52
53 public $_bltID;
54
55 public $_fields = array();
56
57 /**
58 * @var array current payment processor including a copy of the object in 'object' key
59 */
60 public $_paymentProcessor;
61
62 /**
63 * Available recurring processors.
64 *
65 * @var array
66 */
67 public $_recurPaymentProcessors = array();
68
69 /**
70 * Array of processor options in the format id => array($id => $label)
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 */
76 public $_processors;
77
78 /**
79 * Available payment processors with full details including the key 'object' indexed by their id
80 * @var array
81 */
82 protected $_paymentProcessors = array();
83
84 /**
85 * Instance of the payment processor object.
86 *
87 * @var CRM_Core_Payment
88 */
89 protected $_paymentObject;
90
91 /**
92 * The id of the contribution that we are processing.
93 *
94 * @var int
95 */
96 public $_id;
97
98 /**
99 * The id of the premium that we are proceessing.
100 *
101 * @var int
102 */
103 public $_premiumID = NULL;
104
105 /**
106 * @var CRM_Contribute_DAO_ContributionProduct
107 */
108 public $_productDAO = NULL;
109
110 /**
111 * The id of the note
112 *
113 * @var int
114 */
115 public $_noteID;
116
117 /**
118 * The id of the contact associated with this contribution
119 *
120 * @var int
121 */
122 public $_contactID;
123
124 /**
125 * The id of the pledge payment that we are processing
126 *
127 * @var int
128 */
129 public $_ppID;
130
131 /**
132 * The id of the pledge that we are processing
133 *
134 * @var int
135 */
136 public $_pledgeID;
137
138 /**
139 * Is this contribution associated with an online
140 * financial transaction
141 *
142 * @var boolean
143 */
144 public $_online = FALSE;
145
146 /**
147 * Stores all product option
148 *
149 * @var array
150 */
151 public $_options;
152
153 /**
154 * Stores the honor id
155 *
156 * @var int
157 */
158 public $_honorID = NULL;
159
160 /**
161 * Store the financial Type ID
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
183 /**
184 * Store the line items if price set used.
185 */
186 public $_lineItems;
187
188 /**
189 * Is this a backoffice form
190 *
191 * @var bool
192 */
193 public $isBackOffice = TRUE;
194
195 protected $_formType;
196
197 /**
198 * Payment instrument id for the transaction.
199 *
200 * @var int
201 */
202 public $paymentInstrumentID;
203
204 /**
205 * Array of fields to display on billingBlock.tpl - this is not fully implemented but basically intent is the panes/fieldsets on this page should
206 * be all in this array in order like
207 * 'credit_card' => array('credit_card_number' ...
208 * 'billing_details' => array('first_name' ...
209 *
210 * such that both the fields and the order can be more easily altered by payment processors & other extensions
211 * @var array
212 */
213 public $billingFieldSets = array();
214
215 /**
216 * Pre process function with common actions.
217 */
218 public function preProcess() {
219 $this->_contactID = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
220 $this->assign('contactID', $this->_contactID);
221 CRM_Core_Resources::singleton()->addVars('coreForm', array('contact_id' => (int) $this->_contactID));
222 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'add');
223 $this->_mode = empty($this->_mode) ? CRM_Utils_Request::retrieve('mode', 'String', $this) : $this->_mode;
224 }
225
226 /**
227 * @param int $id
228 */
229 public function showRecordLinkMesssage($id) {
230 $statusId = CRM_Core_DAO::getFieldValue('CRM_Contribute_BAO_Contribution', $id, 'contribution_status_id');
231 if (CRM_Contribute_PseudoConstant::contributionStatus($statusId, 'name') == 'Partially paid') {
232 if ($pid = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_ParticipantPayment', $id, 'participant_id', 'contribution_id')) {
233 $recordPaymentLink = CRM_Utils_System::url('civicrm/payment',
234 "reset=1&id={$pid}&cid={$this->_contactID}&action=add&component=event"
235 );
236 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');
237 }
238 }
239 }
240
241 /**
242 * @param int $id
243 * @param $values
244 */
245 public function buildValuesAndAssignOnline_Note_Type($id, &$values) {
246 $ids = array();
247 $params = array('id' => $id);
248 CRM_Contribute_BAO_Contribution::getValues($params, $values, $ids);
249
250 //Check if this is an online transaction (financial_trxn.payment_processor_id NOT NULL)
251 $this->_online = FALSE;
252 $fids = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($id);
253 if (!empty($fids['financialTrxnId'])) {
254 $this->_online = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $fids['financialTrxnId'], 'payment_processor_id');
255 }
256
257 // Also don't allow user to update some fields for recurring contributions.
258 if (!$this->_online) {
259 $this->_online = CRM_Utils_Array::value('contribution_recur_id', $values);
260 }
261
262 $this->assign('isOnline', $this->_online ? TRUE : FALSE);
263
264 //to get note id
265 $daoNote = new CRM_Core_BAO_Note();
266 $daoNote->entity_table = 'civicrm_contribution';
267 $daoNote->entity_id = $id;
268 if ($daoNote->find(TRUE)) {
269 $this->_noteID = $daoNote->id;
270 $values['note'] = $daoNote->note;
271 }
272 $this->_contributionType = $values['financial_type_id'];
273 }
274
275 /**
276 * @param string $type
277 * Eg 'Contribution'.
278 * @param string $subType
279 * @param int $entityId
280 */
281 public function applyCustomData($type, $subType, $entityId) {
282 $this->set('type', $type);
283 $this->set('subType', $subType);
284 $this->set('entityId', $entityId);
285
286 CRM_Custom_Form_CustomData::preProcess($this, NULL, $subType, 1, $type, $entityId);
287 CRM_Custom_Form_CustomData::buildQuickForm($this);
288 CRM_Custom_Form_CustomData::setDefaultValues($this);
289 }
290
291 /**
292 * @param int $id
293 * @todo - this function is a long way, non standard of saying $dao = new CRM_Contribute_DAO_ContributionProduct(); $dao->id = $id; $dao->find();
294 */
295 public function assignPremiumProduct($id) {
296 $sql = "
297 SELECT *
298 FROM civicrm_contribution_product
299 WHERE contribution_id = {$id}
300 ";
301 $dao = CRM_Core_DAO::executeQuery($sql,
302 CRM_Core_DAO::$_nullArray
303 );
304 if ($dao->fetch()) {
305 $this->_premiumID = $dao->id;
306 $this->_productDAO = $dao;
307 }
308 $dao->free();
309 }
310
311 /**
312 * @return array
313 * Array of valid processors. The array resembles the DB table but also has 'object' as a key
314 * @throws Exception
315 */
316 public function getValidProcessors() {
317 $capabilities = array('BackOffice');
318 if ($this->_mode) {
319 $capabilities[] = (ucfirst($this->_mode) . 'Mode');
320 }
321 $processors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors($capabilities);
322 return $processors;
323
324 }
325
326 /**
327 * Assign $this->processors, $this->recurPaymentProcessors, and related Smarty variables
328 */
329 public function assignProcessors() {
330 //ensure that processor has a valid config
331 //only valid processors get display to user
332 $this->assign('processorSupportsFutureStartDate', CRM_Financial_BAO_PaymentProcessor::hasPaymentProcessorSupporting(array('FutureRecurStartDate')));
333 $this->_paymentProcessors = $this->getValidProcessors();
334 if (!isset($this->_paymentProcessor['id'])) {
335 // 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
336 $this->_paymentProcessor = reset($this->_paymentProcessors);
337 }
338 if (!$this->_mode) {
339 $this->_paymentProcessor = $this->_paymentProcessors[0];
340 }
341 elseif (empty($this->_paymentProcessors) || array_keys($this->_paymentProcessors) === array(0)) {
342 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)));
343 }
344 $this->_processors = array();
345 foreach ($this->_paymentProcessors as $id => $processor) {
346 // @todo review this. The inclusion of this IF was to address test processors being incorrectly loaded.
347 // However the function $this->getValidProcessors() is expected to only return the processors relevant
348 // to the mode (using the actual id - ie. the id of the test processor for the test processor).
349 // for some reason there was a need to filter here per commit history - but this indicates a problem
350 // somewhere else.
351 if ($processor['is_test'] == ($this->_mode == 'test')) {
352 $this->_processors[$id] = ts($processor['name']);
353 if (!empty($processor['description'])) {
354 $this->_processors[$id] .= ' : ' . ts($processor['description']);
355 }
356 if ($processor['is_recur']) {
357 $this->_recurPaymentProcessors[$id] = $this->_processors[$id];
358 }
359 }
360 }
361 CRM_Financial_Form_Payment::addCreditCardJs($id);
362
363 $this->assign('recurringPaymentProcessorIds',
364 empty($this->_recurPaymentProcessors) ? '' : implode(',', array_keys($this->_recurPaymentProcessors))
365 );
366
367 // this required to show billing block
368 // @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
369 $this->assign_by_ref('paymentProcessor', $processor);
370 }
371
372 /**
373 * Get current currency from DB or use default currency.
374 *
375 * @param $submittedValues
376 *
377 * @return mixed
378 */
379 public function getCurrency($submittedValues) {
380 $config = CRM_Core_Config::singleton();
381
382 $currentCurrency = CRM_Utils_Array::value('currency',
383 $this->_values,
384 $config->defaultCurrency
385 );
386
387 // use submitted currency if present else use current currency
388 $result = CRM_Utils_Array::value('currency',
389 $submittedValues,
390 $currentCurrency
391 );
392 return $result;
393 }
394
395 /**
396 * @param int $financialTypeId
397 *
398 * @return array
399 */
400 public function getFinancialAccounts($financialTypeId) {
401 $financialAccounts = array();
402 CRM_Core_PseudoConstant::populate($financialAccounts,
403 'CRM_Financial_DAO_EntityFinancialAccount',
404 $all = TRUE,
405 $retrieve = 'financial_account_id',
406 $filter = NULL,
407 " entity_id = {$financialTypeId} ", NULL, 'account_relationship');
408 return $financialAccounts;
409 }
410
411 /**
412 * @param int $financialTypeId
413 * @param int $relationTypeId
414 *
415 * @return mixed
416 */
417 public function getFinancialAccount($financialTypeId, $relationTypeId) {
418 $financialAccounts = $this->getFinancialAccounts($financialTypeId);
419 return CRM_Utils_Array::value($relationTypeId, $financialAccounts);
420 }
421
422 public function preProcessPledge() {
423 //get the payment values associated with given pledge payment id OR check for payments due.
424 $this->_pledgeValues = array();
425 if ($this->_ppID) {
426 $payParams = array('id' => $this->_ppID);
427
428 CRM_Pledge_BAO_PledgePayment::retrieve($payParams, $this->_pledgeValues['pledgePayment']);
429 $this->_pledgeID = CRM_Utils_Array::value('pledge_id', $this->_pledgeValues['pledgePayment']);
430 $paymentStatusID = CRM_Utils_Array::value('status_id', $this->_pledgeValues['pledgePayment']);
431 $this->_id = CRM_Utils_Array::value('contribution_id', $this->_pledgeValues['pledgePayment']);
432
433 //get all status
434 $allStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
435 if (!($paymentStatusID == array_search('Pending', $allStatus) || $paymentStatusID == array_search('Overdue', $allStatus))) {
436 CRM_Core_Error::fatal(ts("Pledge payment status should be 'Pending' or 'Overdue'."));
437 }
438
439 //get the pledge values associated with given pledge payment.
440
441 $ids = array();
442 $pledgeParams = array('id' => $this->_pledgeID);
443 CRM_Pledge_BAO_Pledge::getValues($pledgeParams, $this->_pledgeValues, $ids);
444 $this->assign('ppID', $this->_ppID);
445 }
446 else {
447 // 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
448 if (isset($this->_contactID)) {
449 $contactPledges = CRM_Pledge_BAO_Pledge::getContactPledges($this->_contactID);
450
451 if (!empty($contactPledges)) {
452 $payments = $paymentsDue = NULL;
453 $multipleDue = FALSE;
454 foreach ($contactPledges as $key => $pledgeId) {
455 $payments = CRM_Pledge_BAO_PledgePayment::getOldestPledgePayment($pledgeId);
456 if ($payments) {
457 if ($paymentsDue) {
458 $multipleDue = TRUE;
459 break;
460 }
461 else {
462 $paymentsDue = $payments;
463 }
464 }
465 }
466 if ($multipleDue) {
467 // Show link to pledge tab since more than one pledge has a payment due
468 $pledgeTab = CRM_Utils_System::url('civicrm/contact/view',
469 "reset=1&force=1&cid={$this->_contactID}&selectedChild=pledge"
470 );
471 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');
472 }
473 elseif ($paymentsDue) {
474 // Show user link to oldest Pending or Overdue pledge payment
475 $ppAmountDue = CRM_Utils_Money::format($payments['amount'], $payments['currency']);
476 $ppSchedDate = CRM_Utils_Date::customFormat(CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment', $payments['id'], 'scheduled_date'));
477 if ($this->_mode) {
478 $ppUrl = CRM_Utils_System::url('civicrm/contact/view/contribution',
479 "reset=1&action=add&cid={$this->_contactID}&ppid={$payments['id']}&context=pledge&mode=live"
480 );
481 }
482 else {
483 $ppUrl = CRM_Utils_System::url('civicrm/contact/view/contribution',
484 "reset=1&action=add&cid={$this->_contactID}&ppid={$payments['id']}&context=pledge"
485 );
486 }
487 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(
488 1 => $ppUrl,
489 2 => $ppAmountDue,
490 3 => $ppSchedDate,
491 )), ts('Notice'), 'alert');
492 }
493 }
494 }
495 }
496 }
497
498 /**
499 * @param array $submittedValues
500 *
501 * @return mixed
502 */
503 public function unsetCreditCardFields($submittedValues) {
504 //Offline Contribution.
505 $unsetParams = array(
506 'payment_processor_id',
507 "email-{$this->_bltID}",
508 'hidden_buildCreditCard',
509 'hidden_buildDirectDebit',
510 'billing_first_name',
511 'billing_middle_name',
512 'billing_last_name',
513 'street_address-5',
514 "city-{$this->_bltID}",
515 "state_province_id-{$this->_bltID}",
516 "postal_code-{$this->_bltID}",
517 "country_id-{$this->_bltID}",
518 'credit_card_number',
519 'cvv2',
520 'credit_card_exp_date',
521 'credit_card_type',
522 );
523 foreach ($unsetParams as $key) {
524 if (isset($submittedValues[$key])) {
525 unset($submittedValues[$key]);
526 }
527 }
528 return $submittedValues;
529 }
530
531 /**
532 * Common block for setting up the parts of a form that relate to credit / debit card
533 * @throws Exception
534 */
535 protected function assignPaymentRelatedVariables() {
536 try {
537 if ($this->_contactID) {
538 list($this->userDisplayName, $this->userEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
539 $this->assign('displayName', $this->userDisplayName);
540 }
541 $this->assignProcessors();
542 $this->assignBillingType();
543 CRM_Core_Payment_Form::setPaymentFieldsByProcessor($this, $this->_paymentProcessor, FALSE, TRUE, CRM_Utils_Request::retrieve('payment_instrument_id', 'Integer'));
544 }
545 catch (CRM_Core_Exception $e) {
546 CRM_Core_Error::fatal($e->getMessage());
547 }
548 }
549
550 /**
551 * Begin post processing.
552 *
553 * This function aims to start to bring together common postProcessing functions.
554 *
555 * Eventually these are also shared with the front end forms & may need to be moved to where they can also
556 * access this function.
557 */
558 protected function beginPostProcess() {
559 if ($this->_mode) {
560 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment(
561 $this->_params['payment_processor_id'],
562 ($this->_mode == 'test')
563 );
564 if (in_array('credit_card_exp_date', array_keys($this->_params))) {
565 $this->_params['year'] = CRM_Core_Payment_Form::getCreditCardExpirationYear($this->_params);
566 $this->_params['month'] = CRM_Core_Payment_Form::getCreditCardExpirationMonth($this->_params);
567 }
568 $this->assign('credit_card_exp_date', CRM_Utils_Date::mysqlToIso(CRM_Utils_Date::format($this->_params['credit_card_exp_date'])));
569 $this->assign('credit_card_number',
570 CRM_Utils_System::mungeCreditCard($this->_params['credit_card_number'])
571 );
572 $this->assign('credit_card_type', CRM_Utils_Array::value('credit_card_type', $this->_params));
573 }
574 $this->_params['ip_address'] = CRM_Utils_System::ipAddress();
575 }
576
577
578 /**
579 * Add the billing address to the contact who paid.
580 *
581 * Note that this function works based on the presence or otherwise of billing fields & can be called regardless of
582 * whether they are 'expected' (due to assumptions about the payment processor type or the setting to collect billing
583 * for pay later.
584 */
585 protected function processBillingAddress() {
586 $fields = array();
587
588 $fields['email-Primary'] = 1;
589 $this->_params['email-5'] = $this->_params['email-Primary'] = $this->_contributorEmail;
590 // now set the values for the billing location.
591 foreach (array_keys($this->_fields) as $name) {
592 $fields[$name] = 1;
593 }
594
595 $fields["address_name-{$this->_bltID}"] = 1;
596
597 //ensure we don't over-write the payer's email with the member's email
598 if ($this->_contributorContactID == $this->_contactID) {
599 $fields["email-{$this->_bltID}"] = 1;
600 }
601
602 list($hasBillingField, $addressParams) = CRM_Contribute_BAO_Contribution::getPaymentProcessorReadyAddressParams($this->_params, $this->_bltID);
603 $fields = $this->formatParamsForPaymentProcessor($fields);
604
605 if ($hasBillingField) {
606 $addressParams = array_merge($this->_params, $addressParams);
607 // CRM-18277 don't let this get passed in because we don't want contribution source to override contact source.
608 // Ideally we wouldn't just randomly merge everything into addressParams but just pass in a relevant array.
609 // Note this source field is covered by a unit test.
610 if (isset($addressParams['source'])) {
611 unset($addressParams['source']);
612 }
613 //here we are setting up the billing contact - if different from the member they are already created
614 // but they will get billing details assigned
615 CRM_Contact_BAO_Contact::createProfileContact($addressParams, $fields,
616 $this->_contributorContactID, NULL, NULL,
617 CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_contactID, 'contact_type')
618 );
619 }
620 }
621
622 /**
623 * Get default values for billing fields.
624 *
625 * @todo this function still replicates code in several other places in the code.
626 *
627 * Also - the call to getProfileDefaults possibly covers the state_province & country already.
628 *
629 * @param $defaults
630 *
631 * @return array
632 */
633 protected function getBillingDefaults($defaults) {
634 // set default country from config if no country set
635 $config = CRM_Core_Config::singleton();
636 if (empty($defaults["billing_country_id-{$this->_bltID}"])) {
637 $defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry;
638 }
639
640 if (empty($defaults["billing_state_province_id-{$this->_bltID}"])) {
641 $defaults["billing_state_province_id-{$this->_bltID}"] = $config->defaultContactStateProvince;
642 }
643
644 $billingDefaults = $this->getProfileDefaults('Billing', $this->_contactID);
645 return array_merge($defaults, $billingDefaults);
646 }
647
648 }