Merge pull request #18732 from eileenmcnaughton/fail
[civicrm-core.git] / CRM / Core / Payment / BaseIPN.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 * Class CRM_Core_Payment_BaseIPN.
14 */
15 class CRM_Core_Payment_BaseIPN {
16
17 public static $_now = NULL;
18
19 /**
20 * Input parameters from payment processor. Store these so that
21 * the code does not need to keep retrieving from the http request
22 * @var array
23 */
24 protected $_inputParameters = [];
25
26 /**
27 * Only used by AuthorizeNetIPN.
28 * @var bool
29 *
30 * @deprecated
31 *
32 */
33 protected $_isRecurring = FALSE;
34
35 /**
36 * Only used by AuthorizeNetIPN.
37 * @var bool
38 *
39 * @deprecated
40 *
41 */
42 protected $_isFirstOrLastRecurringPayment = FALSE;
43
44 /**
45 * Constructor.
46 */
47 public function __construct() {
48 self::$_now = date('YmdHis');
49 }
50
51 /**
52 * Store input array on the class.
53 *
54 * @param array $parameters
55 *
56 * @throws CRM_Core_Exception
57 */
58 public function setInputParameters($parameters) {
59 if (!is_array($parameters)) {
60 throw new CRM_Core_Exception('Invalid input parameters');
61 }
62 $this->_inputParameters = $parameters;
63 }
64
65 /**
66 * Validate incoming data.
67 *
68 * This function is intended to ensure that incoming data matches
69 * It provides a form of pseudo-authentication - by checking the calling fn already knows
70 * the correct contact id & contribution id (this can be problematic when that has changed in
71 * the meantime for transactions that are delayed & contacts are merged in-between. e.g
72 * Paypal allows you to resend Instant Payment Notifications if you, for example, moved site
73 * and didn't update your IPN URL.
74 *
75 * @param array $input
76 * Interpreted values from the values returned through the IPN.
77 * @param array $ids
78 * More interpreted values (ids) from the values returned through the IPN.
79 * @param array $objects
80 * An empty array that will be populated with loaded object.
81 * @param bool $required
82 * Boolean Return FALSE if the relevant objects don't exist.
83 * @param int $paymentProcessorID
84 * Id of the payment processor ID in use.
85 *
86 * @return bool
87 */
88 public function validateData($input, &$ids, &$objects, $required = TRUE, $paymentProcessorID = NULL) {
89
90 // Check if the contribution exists
91 // make sure contribution exists and is valid
92 $contribution = new CRM_Contribute_BAO_Contribution();
93 $contribution->id = $ids['contribution'];
94 if (!$contribution->find(TRUE)) {
95 throw new CRM_Core_Exception('Failure: Could not find contribution record for ' . (int) $contribution->id, NULL, ['context' => "Could not find contribution record: {$contribution->id} in IPN request: " . print_r($input, TRUE)]);
96 }
97
98 // make sure contact exists and is valid
99 // use the contact id from the contribution record as the id in the IPN may not be valid anymore.
100 $contact = new CRM_Contact_BAO_Contact();
101 $contact->id = $contribution->contact_id;
102 $contact->find(TRUE);
103 if ($contact->id != $ids['contact']) {
104 // If the ids do not match then it is possible the contact id in the IPN has been merged into another contact which is why we use the contact_id from the contribution
105 CRM_Core_Error::debug_log_message("Contact ID in IPN {$ids['contact']} not found but contact_id found in contribution {$contribution->contact_id} used instead");
106 echo "WARNING: Could not find contact record: {$ids['contact']}<p>";
107 $ids['contact'] = $contribution->contact_id;
108 }
109
110 if (!empty($ids['contributionRecur'])) {
111 $contributionRecur = new CRM_Contribute_BAO_ContributionRecur();
112 $contributionRecur->id = $ids['contributionRecur'];
113 if (!$contributionRecur->find(TRUE)) {
114 CRM_Core_Error::debug_log_message("Could not find contribution recur record: {$ids['ContributionRecur']} in IPN request: " . print_r($input, TRUE));
115 echo "Failure: Could not find contribution recur record: {$ids['ContributionRecur']}<p>";
116 return FALSE;
117 }
118 }
119
120 $objects['contact'] = &$contact;
121 $objects['contribution'] = &$contribution;
122
123 // CRM-19478: handle oddity when p=null is set in place of contribution page ID,
124 if (!empty($ids['contributionPage']) && !is_numeric($ids['contributionPage'])) {
125 // We don't need to worry if about removing contribution page id as it will be set later in
126 // CRM_Contribute_BAO_Contribution::loadRelatedObjects(..) using $objects['contribution']->contribution_page_id
127 unset($ids['contributionPage']);
128 }
129
130 if (!$this->loadObjects($input, $ids, $objects, $required, $paymentProcessorID)) {
131 return FALSE;
132 }
133 return TRUE;
134 }
135
136 /**
137 * Load objects related to contribution.
138 *
139 * @input array information from Payment processor
140 *
141 * @param array $input
142 * @param array $ids
143 * @param array $objects
144 * @param bool $required
145 * @param int $paymentProcessorID
146 *
147 * @return bool|array
148 * @throws \CRM_Core_Exception
149 */
150 public function loadObjects($input, &$ids, &$objects, $required, $paymentProcessorID) {
151 $contribution = &$objects['contribution'];
152 $ids['paymentProcessor'] = $paymentProcessorID;
153 $success = $contribution->loadRelatedObjects($input, $ids);
154 if ($required && empty($contribution->_relatedObjects['paymentProcessor'])) {
155 throw new CRM_Core_Exception("Could not find payment processor for contribution record: " . $contribution->id);
156 }
157 $objects = array_merge($objects, $contribution->_relatedObjects);
158 return $success;
159 }
160
161 /**
162 * Set contribution to failed.
163 *
164 * @param array $objects
165 *
166 * @return bool
167 * @throws \CiviCRM_API3_Exception|\CRM_Core_Exception
168 */
169 public function failed($objects) {
170 $contribution = &$objects['contribution'];
171 $memberships = [];
172 if (!empty($objects['membership'])) {
173 $memberships = &$objects['membership'];
174 if (is_numeric($memberships)) {
175 $memberships = [$objects['membership']];
176 }
177 }
178
179 $addLineItems = empty($contribution->id);
180 $participant = &$objects['participant'];
181 $contribution->contribution_status_id = CRM_Core_PseudoConstant::getKey('CRM_Contribute_DAO_Contribution', 'contribution_status_id', 'Failed');
182 $contribution->save();
183
184 // Add line items for recurring payments.
185 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id && $addLineItems) {
186 CRM_Contribute_BAO_ContributionRecur::addRecurLineItems($objects['contributionRecur']->id, $contribution);
187 }
188
189 //add new soft credit against current contribution id and
190 //copy initial contribution custom fields for recurring contributions
191 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id) {
192 CRM_Contribute_BAO_ContributionRecur::addrecurSoftCredit($objects['contributionRecur']->id, $contribution->id);
193 CRM_Contribute_BAO_ContributionRecur::copyCustomValues($objects['contributionRecur']->id, $contribution->id);
194 }
195
196 if (!empty($memberships)) {
197 foreach ($memberships as $membership) {
198 // @fixme Should we cancel only Pending memberships? per cancelled()
199 $this->cancelMembership($membership, $membership->status_id, FALSE);
200 }
201 }
202
203 if ($participant) {
204 $this->cancelParticipant($participant->id);
205 }
206
207 Civi::log()->debug("Setting contribution status to Failed");
208 return TRUE;
209 }
210
211 /**
212 * Handled pending contribution status.
213 *
214 * @deprecated
215 *
216 * @param array $objects
217 * @param object $transaction
218 *
219 * @return bool
220 */
221 public function pending(&$objects, &$transaction) {
222 CRM_Core_Error::deprecatedFunctionWarning('This function will be removed at some point');
223 $transaction->commit();
224 Civi::log()->debug('Returning since contribution status is Pending');
225 echo 'Success: Returning since contribution status is pending<p>';
226 return TRUE;
227 }
228
229 /**
230 * Process cancelled payment outcome.
231 *
232 * @param array $objects
233 *
234 * @return bool
235 * @throws \CiviCRM_API3_Exception|\CRM_Core_Exception
236 */
237 public function cancelled($objects) {
238 $contribution = &$objects['contribution'];
239 $memberships = [];
240 if (!empty($objects['membership'])) {
241 $memberships = &$objects['membership'];
242 if (is_numeric($memberships)) {
243 $memberships = [$objects['membership']];
244 }
245 }
246
247 $addLineItems = FALSE;
248 if (empty($contribution->id)) {
249 $addLineItems = TRUE;
250 }
251 $participant = &$objects['participant'];
252
253 // CRM-15546
254 $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', [
255 'labelColumn' => 'name',
256 'flip' => 1,
257 ]);
258 $contribution->contribution_status_id = $contributionStatuses['Cancelled'];
259 $contribution->cancel_date = self::$_now;
260 $contribution->save();
261
262 // Add line items for recurring payments.
263 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id && $addLineItems) {
264 CRM_Contribute_BAO_ContributionRecur::addRecurLineItems($objects['contributionRecur']->id, $contribution);
265 }
266
267 //add new soft credit against current $contribution and
268 //copy initial contribution custom fields for recurring contributions
269 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id) {
270 CRM_Contribute_BAO_ContributionRecur::addrecurSoftCredit($objects['contributionRecur']->id, $contribution->id);
271 CRM_Contribute_BAO_ContributionRecur::copyCustomValues($objects['contributionRecur']->id, $contribution->id);
272 }
273
274 if (!empty($memberships)) {
275 foreach ($memberships as $membership) {
276 if ($membership) {
277 $this->cancelMembership($membership, $membership->status_id);
278 }
279 }
280 }
281
282 if ($participant) {
283 $this->cancelParticipant($participant->id);
284 }
285
286 Civi::log()->debug("Setting contribution status to Cancelled");
287 return TRUE;
288 }
289
290 /**
291 * Rollback unhandled outcomes.
292 *
293 * @deprecated
294 *
295 * @param array $objects
296 * @param CRM_Core_Transaction $transaction
297 *
298 * @return bool
299 */
300 public function unhandled(&$objects, &$transaction) {
301 CRM_Core_Error::deprecatedFunctionWarning('This function will be removed at some point');
302 $transaction->rollback();
303 Civi::log()->debug('Returning since contribution status is not handled');
304 echo 'Failure: contribution status is not handled<p>';
305 return FALSE;
306 }
307
308 /**
309 * Logic to cancel a participant record when the related contribution changes to failed/cancelled.
310 * @todo This is part of a bigger refactor for dev/core/issues/927 - "duplicate" functionality exists in CRM_Contribute_BAO_Contribution::cancel()
311 *
312 * @param $participantID
313 *
314 * @throws \CiviCRM_API3_Exception
315 */
316 private function cancelParticipant($participantID) {
317 // @fixme https://lab.civicrm.org/dev/core/issues/927 Cancelling membership etc is not desirable for all use-cases and we should be able to disable it
318 $participantParams['id'] = $participantID;
319 $participantParams['status_id'] = 'Cancelled';
320 civicrm_api3('Participant', 'create', $participantParams);
321 }
322
323 /**
324 * Logic to cancel a membership record when the related contribution changes to failed/cancelled.
325 * @todo This is part of a bigger refactor for dev/core/issues/927 - "duplicate" functionality exists in CRM_Contribute_BAO_Contribution::cancel()
326 * @param \CRM_Member_BAO_Membership $membership
327 * @param int $membershipStatusID
328 * @param boolean $onlyCancelPendingMembership
329 * Do we only cancel pending memberships? OR memberships in any status? (see CRM-18688)
330 * @fixme Historically failed() cancelled membership in any status, cancelled() cancelled only pending memberships so we retain that behaviour for now.
331 *
332 */
333 private function cancelMembership($membership, $membershipStatusID, $onlyCancelPendingMembership = TRUE) {
334 // @fixme https://lab.civicrm.org/dev/core/issues/927 Cancelling membership etc is not desirable for all use-cases and we should be able to disable it
335 // Cancel only Pending memberships
336 $pendingMembershipStatusId = CRM_Core_PseudoConstant::getKey('CRM_Member_BAO_Membership', 'status_id', 'Pending');
337 if (($membershipStatusID == $pendingMembershipStatusId) || ($onlyCancelPendingMembership == FALSE)) {
338 $cancelledMembershipStatusId = CRM_Core_PseudoConstant::getKey('CRM_Member_BAO_Membership', 'status_id', 'Cancelled');
339
340 $membership->status_id = $cancelledMembershipStatusId;
341 $membership->save();
342
343 $params = ['status_id' => $cancelledMembershipStatusId];
344 CRM_Member_BAO_Membership::updateRelatedMemberships($membership->id, $params);
345
346 // @todo Convert the above to API
347 // $membershipParams = [
348 // 'id' => $membership->id,
349 // 'status_id' => $cancelledMembershipStatusId,
350 // ];
351 // civicrm_api3('Membership', 'create', $membershipParams);
352 // CRM_Member_BAO_Membership::updateRelatedMemberships($membershipParams['id'], ['status_id' => $cancelledMembershipStatusId]);
353 }
354
355 }
356
357 /**
358 * @deprecated
359 *
360 * Jumbled up function.
361 *
362 * The purpose of this function is to transition a pending transaction to Completed including updating any
363 * related entities.
364 *
365 * It has been overloaded to also add recurring transactions to the database, cloning the original transaction and
366 * updating related entities.
367 *
368 * It is recommended to avoid calling this function directly and call the api functions:
369 * - contribution.completetransaction
370 * - contribution.repeattransaction
371 *
372 * These functions are the focus of testing efforts and more accurately reflect the division of roles
373 * (the job of the IPN class is to determine the outcome, transaction id, invoice id & to validate the source
374 * and from there it should be possible to pass off transaction management.)
375 *
376 * This function has been problematic for some time but there are now several tests via the api_v3_Contribution test
377 * and the Paypal & Authorize.net IPN tests so any refactoring should be done in conjunction with those.
378 *
379 * This function needs to have the 'body' moved to the CRM_Contribute_BAO_Contribute class and to undergo
380 * refactoring to separate the complete transaction and repeat transaction functionality into separate functions with
381 * a shared function that updates related components.
382 *
383 * Note that it is not necessary payment processor extension to implement an IPN class now. In general the code on the
384 * IPN class is better accessed through the api which de-jumbles it a bit.
385 *
386 * e.g the payment class can have a function like (based on Omnipay extension):
387 *
388 * public function handlePaymentNotification() {
389 * $response = $this->getValidatedOutcome();
390 * if ($response->isSuccessful()) {
391 * try {
392 * // @todo check if it is a repeat transaction & call repeattransaction instead.
393 * civicrm_api3('contribution', 'completetransaction', array('id' => $this->transaction_id));
394 * }
395 * catch (CiviCRM_API3_Exception $e) {
396 * if (!stristr($e->getMessage(), 'Contribution already completed')) {
397 * $this->handleError('error', $this->transaction_id . $e->getMessage(), 'ipn_completion', 9000, 'An error may
398 * have occurred. Please check your receipt is correct');
399 * $this->redirectOrExit('success');
400 * }
401 * elseif ($this->transaction_id) {
402 * civicrm_api3('contribution', 'create', array('id' => $this->transaction_id, 'contribution_status_id' =>
403 * 'Failed'));
404 * }
405 *
406 * @param array $input
407 * @param array $ids
408 * @param array $objects
409 *
410 * @throws \CRM_Core_Exception
411 * @throws \CiviCRM_API3_Exception
412 */
413 public function completeTransaction($input, $ids, $objects) {
414 CRM_Core_Error::deprecatedFunctionWarning('Use Payment.create api');
415 CRM_Contribute_BAO_Contribution::completeOrder($input, [
416 'related_contact' => $ids['related_contact'] ?? NULL,
417 'participant' => !empty($objects['participant']) ? $objects['participant']->id : NULL,
418 'contributionRecur' => !empty($objects['contributionRecur']) ? $objects['contributionRecur']->id : NULL,
419 ], $objects);
420 }
421
422 /**
423 * @deprecated
424 * Get site billing ID.
425 *
426 * @param array $ids
427 *
428 * @return bool
429 */
430 public function getBillingID(&$ids) {
431 CRM_Core_Error::deprecatedFunctionWarning('CRM_Core_BAO_LocationType::getBilling()');
432 $ids['billing'] = CRM_Core_BAO_LocationType::getBilling();
433 if (!$ids['billing']) {
434 CRM_Core_Error::debug_log_message(ts('Please set a location type of %1', [1 => 'Billing']));
435 echo "Failure: Could not find billing location type<p>";
436 return FALSE;
437 }
438 return TRUE;
439 }
440
441 /**
442 * @deprecated
443 *
444 * @todo confirm this function is not being used by any payment processor outside core & remove.
445 *
446 * Note that the compose message part has been moved to contribution
447 * In general LoadObjects is called first to get the objects but the composeMessageArray function now calls it
448 *
449 * @param array $input
450 * Incoming data from Payment processor.
451 * @param array $ids
452 * Related object IDs.
453 * @param array $objects
454 *
455 * @throws \CiviCRM_API3_Exception
456 */
457 public function sendMail($input, $ids, $objects) {
458 CRM_Core_Error::deprecatedFunctionWarning('this should be done via completetransaction api');
459 civicrm_api3('Contribution', 'sendconfirmation', [
460 'id' => $objects['contribution']->id,
461 ]);
462 }
463
464 }