Merge pull request #11986 from eileenmcnaughton/test
[civicrm-core.git] / CRM / Core / Payment / ProcessorForm.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 27
31d31a05 28use Civi\Payment\System;
6a488035
TO
29/**
30 *
31 * @package CRM
8c9251b3 32 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
33 */
34
31d31a05 35
6a488035 36/**
31d31a05 37 * Base class for building payment block for online contribution / event pages.
6a488035
TO
38 */
39class CRM_Core_Payment_ProcessorForm {
40
6c786a9b 41 /**
a9768188 42 * @param CRM_Contribute_Form_Contribution_Main|CRM_Event_Form_Registration_Register|CRM_Financial_Form_Payment $form
6c786a9b
EM
43 * @param null $type
44 * @param null $mode
45 *
46 * @throws Exception
47 */
2aa397bc 48 public static function preProcess(&$form, $type = NULL, $mode = NULL) {
6a488035
TO
49 if ($type) {
50 $form->_type = $type;
51 }
52 else {
53 $form->_type = CRM_Utils_Request::retrieve('type', 'String', $form);
54 }
55
56 if ($form->_type) {
18135422 57 // @todo not sure when this would be true. Never passed in.
6a488035
TO
58 $form->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($form->_type, $form->_mode);
59 }
60
986905f5 61 if (empty($form->_paymentProcessor)) {
62 // This would happen when hitting the back-button on a multi-page form with a $0 selection in play.
63 return;
64 }
6a488035 65 $form->set('paymentProcessor', $form->_paymentProcessor);
7a3b0ca3 66 $form->_paymentObject = System::singleton()->getByProcessor($form->_paymentProcessor);
18135422 67 if ($form->paymentInstrumentID) {
68 $form->_paymentObject->setPaymentInstrumentID($form->paymentInstrumentID);
69 }
70 $form->_paymentObject->setBackOffice($form->isBackOffice);
71 $form->assign('isBackOffice', $form->isBackOffice);
1ba4a3aa
EM
72
73 $form->assign('suppressSubmitButton', $form->_paymentObject->isSuppressSubmitButtons());
6a488035 74
fd0770bc 75 $currency = $form->getCurrency();
6fcd001e 76 $form->assign('currency', $currency);
f61437d3 77
6a488035 78 // also set cancel subscription url
8cc574cf 79 if (!empty($form->_paymentProcessor['is_recur']) && !empty($form->_values['is_recur'])) {
3e473c0b 80 $form->_values['cancelSubscriptionUrl'] = $form->_paymentObject->subscriptionURL(NULL, NULL, 'cancel');
6a488035
TO
81 }
82
423b9af4 83 if (!empty($form->_values['custom_pre_id'])) {
84 $profileAddressFields = array();
85 $fields = CRM_Core_BAO_UFGroup::getFields($form->_values['custom_pre_id'], FALSE, CRM_Core_Action::ADD, NULL, NULL, FALSE,
86 NULL, FALSE, NULL, CRM_Core_Permission::CREATE, NULL);
87
88 foreach ((array) $fields as $key => $value) {
89 CRM_Core_BAO_UFField::assignAddressField($key, $profileAddressFields, array('uf_group_id' => $form->_values['custom_pre_id']));
90 }
91 if (count($profileAddressFields)) {
92 $form->set('profileAddressFields', $profileAddressFields);
93 }
94 }
95
6a488035
TO
96 //checks after setting $form->_paymentProcessor
97 // we do this outside of the above conditional to avoid
98 // saving the country/state list in the session (which could be huge)
1d1fee72 99 CRM_Core_Payment_Form::setPaymentFieldsByProcessor(
100 $form,
101 $form->_paymentProcessor,
18135422 102 CRM_Utils_Request::retrieve('billing_profile_id', 'String'),
103 $form->isBackOffice,
104 $form->paymentInstrumentID
1d1fee72 105 );
6a488035 106
6a488035
TO
107 $form->assign_by_ref('paymentProcessor', $form->_paymentProcessor);
108
109 // check if this is a paypal auto return and redirect accordingly
dde5a0ef 110 //@todo - determine if this is legacy and remove
6a488035
TO
111 if (CRM_Core_Payment::paypalRedirect($form->_paymentProcessor)) {
112 $url = CRM_Utils_System::url('civicrm/contribute/transact',
113 "_qf_ThankYou_display=1&qfKey={$form->controller->_key}"
114 );
115 CRM_Utils_System::redirect($url);
116 }
117
118 // make sure we have a valid payment class, else abort
a7488080 119 if (!empty($form->_values['is_monetary']) &&
353ffa53
TO
120 !$form->_paymentProcessor['class_name'] && empty($form->_values['is_pay_later'])
121 ) {
6a488035
TO
122 CRM_Core_Error::fatal(ts('Payment processor is not set for this page'));
123 }
124
8cc574cf
CW
125 if (!empty($form->_membershipBlock) && !empty($form->_membershipBlock['is_separate_payment']) &&
126 (!empty($form->_paymentProcessor['class_name']) &&
75ead8de 127 !$form->_paymentObject->supports('MultipleConcurrentPayments')
6a488035
TO
128 )
129 ) {
130
131 CRM_Core_Error::fatal(ts('This contribution page is configured to support separate contribution and membership payments. This %1 plugin does not currently support multiple simultaneous payments, or the option to "Execute real-time monetary transactions" is disabled. Please contact the site administrator and notify them of this error',
132 array(1 => $form->_paymentProcessor['payment_processor_type'])
c48c8f82
CW
133 )
134 );
6a488035 135 }
6a488035
TO
136 }
137
6c786a9b 138 /**
9d421118 139 * Build the payment processor form.
140 *
141 * @param CRM_Core_Form $form
6c786a9b 142 */
18135422 143 public static function buildQuickForm(&$form) {
dde5a0ef 144 //@todo document why this addHidden is here
01da20ea 145 //CRM-15743 - we should not set/create hidden element for pay later
146 // because payment processor is not selected
8bf11c13 147 $processorId = $form->getVar('_paymentProcessorID');
1d1fee72 148 $billing_profile_id = CRM_Utils_Request::retrieve('billing_profile_id', 'String');
149 if (!empty($form->_values) && !empty($form->_values['is_billing_required'])) {
150 $billing_profile_id = 'billing';
151 }
8bf11c13 152 if (!empty($processorId)) {
d1fcde00 153 $form->addElement('hidden', 'hidden_processor', 1);
154 }
18135422 155 CRM_Core_Payment_Form::buildPaymentForm($form, $form->_paymentProcessor, $billing_profile_id, $form->isBackOffice, $form->paymentInstrumentID);
6a488035 156 }
96025800 157
6a488035 158}