Merge pull request #22752 from eileenmcnaughton/grumpit
[civicrm-core.git] / CRM / Core / Payment / PayPalIPN.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
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 |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035 11
a201e208 12use Civi\Api4\Contribution;
13
6a488035
TO
14/**
15 *
16 * @package CRM
ca5cec67 17 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
18 */
19class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
20
b5c2afd0 21 /**
f78c9258 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
b5c2afd0 25 */
be2fb01f 26 protected $_inputParameters = [];
f78c9258 27
28 /**
29 * Constructor function.
30 *
31 * @param array $inputData
32 * Contents of HTTP REQUEST.
33 *
34 * @throws CRM_Core_Exception
35 */
36 public function __construct($inputData) {
d2803851 37 // CRM-19676
0aeed2bc
BS
38 $params = (!empty($inputData['custom'])) ?
39 array_merge($inputData, json_decode($inputData['custom'], TRUE)) :
40 $inputData;
41 $this->setInputParameters($params);
6a488035
TO
42 parent::__construct();
43 }
44
6c786a9b 45 /**
100fef9d 46 * @param string $name
d2803851 47 * @param string $type
6c786a9b
EM
48 * @param bool $abort
49 *
50 * @return mixed
d2803851 51 * @throws \CRM_Core_Exception
6c786a9b 52 */
f78c9258 53 public function retrieve($name, $type, $abort = TRUE) {
d2803851 54 $value = CRM_Utils_Type::validate(CRM_Utils_Array::value($name, $this->_inputParameters), $type, FALSE);
6a488035 55 if ($abort && $value === NULL) {
d2803851 56 throw new CRM_Core_Exception("PayPalIPN: Could not find an entry for $name");
6a488035
TO
57 }
58 return $value;
59 }
60
6c786a9b 61 /**
d2803851 62 * @param array $input
f6973d25 63 * @param CRM_Contribute_BAO_ContributionRecur $recur
64 * @param CRM_Contribute_BAO_Contribution $contribution
d2803851
MW
65 * @param bool $first
66 *
67 * @return void
7a9ab499 68 *
d2803851
MW
69 * @throws \CRM_Core_Exception
70 * @throws \CiviCRM_API3_Exception
6c786a9b 71 */
ae0b8266 72 public function recur($input, $recur, $contribution, $first) {
6a488035 73
6a488035
TO
74 // make sure the invoice ids match
75 // make sure the invoice is valid and matches what we have in the contribution record
76 if ($recur->invoice_id != $input['invoice']) {
d2803851 77 Civi::log()->debug('PayPalIPN: Invoice values dont match between database and IPN request (RecurID: ' . $recur->id . ').');
3a317d6d 78 throw new CRM_Core_Exception("Failure: Invoice values dont match between database and IPN request");
6a488035
TO
79 }
80
81 $now = date('YmdHis');
82
d2803851 83 // set transaction type
d2803851 84 $contributionStatuses = array_flip(CRM_Contribute_BAO_Contribution::buildOptions('contribution_status_id', 'validate'));
e02cd781 85 switch ($this->getTrxnType()) {
6a488035
TO
86 case 'subscr_signup':
87 $recur->create_date = $now;
d2803851
MW
88 // sometimes subscr_signup response come after the subscr_payment and set to pending mode.
89
6a488035
TO
90 $statusID = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionRecur',
91 $recur->id, 'contribution_status_id'
92 );
d2803851
MW
93 if ($statusID != $contributionStatuses['In Progress']) {
94 $recur->contribution_status_id = $contributionStatuses['Pending'];
6a488035 95 }
f78c9258 96 $recur->processor_id = $this->retrieve('subscr_id', 'String');
6a488035 97 $recur->trxn_id = $recur->processor_id;
4423352d
EM
98 $recur->save();
99 return;
6a488035
TO
100
101 case 'subscr_eot':
d2803851
MW
102 if ($recur->contribution_status_id != $contributionStatuses['Cancelled']) {
103 $recur->contribution_status_id = $contributionStatuses['Completed'];
6a488035
TO
104 }
105 $recur->end_date = $now;
4423352d
EM
106 $recur->save();
107 return;
6a488035
TO
108
109 case 'subscr_cancel':
d2803851 110 $recur->contribution_status_id = $contributionStatuses['Cancelled'];
6a488035 111 $recur->cancel_date = $now;
4423352d
EM
112 $recur->save();
113 return;
6a488035
TO
114
115 case 'subscr_failed':
d2803851 116 $recur->contribution_status_id = $contributionStatuses['Failed'];
6a488035 117 $recur->modified_date = $now;
4423352d 118 $recur->save();
6a488035
TO
119 break;
120
121 case 'subscr_modify':
d2803851 122 Civi::log()->debug('PayPalIPN: We do not handle modifications to subscriptions right now (RecurID: ' . $recur->id . ').');
6a488035 123 echo "Failure: We do not handle modifications to subscriptions right now<p>";
d2803851 124 return;
6a488035 125
6a488035
TO
126 }
127
e02cd781 128 if ($this->getTrxnType() !== 'subscr_payment') {
6a488035
TO
129 return;
130 }
4423352d
EM
131 if ($input['paymentStatus'] !== 'Completed') {
132 Civi::log()->debug('PayPalIPN: Ignore all IPN payments that are not completed');
133 echo 'Failure: Invalid parameters<p>';
134 return;
135 }
136 if ($first) {
137 $recur->start_date = $now;
138 }
139 else {
140 $recur->modified_date = $now;
141 }
142
143 // make sure the contribution status is not done
144 // since order of ipn's is unknown
145 if ($recur->contribution_status_id != $contributionStatuses['Completed']) {
146 $recur->contribution_status_id = $contributionStatuses['In Progress'];
147 }
148 $recur->save();
6a488035
TO
149
150 if (!$first) {
d2803851
MW
151 // check if this contribution transaction is already processed
152 // if not create a contribution and then get it processed
6a488035 153 $contribution = new CRM_Contribute_BAO_Contribution();
bc66bc9e
PJ
154 $contribution->trxn_id = $input['trxn_id'];
155 if ($contribution->trxn_id && $contribution->find()) {
d2803851 156 Civi::log()->debug('PayPalIPN: Returning since contribution has already been handled (trxn_id: ' . $contribution->trxn_id . ')');
4423352d 157 echo 'Success: Contribution has already been handled<p>';
d2803851
MW
158 return;
159 }
160
3cf0a9be 161 if ($input['paymentStatus'] !== 'Completed') {
d2803851 162 throw new CRM_Core_Exception("Ignore all IPN payments that are not completed");
bc66bc9e
PJ
163 }
164
f5bc4a2d
MW
165 // In future moving to create pending & then complete, but this OK for now.
166 // Also consider accepting 'Failed' like other processors.
167 $input['contribution_status_id'] = $contributionStatuses['Completed'];
ae0b8266 168 $input['original_contribution_id'] = $contribution->id;
169 $input['contribution_recur_id'] = $recur->id;
f5bc4a2d
MW
170
171 civicrm_api3('Contribution', 'repeattransaction', $input);
172 return;
6a488035
TO
173 }
174
4f4bf3b6 175 $this->single($input, $contribution, TRUE);
6a488035
TO
176 }
177
6c786a9b 178 /**
d2803851 179 * @param array $input
667af247 180 * @param \CRM_Contribute_BAO_Contribution $contribution
6c786a9b 181 * @param bool $recur
7a9ab499 182 *
d2803851 183 * @return void
84801709 184 * @throws \CRM_Core_Exception
185 * @throws \CiviCRM_API3_Exception
6c786a9b 186 */
4f4bf3b6 187 public function single($input, $contribution, $recur = FALSE) {
6a488035
TO
188
189 // make sure the invoice is valid and matches what we have in the contribution record
175f6d95 190 if ($contribution->invoice_id != $input['invoice']) {
191 Civi::log()->debug('PayPalIPN: Invoice values dont match between database and IPN request. (ID: ' . $contribution->id . ').');
192 echo "Failure: Invoice values dont match between database and IPN request<p>";
193 return;
6a488035
TO
194 }
195
196 if (!$recur) {
197 if ($contribution->total_amount != $input['amount']) {
d2803851 198 Civi::log()->debug('PayPalIPN: Amount values dont match between database and IPN request. (ID: ' . $contribution->id . ').');
6a488035 199 echo "Failure: Amount values dont match between database and IPN request<p>";
d2803851 200 return;
6a488035
TO
201 }
202 }
203 else {
204 $contribution->total_amount = $input['amount'];
205 }
206
6a488035 207 // check if contribution is already completed, if so we ignore this ipn
4a413eb6 208 $completedStatusId = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
d2803851 209 if ($contribution->contribution_status_id == $completedStatusId) {
d2803851 210 Civi::log()->debug('PayPalIPN: Returning since contribution has already been handled. (ID: ' . $contribution->id . ').');
85ce114d 211 echo 'Success: Contribution has already been handled<p>';
d2803851 212 return;
6a488035
TO
213 }
214
1d6cc2d3 215 CRM_Contribute_BAO_Contribution::completeOrder($input, $this->getContributionRecurID(), $contribution->id ?? NULL);
6a488035
TO
216 }
217
2e2605fe
EM
218 /**
219 * Main function.
220 *
61470a1a 221 * @throws \API_Exception
d2803851 222 * @throws \CiviCRM_API3_Exception
61470a1a 223 * @throws \Civi\API\Exception\UnauthorizedException
2e2605fe 224 */
00be9182 225 public function main() {
cd0f2a34 226 try {
2b4ab802 227 $input = [];
cd0f2a34 228 $component = $this->retrieve('module', 'String');
229 $input['component'] = $component;
6a488035 230
2b4ab802 231 $contributionID = $this->getContributionID();
cd0f2a34 232 $this->getInput($input);
6a488035 233
1d6cc2d3 234 $paymentProcessorID = $this->getPayPalPaymentProcessorID($input, $this->getContributionRecurID());
cd0f2a34 235
2b4ab802 236 Civi::log()->debug('PayPalIPN: Received (ContactID: ' . $this->getContactID() . '; trxn_id: ' . $input['trxn_id'] . ').');
68b23e7f 237 $contribution = $this->getContribution();
6a488035 238
dc65872a
MW
239 $input['payment_processor_id'] = $paymentProcessorID;
240
1d6cc2d3 241 if ($this->getContributionRecurID()) {
ae0b8266 242 $contributionRecur = new CRM_Contribute_BAO_ContributionRecur();
1d6cc2d3 243 $contributionRecur->id = $this->getContributionRecurID();
ae0b8266 244 if (!$contributionRecur->find(TRUE)) {
1d6cc2d3 245 throw new CRM_Core_Exception('Could not find contribution recur record');
ae0b8266 246 }
e813005b 247 // check if first contribution is completed, else complete first contribution
248 $first = TRUE;
249 $completedStatusId = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
fcc57b56 250 if ($contribution->contribution_status_id == $completedStatusId) {
e813005b 251 $first = FALSE;
6a488035 252 }
ae0b8266 253 $this->recur($input, $contributionRecur, $contribution, $first);
3a317d6d 254 if ($this->getFirstOrLastInSeriesStatus()) {
255 //send recurring Notification email for user
ce9ceea4 256 CRM_Contribute_BAO_ContributionPage::recurringNotify(
1d6cc2d3 257 $contributionID,
ce9ceea4 258 $this->getFirstOrLastInSeriesStatus(),
4206fa5c 259 $contributionRecur
3a317d6d 260 );
261 }
e813005b 262 return;
6a488035 263 }
e813005b 264
a83a1f47 265 $status = $input['paymentStatus'];
266 if ($status === 'Denied' || $status === 'Failed' || $status === 'Voided') {
61470a1a 267 Contribution::update(FALSE)->setValues([
268 'cancel_date' => 'now',
269 'contribution_status_id:name' => 'Failed',
270 ])->addWhere('id', '=', $contributionID)->execute();
271 Civi::log()->debug("Setting contribution status to Failed");
a83a1f47 272 return;
273 }
274 if ($status === 'Pending') {
275 Civi::log()->debug('Returning since contribution status is Pending');
276 return;
277 }
278 if ($status === 'Refunded' || $status === 'Reversed') {
a201e208 279 Contribution::update(FALSE)->setValues([
280 'cancel_date' => 'now',
281 'contribution_status_id:name' => 'Cancelled',
282 ])->addWhere('id', '=', $contributionID)->execute();
283 Civi::log()->debug("Setting contribution status to Cancelled");
a83a1f47 284 return;
285 }
286 if ($status !== 'Completed') {
287 Civi::log()->debug('Returning since contribution status is not handled');
288 return;
289 }
4f4bf3b6 290 $this->single($input, $contribution);
cd0f2a34 291 }
292 catch (CRM_Core_Exception $e) {
1d6cc2d3 293 Civi::log()->debug($e->getMessage() . ' input {input}', ['input' => $input]);
cd0f2a34 294 echo 'Invalid or missing data';
6a488035 295 }
6a488035
TO
296 }
297
6c786a9b 298 /**
d2803851 299 * @param array $input
7a9ab499 300 *
d2803851 301 * @throws \CRM_Core_Exception
6c786a9b 302 */
41ce57e7 303 public function getInput(&$input) {
304 $billingID = CRM_Core_BAO_LocationType::getBilling();
f78c9258 305 $input['paymentStatus'] = $this->retrieve('payment_status', 'String', FALSE);
306 $input['invoice'] = $this->retrieve('invoice', 'String', TRUE);
307 $input['amount'] = $this->retrieve('mc_gross', 'Money', FALSE);
308 $input['reasonCode'] = $this->retrieve('ReasonCode', 'String', FALSE);
6a488035 309
be2fb01f 310 $lookup = [
6a488035
TO
311 "first_name" => 'first_name',
312 "last_name" => 'last_name',
313 "street_address-{$billingID}" => 'address_street',
314 "city-{$billingID}" => 'address_city',
315 "state-{$billingID}" => 'address_state',
316 "postal_code-{$billingID}" => 'address_zip',
317 "country-{$billingID}" => 'address_country_code',
be2fb01f 318 ];
6a488035 319 foreach ($lookup as $name => $paypalName) {
f78c9258 320 $value = $this->retrieve($paypalName, 'String', FALSE);
6a488035
TO
321 $input[$name] = $value ? $value : NULL;
322 }
323
f78c9258 324 $input['is_test'] = $this->retrieve('test_ipn', 'Integer', FALSE);
325 $input['fee_amount'] = $this->retrieve('mc_fee', 'Money', FALSE);
326 $input['net_amount'] = $this->retrieve('settle_amount', 'Money', FALSE);
327 $input['trxn_id'] = $this->retrieve('txn_id', 'String', FALSE);
f5bc4a2d
MW
328
329 $paymentDate = $this->retrieve('payment_date', 'String', FALSE);
330 if (!empty($paymentDate)) {
331 $receiveDateTime = new DateTime($paymentDate);
6800eef1
JGJ
332 /**
333 * The `payment_date` that Paypal sends back is in their timezone. Example return: 08:23:05 Jan 11, 2019 PST
334 * Subsequently, we need to account for that, otherwise the recieve time will be incorrect for the local system
335 */
602836ee 336 $input['receive_date'] = CRM_Utils_Date::convertDateToLocalTime($receiveDateTime);
f5bc4a2d
MW
337 }
338 }
339
f5bc4a2d 340 /**
ae0b8266 341 * Get PaymentProcessorID for PayPal
f5bc4a2d
MW
342 *
343 * @param array $input
ae0b8266 344 * @param int|null $contributionRecurID
f5bc4a2d
MW
345 *
346 * @return int
347 * @throws \CRM_Core_Exception
348 * @throws \CiviCRM_API3_Exception
349 */
ae0b8266 350 public function getPayPalPaymentProcessorID(array $input, ?int $contributionRecurID): int {
f5bc4a2d
MW
351 // First we try and retrieve from POST params
352 $paymentProcessorID = $this->retrieve('processor_id', 'Integer', FALSE);
353 if (!empty($paymentProcessorID)) {
354 return $paymentProcessorID;
355 }
356
357 // Then we try and get it from recurring contribution ID
ae0b8266 358 if ($contributionRecurID) {
be2fb01f 359 $contributionRecur = civicrm_api3('ContributionRecur', 'getsingle', [
ae0b8266 360 'id' => $contributionRecurID,
f5bc4a2d 361 'return' => ['payment_processor_id'],
be2fb01f 362 ]);
f5bc4a2d
MW
363 if (!empty($contributionRecur['payment_processor_id'])) {
364 return $contributionRecur['payment_processor_id'];
365 }
366 }
367
368 // This is an unreliable method as there could be more than one instance.
369 // Recommended approach is to use the civicrm/payment/ipn/xx url where xx is the payment
370 // processor id & the handleNotification function (which should call the completetransaction api & by-pass this
371 // entirely). The only thing the IPN class should really do is extract data from the request, validate it
372 // & call completetransaction or call fail? (which may not exist yet).
373
374 Civi::log()->warning('Unreliable method used to get payment_processor_id for PayPal IPN - this will cause problems if you have more than one instance');
375 // Then we try and retrieve based on business email ID
376 $paymentProcessorTypeID = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessorType', 'PayPal_Standard', 'id', 'name');
377 $processorParams = [
378 'user_name' => $this->retrieve('business', 'String', FALSE),
379 'payment_processor_type_id' => $paymentProcessorTypeID,
380 'is_test' => empty($input['is_test']) ? 0 : 1,
381 'options' => ['limit' => 1],
382 'return' => ['id'],
383 ];
384 $paymentProcessorID = civicrm_api3('PaymentProcessor', 'getvalue', $processorParams);
385 if (empty($paymentProcessorID)) {
518fa0ee 386 throw new CRM_Core_Exception('PayPalIPN: Could not get Payment Processor ID');
f5bc4a2d 387 }
ae0b8266 388 return (int) $paymentProcessorID;
6a488035 389 }
96025800 390
7b7ccbe7 391 /**
392 * @return mixed
393 * @throws \CRM_Core_Exception
394 */
395 protected function getTrxnType() {
e02cd781 396 return $this->retrieve('txn_type', 'String');
7b7ccbe7 397 }
398
399 /**
400 * Get status code for first or last recurring in the series.
401 *
402 * If this is the first or last then return the status code, else
403 * null.
404 *
405 * @return string|null
406 * @throws \CRM_Core_Exception
407 */
408 protected function getFirstOrLastInSeriesStatus(): ?string {
409 $subscriptionPaymentStatus = NULL;
410 if ($this->getTrxnType() === 'subscr_signup') {
411 return CRM_Core_Payment::RECURRING_PAYMENT_START;
412 }
413 if ($this->getTrxnType() === 'subscr_eot') {
414 return CRM_Core_Payment::RECURRING_PAYMENT_END;
415 }
416 return NULL;
417 }
418
1d6cc2d3
EM
419 /**
420 * Get the recurring contribution ID.
421 *
422 * @return int|null
423 *
424 * @throws \CRM_Core_Exception
425 */
426 protected function getContributionRecurID(): ?int {
427 $id = $this->retrieve('contributionRecurID', 'Integer', FALSE);
428 return $id ? (int) $id : NULL;
429 }
430
0b095e9a
EM
431 /**
432 * Get Contribution ID.
433 *
434 * @return int
435 *
436 * @throws \CRM_Core_Exception
437 */
438 protected function getContributionID(): int {
439 return (int) $this->retrieve('contributionID', 'Integer', TRUE);
440 }
441
442 /**
443 * Get contact id from parameters.
444 *
445 * @return int
446 *
447 * @throws \CRM_Core_Exception
448 */
449 protected function getContactID(): int {
450 return (int) $this->retrieve('contactID', 'Integer', TRUE);
451 }
452
68b23e7f
EM
453 /**
454 * Get the contribution object.
455 *
456 * @return \CRM_Contribute_BAO_Contribution
457 * @throws \CRM_Core_Exception
458 */
459 protected function getContribution(): CRM_Contribute_BAO_Contribution {
460 $contribution = new CRM_Contribute_BAO_Contribution();
461 $contribution->id = $this->getContributionID();
462 if (!$contribution->find(TRUE)) {
463 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: "]);
464 }
465 if ($contribution->contact_id !== $this->getContactID()) {
466 CRM_Core_Error::debug_log_message("Contact ID in IPN not found but contact_id found in contribution.");
467 }
468 return $contribution;
469 }
470
6a488035 471}