Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
39de6fd5 | 4 | | CiviCRM version 4.6 | |
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 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 TO |
27 | |
28 | /** | |
29 | * | |
30 | * @package CRM | |
e7112fa7 | 31 | * @copyright CiviCRM LLC (c) 2004-2015 |
6a488035 TO |
32 | * $Id$ |
33 | * | |
34 | */ | |
35 | ||
36 | /** | |
a6513ad5 | 37 | * This class generates form components for processing a contribution |
6a488035 TO |
38 | * |
39 | */ | |
40 | class CRM_Contribute_Form_UpdateBilling extends CRM_Core_Form { | |
41 | protected $_crid = NULL; | |
42 | protected $_coid = NULL; | |
43 | protected $_mode = NULL; | |
44 | ||
45 | protected $_subscriptionDetails = NULL; | |
46 | ||
47 | protected $_selfService = FALSE; | |
48 | ||
49 | public $_bltID = NULL; | |
a6513ad5 EM |
50 | |
51 | /** | |
52 | * @var array current payment processor including a copy of the object in 'object' key | |
53 | */ | |
54 | public $_paymentProcessor = array(); | |
6a488035 TO |
55 | |
56 | public $_paymentProcessorObj = NULL; | |
57 | ||
58 | /** | |
fe482240 | 59 | * Set variables up before form is built. |
6a488035 TO |
60 | * |
61 | * @return void | |
6a488035 TO |
62 | */ |
63 | public function preProcess() { | |
64 | $this->_mid = CRM_Utils_Request::retrieve('mid', 'Integer', $this, FALSE); | |
65 | $this->_crid = CRM_Utils_Request::retrieve('crid', 'Integer', $this, FALSE); | |
66 | if ($this->_crid) { | |
67 | $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_crid, 'recur', 'info'); | |
68 | $this->_paymentProcessorObj = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_crid, 'recur', 'obj'); | |
69 | $this->_subscriptionDetails = CRM_Contribute_BAO_ContributionRecur::getSubscriptionDetails($this->_crid); | |
eea16664 | 70 | |
6a488035 TO |
71 | // Are we cancelling a recurring contribution that is linked to an auto-renew membership? |
72 | if ($this->_subscriptionDetails->membership_id) { | |
73 | $this->_mid = $this->_subscriptionDetails->membership_id; | |
74 | } | |
75 | } | |
76 | ||
77 | $this->_coid = CRM_Utils_Request::retrieve('coid', 'Integer', $this, FALSE); | |
78 | if ($this->_coid) { | |
79 | $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_coid, 'contribute', 'info'); | |
a6513ad5 | 80 | $this->_paymentProcessor['object'] = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_coid, 'contribute', 'obj'); |
6a488035 TO |
81 | $this->_subscriptionDetails = CRM_Contribute_BAO_ContributionRecur::getSubscriptionDetails($this->_coid, 'contribution'); |
82 | } | |
83 | ||
84 | if ($this->_mid) { | |
85 | $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_mid, 'membership', 'info'); | |
a6513ad5 | 86 | $this->_paymentProcessor['object'] = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_mid, 'membership', 'obj'); |
6a488035 TO |
87 | $this->_subscriptionDetails = CRM_Contribute_BAO_ContributionRecur::getSubscriptionDetails($this->_mid, 'membership'); |
88 | $membershipTypes = CRM_Member_PseudoConstant::membershipType(); | |
89 | $membershipTypeId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_mid, 'membership_type_id'); | |
90 | $this->assign('membershipType', CRM_Utils_Array::value($membershipTypeId, $membershipTypes)); | |
91 | $this->_mode = 'auto_renew'; | |
92 | } | |
93 | ||
94 | if ((!$this->_crid && !$this->_coid && !$this->_mid) || | |
95 | ($this->_subscriptionDetails == CRM_Core_DAO::$_nullObject) | |
96 | ) { | |
97 | CRM_Core_Error::fatal('Required information missing.'); | |
98 | } | |
99 | if (!CRM_Core_Permission::check('edit contributions')) { | |
100 | $userChecksum = CRM_Utils_Request::retrieve('cs', 'String', $this, FALSE); | |
101 | if (!CRM_Contact_BAO_Contact_Utils::validChecksum($this->_subscriptionDetails->contact_id, $userChecksum)) { | |
102 | CRM_Core_Error::fatal(ts('You do not have permission to cancel subscription.')); | |
103 | } | |
104 | $this->_selfService = TRUE; | |
105 | } | |
106 | ||
a6513ad5 | 107 | if (!$this->_paymentProcessor['object']->isSupported('updateSubscriptionBillingInfo')) { |
6a488035 | 108 | CRM_Core_Error::fatal(ts("%1 processor doesn't support updating subscription billing details.", |
353ffa53 TO |
109 | array(1 => $this->_paymentProcessor['object']->_processorName) |
110 | )); | |
6a488035 TO |
111 | } |
112 | $this->assign('paymentProcessor', $this->_paymentProcessor); | |
113 | ||
8345c9d3 | 114 | $this->assignBillingType(); |
6a488035 TO |
115 | |
116 | $this->assign('frequency_unit', $this->_subscriptionDetails->frequency_unit); | |
117 | $this->assign('frequency_interval', $this->_subscriptionDetails->frequency_interval); | |
118 | $this->assign('amount', $this->_subscriptionDetails->amount); | |
119 | $this->assign('installments', $this->_subscriptionDetails->installments); | |
120 | $this->assign('mode', $this->_mode); | |
121 | ||
122 | // handle context redirection | |
123 | CRM_Contribute_BAO_ContributionRecur::setSubscriptionContext(); | |
124 | } | |
125 | ||
186c9c17 EM |
126 | /** |
127 | * This virtual function is used to set the default values of | |
128 | * various form elements | |
129 | * | |
130 | * access public | |
131 | * | |
a6c01b45 CW |
132 | * @return array |
133 | * reference to the array of default values | |
186c9c17 EM |
134 | */ |
135 | /** | |
136 | * @return array | |
137 | */ | |
00be9182 | 138 | public function setDefaultValues() { |
6a488035 TO |
139 | $this->_defaults = array(); |
140 | ||
141 | if ($this->_subscriptionDetails->contact_id) { | |
353ffa53 TO |
142 | $fields = array(); |
143 | $names = array( | |
144 | 'first_name', | |
145 | 'middle_name', | |
146 | 'last_name', | |
147 | "street_address-{$this->_bltID}", | |
148 | "city-{$this->_bltID}", | |
149 | "postal_code-{$this->_bltID}", | |
150 | "country_id-{$this->_bltID}", | |
151 | "state_province_id-{$this->_bltID}", | |
6a488035 TO |
152 | ); |
153 | foreach ($names as $name) { | |
154 | $fields[$name] = 1; | |
155 | } | |
156 | $fields["state_province-{$this->_bltID}"] = 1; | |
157 | $fields["country-{$this->_bltID}"] = 1; | |
158 | $fields["email-{$this->_bltID}"] = 1; | |
159 | $fields['email-Primary'] = 1; | |
160 | ||
161 | CRM_Core_BAO_UFGroup::setProfileDefaults($this->_subscriptionDetails->contact_id, $fields, $this->_defaults); | |
162 | ||
163 | // use primary email address if billing email address is empty | |
164 | if (empty($this->_defaults["email-{$this->_bltID}"]) && | |
165 | !empty($this->_defaults['email-Primary']) | |
166 | ) { | |
167 | $this->_defaults["email-{$this->_bltID}"] = $this->_defaults['email-Primary']; | |
168 | } | |
169 | ||
170 | foreach ($names as $name) { | |
171 | if (!empty($this->_defaults[$name])) { | |
172 | $this->_defaults['billing_' . $name] = $this->_defaults[$name]; | |
173 | } | |
174 | } | |
175 | } | |
176 | ||
6a488035 TO |
177 | $config = CRM_Core_Config::singleton(); |
178 | // set default country from config if no country set | |
a7488080 | 179 | if (empty($this->_defaults["billing_country_id-{$this->_bltID}"])) { |
6a488035 TO |
180 | $this->_defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry; |
181 | } | |
182 | ||
6a488035 TO |
183 | return $this->_defaults; |
184 | } | |
185 | ||
186 | /** | |
fe482240 | 187 | * Build the form object. |
6a488035 | 188 | * |
355ba699 | 189 | * @return void |
6a488035 TO |
190 | */ |
191 | public function buildQuickForm() { | |
192 | $type = 'next'; | |
481a74f4 | 193 | if ($this->_selfService) { |
6a488035 TO |
194 | $type = 'submit'; |
195 | } | |
196 | ||
197 | $this->addButtons(array( | |
198 | array( | |
199 | 'type' => $type, | |
200 | 'name' => ts('Save'), | |
201 | 'isDefault' => TRUE, | |
202 | ), | |
203 | array( | |
204 | 'type' => 'cancel', | |
205 | 'name' => ts('Cancel'), | |
206 | ), | |
207 | ) | |
208 | ); | |
209 | ||
a6513ad5 | 210 | CRM_Core_Payment_Form::buildPaymentForm($this, $this->_paymentProcessor['object'], TRUE); |
6a488035 TO |
211 | $this->addFormRule(array('CRM_Contribute_Form_UpdateBilling', 'formRule'), $this); |
212 | } | |
213 | ||
214 | /** | |
fe482240 | 215 | * Global form rule. |
6a488035 | 216 | * |
014c4014 TO |
217 | * @param array $fields |
218 | * The input form values. | |
219 | * @param array $files | |
220 | * The uploaded files if any. | |
da6b46f4 EM |
221 | * @param $self |
222 | * | |
6a488035 | 223 | * |
72b3a70c CW |
224 | * @return bool|array |
225 | * true if no errors, else array of errors | |
6a488035 | 226 | */ |
00be9182 | 227 | public static function formRule($fields, $files, $self) { |
7cb3d4f0 CW |
228 | $errors = array(); |
229 | CRM_Core_Form::validateMandatoryFields($self->_fields, $fields, $errors); | |
6a488035 | 230 | |
a479fe60 | 231 | // validate the payment instrument values (e.g. credit card number) |
232 | CRM_Core_Payment_Form::validatePaymentInstrument($self->_paymentProcessor['id'], $fields, $errors, $self); | |
6a488035 | 233 | |
6a488035 TO |
234 | return empty($errors) ? TRUE : $errors; |
235 | } | |
236 | ||
237 | /** | |
fe482240 | 238 | * Process the form. |
6a488035 TO |
239 | * |
240 | * @return void | |
6a488035 TO |
241 | */ |
242 | public function postProcess() { | |
243 | $params = $this->controller->exportValues($this->_name); | |
244 | $status = NULL; | |
245 | ||
246 | // now set the values for the billing location. | |
247 | foreach ($this->_fields as $name => $value) { | |
248 | $fields[$name] = 1; | |
249 | } | |
250 | $fields["email-{$this->_bltID}"] = 1; | |
251 | ||
252 | $processorParams = array(); | |
253 | foreach ($params as $key => $val) { | |
254 | $key = str_replace('billing_', '', $key); | |
255 | list($key) = explode('-', $key); | |
256 | $processorParams[$key] = $val; | |
257 | } | |
258 | $processorParams['state_province'] = CRM_Core_PseudoConstant::stateProvince($params["billing_state_province_id-{$this->_bltID}"], FALSE); | |
259 | $processorParams['country'] = CRM_Core_PseudoConstant::country($params["billing_country_id-{$this->_bltID}"], FALSE); | |
260 | $processorParams['month'] = $processorParams['credit_card_exp_date']['M']; | |
261 | $processorParams['year'] = $processorParams['credit_card_exp_date']['Y']; | |
262 | $processorParams['subscriptionId'] = $this->_subscriptionDetails->subscription_id; | |
263 | $processorParams['amount'] = $this->_subscriptionDetails->amount; | |
264 | ||
265 | $updateSubscription = $this->_paymentProcessorObj->updateSubscriptionBillingInfo($message, $processorParams); | |
266 | ||
267 | if (is_a($updateSubscription, 'CRM_Core_Error')) { | |
268 | CRM_Core_Error::displaySessionError($updateSubscription); | |
269 | } | |
270 | elseif ($updateSubscription) { | |
271 | $ctype = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_subscriptionDetails->contact_id, 'contact_type'); | |
272 | $contact = &CRM_Contact_BAO_Contact::createProfileContact($params, | |
273 | $fields, | |
274 | $this->_subscriptionDetails->contact_id, | |
275 | NULL, | |
276 | NULL, | |
277 | $ctype | |
278 | ); | |
279 | ||
280 | // build tpl params | |
281 | if ($this->_subscriptionDetails->membership_id) { | |
282 | $inputParams = array('id' => $this->_subscriptionDetails->membership_id); | |
283 | CRM_Member_BAO_Membership::getValues($inputParams, $tplParams); | |
284 | $tplParams = $tplParams[$this->_subscriptionDetails->membership_id]; | |
285 | $tplParams['membership_status'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipStatus', $tplParams['status_id']); | |
286 | $tplParams['membershipType'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $tplParams['membership_type_id']); | |
287 | $status = ts('Billing details for your automatically renewed %1 membership have been updated.', | |
288 | array(1 => $tplParams['membershipType']) | |
289 | ); | |
290 | $msgTitle = ts('Details Updated'); | |
291 | $msgType = 'success'; | |
292 | } | |
293 | else { | |
294 | $status = ts('Billing details for the recurring contribution of %1, every %2 %3 have been updated.', | |
295 | array( | |
296 | 1 => $this->_subscriptionDetails->amount, | |
297 | 2 => $this->_subscriptionDetails->frequency_interval, | |
21dfd5f5 | 298 | 3 => $this->_subscriptionDetails->frequency_unit, |
6a488035 TO |
299 | ) |
300 | ); | |
301 | $msgTitle = ts('Details Updated'); | |
302 | $msgType = 'success'; | |
eea16664 | 303 | |
6a488035 TO |
304 | $tplParams = array( |
305 | 'recur_frequency_interval' => $this->_subscriptionDetails->frequency_interval, | |
306 | 'recur_frequency_unit' => $this->_subscriptionDetails->frequency_unit, | |
307 | 'amount' => $this->_subscriptionDetails->amount, | |
308 | ); | |
309 | } | |
310 | ||
311 | // format new address for display | |
312 | $addressParts = array("street_address", "city", "postal_code", "state_province", "country"); | |
313 | foreach ($addressParts as $part) { | |
314 | $addressParts[$part] = CRM_Utils_Array::value($part, $processorParams); | |
315 | } | |
316 | $tplParams['address'] = CRM_Utils_Address::format($addressParts); | |
317 | ||
318 | // format old address to store in activity details | |
319 | $this->_defaults["state_province-{$this->_bltID}"] = CRM_Core_PseudoConstant::stateProvince($this->_defaults["state_province-{$this->_bltID}"], FALSE); | |
320 | $this->_defaults["country-{$this->_bltID}"] = CRM_Core_PseudoConstant::country($this->_defaults["country-{$this->_bltID}"], FALSE); | |
321 | $addressParts = array("street_address", "city", "postal_code", "state_province", "country"); | |
322 | foreach ($addressParts as $part) { | |
323 | $key = "{$part}-{$this->_bltID}"; | |
324 | $addressParts[$part] = CRM_Utils_Array::value($key, $this->_defaults); | |
325 | } | |
326 | $this->_defaults['address'] = CRM_Utils_Address::format($addressParts); | |
327 | ||
328 | // format new billing name | |
329 | $name = $processorParams['first_name']; | |
a7488080 | 330 | if (!empty($processorParams['middle_name'])) { |
6a488035 TO |
331 | $name .= " {$processorParams['middle_name']}"; |
332 | } | |
333 | $name .= ' ' . $processorParams['last_name']; | |
334 | $name = trim($name); | |
335 | $tplParams['billingName'] = $name; | |
336 | ||
337 | // format old billing name | |
338 | $name = $this->_defaults['first_name']; | |
a7488080 | 339 | if (!empty($this->_defaults['middle_name'])) { |
6a488035 TO |
340 | $name .= " {$this->_defaults['middle_name']}"; |
341 | } | |
342 | $name .= ' ' . $this->_defaults['last_name']; | |
343 | $name = trim($name); | |
344 | $this->_defaults['billingName'] = $name; | |
345 | ||
346 | $message .= " | |
347 | <br/><br/>New Billing Name and Address | |
348 | <br/>============================== | |
349 | <br/>{$tplParams['billingName']} | |
350 | <br/>{$tplParams['address']} | |
351 | ||
352 | <br/><br/>Previous Billing Name and Address | |
353 | <br/>================================== | |
354 | <br/>{$this->_defaults['billingName']} | |
355 | <br/>{$this->_defaults['address']}"; | |
356 | ||
357 | $activityParams = array( | |
358 | 'source_contact_id' => $this->_subscriptionDetails->contact_id, | |
359 | 'activity_type_id' => CRM_Core_OptionGroup::getValue('activity_type', | |
360 | 'Update Recurring Contribution Billing Details', | |
361 | 'name' | |
362 | ), | |
363 | 'subject' => ts('Recurring Contribution Billing Details Updated'), | |
364 | 'details' => $message, | |
365 | 'activity_date_time' => date('YmdHis'), | |
366 | 'status_id' => CRM_Core_OptionGroup::getValue('activity_status', | |
367 | 'Completed', | |
368 | 'name' | |
369 | ), | |
370 | ); | |
371 | $session = CRM_Core_Session::singleton(); | |
372 | $cid = $session->get('userID'); | |
373 | if ($cid) { | |
374 | $activityParams['target_contact_id'][] = $activityParams['source_contact_id']; | |
375 | $activityParams['source_contact_id'] = $cid; | |
376 | } | |
377 | CRM_Activity_BAO_Activity::create($activityParams); | |
378 | ||
379 | // send notification | |
380 | if ($this->_subscriptionDetails->contribution_page_id) { | |
381 | CRM_Core_DAO::commonRetrieveAll('CRM_Contribute_DAO_ContributionPage', 'id', | |
382 | $this->_subscriptionDetails->contribution_page_id, $value, array( | |
383 | 'title', | |
384 | 'receipt_from_name', | |
385 | 'receipt_from_email', | |
386 | ) | |
387 | ); | |
388 | $receiptFrom = '"' . CRM_Utils_Array::value('receipt_from_name', $value[$this->_subscriptionDetails->contribution_page_id]) . '" <' . $value[$this->_subscriptionDetails->contribution_page_id]['receipt_from_email'] . '>'; | |
389 | } | |
390 | else { | |
391 | $domainValues = CRM_Core_BAO_Domain::getNameAndEmail(); | |
392 | $receiptFrom = "$domainValues[0] <$domainValues[1]>"; | |
393 | } | |
394 | list($donorDisplayName, $donorEmail) = CRM_Contact_BAO_Contact::getContactDetails($this->_subscriptionDetails->contact_id); | |
395 | $tplParams['contact'] = array('display_name' => $donorDisplayName); | |
396 | ||
397 | $date = CRM_Utils_Date::format($processorParams['credit_card_exp_date']); | |
398 | $tplParams['credit_card_exp_date'] = CRM_Utils_Date::mysqlToIso($date); | |
399 | $tplParams['credit_card_number'] = CRM_Utils_System::mungeCreditCard($processorParams['credit_card_number']); | |
400 | $tplParams['credit_card_type'] = $processorParams['credit_card_type']; | |
401 | ||
402 | $sendTemplateParams = array( | |
403 | 'groupName' => $this->_subscriptionDetails->membership_id ? 'msg_tpl_workflow_membership' : 'msg_tpl_workflow_contribution', | |
404 | 'valueName' => $this->_subscriptionDetails->membership_id ? 'membership_autorenew_billing' : 'contribution_recurring_billing', | |
405 | 'contactId' => $this->_subscriptionDetails->contact_id, | |
406 | 'tplParams' => $tplParams, | |
407 | 'isTest' => $this->_subscriptionDetails->is_test, | |
408 | 'PDFFilename' => 'receipt.pdf', | |
409 | 'from' => $receiptFrom, | |
410 | 'toName' => $donorDisplayName, | |
411 | 'toEmail' => $donorEmail, | |
412 | ); | |
c6327d7d | 413 | list($sent) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams); |
6a488035 TO |
414 | } |
415 | else { | |
416 | $status = ts('There was some problem updating the billing details.'); | |
417 | $msgTitle = ts('Update Error'); | |
418 | $msgType = 'error'; | |
419 | } | |
420 | ||
421 | $session = CRM_Core_Session::singleton(); | |
353ffa53 | 422 | $userID = $session->get('userID'); |
481a74f4 | 423 | if ($userID && $status) { |
6a488035 | 424 | $session->setStatus($status, $msgTitle, $msgType); |
0db6c3e1 | 425 | } |
4c9b6178 | 426 | elseif (!$userID) { |
389bcebf | 427 | if ($status) { |
6a488035 | 428 | CRM_Utils_System::setUFMessage($status); |
389bcebf | 429 | } |
6a488035 | 430 | $result = (int) ($updateSubscription && isset($ctype)); |
389bcebf | 431 | if (isset($tplParams)) { |
6a488035 | 432 | $session->set('resultParams', $tplParams); |
389bcebf | 433 | } |
eea16664 | 434 | return CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contribute/subscriptionstatus', |
353ffa53 | 435 | "reset=1&task=billing&result={$result}")); |
6a488035 TO |
436 | } |
437 | } | |
96025800 | 438 | |
6a488035 | 439 | } |