f1872d522e40e5342cf66d79a8ee47172405741c
[civicrm-core.git] / CRM / Contribute / Form / UpdateBilling.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class generates form components for processing a contribution.
20 */
21 class CRM_Contribute_Form_UpdateBilling extends CRM_Contribute_Form_ContributionRecur {
22 protected $_mode = NULL;
23
24 protected $_subscriptionDetails = NULL;
25
26 public $_bltID = NULL;
27
28 /**
29 * Set variables up before form is built.
30 *
31 * @throws \CRM_Core_Exception
32 */
33 public function preProcess() {
34 parent::preProcess();
35 if ($this->_crid) {
36 // Are we cancelling a recurring contribution that is linked to an auto-renew membership?
37 if ($this->_subscriptionDetails->membership_id) {
38 $this->_mid = $this->_subscriptionDetails->membership_id;
39 }
40 }
41
42 if ($this->_coid) {
43 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_coid, 'contribute', 'info');
44 $this->_paymentProcessor['object'] = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_coid, 'contribute', 'obj');
45 }
46
47 if ($this->_mid) {
48 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_mid, 'membership', 'info');
49 $this->_paymentProcessor['object'] = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_mid, 'membership', 'obj');
50 $this->_subscriptionDetails = CRM_Contribute_BAO_ContributionRecur::getSubscriptionDetails($this->_mid, 'membership');
51 $membershipTypes = CRM_Member_PseudoConstant::membershipType();
52 $membershipTypeId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_mid, 'membership_type_id');
53 $this->assign('membershipType', CRM_Utils_Array::value($membershipTypeId, $membershipTypes));
54 $this->_mode = 'auto_renew';
55 }
56
57 if ((!$this->_crid && !$this->_coid && !$this->_mid) || (!$this->_subscriptionDetails)) {
58 throw new CRM_Core_Exception('Required information missing.');
59 }
60
61 if (!$this->_paymentProcessor['object']->supports('updateSubscriptionBillingInfo')) {
62 throw new CRM_Core_Exception(ts("%1 processor doesn't support updating subscription billing details.",
63 [1 => $this->_paymentProcessor['title']]
64 ));
65 }
66 $this->assign('paymentProcessor', $this->_paymentProcessor);
67
68 $this->assignBillingType();
69
70 $this->assign('frequency_unit', $this->_subscriptionDetails->frequency_unit);
71 $this->assign('frequency_interval', $this->_subscriptionDetails->frequency_interval);
72 $this->assign('amount', $this->_subscriptionDetails->amount);
73 $this->assign('installments', $this->_subscriptionDetails->installments);
74 $this->assign('mode', $this->_mode);
75
76 // handle context redirection
77 CRM_Contribute_BAO_ContributionRecur::setSubscriptionContext();
78 }
79
80 /**
81 * Set the default values of various form elements.
82 *
83 * @return array
84 * Default values
85 */
86 public function setDefaultValues() {
87 $this->_defaults = array();
88
89 if ($this->_subscriptionDetails->contact_id) {
90 $fields = array();
91 $names = array(
92 'first_name',
93 'middle_name',
94 'last_name',
95 "street_address-{$this->_bltID}",
96 "city-{$this->_bltID}",
97 "postal_code-{$this->_bltID}",
98 "country_id-{$this->_bltID}",
99 "state_province_id-{$this->_bltID}",
100 );
101 foreach ($names as $name) {
102 $fields[$name] = 1;
103 }
104 $fields["state_province-{$this->_bltID}"] = 1;
105 $fields["country-{$this->_bltID}"] = 1;
106 $fields["email-{$this->_bltID}"] = 1;
107 $fields['email-Primary'] = 1;
108
109 CRM_Core_BAO_UFGroup::setProfileDefaults($this->_subscriptionDetails->contact_id, $fields, $this->_defaults);
110
111 // use primary email address if billing email address is empty
112 if (empty($this->_defaults["email-{$this->_bltID}"]) &&
113 !empty($this->_defaults['email-Primary'])
114 ) {
115 $this->_defaults["email-{$this->_bltID}"] = $this->_defaults['email-Primary'];
116 }
117
118 foreach ($names as $name) {
119 if (!empty($this->_defaults[$name])) {
120 $this->_defaults['billing_' . $name] = $this->_defaults[$name];
121 }
122 }
123 }
124
125 $config = CRM_Core_Config::singleton();
126 // set default country from config if no country set
127 if (empty($this->_defaults["billing_country_id-{$this->_bltID}"])) {
128 $this->_defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry;
129 }
130
131 return $this->_defaults;
132 }
133
134 /**
135 * Build the form object.
136 */
137 public function buildQuickForm() {
138 $type = 'next';
139 if ($this->isSelfService()) {
140 $type = 'submit';
141 }
142
143 $this->addButtons(array(
144 array(
145 'type' => $type,
146 'name' => ts('Save'),
147 'isDefault' => TRUE,
148 ),
149 array(
150 'type' => 'cancel',
151 'name' => ts('Cancel'),
152 ),
153 ));
154
155 CRM_Core_Payment_Form::buildPaymentForm($this, $this->_paymentProcessor, TRUE, TRUE);
156 $this->addFormRule(array('CRM_Contribute_Form_UpdateBilling', 'formRule'), $this);
157 }
158
159 /**
160 * Global form rule.
161 *
162 * @param array $fields
163 * The input form values.
164 * @param array $files
165 * The uploaded files if any.
166 * @param CRM_Core_Form $self
167 *
168 *
169 * @return bool|array
170 * true if no errors, else array of errors
171 */
172 public static function formRule($fields, $files, $self) {
173 $errors = array();
174 CRM_Core_Form::validateMandatoryFields($self->_fields, $fields, $errors);
175
176 // validate the payment instrument values (e.g. credit card number)
177 CRM_Core_Payment_Form::validatePaymentInstrument($self->_paymentProcessor['id'], $fields, $errors, NULL);
178
179 return empty($errors) ? TRUE : $errors;
180 }
181
182 /**
183 * Process the form.
184 */
185 public function postProcess() {
186 $params = $this->controller->exportValues($this->_name);
187 $status = NULL;
188
189 // now set the values for the billing location.
190 foreach ($this->_fields as $name => $value) {
191 $fields[$name] = 1;
192 }
193 $fields["email-{$this->_bltID}"] = 1;
194
195 $processorParams = array();
196 foreach ($params as $key => $val) {
197 $key = str_replace('billing_', '', $key);
198 list($key) = explode('-', $key);
199 $processorParams[$key] = $val;
200 }
201 $processorParams['state_province'] = CRM_Core_PseudoConstant::stateProvince($params["billing_state_province_id-{$this->_bltID}"], FALSE);
202 $processorParams['country'] = CRM_Core_PseudoConstant::country($params["billing_country_id-{$this->_bltID}"], FALSE);
203 $processorParams['month'] = $processorParams['credit_card_exp_date']['M'];
204 $processorParams['year'] = $processorParams['credit_card_exp_date']['Y'];
205 $processorParams['subscriptionId'] = $this->getSubscriptionDetails()->processor_id;
206 $processorParams['amount'] = $this->_subscriptionDetails->amount;
207 $updateSubscription = $this->_paymentProcessor['object']->updateSubscriptionBillingInfo($message, $processorParams);
208 if (is_a($updateSubscription, 'CRM_Core_Error')) {
209 CRM_Core_Error::displaySessionError($updateSubscription);
210 }
211 elseif ($updateSubscription) {
212 $ctype = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_subscriptionDetails->contact_id, 'contact_type');
213 $contact = &CRM_Contact_BAO_Contact::createProfileContact($params,
214 $fields,
215 $this->_subscriptionDetails->contact_id,
216 NULL,
217 NULL,
218 $ctype
219 );
220
221 // build tpl params
222 if ($this->_subscriptionDetails->membership_id) {
223 $inputParams = array('id' => $this->_subscriptionDetails->membership_id);
224 CRM_Member_BAO_Membership::getValues($inputParams, $tplParams);
225 $tplParams = $tplParams[$this->_subscriptionDetails->membership_id];
226 $tplParams['membership_status'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipStatus', $tplParams['status_id']);
227 $tplParams['membershipType'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $tplParams['membership_type_id']);
228 $status = ts('Billing details for your automatically renewed %1 membership have been updated.',
229 array(1 => $tplParams['membershipType'])
230 );
231 $msgTitle = ts('Details Updated');
232 $msgType = 'success';
233 }
234 else {
235 $status = ts('Billing details for the recurring contribution of %1, every %2 %3 have been updated.',
236 array(
237 1 => $this->_subscriptionDetails->amount,
238 2 => $this->_subscriptionDetails->frequency_interval,
239 3 => $this->_subscriptionDetails->frequency_unit,
240 )
241 );
242 $msgTitle = ts('Details Updated');
243 $msgType = 'success';
244
245 $tplParams = array(
246 'recur_frequency_interval' => $this->_subscriptionDetails->frequency_interval,
247 'recur_frequency_unit' => $this->_subscriptionDetails->frequency_unit,
248 'amount' => $this->_subscriptionDetails->amount,
249 );
250 }
251
252 // format new address for display
253 $addressParts = array("street_address", "city", "postal_code", "state_province", "country");
254 foreach ($addressParts as $part) {
255 $addressParts[$part] = $processorParams[$part] ?? NULL;
256 }
257 $tplParams['address'] = CRM_Utils_Address::format($addressParts);
258
259 // format old address to store in activity details
260 $this->_defaults["state_province-{$this->_bltID}"] = CRM_Core_PseudoConstant::stateProvince($this->_defaults["state_province-{$this->_bltID}"], FALSE);
261 $this->_defaults["country-{$this->_bltID}"] = CRM_Core_PseudoConstant::country($this->_defaults["country-{$this->_bltID}"], FALSE);
262 $addressParts = array("street_address", "city", "postal_code", "state_province", "country");
263 foreach ($addressParts as $part) {
264 $key = "{$part}-{$this->_bltID}";
265 $addressParts[$part] = $this->_defaults[$key] ?? NULL;
266 }
267 $this->_defaults['address'] = CRM_Utils_Address::format($addressParts);
268
269 // format new billing name
270 $name = $processorParams['first_name'];
271 if (!empty($processorParams['middle_name'])) {
272 $name .= " {$processorParams['middle_name']}";
273 }
274 $name .= ' ' . $processorParams['last_name'];
275 $name = trim($name);
276 $tplParams['billingName'] = $name;
277
278 // format old billing name
279 $name = $this->_defaults['first_name'];
280 if (!empty($this->_defaults['middle_name'])) {
281 $name .= " {$this->_defaults['middle_name']}";
282 }
283 $name .= ' ' . $this->_defaults['last_name'];
284 $name = trim($name);
285 $this->_defaults['billingName'] = $name;
286
287 $message .= "
288 <br/><br/>New Billing Name and Address
289 <br/>==============================
290 <br/>{$tplParams['billingName']}
291 <br/>{$tplParams['address']}
292
293 <br/><br/>Previous Billing Name and Address
294 <br/>==================================
295 <br/>{$this->_defaults['billingName']}
296 <br/>{$this->_defaults['address']}";
297
298 $activityParams = array(
299 'source_contact_id' => $this->_subscriptionDetails->contact_id,
300 'activity_type_id' => CRM_Core_PseudoConstant::getKey(
301 'CRM_Activity_BAO_Activity',
302 'activity_type_id',
303 'Update Recurring Contribution Billing Details'
304 ),
305 'subject' => ts('Recurring Contribution Billing Details Updated'),
306 'details' => $message,
307 'activity_date_time' => date('YmdHis'),
308 'status_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'status_id', 'Completed'),
309 );
310 $session = CRM_Core_Session::singleton();
311 $cid = $session->get('userID');
312 if ($cid) {
313 $activityParams['target_contact_id'][] = $activityParams['source_contact_id'];
314 $activityParams['source_contact_id'] = $cid;
315 }
316 CRM_Activity_BAO_Activity::create($activityParams);
317
318 // send notification
319 if ($this->_subscriptionDetails->contribution_page_id) {
320 CRM_Core_DAO::commonRetrieveAll('CRM_Contribute_DAO_ContributionPage', 'id',
321 $this->_subscriptionDetails->contribution_page_id, $value, array(
322 'title',
323 'receipt_from_name',
324 'receipt_from_email',
325 )
326 );
327 $receiptFrom = '"' . CRM_Utils_Array::value('receipt_from_name', $value[$this->_subscriptionDetails->contribution_page_id]) . '" <' . $value[$this->_subscriptionDetails->contribution_page_id]['receipt_from_email'] . '>';
328 }
329 else {
330 $domainValues = CRM_Core_BAO_Domain::getNameAndEmail();
331 $receiptFrom = "$domainValues[0] <$domainValues[1]>";
332 }
333 list($donorDisplayName, $donorEmail) = CRM_Contact_BAO_Contact::getContactDetails($this->_subscriptionDetails->contact_id);
334 $tplParams['contact'] = array('display_name' => $donorDisplayName);
335
336 $date = CRM_Utils_Date::format($processorParams['credit_card_exp_date']);
337 $tplParams['credit_card_exp_date'] = CRM_Utils_Date::mysqlToIso($date);
338 $tplParams['credit_card_number'] = CRM_Utils_System::mungeCreditCard($processorParams['credit_card_number']);
339 $tplParams['credit_card_type'] = $processorParams['credit_card_type'];
340
341 $sendTemplateParams = array(
342 'groupName' => $this->_subscriptionDetails->membership_id ? 'msg_tpl_workflow_membership' : 'msg_tpl_workflow_contribution',
343 'valueName' => $this->_subscriptionDetails->membership_id ? 'membership_autorenew_billing' : 'contribution_recurring_billing',
344 'contactId' => $this->_subscriptionDetails->contact_id,
345 'tplParams' => $tplParams,
346 'isTest' => $this->_subscriptionDetails->is_test,
347 'PDFFilename' => 'receipt.pdf',
348 'from' => $receiptFrom,
349 'toName' => $donorDisplayName,
350 'toEmail' => $donorEmail,
351 );
352 list($sent) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
353 }
354 else {
355 $status = ts('There was some problem updating the billing details.');
356 $msgTitle = ts('Update Error');
357 $msgType = 'error';
358 }
359
360 $session = CRM_Core_Session::singleton();
361 $userID = $session->get('userID');
362 if ($userID && $status) {
363 $session->setStatus($status, $msgTitle, $msgType);
364 }
365 elseif (!$userID) {
366 if ($status) {
367 CRM_Utils_System::setUFMessage($status);
368 }
369 $result = (int) ($updateSubscription && isset($ctype));
370 if (isset($tplParams)) {
371 $session->set('resultParams', $tplParams);
372 }
373 return CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contribute/subscriptionstatus',
374 "reset=1&task=billing&result={$result}"));
375 }
376 }
377
378 }