Merge pull request #14263 from elisseck/dev/core/966
[civicrm-core.git] / CRM / Core / Payment / BaseIPN.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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/**
1d86918a 29 * Class CRM_Core_Payment_BaseIPN.
6a488035
TO
30 */
31class CRM_Core_Payment_BaseIPN {
32
518fa0ee 33 public static $_now = NULL;
8196c759 34
c8aa607b 35 /**
36 * Input parameters from payment processor. Store these so that
37 * the code does not need to keep retrieving from the http request
38 * @var array
39 */
be2fb01f 40 protected $_inputParameters = [];
c8aa607b 41
59cdadfc 42 /**
43 * Only used by AuthorizeNetIPN.
518fa0ee 44 * @var bool
59cdadfc 45 *
46 * @deprecated
47 *
59cdadfc 48 */
937cf542
EM
49 protected $_isRecurring = FALSE;
50
59cdadfc 51 /**
52 * Only used by AuthorizeNetIPN.
518fa0ee 53 * @var bool
59cdadfc 54 *
55 * @deprecated
56 *
59cdadfc 57 */
937cf542 58 protected $_isFirstOrLastRecurringPayment = FALSE;
353ffa53 59
8196c759 60 /**
fe482240 61 * Constructor.
8196c759 62 */
00be9182 63 public function __construct() {
6a488035
TO
64 self::$_now = date('YmdHis');
65 }
66
c8aa607b 67 /**
fe482240 68 * Store input array on the class.
77b97be7 69 *
c8aa607b 70 * @param array $parameters
77b97be7
EM
71 *
72 * @throws CRM_Core_Exception
c8aa607b 73 */
00be9182 74 public function setInputParameters($parameters) {
22e263ad 75 if (!is_array($parameters)) {
cc0c30cc 76 throw new CRM_Core_Exception('Invalid input parameters');
c8aa607b 77 }
78 $this->_inputParameters = $parameters;
79 }
353ffa53 80
8196c759 81 /**
1d86918a
EM
82 * Validate incoming data.
83 *
84 * This function is intended to ensure that incoming data matches
8196c759 85 * It provides a form of pseudo-authentication - by checking the calling fn already knows
86 * the correct contact id & contribution id (this can be problematic when that has changed in
87 * the meantime for transactions that are delayed & contacts are merged in-between. e.g
88 * Paypal allows you to resend Instant Payment Notifications if you, for example, moved site
89 * and didn't update your IPN URL.
90 *
6a0b768e
TO
91 * @param array $input
92 * Interpreted values from the values returned through the IPN.
93 * @param array $ids
94 * More interpreted values (ids) from the values returned through the IPN.
95 * @param array $objects
96 * An empty array that will be populated with loaded object.
97 * @param bool $required
98 * Boolean Return FALSE if the relevant objects don't exist.
99 * @param int $paymentProcessorID
100 * Id of the payment processor ID in use.
1d86918a 101 *
5c766a0b 102 * @return bool
8196c759 103 */
00be9182 104 public function validateData(&$input, &$ids, &$objects, $required = TRUE, $paymentProcessorID = NULL) {
6a488035
TO
105
106 // make sure contact exists and is valid
5a9c68ac 107 $contact = new CRM_Contact_BAO_Contact();
6a488035
TO
108 $contact->id = $ids['contact'];
109 if (!$contact->find(TRUE)) {
92fcb95f 110 CRM_Core_Error::debug_log_message("Could not find contact record: {$ids['contact']} in IPN request: " . print_r($input, TRUE));
6a488035
TO
111 echo "Failure: Could not find contact record: {$ids['contact']}<p>";
112 return FALSE;
113 }
114
115 // make sure contribution exists and is valid
5a9c68ac 116 $contribution = new CRM_Contribute_BAO_Contribution();
6a488035
TO
117 $contribution->id = $ids['contribution'];
118 if (!$contribution->find(TRUE)) {
92fcb95f 119 CRM_Core_Error::debug_log_message("Could not find contribution record: {$contribution->id} in IPN request: " . print_r($input, TRUE));
6a488035
TO
120 echo "Failure: Could not find contribution record for {$contribution->id}<p>";
121 return FALSE;
122 }
123 $contribution->receive_date = CRM_Utils_Date::isoToMysql($contribution->receive_date);
d9924163 124 $contribution->receipt_date = CRM_Utils_Date::isoToMysql($contribution->receipt_date);
6a488035
TO
125
126 $objects['contact'] = &$contact;
127 $objects['contribution'] = &$contribution;
d0488f03 128
129 // CRM-19478: handle oddity when p=null is set in place of contribution page ID,
130 if (!empty($ids['contributionPage']) && !is_numeric($ids['contributionPage'])) {
131 // We don't need to worry if about removing contribution page id as it will be set later in
132 // CRM_Contribute_BAO_Contribution::loadRelatedObjects(..) using $objects['contribution']->contribution_page_id
133 unset($ids['contributionPage']);
134 }
135
6a488035
TO
136 if (!$this->loadObjects($input, $ids, $objects, $required, $paymentProcessorID)) {
137 return FALSE;
138 }
a284891b
EM
139 //the process is that the loadObjects is kind of hacked by loading the objects for the original contribution and then somewhat inconsistently using them for the
140 //current contribution. Here we ensure that the original contribution is available to the complete transaction function
141 //we don't want to fix this in the payment processor classes because we would have to fix all of them - so better to fix somewhere central
142 if (isset($objects['contributionRecur'])) {
143 $objects['first_contribution'] = $objects['contribution'];
144 }
6a488035
TO
145 return TRUE;
146 }
147
8196c759 148 /**
fe482240 149 * Load objects related to contribution.
6a488035
TO
150 *
151 * @input array information from Payment processor
dd244018 152 *
3aaa68fb 153 * @param array $input
8196c759 154 * @param array $ids
155 * @param array $objects
6a0b768e
TO
156 * @param bool $required
157 * @param int $paymentProcessorID
8196c759 158 * @param array $error_handling
dd244018 159 *
3aaa68fb 160 * @return bool|array
6a488035 161 */
00be9182 162 public function loadObjects(&$input, &$ids, &$objects, $required, $paymentProcessorID, $error_handling = NULL) {
6a488035
TO
163 if (empty($error_handling)) {
164 // default options are that we log an error & echo it out
165 // note that we should refactor this error handling into error code @ some point
166 // but for now setting up enough separation so we can do unit tests
be2fb01f 167 $error_handling = [
6a488035
TO
168 'log_error' => 1,
169 'echo_error' => 1,
be2fb01f 170 ];
6a488035
TO
171 }
172 $ids['paymentProcessor'] = $paymentProcessorID;
173 if (is_a($objects['contribution'], 'CRM_Contribute_BAO_Contribution')) {
174 $contribution = &$objects['contribution'];
175 }
176 else {
177 //legacy support - functions are 'used' to be able to pass in a DAO
178 $contribution = new CRM_Contribute_BAO_Contribution();
179 $contribution->id = CRM_Utils_Array::value('contribution', $ids);
180 $contribution->find(TRUE);
181 $objects['contribution'] = &$contribution;
182 }
183 try {
276e3ec6 184 $success = $contribution->loadRelatedObjects($input, $ids);
185 if ($required && empty($contribution->_relatedObjects['paymentProcessor'])) {
186 throw new CRM_Core_Exception("Could not find payment processor for contribution record: " . $contribution->id);
187 }
6a488035 188 }
353ffa53 189 catch (Exception $e) {
cc0c30cc 190 $success = FALSE;
a7488080 191 if (!empty($error_handling['log_error'])) {
6a488035
TO
192 CRM_Core_Error::debug_log_message($e->getMessage());
193 }
a7488080 194 if (!empty($error_handling['echo_error'])) {
6c552737 195 echo $e->getMessage();
6a488035 196 }
a7488080 197 if (!empty($error_handling['return_error'])) {
be2fb01f 198 return [
6a488035
TO
199 'is_error' => 1,
200 'error_message' => ($e->getMessage()),
be2fb01f 201 ];
6a488035
TO
202 }
203 }
204 $objects = array_merge($objects, $contribution->_relatedObjects);
205 return $success;
206 }
207
8196c759 208 /**
fe482240 209 * Set contribution to failed.
28de42d1 210 *
8196c759 211 * @param array $objects
212 * @param object $transaction
213 * @param array $input
28de42d1 214 *
5c766a0b 215 * @return bool
8196c759 216 */
be2fb01f 217 public function failed(&$objects, &$transaction, $input = []) {
6a488035 218 $contribution = &$objects['contribution'];
be2fb01f 219 $memberships = [];
a7488080 220 if (!empty($objects['membership'])) {
6a488035
TO
221 $memberships = &$objects['membership'];
222 if (is_numeric($memberships)) {
be2fb01f 223 $memberships = [$objects['membership']];
6a488035
TO
224 }
225 }
226
227 $addLineItems = FALSE;
228 if (empty($contribution->id)) {
229 $addLineItems = TRUE;
230 }
231 $participant = &$objects['participant'];
232
3aaa68fb 233 // CRM-15546
be2fb01f 234 $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', [
518fa0ee
SL
235 'labelColumn' => 'name',
236 'flip' => 1,
237 ]);
5a9c68ac
PJ
238 $contribution->receive_date = CRM_Utils_Date::isoToMysql($contribution->receive_date);
239 $contribution->receipt_date = CRM_Utils_Date::isoToMysql($contribution->receipt_date);
240 $contribution->thankyou_date = CRM_Utils_Date::isoToMysql($contribution->thankyou_date);
71d085fe 241 $contribution->contribution_status_id = $contributionStatuses['Failed'];
6a488035
TO
242 $contribution->save();
243
28de42d1 244 // Add line items for recurring payments.
a7488080 245 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id && $addLineItems) {
e577770c 246 CRM_Contribute_BAO_ContributionRecur::addRecurLineItems($objects['contributionRecur']->id, $contribution);
6a488035
TO
247 }
248
8381af80 249 //add new soft credit against current contribution id and
6357981e 250 //copy initial contribution custom fields for recurring contributions
a7488080 251 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id) {
e577770c
EM
252 CRM_Contribute_BAO_ContributionRecur::addrecurSoftCredit($objects['contributionRecur']->id, $contribution->id);
253 CRM_Contribute_BAO_ContributionRecur::copyCustomValues($objects['contributionRecur']->id, $contribution->id);
6357981e
PJ
254 }
255
0bad10e7 256 if (empty($input['IAmAHorribleNastyBeyondExcusableHackInTheCRMEventFORMTaskClassThatNeedsToBERemoved'])) {
6a488035 257 if (!empty($memberships)) {
5968aa47 258 // if transaction is failed then set "Cancelled" as membership status
be2fb01f 259 $membershipStatuses = CRM_Core_PseudoConstant::get('CRM_Member_DAO_Membership', 'status_id', [
518fa0ee
SL
260 'labelColumn' => 'name',
261 'flip' => 1,
262 ]);
6a488035
TO
263 foreach ($memberships as $membership) {
264 if ($membership) {
71d085fe 265 $membership->status_id = $membershipStatuses['Cancelled'];
6a488035 266 $membership->save();
d63f4fc3 267
6a488035 268 //update related Memberships.
be2fb01f 269 $params = ['status_id' => $membershipStatuses['Cancelled']];
6a488035
TO
270 CRM_Member_BAO_Membership::updateRelatedMemberships($membership->id, $params);
271 }
272 }
273 }
d63f4fc3 274
6a488035 275 if ($participant) {
5f5e7a76
O
276 $participantParams['id'] = $participant->id;
277 $participantParams['status_id'] = 'Cancelled';
278 civicrm_api3('Participant', 'create', $participantParams);
6a488035
TO
279 }
280 }
281
282 $transaction->commit();
283 CRM_Core_Error::debug_log_message("Setting contribution status to failed");
284 //echo "Success: Setting contribution status to failed<p>";
285 return TRUE;
286 }
287
8196c759 288 /**
fe482240 289 * Handled pending contribution status.
1d86918a 290 *
8196c759 291 * @param array $objects
292 * @param object $transaction
1d86918a 293 *
5c766a0b 294 * @return bool
8196c759 295 */
00be9182 296 public function pending(&$objects, &$transaction) {
6a488035
TO
297 $transaction->commit();
298 CRM_Core_Error::debug_log_message("returning since contribution status is pending");
299 echo "Success: Returning since contribution status is pending<p>";
300 return TRUE;
301 }
302
6c786a9b 303 /**
1d86918a
EM
304 * Process cancelled payment outcome.
305 *
3aaa68fb 306 * @param array $objects
307 * @param CRM_Core_Transaction $transaction
6c786a9b
EM
308 * @param array $input
309 *
310 * @return bool
311 */
be2fb01f 312 public function cancelled(&$objects, &$transaction, $input = []) {
6a488035
TO
313 $contribution = &$objects['contribution'];
314 $memberships = &$objects['membership'];
315 if (is_numeric($memberships)) {
be2fb01f 316 $memberships = [$objects['membership']];
6a488035
TO
317 }
318
319 $participant = &$objects['participant'];
320 $addLineItems = FALSE;
321 if (empty($contribution->id)) {
322 $addLineItems = TRUE;
323 }
be2fb01f 324 $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', [
518fa0ee
SL
325 'labelColumn' => 'name',
326 'flip' => 1,
327 ]);
71d085fe 328 $contribution->contribution_status_id = $contributionStatuses['Cancelled'];
6a488035
TO
329 $contribution->cancel_date = self::$_now;
330 $contribution->cancel_reason = CRM_Utils_Array::value('reasonCode', $input);
331 $contribution->receive_date = CRM_Utils_Date::isoToMysql($contribution->receive_date);
332 $contribution->receipt_date = CRM_Utils_Date::isoToMysql($contribution->receipt_date);
333 $contribution->thankyou_date = CRM_Utils_Date::isoToMysql($contribution->thankyou_date);
334 $contribution->save();
335
336 //add lineitems for recurring payments
a7488080 337 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id && $addLineItems) {
e577770c 338 CRM_Contribute_BAO_ContributionRecur::addRecurLineItems($objects['contributionRecur']->id, $contribution);
6a488035
TO
339 }
340
8381af80 341 //add new soft credit against current $contribution and
6357981e 342 //copy initial contribution custom fields for recurring contributions
a7488080 343 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id) {
e577770c
EM
344 CRM_Contribute_BAO_ContributionRecur::addrecurSoftCredit($objects['contributionRecur']->id, $contribution->id);
345 CRM_Contribute_BAO_ContributionRecur::copyCustomValues($objects['contributionRecur']->id, $contribution->id);
6357981e
PJ
346 }
347
0bad10e7 348 if (empty($input['IAmAHorribleNastyBeyondExcusableHackInTheCRMEventFORMTaskClassThatNeedsToBERemoved'])) {
6a488035 349 if (!empty($memberships)) {
be2fb01f 350 $membershipStatuses = CRM_Core_PseudoConstant::get('CRM_Member_DAO_Membership', 'status_id', [
518fa0ee
SL
351 'labelColumn' => 'name',
352 'flip' => 1,
353 ]);
e2e61e46 354 // Cancel only Pending memberships
355 // CRM-18688
356 $pendingStatusId = $membershipStatuses['Pending'];
6a488035 357 foreach ($memberships as $membership) {
e2e61e46 358 if ($membership && ($membership->status_id == $pendingStatusId)) {
71d085fe 359 $membership->status_id = $membershipStatuses['Cancelled'];
6a488035 360 $membership->save();
d63f4fc3 361
6a488035 362 //update related Memberships.
be2fb01f 363 $params = ['status_id' => $membershipStatuses['Cancelled']];
6a488035
TO
364 CRM_Member_BAO_Membership::updateRelatedMemberships($membership->id, $params);
365 }
366 }
367 }
d63f4fc3 368
6a488035 369 if ($participant) {
5f5e7a76
O
370 $participantParams['id'] = $participant->id;
371 $participantParams['status_id'] = 'Cancelled';
372 civicrm_api3('Participant', 'create', $participantParams);
6a488035
TO
373 }
374 }
375 $transaction->commit();
376 CRM_Core_Error::debug_log_message("Setting contribution status to cancelled");
377 //echo "Success: Setting contribution status to cancelled<p>";
378 return TRUE;
379 }
380
6c786a9b 381 /**
1d86918a
EM
382 * Rollback unhandled outcomes.
383 *
3aaa68fb 384 * @param array $objects
385 * @param CRM_Core_Transaction $transaction
6c786a9b
EM
386 *
387 * @return bool
388 */
00be9182 389 public function unhandled(&$objects, &$transaction) {
6a488035 390 $transaction->rollback();
2d8851f6
EM
391 CRM_Core_Error::debug_log_message("returning since contribution status: is not handled");
392 echo "Failure: contribution status is not handled<p>";
6a488035
TO
393 return FALSE;
394 }
395
6c786a9b 396 /**
4a1ba425 397 * @deprecated
398 *
3ccde016 399 * Jumbled up function.
1d86918a 400 *
3ccde016
EM
401 * The purpose of this function is to transition a pending transaction to Completed including updating any
402 * related entities.
403 *
404 * It has been overloaded to also add recurring transactions to the database, cloning the original transaction and
405 * updating related entities.
406 *
407 * It is recommended to avoid calling this function directly and call the api functions:
408 * - contribution.completetransaction
409 * - contribution.repeattransaction
410 *
411 * These functions are the focus of testing efforts and more accurately reflect the division of roles
412 * (the job of the IPN class is to determine the outcome, transaction id, invoice id & to validate the source
413 * and from there it should be possible to pass off transaction management.)
414 *
415 * This function has been problematic for some time but there are now several tests via the api_v3_Contribution test
416 * and the Paypal & Authorize.net IPN tests so any refactoring should be done in conjunction with those.
417 *
5ca657dd 418 * This function needs to have the 'body' moved to the CRM_Contribute_BAO_Contribute class and to undergo
3ccde016
EM
419 * refactoring to separate the complete transaction and repeat transaction functionality into separate functions with
420 * a shared function that updates related components.
421 *
422 * Note that it is not necessary payment processor extension to implement an IPN class now. In general the code on the
423 * IPN class is better accessed through the api which de-jumbles it a bit.
424 *
425 * e.g the payment class can have a function like (based on Omnipay extension):
426 *
427 * public function handlePaymentNotification() {
428 * $response = $this->getValidatedOutcome();
429 * if ($response->isSuccessful()) {
430 * try {
431 * // @todo check if it is a repeat transaction & call repeattransaction instead.
432 * civicrm_api3('contribution', 'completetransaction', array('id' => $this->transaction_id));
433 * }
434 * catch (CiviCRM_API3_Exception $e) {
435 * if (!stristr($e->getMessage(), 'Contribution already completed')) {
436 * $this->handleError('error', $this->transaction_id . $e->getMessage(), 'ipn_completion', 9000, 'An error may
437 * have occurred. Please check your receipt is correct');
438 * $this->redirectOrExit('success');
439 * }
440 * elseif ($this->transaction_id) {
441 * civicrm_api3('contribution', 'create', array('id' => $this->transaction_id, 'contribution_status_id' =>
442 * 'Failed'));
443 * }
444 *
445 * @param array $input
446 * @param array $ids
447 * @param array $objects
3aaa68fb 448 * @param CRM_Core_Transaction $transaction
6c786a9b
EM
449 * @param bool $recur
450 */
00be9182 451 public function completeTransaction(&$input, &$ids, &$objects, &$transaction, $recur = FALSE) {
6a488035 452 $contribution = &$objects['contribution'];
a284891b 453
4086637a 454 CRM_Contribute_BAO_Contribution::completeOrder($input, $ids, $objects, $transaction, $recur, $contribution);
6a488035
TO
455 }
456
6c786a9b 457 /**
1d86918a
EM
458 * Get site billing ID.
459 *
460 * @param array $ids
6c786a9b
EM
461 *
462 * @return bool
463 */
00be9182 464 public function getBillingID(&$ids) {
b576d770 465 $ids['billing'] = CRM_Core_BAO_LocationType::getBilling();
6a488035 466 if (!$ids['billing']) {
be2fb01f 467 CRM_Core_Error::debug_log_message(ts('Please set a location type of %1', [1 => 'Billing']));
6a488035
TO
468 echo "Failure: Could not find billing location type<p>";
469 return FALSE;
470 }
471 return TRUE;
472 }
473
c490a46a 474 /**
db59bb73
EM
475 * @deprecated
476 *
6626a693 477 * @todo confirm this function is not being used by any payment processor outside core & remove.
478 *
1d86918a 479 * Note that the compose message part has been moved to contribution
6a488035
TO
480 * In general LoadObjects is called first to get the objects but the composeMessageArray function now calls it
481 *
6a0b768e
TO
482 * @param array $input
483 * Incoming data from Payment processor.
484 * @param array $ids
485 * Related object IDs.
3aaa68fb 486 * @param array $objects
6a0b768e
TO
487 * @param array $values
488 * Values related to objects that have already been loaded.
489 * @param bool $recur
490 * Is it part of a recurring contribution.
491 * @param bool $returnMessageText
492 * Should text be returned instead of sent. This.
16b10e64 493 * is because the function is also used to generate pdfs
6c786a9b 494 *
c490a46a 495 * @return array
6c786a9b 496 */
00be9182 497 public function sendMail(&$input, &$ids, &$objects, &$values, $recur = FALSE, $returnMessageText = FALSE) {
6626a693 498 return CRM_Contribute_BAO_Contribution::sendMail($input, $ids, $objects['contribution']->id, $values,
3425da09 499 $returnMessageText);
6a488035
TO
500 }
501
b2b0530a 502}