Merge pull request #11154 from agileware/CRM-20421
[civicrm-core.git] / CRM / Contribute / Form / UpdateSubscription.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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/**
6a488035 29 * @package CRM
0f03f337 30 * @copyright CiviCRM LLC (c) 2004-2017
6a488035
TO
31 */
32
33/**
c0f62075 34 * This class generates form components generic to recurring contributions.
6a488035
TO
35 *
36 * It delegates the work to lower level subclasses and integrates the changes
37 * back in. It also uses a lot of functionality with the CRM API's, so any change
38 * made here could potentially affect the API etc. Be careful, be aware, use unit tests.
6a488035
TO
39 */
40class CRM_Contribute_Form_UpdateSubscription extends CRM_Core_Form {
41
42 /**
0c6c47a5 43 * The recurring contribution id, used when editing the recurring contribution.
6a488035
TO
44 *
45 * @var int
46 */
0c6c47a5 47 protected $contributionRecurID = NULL;
6a488035
TO
48
49 protected $_coid = NULL;
50
51 protected $_subscriptionDetails = NULL;
52
53 protected $_selfService = FALSE;
54
55 public $_paymentProcessor = NULL;
56
57 public $_paymentProcessorObj = NULL;
58
0c6c47a5 59 /**
60 * Fields that affect the schedule and are defined as editable by the processor.
61 *
62 * @var array
63 */
64 protected $editableScheduleFields = array();
65
6a488035 66 /**
fe482240 67 * The id of the contact associated with this recurring contribution.
6a488035
TO
68 *
69 * @var int
6a488035 70 */
430ae6dd
TO
71 public $_contactID;
72
c0f62075 73 /**
74 * Pre-processing for the form.
75 *
76 * @throws \Exception
77 */
00be9182 78 public function preProcess() {
6a488035 79
a0d322b1
KW
80 $this->setAction(CRM_Core_Action::UPDATE);
81
0c6c47a5 82 $this->contributionRecurID = CRM_Utils_Request::retrieve('crid', 'Integer', $this, FALSE);
83 if ($this->contributionRecurID) {
b3e340d9 84 try {
cd3ad80e 85 $this->_paymentProcessorObj = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessorForRecurringContribution($this->contributionRecurID);
b3e340d9 86 }
87 catch (CRM_Core_Exception $e) {
0c6c47a5 88 CRM_Core_Error::statusBounce(ts('There is no valid processor for this subscription so it cannot be edited.'));
89 }
0c6c47a5 90 $this->_subscriptionDetails = CRM_Contribute_BAO_ContributionRecur::getSubscriptionDetails($this->contributionRecurID);
6a488035
TO
91 }
92
93 $this->_coid = CRM_Utils_Request::retrieve('coid', 'Integer', $this, FALSE);
94 if ($this->_coid) {
95 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_coid, 'contribute', 'info');
cd3ad80e 96 // @todo test & replace with $this->_paymentProcessorObj = Civi\Payment\System::singleton()->getById($this->_paymentProcessor['id']);
6a488035
TO
97 $this->_paymentProcessorObj = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($this->_coid, 'contribute', 'obj');
98 $this->_subscriptionDetails = CRM_Contribute_BAO_ContributionRecur::getSubscriptionDetails($this->_coid, 'contribution');
0c6c47a5 99 $this->contributionRecurID = $this->_subscriptionDetails->recur_id;
6a488035 100 }
0c6c47a5 101 elseif ($this->contributionRecurID) {
102 $this->_coid = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $this->contributionRecurID, 'id', 'contribution_recur_id');
8de2c073 103 }
6a488035 104
1273d77c 105 if (!$this->contributionRecurID || !$this->_subscriptionDetails) {
7bcd892a 106 CRM_Core_Error::statusBounce(ts('Required information missing.'));
6a488035
TO
107 }
108
109 if ($this->_subscriptionDetails->membership_id && $this->_subscriptionDetails->auto_renew) {
14b61354
MW
110 // Add Membership details to form
111 $membership = civicrm_api3('Membership', 'get', array(
112 'contribution_recur_id' => $this->contributionRecurID,
113 ));
114 if (!empty($membership['count'])) {
115 $membershipDetails = reset($membership['values']);
116 $values['membership_id'] = $membershipDetails['id'];
117 $values['membership_name'] = $membershipDetails['membership_name'];
118 }
119 $this->assign('recurMembership', $values);
120 $this->assign('contactId', $this->_subscriptionDetails->contact_id);
6a488035
TO
121 }
122
123 if (!CRM_Core_Permission::check('edit contributions')) {
124 $userChecksum = CRM_Utils_Request::retrieve('cs', 'String', $this, FALSE);
125 if (!CRM_Contact_BAO_Contact_Utils::validChecksum($this->_subscriptionDetails->contact_id, $userChecksum)) {
7bcd892a 126 CRM_Core_Error::statusBounce(ts('You do not have permission to update subscription.'));
6a488035
TO
127 }
128 $this->_selfService = TRUE;
129 }
130 $this->assign('self_service', $this->_selfService);
131
0c6c47a5 132 $this->editableScheduleFields = $this->_paymentProcessorObj->getEditableRecurringScheduleFields();
133
134 $changeHelpText = $this->_paymentProcessorObj->getRecurringScheduleUpdateHelpText();
135 if (!in_array('amount', $this->editableScheduleFields)) {
136 // Not sure if this is good behaviour - maintaining this existing behaviour for now.
137 CRM_Core_Session::setStatus($changeHelpText, ts('Warning'), 'alert');
138 }
139 else {
140 $this->assign('changeHelpText', $changeHelpText);
141 }
142 $alreadyHardCodedFields = array('amount', 'installments');
143 foreach ($this->editableScheduleFields as $editableScheduleField) {
144 if (!in_array($editableScheduleField, $alreadyHardCodedFields)) {
95d72a5f 145 $this->addField($editableScheduleField, array('entity' => 'ContributionRecur'));
0c6c47a5 146 }
6a488035
TO
147 }
148
0c6c47a5 149 $this->assign('editableScheduleFields', array_diff($this->editableScheduleFields, $alreadyHardCodedFields));
6a488035
TO
150
151 if ($this->_subscriptionDetails->contact_id) {
152 list($this->_donorDisplayName, $this->_donorEmail) = CRM_Contact_BAO_Contact::getContactDetails($this->_subscriptionDetails->contact_id);
153 }
154
155 CRM_Utils_System::setTitle(ts('Update Recurring Contribution'));
156
0c6c47a5 157 // Handle context redirection.
6a488035
TO
158 CRM_Contribute_BAO_ContributionRecur::setSubscriptionContext();
159 }
160
161 /**
347e061b 162 * Set default values for the form.
6a488035 163 *
347e061b 164 * Note that in edit/view mode the default values are retrieved from the database.
6a488035 165 */
00be9182 166 public function setDefaultValues() {
6a488035
TO
167 $this->_defaults = array();
168 $this->_defaults['amount'] = $this->_subscriptionDetails->amount;
169 $this->_defaults['installments'] = $this->_subscriptionDetails->installments;
7083dc2a 170 $this->_defaults['campaign_id'] = $this->_subscriptionDetails->campaign_id;
467fe956 171 $this->_defaults['financial_type_id'] = $this->_subscriptionDetails->financial_type_id;
6a488035 172 $this->_defaults['is_notify'] = 1;
0c6c47a5 173 foreach ($this->editableScheduleFields as $field) {
174 $this->_defaults[$field] = $this->_subscriptionDetails->$field;
175 }
6a488035
TO
176
177 return $this->_defaults;
178 }
179
180 /**
fe482240 181 * Actually build the components of the form.
6a488035
TO
182 */
183 public function buildQuickForm() {
8de2c073 184 // CRM-16398: If current recurring contribution got > 1 lineitems then make amount field readonly
185 $amtAttr = array('size' => 20);
186 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($this->_coid);
187 if (count($lineItems) > 1) {
188 $amtAttr += array('readonly' => TRUE);
189 }
190 $this->addMoney('amount', ts('Recurring Contribution Amount'), TRUE, $amtAttr,
191 TRUE, 'currency', $this->_subscriptionDetails->currency, TRUE
6a488035
TO
192 );
193
467fe956 194 $this->add('text', 'installments', ts('Number of Installments'), array('size' => 20), FALSE);
6a488035
TO
195
196 if ($this->_donorEmail) {
197 $this->add('checkbox', 'is_notify', ts('Notify Contributor?'));
198 }
199
7083dc2a 200 if (CRM_Core_Permission::check('edit contributions')) {
edb227cd 201 CRM_Campaign_BAO_Campaign::addCampaign($this, $this->_subscriptionDetails->campaign_id);
467fe956 202 }
203
0c6c47a5 204 if (CRM_Contribute_BAO_ContributionRecur::supportsFinancialTypeChange($this->contributionRecurID)) {
0d93f90b 205 $this->addEntityRef('financial_type_id', ts('Financial Type'), array('entity' => 'FinancialType'), !$this->_selfService);
7083dc2a 206 }
207
6a488035 208 $type = 'next';
481a74f4 209 if ($this->_selfService) {
6a488035
TO
210 $type = 'submit';
211 }
212
213 // define the buttons
214 $this->addButtons(array(
215 array(
216 'type' => $type,
217 'name' => ts('Save'),
218 'isDefault' => TRUE,
219 ),
220 array(
221 'type' => 'cancel',
222 'name' => ts('Cancel'),
223 ),
224 )
225 );
226 }
227
228 /**
347e061b 229 * Called after the user submits the form.
6a488035
TO
230 */
231 public function postProcess() {
232 // store the submitted values in an array
233 $params = $this->exportValues();
234
235 if ($this->_selfService && $this->_donorEmail) {
236 // for self service force notify
237 $params['is_notify'] = 1;
238 }
239
240 // if this is an update of an existing recurring contribution, pass the ID
241 $params['id'] = $this->_subscriptionDetails->recur_id;
242 $message = '';
243
244 $params['subscriptionId'] = $this->_subscriptionDetails->subscription_id;
4eeb9a5b 245 $updateSubscription = TRUE;
6a488035 246 if ($this->_paymentProcessorObj->isSupported('changeSubscriptionAmount')) {
353ffa53 247 $updateSubscription = $this->_paymentProcessorObj->changeSubscriptionAmount($message, $params);
6a488035
TO
248 }
249 if (is_a($updateSubscription, 'CRM_Core_Error')) {
353ffa53
TO
250 CRM_Core_Error::displaySessionError($updateSubscription);
251 $status = ts('Could not update the Recurring contribution details');
252 $msgTitle = ts('Update Error');
253 $msgType = 'error';
6a488035
TO
254 }
255 elseif ($updateSubscription) {
353ffa53
TO
256 // save the changes
257 $result = CRM_Contribute_BAO_ContributionRecur::add($params);
258 $status = ts('Recurring contribution has been updated to: %1, every %2 %3(s) for %4 installments.',
259 array(
260 1 => CRM_Utils_Money::format($params['amount'], $this->_subscriptionDetails->currency),
261 2 => $this->_subscriptionDetails->frequency_interval,
262 3 => $this->_subscriptionDetails->frequency_unit,
263 4 => $params['installments'],
264 )
265 );
266
267 $msgTitle = ts('Update Success');
268 $msgType = 'success';
c6c91efc 269 $msg = ts('Recurring Contribution Updated');
353ffa53
TO
270 $contactID = $this->_subscriptionDetails->contact_id;
271
272 if ($this->_subscriptionDetails->amount != $params['amount']) {
273 $message .= "<br /> " . ts("Recurring contribution amount has been updated from %1 to %2 for this subscription.",
274 array(
275 1 => CRM_Utils_Money::format($this->_subscriptionDetails->amount, $this->_subscriptionDetails->currency),
276 2 => CRM_Utils_Money::format($params['amount'], $this->_subscriptionDetails->currency),
277 )) . ' ';
c6c91efc 278 if ($this->_subscriptionDetails->amount < $params['amount']) {
279 $msg = ts('Recurring Contribution Updated - increased installment amount');
280 }
281 else {
282 $msg = ts('Recurring Contribution Updated - decreased installment amount');
283 }
353ffa53 284 }
6a488035 285
353ffa53
TO
286 if ($this->_subscriptionDetails->installments != $params['installments']) {
287 $message .= "<br /> " . ts("Recurring contribution installments have been updated from %1 to %2 for this subscription.", array(
288 1 => $this->_subscriptionDetails->installments,
317fceb4 289 2 => $params['installments'],
353ffa53
TO
290 )) . ' ';
291 }
6a488035 292
353ffa53
TO
293 $activityParams = array(
294 'source_contact_id' => $contactID,
12853dec 295 'activity_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Update Recurring Contribution'),
c6c91efc 296 'subject' => $msg,
353ffa53
TO
297 'details' => $message,
298 'activity_date_time' => date('YmdHis'),
12853dec 299 'status_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_status_id', 'Completed'),
353ffa53 300 );
12853dec 301
353ffa53
TO
302 $session = CRM_Core_Session::singleton();
303 $cid = $session->get('userID');
6a488035 304
353ffa53
TO
305 if ($cid) {
306 $activityParams['target_contact_id'][] = $activityParams['source_contact_id'];
307 $activityParams['source_contact_id'] = $cid;
308 }
309 CRM_Activity_BAO_Activity::create($activityParams);
310
311 if (!empty($params['is_notify'])) {
312 // send notification
313 if ($this->_subscriptionDetails->contribution_page_id) {
314 CRM_Core_DAO::commonRetrieveAll('CRM_Contribute_DAO_ContributionPage', 'id',
315 $this->_subscriptionDetails->contribution_page_id, $value, array(
316 'title',
317 'receipt_from_name',
318 'receipt_from_email',
319 )
6a488035 320 );
353ffa53
TO
321 $receiptFrom = '"' . CRM_Utils_Array::value('receipt_from_name', $value[$this->_subscriptionDetails->contribution_page_id]) . '" <' . $value[$this->_subscriptionDetails->contribution_page_id]['receipt_from_email'] . '>';
322 }
323 else {
324 $domainValues = CRM_Core_BAO_Domain::getNameAndEmail();
325 $receiptFrom = "$domainValues[0] <$domainValues[1]>";
6a488035 326 }
353ffa53
TO
327
328 list($donorDisplayName, $donorEmail) = CRM_Contact_BAO_Contact::getContactDetails($contactID);
329
330 $tplParams = array(
331 'recur_frequency_interval' => $this->_subscriptionDetails->frequency_interval,
332 'recur_frequency_unit' => $this->_subscriptionDetails->frequency_unit,
333 'amount' => CRM_Utils_Money::format($params['amount']),
334 'installments' => $params['installments'],
335 );
336
337 $tplParams['contact'] = array('display_name' => $donorDisplayName);
338 $tplParams['receipt_from_email'] = $receiptFrom;
339
340 $sendTemplateParams = array(
341 'groupName' => 'msg_tpl_workflow_contribution',
342 'valueName' => 'contribution_recurring_edit',
343 'contactId' => $contactID,
344 'tplParams' => $tplParams,
345 'isTest' => $this->_subscriptionDetails->is_test,
346 'PDFFilename' => 'receipt.pdf',
347 'from' => $receiptFrom,
348 'toName' => $donorDisplayName,
349 'toEmail' => $donorEmail,
350 );
351 list($sent) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
6a488035 352 }
353ffa53 353 }
6a488035
TO
354
355 $session = CRM_Core_Session::singleton();
353ffa53 356 $userID = $session->get('userID');
481a74f4 357 if ($userID && $status) {
6a488035 358 CRM_Core_Session::setStatus($status, $msgTitle, $msgType);
0db6c3e1 359 }
4c9b6178 360 elseif (!$userID) {
317fceb4 361 if ($status) {
6a488035 362 CRM_Utils_System::setUFMessage($status);
317fceb4 363 }
6a488035
TO
364 // keep result as 1, since we not displaying anything on the redirected page anyway
365 return CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contribute/subscriptionstatus',
353ffa53 366 "reset=1&task=update&result=1"));
6a488035
TO
367 }
368 }
96025800 369
0c6c47a5 370 /**
371 * Explicitly declare the form context.
372 */
373 public function getDefaultContext() {
374 return 'create';
375 }
376
6a488035 377}