3 +--------------------------------------------------------------------+
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2019
35 * This class provides support for canceling recurring subscriptions.
37 class CRM_Contribute_Form_CancelSubscription
extends CRM_Contribute_Form_ContributionRecur
{
38 protected $_paymentProcessorObj = NULL;
40 protected $_userContext = NULL;
42 protected $_mode = NULL;
44 protected $_mid = NULL;
46 protected $_selfService = FALSE;
49 * Set variables up before form is built.
51 public function preProcess() {
52 $this->_mid
= CRM_Utils_Request
::retrieve('mid', 'Integer', $this, FALSE);
54 $this->_crid
= CRM_Utils_Request
::retrieve('crid', 'Integer', $this, FALSE);
56 $this->_paymentProcessorObj
= CRM_Financial_BAO_PaymentProcessor
::getProcessorForEntity($this->_crid
, 'recur', 'obj');
57 $this->_subscriptionDetails
= CRM_Contribute_BAO_ContributionRecur
::getSubscriptionDetails($this->_crid
);
58 $this->assign('frequency_unit', $this->_subscriptionDetails
->frequency_unit
);
59 $this->assign('frequency_interval', $this->_subscriptionDetails
->frequency_interval
);
60 $this->assign('amount', $this->_subscriptionDetails
->amount
);
61 $this->assign('installments', $this->_subscriptionDetails
->installments
);
63 // Are we cancelling a recurring contribution that is linked to an auto-renew membership?
64 if ($this->_subscriptionDetails
->membership_id
) {
65 $this->_mid
= $this->_subscriptionDetails
->membership_id
;
70 $this->_mode
= 'auto_renew';
71 // CRM-18468: crid is more accurate than mid for getting
72 // subscriptionDetails, so don't get them again.
74 $this->_paymentProcessorObj
= CRM_Financial_BAO_PaymentProcessor
::getProcessorForEntity($this->_mid
, 'membership', 'obj');
75 $this->_subscriptionDetails
= CRM_Contribute_BAO_ContributionRecur
::getSubscriptionDetails($this->_mid
, 'membership');
78 $membershipTypes = CRM_Member_PseudoConstant
::membershipType();
79 $membershipTypeId = CRM_Core_DAO
::getFieldValue('CRM_Member_DAO_Membership', $this->_mid
, 'membership_type_id');
80 $this->assign('membershipType', CRM_Utils_Array
::value($membershipTypeId, $membershipTypes));
83 $this->_coid
= CRM_Utils_Request
::retrieve('coid', 'Integer', $this, FALSE);
85 if (CRM_Contribute_BAO_Contribution
::isSubscriptionCancelled($this->_coid
)) {
86 CRM_Core_Error
::fatal(ts('The recurring contribution looks to have been cancelled already.'));
88 $this->_paymentProcessorObj
= CRM_Financial_BAO_PaymentProcessor
::getProcessorForEntity($this->_coid
, 'contribute', 'obj');
89 $this->_subscriptionDetails
= CRM_Contribute_BAO_ContributionRecur
::getSubscriptionDetails($this->_coid
, 'contribution');
91 $this->assign('frequency_unit', $this->_subscriptionDetails
->frequency_unit
);
92 $this->assign('frequency_interval', $this->_subscriptionDetails
->frequency_interval
);
93 $this->assign('amount', $this->_subscriptionDetails
->amount
);
94 $this->assign('installments', $this->_subscriptionDetails
->installments
);
98 (!$this->_crid
&& !$this->_coid
&& !$this->_mid
) ||
99 (!$this->_subscriptionDetails
)
101 CRM_Core_Error
::fatal('Required information missing.');
104 if (!CRM_Core_Permission
::check('edit contributions')) {
105 if ($this->_subscriptionDetails
->contact_id
!= $this->getContactID()) {
106 CRM_Core_Error
::statusBounce(ts('You do not have permission to cancel this recurring contribution.'));
108 $this->_selfService
= TRUE;
110 $this->assign('self_service', $this->_selfService
);
112 // handle context redirection
113 CRM_Contribute_BAO_ContributionRecur
::setSubscriptionContext();
115 CRM_Utils_System
::setTitle($this->_mid ?
ts('Cancel Auto-renewal') : ts('Cancel Recurring Contribution'));
116 $this->assign('mode', $this->_mode
);
118 if ($this->_subscriptionDetails
->contact_id
) {
119 list($this->_donorDisplayName
, $this->_donorEmail
)
120 = CRM_Contact_BAO_Contact
::getContactDetails($this->_subscriptionDetails
->contact_id
);
125 * Build the form object.
127 public function buildQuickForm() {
128 // Determine if we can cancel recurring contribution via API with this processor
129 $cancelSupported = $this->_paymentProcessorObj
->supports('CancelRecurring');
130 if ($cancelSupported) {
131 $searchRange = array();
132 $searchRange[] = $this->createElement('radio', NULL, NULL, ts('Yes'), '1');
133 $searchRange[] = $this->createElement('radio', NULL, NULL, ts('No'), '0');
137 'send_cancel_request',
138 ts('Send cancellation request to %1 ?',
139 array(1 => $this->_paymentProcessorObj
->_processorName
))
142 $this->assign('cancelSupported', $cancelSupported);
144 if ($this->_donorEmail
) {
145 $this->add('checkbox', 'is_notify', ts('Notify Contributor?'));
148 $cancelButton = ts('Cancel Automatic Membership Renewal');
151 $cancelButton = ts('Cancel Recurring Contribution');
155 if ($this->_selfService
) {
159 $this->addButtons(array(
162 'name' => $cancelButton,
163 'spacing' => ' ',
168 'name' => ts('Not Now'),
175 * Set default values for the form.
178 * array of default values
180 public function setDefaultValues() {
183 'send_cancel_request' => 1,
188 * Process the form submission.
190 public function postProcess() {
191 $status = $message = NULL;
192 $cancelSubscription = TRUE;
193 $params = $this->controller
->exportValues($this->_name
);
195 if ($this->_selfService
) {
196 // for self service force sending-request & notify
197 if ($this->_paymentProcessorObj
->supports('cancelRecurring')) {
198 $params['send_cancel_request'] = 1;
201 if ($this->_donorEmail
) {
202 $params['is_notify'] = 1;
206 if (CRM_Utils_Array
::value('send_cancel_request', $params) == 1) {
207 $cancelParams = array('subscriptionId' => $this->_subscriptionDetails
->subscription_id
);
208 $cancelSubscription = $this->_paymentProcessorObj
->cancelSubscription($message, $cancelParams);
211 if (is_a($cancelSubscription, 'CRM_Core_Error')) {
212 CRM_Core_Error
::displaySessionError($cancelSubscription);
214 elseif ($cancelSubscription) {
217 'subject' => $this->_mid ?
ts('Auto-renewal membership cancelled') : ts('Recurring contribution cancelled'),
218 'details' => $message,
220 $cancelStatus = CRM_Contribute_BAO_ContributionRecur
::cancelRecurContribution(
221 $this->_subscriptionDetails
->recur_id
,
226 $tplParams = array();
228 $inputParams = array('id' => $this->_mid
);
229 CRM_Member_BAO_Membership
::getValues($inputParams, $tplParams);
230 $tplParams = $tplParams[$this->_mid
];
231 $tplParams['membership_status']
232 = CRM_Core_DAO
::getFieldValue('CRM_Member_DAO_MembershipStatus', $tplParams['status_id']);
233 $tplParams['membershipType']
234 = CRM_Core_DAO
::getFieldValue('CRM_Member_DAO_MembershipType', $tplParams['membership_type_id']);
235 $status = ts('The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.', array(1 => $tplParams['membershipType']));
236 $msgTitle = 'Membership Renewal Cancelled';
240 $tplParams['recur_frequency_interval'] = $this->_subscriptionDetails
->frequency_interval
;
241 $tplParams['recur_frequency_unit'] = $this->_subscriptionDetails
->frequency_unit
;
242 $tplParams['amount'] = $this->_subscriptionDetails
->amount
;
243 $tplParams['contact'] = array('display_name' => $this->_donorDisplayName
);
244 $status = ts('The recurring contribution of %1, every %2 %3 has been cancelled.',
246 1 => $this->_subscriptionDetails
->amount
,
247 2 => $this->_subscriptionDetails
->frequency_interval
,
248 3 => $this->_subscriptionDetails
->frequency_unit
,
251 $msgTitle = 'Contribution Cancelled';
252 $msgType = 'success';
255 if (CRM_Utils_Array
::value('is_notify', $params) == 1) {
256 if ($this->_subscriptionDetails
->contribution_page_id
) {
257 CRM_Core_DAO
::commonRetrieveAll(
258 'CRM_Contribute_DAO_ContributionPage',
260 $this->_subscriptionDetails
->contribution_page_id
,
262 array('title', 'receipt_from_name', 'receipt_from_email')
265 = '"' . CRM_Utils_Array
::value('receipt_from_name', $value[$this->_subscriptionDetails
->contribution_page_id
]) .
267 $value[$this->_subscriptionDetails
->contribution_page_id
]['receipt_from_email'] .
271 $domainValues = CRM_Core_BAO_Domain
::getNameAndEmail();
272 $receiptFrom = "$domainValues[0] <$domainValues[1]>";
278 'groupName' => $this->_mode
== 'auto_renew' ?
'msg_tpl_workflow_membership' : 'msg_tpl_workflow_contribution',
279 'valueName' => $this->_mode
== 'auto_renew' ?
'membership_autorenew_cancelled' : 'contribution_recurring_cancelled',
280 'contactId' => $this->_subscriptionDetails
->contact_id
,
281 'tplParams' => $tplParams,
282 //'isTest' => $isTest, set this from _objects
283 'PDFFilename' => 'receipt.pdf',
284 'from' => $receiptFrom,
285 'toName' => $this->_donorDisplayName
,
286 'toEmail' => $this->_donorEmail
,
288 list($sent) = CRM_Core_BAO_MessageTemplate
::sendTemplate($sendTemplateParams);
293 $msgTitle = ts('Error');
294 if ($params['send_cancel_request'] == 1) {
295 $status = ts('Recurring contribution was cancelled successfully by the processor, but could not be marked as cancelled in the database.');
298 $status = ts('Recurring contribution could not be cancelled in the database.');
303 $status = ts('The recurring contribution could not be cancelled.');
304 $msgTitle = 'Error Cancelling Contribution';
308 $session = CRM_Core_Session
::singleton();
309 $userID = $session->get('userID');
310 if ($userID && $status) {
311 $session->setStatus($status, $msgTitle, $msgType);
315 CRM_Utils_System
::setUFMessage($status);
316 // keep result as 1, since we not displaying anything on the redirected page anyway
317 return CRM_Utils_System
::redirect(CRM_Utils_System
::url('civicrm/contribute/subscriptionstatus',
318 "reset=1&task=cancel&result=1"));