Merge pull request #20269 from colemanw/bulkSave
[civicrm-core.git] / CRM / Core / Payment / PayPalProIPN.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 use Civi\Api4\Contribution;
13
14 /**
15 *
16 * @package CRM
17 * @copyright CiviCRM LLC https://civicrm.org/licensing
18 */
19 class CRM_Core_Payment_PayPalProIPN extends CRM_Core_Payment_BaseIPN {
20
21 /**
22 * Input parameters from payment processor. Store these so that
23 * the code does not need to keep retrieving from the http request
24 * @var array
25 */
26 protected $_inputParameters = [];
27
28 /**
29 * Store for the variables from the invoice string.
30 * @var array
31 */
32 protected $_invoiceData = [];
33
34 /**
35 * Is this a payment express transaction.
36 * @var bool
37 */
38 protected $_isPaymentExpress = FALSE;
39
40 /**
41 * Recurring contribution ID.
42 *
43 * @var int|null
44 */
45 protected $contributionRecurID;
46
47 /**
48 * Recurring contribution object.
49 *
50 * @var \CRM_Contribute_BAO_ContributionRecur
51 */
52 protected $contributionRecurObject;
53
54 /**
55 * Get the recurring contribution ID, if any.
56 *
57 * @return int|null
58 *
59 * @throws \CRM_Core_Exception
60 */
61 public function getContributionRecurID(): ?int {
62 if (!$this->contributionRecurID && $this->getValue('r', FALSE)) {
63 $this->contributionRecurID = (int) $this->getValue('r', FALSE);
64 }
65 return $this->contributionRecurID;
66 }
67
68 /**
69 * @param int|null $contributionRecurID
70 */
71 public function setContributionRecurID(?int $contributionRecurID): void {
72 $this->contributionRecurID = $contributionRecurID;
73 }
74
75 /**
76 * Component.
77 *
78 * Are we dealing with an event an 'anything else' (contribute).
79 *
80 * @var string
81 */
82 protected $_component = 'contribute';
83
84 /**
85 * Constructor function.
86 *
87 * @param array $inputData
88 * Contents of HTTP REQUEST.
89 *
90 * @throws CRM_Core_Exception
91 */
92 public function __construct($inputData) {
93 $this->setInputParameters($inputData);
94 $this->setInvoiceData();
95 parent::__construct();
96 }
97
98 /**
99 * get the values from the rp_invoice_id string.
100 *
101 * @param string $name
102 * E.g. i, values are stored in the string with letter codes.
103 * @param bool $abort
104 * Throw exception if not found
105 *
106 * @throws CRM_Core_Exception
107 * @return mixed
108 */
109 public function getValue($name, $abort = TRUE) {
110 if ($abort && empty($this->_invoiceData[$name])) {
111 throw new CRM_Core_Exception("Failure: Missing Parameter $name");
112 }
113 else {
114 return $this->_invoiceData[$name] ?? NULL;
115 }
116 }
117
118 /**
119 * Set $this->_invoiceData from the input array
120 */
121 public function setInvoiceData() {
122 if (empty($this->_inputParameters['rp_invoice_id'])) {
123 $this->_isPaymentExpress = TRUE;
124 return;
125 }
126 $rpInvoiceArray = explode('&', $this->_inputParameters['rp_invoice_id']);
127 // for clarify let's also store without the single letter unreadable
128 //@todo after more refactoring we might ditch storing the one letter stuff
129 $mapping = [
130 'i' => 'invoice_id',
131 'm' => 'component',
132 'c' => 'contact_id',
133 'b' => 'contribution_id',
134 'r' => 'contribution_recur_id',
135 'p' => 'participant_id',
136 'e' => 'event_id',
137 ];
138 foreach ($rpInvoiceArray as $rpInvoiceValue) {
139 $rpValueArray = explode('=', $rpInvoiceValue);
140 $this->_invoiceData[$rpValueArray[0]] = $rpValueArray[1];
141 $this->_inputParameters[$mapping[$rpValueArray[0]]] = $rpValueArray[1];
142 // p has been overloaded & could mean contribution page or participant id. Clearly we need an
143 // alphabet with more letters.
144 // the mode will always be resolved before the mystery p is reached
145 if ($rpValueArray[1] === 'contribute') {
146 $mapping['p'] = 'contribution_page_id';
147 }
148 }
149 if (empty($this->_inputParameters['component'])) {
150 $this->_isPaymentExpress = TRUE;
151 }
152 }
153
154 /**
155 * @param string $name
156 * Of variable to return.
157 * @param string $type
158 * Data type.
159 * - String
160 * - Integer
161 * @param string $location
162 * Deprecated.
163 * @param bool $abort
164 * Abort if empty.
165 *
166 * @throws CRM_Core_Exception
167 * @return mixed
168 */
169 public function retrieve($name, $type, $location = 'POST', $abort = TRUE) {
170 $value = CRM_Utils_Type::validate(
171 CRM_Utils_Array::value($name, $this->_inputParameters),
172 $type,
173 FALSE
174 );
175 if ($abort && $value === NULL) {
176 throw new CRM_Core_Exception("Could not find an entry for $name in $location");
177 }
178 return $value;
179 }
180
181 /**
182 * Process recurring contributions.
183 *
184 * @param array $input
185 * @param array $ids
186 * @param \CRM_Contribute_BAO_ContributionRecur $recur
187 * @param \CRM_Contribute_BAO_Contribution $contribution
188 * @param bool $first
189 *
190 * @throws \API_Exception
191 * @throws \CRM_Core_Exception
192 * @throws \CiviCRM_API3_Exception
193 * @throws \Civi\API\Exception\UnauthorizedException
194 */
195 public function recur($input, $ids, $recur, $contribution, $first) {
196 if (!isset($input['txnType'])) {
197 Civi::log()->debug('PayPalProIPN: Could not find txn_type in input request.');
198 echo 'Failure: Invalid parameters<p>';
199 return;
200 }
201
202 // make sure the invoice ids match
203 // make sure the invoice is valid and matches what we have in
204 // the contribution record
205 if ($recur->invoice_id != $input['invoice']) {
206 Civi::log()->debug('PayPalProIPN: Invoice values dont match between database and IPN request recur is ' . $recur->invoice_id . ' input is ' . $input['invoice']);
207 echo 'Failure: Invoice values dont match between database and IPN request recur is ' . $recur->invoice_id . " input is " . $input['invoice'];
208 return;
209 }
210
211 $now = date('YmdHis');
212
213 $sendNotification = FALSE;
214 $subscriptionPaymentStatus = NULL;
215 //List of Transaction Type
216 /*
217 recurring_payment_profile_created RP Profile Created
218 recurring_payment RP Successful Payment
219 recurring_payment_failed RP Failed Payment
220 recurring_payment_profile_cancel RP Profile Cancelled
221 recurring_payment_expired RP Profile Expired
222 recurring_payment_skipped RP Profile Skipped
223 recurring_payment_outstanding_payment RP Successful Outstanding Payment
224 recurring_payment_outstanding_payment_failed RP Failed Outstanding Payment
225 recurring_payment_suspended RP Profile Suspended
226 recurring_payment_suspended_due_to_max_failed_payment RP Profile Suspended due to Max Failed Payment
227 */
228
229 //set transaction type
230 $txnType = $this->retrieve('txn_type', 'String');
231 //Changes for paypal pro recurring payment
232 $contributionStatuses = array_flip(CRM_Contribute_BAO_Contribution::buildOptions('contribution_status_id', 'validate'));
233 switch ($txnType) {
234 case 'recurring_payment_profile_created':
235 if (in_array($recur->contribution_status_id, [
236 $contributionStatuses['Pending'],
237 $contributionStatuses['In Progress'],
238 ])
239 && !empty($recur->processor_id)
240 ) {
241 echo "already handled";
242 return;
243 }
244 $recur->create_date = $now;
245 $recur->contribution_status_id = $contributionStatuses['Pending'];
246 $recur->processor_id = $this->retrieve('recurring_payment_id', 'String');
247 $recur->trxn_id = $recur->processor_id;
248 $subscriptionPaymentStatus = CRM_Core_Payment::RECURRING_PAYMENT_START;
249 $sendNotification = TRUE;
250 break;
251
252 case 'recurring_payment':
253 if ($first) {
254 $recur->start_date = $now;
255 }
256 else {
257 if ($input['paymentStatus'] !== 'Completed') {
258 throw new CRM_Core_Exception("Ignore all IPN payments that are not completed");
259 }
260
261 // In future moving to create pending & then complete, but this OK for now.
262 // Also consider accepting 'Failed' like other processors.
263 $input['contribution_status_id'] = $contributionStatuses['Completed'];
264 $input['invoice_id'] = md5(uniqid(rand(), TRUE));
265 $input['original_contribution_id'] = $ids['contribution'];
266 $input['contribution_recur_id'] = $this->getContributionRecurID();
267
268 civicrm_api3('Contribution', 'repeattransaction', $input);
269 return;
270 }
271
272 //contribution installment is completed
273 if ($this->retrieve('profile_status', 'String') == 'Expired') {
274 if (!empty($recur->end_date)) {
275 echo "already handled";
276 return;
277 }
278 $recur->contribution_status_id = $contributionStatuses['Completed'];
279 $recur->end_date = $now;
280 $sendNotification = TRUE;
281 $subscriptionPaymentStatus = CRM_Core_Payment::RECURRING_PAYMENT_END;
282 }
283
284 // make sure the contribution status is not done
285 // since order of ipn's is unknown
286 if ($recur->contribution_status_id != $contributionStatuses['Completed']) {
287 $recur->contribution_status_id = $contributionStatuses['In Progress'];
288 }
289 break;
290 }
291
292 $recur->save();
293
294 if ($sendNotification) {
295 //send recurring Notification email for user
296 CRM_Contribute_BAO_ContributionPage::recurringNotify(
297 $ids['contribution'],
298 $subscriptionPaymentStatus,
299 $recur
300 );
301 }
302
303 if ($txnType !== 'recurring_payment') {
304 return;
305 }
306
307 // CRM-13737 - am not aware of any reason why payment_date would not be set - this if is a belt & braces
308 $contribution->receive_date = !empty($input['payment_date']) ? date('YmdHis', strtotime($input['payment_date'])) : $now;
309
310 $this->single($input, $contribution, TRUE, $first);
311 }
312
313 /**
314 * @param array $input
315 * @param \CRM_Contribute_BAO_Contribution $contribution
316 * @param bool $recur
317 * @param bool $first
318 *
319 * @return void
320 * @throws \API_Exception
321 * @throws \CRM_Core_Exception
322 * @throws \CiviCRM_API3_Exception
323 * @throws \Civi\API\Exception\UnauthorizedException
324 */
325 public function single($input, $contribution, $recur = FALSE, $first = FALSE) {
326
327 // make sure the invoice is valid and matches what we have in the contribution record
328 if ((!$recur) || ($recur && $first)) {
329 if ($contribution->invoice_id != $input['invoice']) {
330 Civi::log()->debug('PayPalProIPN: Invoice values dont match between database and IPN request.');
331 echo "Failure: Invoice values dont match between database and IPN request<p>contribution is" . $contribution->invoice_id . " and input is " . $input['invoice'];
332 return;
333 }
334 }
335 else {
336 $contribution->invoice_id = md5(uniqid(rand(), TRUE));
337 }
338
339 if (!$recur) {
340 if ($contribution->total_amount != $input['amount']) {
341 Civi::log()->debug('PayPalProIPN: Amount values dont match between database and IPN request.');
342 echo "Failure: Amount values dont match between database and IPN request<p>";
343 return;
344 }
345 }
346 else {
347 $contribution->total_amount = $input['amount'];
348 }
349
350 $status = $input['paymentStatus'];
351 if ($status === 'Denied' || $status === 'Failed' || $status === 'Voided') {
352 Contribution::update(FALSE)->setValues([
353 'cancel_date' => 'now',
354 'contribution_status_id:name' => 'Failed',
355 ])->addWhere('id', '=', $contribution->id)->execute();
356 Civi::log()->debug("Setting contribution status to Failed");
357 return;
358 }
359 if ($status === 'Pending') {
360 Civi::log()->debug('Returning since contribution status is Pending');
361 return;
362 }
363 if ($status === 'Refunded' || $status === 'Reversed') {
364 Contribution::update(FALSE)->setValues([
365 'cancel_date' => 'now',
366 'contribution_status_id:name' => 'Cancelled',
367 ])->addWhere('id', '=', $contribution->id)->execute();
368 Civi::log()->debug("Setting contribution status to Cancelled");
369 return;
370 }
371 elseif ($status !== 'Completed') {
372 Civi::log()->debug('Returning since contribution status is not handled');
373 return;
374 }
375
376 // check if contribution is already completed, if so we ignore this ipn
377 $completedStatusId = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
378 if ($contribution->contribution_status_id == $completedStatusId) {
379 Civi::log()->debug('PayPalProIPN: Returning since contribution has already been handled.');
380 echo 'Success: Contribution has already been handled<p>';
381 return;
382 }
383
384 CRM_Contribute_BAO_Contribution::completeOrder($input, $this->getContributionRecurID(), $contribution->id ?? NULL);
385 }
386
387 /**
388 * Gets PaymentProcessorID for PayPal
389 *
390 * @return int
391 */
392 public function getPayPalPaymentProcessorID() {
393 // This is an unreliable method as there could be more than one instance.
394 // Recommended approach is to use the civicrm/payment/ipn/xx url where xx is the payment
395 // processor id & the handleNotification function (which should call the completetransaction api & by-pass this
396 // entirely). The only thing the IPN class should really do is extract data from the request, validate it
397 // & call completetransaction or call fail? (which may not exist yet).
398
399 Civi::log()->warning('Unreliable method used to get payment_processor_id for PayPal Pro IPN - this will cause problems if you have more than one instance');
400
401 $paymentProcessorTypeID = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessorType',
402 'PayPal', 'id', 'name'
403 );
404 return (int) civicrm_api3('PaymentProcessor', 'getvalue', [
405 'is_test' => 0,
406 'options' => ['limit' => 1],
407 'payment_processor_type_id' => $paymentProcessorTypeID,
408 'return' => 'id',
409 ]);
410
411 }
412
413 /**
414 * This is the main function to call. It should be sufficient to instantiate the class
415 * (with the input parameters) & call this & all will be done
416 *
417 * @todo the references to POST throughout this class need to be removed
418 * @return void
419 */
420 public function main() {
421 CRM_Core_Error::debug_var('GET', $_GET, TRUE, TRUE);
422 CRM_Core_Error::debug_var('POST', $_POST, TRUE, TRUE);
423 $ids = $input = [];
424 try {
425 if ($this->_isPaymentExpress) {
426 $this->handlePaymentExpress();
427 return;
428 }
429 $this->_component = $input['component'] = self::getValue('m');
430 $input['invoice'] = self::getValue('i', TRUE);
431 // get the contribution and contact ids from the GET params
432 $ids['contact'] = self::getValue('c', TRUE);
433 $ids['contribution'] = self::getValue('b', TRUE);
434
435 $this->getInput($input);
436
437 if ($this->_component == 'event') {
438 $ids['event'] = self::getValue('e', TRUE);
439 $ids['participant'] = self::getValue('p', TRUE);
440 $ids['contributionRecur'] = $this->getContributionRecurID();
441 }
442 else {
443 // get the optional ids
444 //@ how can this not be broken retrieving from GET as we are dealing with a POST request?
445 // copy & paste? Note the retrieve function now uses data from _REQUEST so this will be included
446 $ids['membership'] = self::retrieve('membershipID', 'Integer', 'GET', FALSE);
447 $ids['contributionRecur'] = $this->getContributionRecurID();
448 $ids['contributionPage'] = self::getValue('p', FALSE);
449 $ids['related_contact'] = self::retrieve('relatedContactID', 'Integer', 'GET', FALSE);
450 $ids['onbehalf_dupe_alert'] = self::retrieve('onBehalfDupeAlert', 'Integer', 'GET', FALSE);
451 }
452
453 if (!$ids['membership'] && $this->getContributionRecurID()) {
454 $sql = "
455 SELECT m.id
456 FROM civicrm_membership m
457 INNER JOIN civicrm_membership_payment mp ON m.id = mp.membership_id AND mp.contribution_id = %1
458 WHERE m.contribution_recur_id = %2
459 LIMIT 1";
460 $sqlParams = [
461 1 => [$ids['contribution'], 'Integer'],
462 2 => [$this->getContributionRecurID(), 'Integer'],
463 ];
464 if ($membershipId = CRM_Core_DAO::singleValueQuery($sql, $sqlParams)) {
465 $ids['membership'] = $membershipId;
466 }
467 }
468
469 $paymentProcessorID = CRM_Utils_Array::value('processor_id', $this->_inputParameters);
470 if (!$paymentProcessorID) {
471 $paymentProcessorID = self::getPayPalPaymentProcessorID();
472 }
473
474 // Check if the contribution exists
475 // make sure contribution exists and is valid
476 $contribution = new CRM_Contribute_BAO_Contribution();
477 $contribution->id = $ids['contribution'];
478 if (!$contribution->find(TRUE)) {
479 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)]);
480 }
481
482 // make sure contact exists and is valid
483 // use the contact id from the contribution record as the id in the IPN may not be valid anymore.
484 $contact = new CRM_Contact_BAO_Contact();
485 $contact->id = $contribution->contact_id;
486 $contact->find(TRUE);
487 if ($contact->id != $ids['contact']) {
488 // 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
489 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");
490 echo "WARNING: Could not find contact record: {$ids['contact']}<p>";
491 $ids['contact'] = $contribution->contact_id;
492 }
493
494 // CRM-19478: handle oddity when p=null is set in place of contribution page ID,
495 if (!empty($ids['contributionPage']) && !is_numeric($ids['contributionPage'])) {
496 // We don't need to worry if about removing contribution page id as it will be set later in
497 // CRM_Contribute_BAO_Contribution::loadRelatedObjects(..) using $objects['contribution']->contribution_page_id
498 unset($ids['contributionPage']);
499 }
500
501 $ids['paymentProcessor'] = $paymentProcessorID;
502 $contribution->loadRelatedObjects($input, $ids);
503
504 $input['payment_processor_id'] = $paymentProcessorID;
505
506 if ($this->getContributionRecurID()) {
507 $contributionRecur = $this->getContributionRecurObject();
508 // check if first contribution is completed, else complete first contribution
509 $first = TRUE;
510 $completedStatusId = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
511 if ($contribution->contribution_status_id == $completedStatusId) {
512 $first = FALSE;
513 }
514 $this->recur($input, $ids, $contributionRecur, $contribution, $first);
515 return;
516 }
517
518 $this->single($input, $contribution, FALSE, FALSE);
519 }
520 catch (CRM_Core_Exception $e) {
521 Civi::log()->debug($e->getMessage() . ' input {input}', ['input' => $input]);
522 echo 'Invalid or missing data';
523 }
524 }
525
526 /**
527 * @param array $input
528 *
529 * @return void
530 * @throws CRM_Core_Exception
531 */
532 public function getInput(&$input) {
533 $billingID = CRM_Core_BAO_LocationType::getBilling();
534
535 $input['txnType'] = self::retrieve('txn_type', 'String', 'POST', FALSE);
536 $input['paymentStatus'] = self::retrieve('payment_status', 'String', 'POST', FALSE);
537
538 $input['amount'] = self::retrieve('mc_gross', 'Money', 'POST', FALSE);
539 $input['reasonCode'] = self::retrieve('ReasonCode', 'String', 'POST', FALSE);
540
541 $lookup = [
542 "first_name" => 'first_name',
543 "last_name" => 'last_name',
544 "street_address-{$billingID}" => 'address_street',
545 "city-{$billingID}" => 'address_city',
546 "state-{$billingID}" => 'address_state',
547 "postal_code-{$billingID}" => 'address_zip',
548 "country-{$billingID}" => 'address_country_code',
549 ];
550 foreach ($lookup as $name => $paypalName) {
551 $value = self::retrieve($paypalName, 'String', 'POST', FALSE);
552 $input[$name] = $value ? $value : NULL;
553 }
554
555 $input['is_test'] = self::retrieve('test_ipn', 'Integer', 'POST', FALSE);
556 $input['fee_amount'] = self::retrieve('mc_fee', 'Money', 'POST', FALSE);
557 $input['net_amount'] = self::retrieve('settle_amount', 'Money', 'POST', FALSE);
558 $input['trxn_id'] = self::retrieve('txn_id', 'String', 'POST', FALSE);
559 $input['payment_date'] = $input['receive_date'] = self::retrieve('payment_date', 'String', 'POST', FALSE);
560 $input['total_amount'] = $input['amount'];
561 }
562
563 /**
564 * Handle payment express IPNs.
565 *
566 * For one off IPNS no actual response is required
567 * Recurring is more difficult as we have limited confirmation material
568 * lets look up invoice id in recur_contribution & rely on the unique transaction id to ensure no
569 * duplicated
570 * this may not be acceptable to all sites - e.g. if they are shipping or delivering something in return
571 * then the quasi security of the ids array might be required - although better to
572 * http://stackoverflow.com/questions/4848227/validate-that-ipn-call-is-from-paypal
573 * but let's assume knowledge on invoice id & schedule is enough for now esp for donations
574 * only contribute is handled
575 */
576 public function handlePaymentExpress() {
577 //@todo - loads of copy & paste / code duplication but as this not going into core need to try to
578 // keep discreet
579 // also note that a lot of the complexity above could be removed if we used
580 // http://stackoverflow.com/questions/4848227/validate-that-ipn-call-is-from-paypal
581 // as membership id etc can be derived by the load objects fn
582 $objects = $ids = $input = [];
583 $isFirst = FALSE;
584 $input['invoice'] = self::getValue('i', FALSE);
585 //Avoid return in case of unit test.
586 if (empty($input['invoice']) && empty($this->_inputParameters['is_unit_test'])) {
587 return;
588 }
589 $input['txnType'] = $this->retrieve('txn_type', 'String');
590 $contributionRecur = civicrm_api3('contribution_recur', 'getsingle', [
591 'return' => 'contact_id, id, payment_processor_id',
592 'invoice_id' => $input['invoice'],
593 ]);
594 $this->setContributionRecurID((int) $contributionRecur['id']);
595
596 if ($input['txnType'] !== 'recurring_payment' && $input['txnType'] !== 'recurring_payment_profile_created') {
597 throw new CRM_Core_Exception('Paypal IPNS not handled other than recurring_payments');
598 }
599
600 $this->getInput($input, $ids);
601 if ($input['txnType'] === 'recurring_payment' && $this->transactionExists($input['trxn_id'])) {
602 throw new CRM_Core_Exception('This transaction has already been processed');
603 }
604
605 $ids['contact'] = $contributionRecur['contact_id'];
606 $ids['contributionRecur'] = $this->getContributionRecurID();
607 $result = civicrm_api3('contribution', 'getsingle', ['invoice_id' => $input['invoice'], 'contribution_test' => '']);
608
609 $ids['contribution'] = $result['id'];
610 //@todo hardcoding 'pending' for now
611 $pendingStatusId = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Pending');
612 if ($result['contribution_status_id'] == $pendingStatusId) {
613 $isFirst = TRUE;
614 }
615 // arg api won't get this - fix it
616 $ids['contributionPage'] = CRM_Core_DAO::singleValueQuery("SELECT contribution_page_id FROM civicrm_contribution WHERE invoice_id = %1", [
617 1 => [
618 $ids['contribution'],
619 'Integer',
620 ],
621 ]);
622 // only handle component at this stage - not terribly sure how a recurring event payment would arise
623 // & suspec main function may be a victom of copy & paste
624 // membership would be an easy add - but not relevant to my customer...
625 $this->_component = $input['component'] = 'contribute';
626 $input['trxn_date'] = date('Y-m-d H:i:s', strtotime(self::retrieve('time_created', 'String')));
627 $paymentProcessorID = $contributionRecur['payment_processor_id'];
628
629 // Check if the contribution exists
630 // make sure contribution exists and is valid
631 $contribution = new CRM_Contribute_BAO_Contribution();
632 $contribution->id = $ids['contribution'];
633 if (!$contribution->find(TRUE)) {
634 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)]);
635 }
636
637 $objects['contribution'] = &$contribution;
638
639 // CRM-19478: handle oddity when p=null is set in place of contribution page ID,
640 if (!empty($ids['contributionPage']) && !is_numeric($ids['contributionPage'])) {
641 // We don't need to worry if about removing contribution page id as it will be set later in
642 // CRM_Contribute_BAO_Contribution::loadRelatedObjects(..) using $objects['contribution']->contribution_page_id
643 unset($ids['contributionPage']);
644 }
645
646 $contribution = &$objects['contribution'];
647 $ids['paymentProcessor'] = $paymentProcessorID;
648 $contribution->loadRelatedObjects($input, $ids);
649 $objects = array_merge($objects, $contribution->_relatedObjects);
650
651 $this->recur($input, $ids, $this->getContributionRecurObject(), $objects['contribution'], $isFirst);
652 }
653
654 /**
655 * Function check if transaction already exists.
656 * @param string $trxn_id
657 * @return bool|void
658 */
659 public function transactionExists($trxn_id) {
660 if (CRM_Core_DAO::singleValueQuery("SELECT count(*) FROM civicrm_contribution WHERE trxn_id = %1",
661 [
662 1 => [$trxn_id, 'String'],
663 ])
664 ) {
665 return TRUE;
666 }
667 }
668
669 /**
670 * Get the recurring contribution object.
671 *
672 * @return \CRM_Contribute_BAO_ContributionRecur
673 * @throws \CRM_Core_Exception
674 */
675 protected function getContributionRecurObject(): CRM_Contribute_BAO_ContributionRecur {
676 if (!$this->contributionRecurObject) {
677 $contributionRecur = new CRM_Contribute_BAO_ContributionRecur();
678 $contributionRecur->id = $this->getContributionRecurID();
679 if (!$contributionRecur->find(TRUE)) {
680 throw new CRM_Core_Exception('Failure: Could not find contribution recur record');
681 }
682 return $this->contributionRecurObject = $contributionRecur;
683 }
684 return $this->contributionRecurObject;
685 }
686
687 }