Merge pull request #22438 from eileenmcnaughton/format
[civicrm-core.git] / CRM / Core / Payment / PayPalIPN.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_PayPalIPN 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 * Constructor function.
30 *
31 * @param array $inputData
32 * Contents of HTTP REQUEST.
33 *
34 * @throws CRM_Core_Exception
35 */
36 public function __construct($inputData) {
37 // CRM-19676
38 $params = (!empty($inputData['custom'])) ?
39 array_merge($inputData, json_decode($inputData['custom'], TRUE)) :
40 $inputData;
41 $this->setInputParameters($params);
42 parent::__construct();
43 }
44
45 /**
46 * @param string $name
47 * @param string $type
48 * @param bool $abort
49 *
50 * @return mixed
51 * @throws \CRM_Core_Exception
52 */
53 public function retrieve($name, $type, $abort = TRUE) {
54 $value = CRM_Utils_Type::validate(CRM_Utils_Array::value($name, $this->_inputParameters), $type, FALSE);
55 if ($abort && $value === NULL) {
56 throw new CRM_Core_Exception("PayPalIPN: Could not find an entry for $name");
57 }
58 return $value;
59 }
60
61 /**
62 * @param array $input
63 * @param CRM_Contribute_BAO_ContributionRecur $recur
64 * @param CRM_Contribute_BAO_Contribution $contribution
65 * @param bool $first
66 *
67 * @return void
68 *
69 * @throws \CRM_Core_Exception
70 * @throws \CiviCRM_API3_Exception
71 */
72 public function recur($input, $recur, $contribution, $first) {
73
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']) {
77 Civi::log()->debug('PayPalIPN: Invoice values dont match between database and IPN request (RecurID: ' . $recur->id . ').');
78 throw new CRM_Core_Exception("Failure: Invoice values dont match between database and IPN request");
79 }
80
81 $now = date('YmdHis');
82
83 // set transaction type
84 $contributionStatuses = array_flip(CRM_Contribute_BAO_Contribution::buildOptions('contribution_status_id', 'validate'));
85 switch ($this->getTrxnType()) {
86 case 'subscr_signup':
87 $recur->create_date = $now;
88 // sometimes subscr_signup response come after the subscr_payment and set to pending mode.
89
90 $statusID = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionRecur',
91 $recur->id, 'contribution_status_id'
92 );
93 if ($statusID != $contributionStatuses['In Progress']) {
94 $recur->contribution_status_id = $contributionStatuses['Pending'];
95 }
96 $recur->processor_id = $this->retrieve('subscr_id', 'String');
97 $recur->trxn_id = $recur->processor_id;
98 $recur->save();
99 return;
100
101 case 'subscr_eot':
102 if ($recur->contribution_status_id != $contributionStatuses['Cancelled']) {
103 $recur->contribution_status_id = $contributionStatuses['Completed'];
104 }
105 $recur->end_date = $now;
106 $recur->save();
107 return;
108
109 case 'subscr_cancel':
110 $recur->contribution_status_id = $contributionStatuses['Cancelled'];
111 $recur->cancel_date = $now;
112 $recur->save();
113 return;
114
115 case 'subscr_failed':
116 $recur->contribution_status_id = $contributionStatuses['Failed'];
117 $recur->modified_date = $now;
118 $recur->save();
119 break;
120
121 case 'subscr_modify':
122 Civi::log()->debug('PayPalIPN: We do not handle modifications to subscriptions right now (RecurID: ' . $recur->id . ').');
123 echo "Failure: We do not handle modifications to subscriptions right now<p>";
124 return;
125
126 }
127
128 if ($this->getTrxnType() !== 'subscr_payment') {
129 return;
130 }
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();
149
150 if (!$first) {
151 // check if this contribution transaction is already processed
152 // if not create a contribution and then get it processed
153 $contribution = new CRM_Contribute_BAO_Contribution();
154 $contribution->trxn_id = $input['trxn_id'];
155 if ($contribution->trxn_id && $contribution->find()) {
156 Civi::log()->debug('PayPalIPN: Returning since contribution has already been handled (trxn_id: ' . $contribution->trxn_id . ')');
157 echo 'Success: Contribution has already been handled<p>';
158 return;
159 }
160
161 if ($input['paymentStatus'] !== 'Completed') {
162 throw new CRM_Core_Exception("Ignore all IPN payments that are not completed");
163 }
164
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'];
168 $input['original_contribution_id'] = $contribution->id;
169 $input['contribution_recur_id'] = $recur->id;
170
171 civicrm_api3('Contribution', 'repeattransaction', $input);
172 return;
173 }
174
175 $this->single($input, $contribution, TRUE);
176 }
177
178 /**
179 * @param array $input
180 * @param \CRM_Contribute_BAO_Contribution $contribution
181 * @param bool $recur
182 *
183 * @return void
184 * @throws \CRM_Core_Exception
185 * @throws \CiviCRM_API3_Exception
186 */
187 public function single($input, $contribution, $recur = FALSE) {
188
189 // make sure the invoice is valid and matches what we have in the contribution record
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;
194 }
195
196 if (!$recur) {
197 if ($contribution->total_amount != $input['amount']) {
198 Civi::log()->debug('PayPalIPN: Amount values dont match between database and IPN request. (ID: ' . $contribution->id . ').');
199 echo "Failure: Amount values dont match between database and IPN request<p>";
200 return;
201 }
202 }
203 else {
204 $contribution->total_amount = $input['amount'];
205 }
206
207 // check if contribution is already completed, if so we ignore this ipn
208 $completedStatusId = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
209 if ($contribution->contribution_status_id == $completedStatusId) {
210 Civi::log()->debug('PayPalIPN: Returning since contribution has already been handled. (ID: ' . $contribution->id . ').');
211 echo 'Success: Contribution has already been handled<p>';
212 return;
213 }
214
215 CRM_Contribute_BAO_Contribution::completeOrder($input, $this->getContributionRecurID(), $contribution->id ?? NULL);
216 }
217
218 /**
219 * Main function.
220 *
221 * @throws \API_Exception
222 * @throws \CiviCRM_API3_Exception
223 * @throws \Civi\API\Exception\UnauthorizedException
224 */
225 public function main() {
226 try {
227 $input = [];
228 $component = $this->retrieve('module', 'String');
229 $input['component'] = $component;
230
231 $contributionID = $this->getContributionID();
232 $this->getInput($input);
233
234 $paymentProcessorID = $this->getPayPalPaymentProcessorID($input, $this->getContributionRecurID());
235
236 Civi::log()->debug('PayPalIPN: Received (ContactID: ' . $this->getContactID() . '; trxn_id: ' . $input['trxn_id'] . ').');
237 $contribution = $this->getContribution();
238
239 $input['payment_processor_id'] = $paymentProcessorID;
240
241 if ($this->getContributionRecurID()) {
242 $contributionRecur = new CRM_Contribute_BAO_ContributionRecur();
243 $contributionRecur->id = $this->getContributionRecurID();
244 if (!$contributionRecur->find(TRUE)) {
245 throw new CRM_Core_Exception('Could not find contribution recur record');
246 }
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');
250 if ($contribution->contribution_status_id == $completedStatusId) {
251 $first = FALSE;
252 }
253 $this->recur($input, $contributionRecur, $contribution, $first);
254 if ($this->getFirstOrLastInSeriesStatus()) {
255 //send recurring Notification email for user
256 CRM_Contribute_BAO_ContributionPage::recurringNotify(
257 $contributionID,
258 $this->getFirstOrLastInSeriesStatus(),
259 $contributionRecur
260 );
261 }
262 return;
263 }
264
265 $status = $input['paymentStatus'];
266 if ($status === 'Denied' || $status === 'Failed' || $status === 'Voided') {
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");
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') {
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");
284 return;
285 }
286 if ($status !== 'Completed') {
287 Civi::log()->debug('Returning since contribution status is not handled');
288 return;
289 }
290 $this->single($input, $contribution);
291 }
292 catch (CRM_Core_Exception $e) {
293 Civi::log()->debug($e->getMessage() . ' input {input}', ['input' => $input]);
294 echo 'Invalid or missing data';
295 }
296 }
297
298 /**
299 * @param array $input
300 *
301 * @throws \CRM_Core_Exception
302 */
303 public function getInput(&$input) {
304 $billingID = CRM_Core_BAO_LocationType::getBilling();
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);
309
310 $lookup = [
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',
318 ];
319 foreach ($lookup as $name => $paypalName) {
320 $value = $this->retrieve($paypalName, 'String', FALSE);
321 $input[$name] = $value ? $value : NULL;
322 }
323
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);
328
329 $paymentDate = $this->retrieve('payment_date', 'String', FALSE);
330 if (!empty($paymentDate)) {
331 $receiveDateTime = new DateTime($paymentDate);
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 */
336 $input['receive_date'] = CRM_Utils_Date::convertDateToLocalTime($receiveDateTime);
337 }
338 }
339
340 /**
341 * Get PaymentProcessorID for PayPal
342 *
343 * @param array $input
344 * @param int|null $contributionRecurID
345 *
346 * @return int
347 * @throws \CRM_Core_Exception
348 * @throws \CiviCRM_API3_Exception
349 */
350 public function getPayPalPaymentProcessorID(array $input, ?int $contributionRecurID): int {
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
358 if ($contributionRecurID) {
359 $contributionRecur = civicrm_api3('ContributionRecur', 'getsingle', [
360 'id' => $contributionRecurID,
361 'return' => ['payment_processor_id'],
362 ]);
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)) {
386 throw new CRM_Core_Exception('PayPalIPN: Could not get Payment Processor ID');
387 }
388 return (int) $paymentProcessorID;
389 }
390
391 /**
392 * @return mixed
393 * @throws \CRM_Core_Exception
394 */
395 protected function getTrxnType() {
396 return $this->retrieve('txn_type', 'String');
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
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
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
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
471 }