Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2014-12-01-14-40-22
[civicrm-core.git] / CRM / Core / Payment / PayPalIPN.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
36
37 static $_paymentProcessor = NULL;
b5c2afd0
EM
38
39 /**
40 * Constructor
41 */
6a488035
TO
42 function __construct() {
43 parent::__construct();
44 }
45
6c786a9b
EM
46 /**
47 * @param $name
48 * @param $type
49 * @param string $location
50 * @param bool $abort
51 *
52 * @return mixed
53 */
6a488035
TO
54 static function retrieve($name, $type, $location = 'POST', $abort = TRUE) {
55 static $store = NULL;
56 $value = CRM_Utils_Request::retrieve($name, $type, $store,
57 FALSE, NULL, $location
58 );
59 if ($abort && $value === NULL) {
60 CRM_Core_Error::debug_log_message("Could not find an entry for $name in $location");
61 echo "Failure: Missing Parameter<p>";
62 exit();
63 }
64 return $value;
65 }
66
6c786a9b
EM
67 /**
68 * @param $input
69 * @param $ids
70 * @param $objects
71 * @param $first
72 */
6a488035
TO
73 function recur(&$input, &$ids, &$objects, $first) {
74 if (!isset($input['txnType'])) {
75 CRM_Core_Error::debug_log_message("Could not find txn_type in input request");
76 echo "Failure: Invalid parameters<p>";
77 return FALSE;
78 }
79
80 if ($input['txnType'] == 'subscr_payment' &&
81 $input['paymentStatus'] != 'Completed'
82 ) {
83 CRM_Core_Error::debug_log_message("Ignore all IPN payments that are not completed");
84 echo "Failure: Invalid parameters<p>";
85 return FALSE;
86 }
87
88 $recur = &$objects['contributionRecur'];
89
90 // make sure the invoice ids match
91 // make sure the invoice is valid and matches what we have in the contribution record
92 if ($recur->invoice_id != $input['invoice']) {
93 CRM_Core_Error::debug_log_message("Invoice values dont match between database and IPN request");
94 echo "Failure: Invoice values dont match between database and IPN request<p>";
95 return FALSE;
96 }
97
98 $now = date('YmdHis');
99
100 // fix dates that already exist
101 $dates = array('create', 'start', 'end', 'cancel', 'modified');
102 foreach ($dates as $date) {
103 $name = "{$date}_date";
104 if ($recur->$name) {
105 $recur->$name = CRM_Utils_Date::isoToMysql($recur->$name);
106 }
107 }
108 $sendNotification = FALSE;
109 $subscriptionPaymentStatus = NULL;
110 //set transaction type
111 $txnType = $_POST['txn_type'];
112 switch ($txnType) {
113 case 'subscr_signup':
114 $recur->create_date = $now;
115 //some times subscr_signup response come after the
116 //subscr_payment and set to pending mode.
117 $statusID = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionRecur',
118 $recur->id, 'contribution_status_id'
119 );
120 if ($statusID != 5) {
121 $recur->contribution_status_id = 2;
122 }
123 $recur->processor_id = $_POST['subscr_id'];
124 $recur->trxn_id = $recur->processor_id;
125 $sendNotification = TRUE;
126 $subscriptionPaymentStatus = CRM_Core_Payment::RECURRING_PAYMENT_START;
127 break;
128
129 case 'subscr_eot':
130 if ($recur->contribution_status_id != 3) {
131 $recur->contribution_status_id = 1;
132 }
133 $recur->end_date = $now;
134 $sendNotification = TRUE;
135 $subscriptionPaymentStatus = CRM_Core_Payment::RECURRING_PAYMENT_END;
136 break;
137
138 case 'subscr_cancel':
139 $recur->contribution_status_id = 3;
140 $recur->cancel_date = $now;
141 break;
142
143 case 'subscr_failed':
144 $recur->contribution_status_id = 4;
145 $recur->modified_date = $now;
146 break;
147
148 case 'subscr_modify':
149 CRM_Core_Error::debug_log_message("We do not handle modifications to subscriptions right now");
150 echo "Failure: We do not handle modifications to subscriptions right now<p>";
151 return FALSE;
152
153 case 'subscr_payment':
154 if ($first) {
155 $recur->start_date = $now;
156 }
157 else {
158 $recur->modified_date = $now;
159 }
160
161 // make sure the contribution status is not done
162 // since order of ipn's is unknown
163 if ($recur->contribution_status_id != 1) {
164 $recur->contribution_status_id = 5;
165 }
166 break;
167 }
168
169 $recur->save();
170
171 if ($sendNotification) {
172
173 $autoRenewMembership = FALSE;
174 if ($recur->id &&
175 isset($ids['membership']) && $ids['membership']
176 ) {
177 $autoRenewMembership = TRUE;
178 }
179
180 //send recurring Notification email for user
181 CRM_Contribute_BAO_ContributionPage::recurringNotify($subscriptionPaymentStatus,
182 $ids['contact'],
183 $ids['contributionPage'],
184 $recur,
185 $autoRenewMembership
186 );
187 }
188
189 if ($txnType != 'subscr_payment') {
190 return;
191 }
192
193 if (!$first) {
bc66bc9e
PJ
194 //check if this contribution transaction is already processed
195 //if not create a contribution and then get it processed
6a488035 196 $contribution = new CRM_Contribute_BAO_Contribution();
bc66bc9e
PJ
197 $contribution->trxn_id = $input['trxn_id'];
198 if ($contribution->trxn_id && $contribution->find()) {
199 CRM_Core_Error::debug_log_message("returning since contribution has already been handled");
200 echo "Success: Contribution has already been handled<p>";
201 return TRUE;
202 }
203
6a488035 204 $contribution->contact_id = $ids['contact'];
94d1bc8d 205 $contribution->financial_type_id = $objects['contributionType']->id;
6a488035
TO
206 $contribution->contribution_page_id = $ids['contributionPage'];
207 $contribution->contribution_recur_id = $ids['contributionRecur'];
208 $contribution->receive_date = $now;
209 $contribution->currency = $objects['contribution']->currency;
210 $contribution->payment_instrument_id = $objects['contribution']->payment_instrument_id;
211 $contribution->amount_level = $objects['contribution']->amount_level;
94d1bc8d 212 $contribution->campaign_id = $objects['contribution']->campaign_id;
6a488035
TO
213
214 $objects['contribution'] = &$contribution;
215 }
216
217 $this->single($input, $ids, $objects,
218 TRUE, $first
219 );
220 }
221
6c786a9b
EM
222 /**
223 * @param $input
224 * @param $ids
225 * @param $objects
226 * @param bool $recur
227 * @param bool $first
228 */
6a488035
TO
229 function single(&$input, &$ids, &$objects,
230 $recur = FALSE,
231 $first = FALSE
232 ) {
233 $contribution = &$objects['contribution'];
234
235 // make sure the invoice is valid and matches what we have in the contribution record
236 if ((!$recur) || ($recur && $first)) {
237 if ($contribution->invoice_id != $input['invoice']) {
238 CRM_Core_Error::debug_log_message("Invoice values dont match between database and IPN request");
239 echo "Failure: Invoice values dont match between database and IPN request<p>";
240 return FALSE;
241 }
242 }
243 else {
244 $contribution->invoice_id = md5(uniqid(rand(), TRUE));
245 }
246
247 if (!$recur) {
248 if ($contribution->total_amount != $input['amount']) {
249 CRM_Core_Error::debug_log_message("Amount values dont match between database and IPN request");
250 echo "Failure: Amount values dont match between database and IPN request<p>";
251 return FALSE;
252 }
253 }
254 else {
255 $contribution->total_amount = $input['amount'];
256 }
257
258 $transaction = new CRM_Core_Transaction();
259
6a488035
TO
260 $participant = &$objects['participant'];
261 $membership = &$objects['membership'];
262
263 $status = $input['paymentStatus'];
264 if ($status == 'Denied' || $status == 'Failed' || $status == 'Voided') {
265 return $this->failed($objects, $transaction);
266 }
267 elseif ($status == 'Pending') {
268 return $this->pending($objects, $transaction);
269 }
270 elseif ($status == 'Refunded' || $status == 'Reversed') {
271 return $this->cancelled($objects, $transaction);
272 }
273 elseif ($status != 'Completed') {
274 return $this->unhandled($objects, $transaction);
275 }
276
277 // check if contribution is already completed, if so we ignore this ipn
278 if ($contribution->contribution_status_id == 1) {
279 $transaction->commit();
280 CRM_Core_Error::debug_log_message("returning since contribution has already been handled");
281 echo "Success: Contribution has already been handled<p>";
282 return TRUE;
283 }
284
285 $this->completeTransaction($input, $ids, $objects, $transaction, $recur);
286 }
287
d5346e1b 288 function main() {
c8aa607b 289 //@todo - this could be refactored like PayPalProIPN & a test could be added
6a488035
TO
290
291 $objects = $ids = $input = array();
d5346e1b 292 $component = CRM_Utils_Array::value('module', $_GET);
6a488035
TO
293 $input['component'] = $component;
294
295 // get the contribution and contact ids from the GET params
296 $ids['contact'] = self::retrieve('contactID', 'Integer', 'GET', TRUE);
297 $ids['contribution'] = self::retrieve('contributionID', 'Integer', 'GET', TRUE);
298
299 $this->getInput($input, $ids);
300
301 if ($component == 'event') {
302 $ids['event'] = self::retrieve('eventID', 'Integer', 'GET', TRUE);
303 $ids['participant'] = self::retrieve('participantID', 'Integer', 'GET', TRUE);
304 }
305 else {
306 // get the optional ids
307 $ids['membership'] = self::retrieve('membershipID', 'Integer', 'GET', FALSE);
308 $ids['contributionRecur'] = self::retrieve('contributionRecurID', 'Integer', 'GET', FALSE);
309 $ids['contributionPage'] = self::retrieve('contributionPageID', 'Integer', 'GET', FALSE);
310 $ids['related_contact'] = self::retrieve('relatedContactID', 'Integer', 'GET', FALSE);
311 $ids['onbehalf_dupe_alert'] = self::retrieve('onBehalfDupeAlert', 'Integer', 'GET', FALSE);
312 }
313
314 $paymentProcessorID = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessorType',
315 'PayPal_Standard', 'id', 'name'
316 );
317
318 if (!$this->validateData($input, $ids, $objects, TRUE, $paymentProcessorID)) {
319 return FALSE;
320 }
321
322 self::$_paymentProcessor = &$objects['paymentProcessor'];
323 if ($component == 'contribute') {
324 if ($ids['contributionRecur']) {
325 // check if first contribution is completed, else complete first contribution
326 $first = TRUE;
327 if ($objects['contribution']->contribution_status_id == 1) {
328 $first = FALSE;
329 }
330 return $this->recur($input, $ids, $objects, $first);
331 }
332 else {
333 return $this->single($input, $ids, $objects, FALSE, FALSE);
334 }
335 }
336 else {
337 return $this->single($input, $ids, $objects, FALSE, FALSE);
338 }
339 }
340
6c786a9b
EM
341 /**
342 * @param $input
343 * @param $ids
344 */
6a488035
TO
345 function getInput(&$input, &$ids) {
346 if (!$this->getBillingID($ids)) {
347 return FALSE;
348 }
349
350 $input['txnType'] = self::retrieve('txn_type', 'String', 'POST', FALSE);
351 $input['paymentStatus'] = self::retrieve('payment_status', 'String', 'POST', FALSE);
352 $input['invoice'] = self::retrieve('invoice', 'String', 'POST', TRUE);
353 $input['amount'] = self::retrieve('mc_gross', 'Money', 'POST', FALSE);
354 $input['reasonCode'] = self::retrieve('ReasonCode', 'String', 'POST', FALSE);
355
356 $billingID = $ids['billing'];
357 $lookup = array(
358 "first_name" => 'first_name',
359 "last_name" => 'last_name',
360 "street_address-{$billingID}" => 'address_street',
361 "city-{$billingID}" => 'address_city',
362 "state-{$billingID}" => 'address_state',
363 "postal_code-{$billingID}" => 'address_zip',
364 "country-{$billingID}" => 'address_country_code',
365 );
366 foreach ($lookup as $name => $paypalName) {
367 $value = self::retrieve($paypalName, 'String', 'POST', FALSE);
368 $input[$name] = $value ? $value : NULL;
369 }
370
371 $input['is_test'] = self::retrieve('test_ipn', 'Integer', 'POST', FALSE);
372 $input['fee_amount'] = self::retrieve('mc_fee', 'Money', 'POST', FALSE);
373 $input['net_amount'] = self::retrieve('settle_amount', 'Money', 'POST', FALSE);
374 $input['trxn_id'] = self::retrieve('txn_id', 'String', 'POST', FALSE);
375 }
376}