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