Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
fee14197 | 4 | | CiviCRM version 5 | |
6a488035 | 5 | +--------------------------------------------------------------------+ |
f299f7db | 6 | | Copyright CiviCRM LLC (c) 2004-2020 | |
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 | +--------------------------------------------------------------------+ | |
d25dd0ee | 26 | */ |
6a488035 TO |
27 | |
28 | /** | |
29 | * | |
30 | * @package CRM | |
f299f7db | 31 | * @copyright CiviCRM LLC (c) 2004-2020 |
6a488035 TO |
32 | */ |
33 | class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN { | |
0dbefed3 | 34 | |
b5c2afd0 | 35 | /** |
fe482240 | 36 | * Constructor function. |
0dbefed3 | 37 | * |
5a4f6742 CW |
38 | * @param array $inputData |
39 | * contents of HTTP REQUEST. | |
0dbefed3 EM |
40 | * |
41 | * @throws CRM_Core_Exception | |
b5c2afd0 | 42 | */ |
00be9182 | 43 | public function __construct($inputData) { |
0dbefed3 | 44 | $this->setInputParameters($inputData); |
6a488035 TO |
45 | parent::__construct(); |
46 | } | |
47 | ||
6c786a9b EM |
48 | /** |
49 | * @param string $component | |
50 | * | |
51 | * @return bool|void | |
52 | */ | |
00be9182 | 53 | public function main($component = 'contribute') { |
6a488035 TO |
54 | |
55 | //we only get invoice num as a key player from payment gateway response. | |
56 | //for ARB we get x_subscription_id and x_subscription_paynum | |
0dbefed3 | 57 | $x_subscription_id = $this->retrieve('x_subscription_id', 'String'); |
be2fb01f | 58 | $ids = $objects = $input = []; |
6a488035 TO |
59 | |
60 | if ($x_subscription_id) { | |
dbb0d30b | 61 | // Presence of the id means it is approved. |
6a488035 TO |
62 | $input['component'] = $component; |
63 | ||
64 | // load post vars in $input | |
65 | $this->getInput($input, $ids); | |
66 | ||
67 | // load post ids in $ids | |
68 | $this->getIDs($ids, $input); | |
69 | ||
c5cf3602 JP |
70 | // Attempt to get payment processor ID from URL |
71 | if (!empty($this->_inputParameters['processor_id'])) { | |
72 | $paymentProcessorID = $this->_inputParameters['processor_id']; | |
73 | } | |
74 | else { | |
75 | // This is an unreliable method as there could be more than one instance. | |
76 | // Recommended approach is to use the civicrm/payment/ipn/xx url where xx is the payment | |
77 | // processor id & the handleNotification function (which should call the completetransaction api & by-pass this | |
78 | // entirely). The only thing the IPN class should really do is extract data from the request, validate it | |
79 | // & call completetransaction or call fail? (which may not exist yet). | |
d2803851 | 80 | Civi::log()->warning('Unreliable method used to get payment_processor_id for AuthNet IPN - this will cause problems if you have more than one instance'); |
c5cf3602 JP |
81 | $paymentProcessorTypeID = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessorType', |
82 | 'AuthNet', 'id', 'name' | |
83 | ); | |
be2fb01f | 84 | $paymentProcessorID = (int) civicrm_api3('PaymentProcessor', 'getvalue', [ |
c5cf3602 | 85 | 'is_test' => 0, |
be2fb01f | 86 | 'options' => ['limit' => 1], |
c5cf3602 | 87 | 'payment_processor_type_id' => $paymentProcessorTypeID, |
518fa0ee | 88 | 'return' => 'id', |
be2fb01f | 89 | ]); |
c5cf3602 | 90 | } |
6a488035 TO |
91 | |
92 | if (!$this->validateData($input, $ids, $objects, TRUE, $paymentProcessorID)) { | |
93 | return FALSE; | |
94 | } | |
f4aff12e | 95 | if (!empty($ids['paymentProcessor']) && $objects['contributionRecur']->payment_processor_id != $ids['paymentProcessor']) { |
be2fb01f | 96 | Civi::log()->warning('Payment Processor does not match the recurring processor id.', ['civi.tag' => 'deprecated']); |
f4aff12e | 97 | } |
6a488035 TO |
98 | |
99 | if ($component == 'contribute' && $ids['contributionRecur']) { | |
100 | // check if first contribution is completed, else complete first contribution | |
101 | $first = TRUE; | |
102 | if ($objects['contribution']->contribution_status_id == 1) { | |
103 | $first = FALSE; | |
104 | } | |
105 | return $this->recur($input, $ids, $objects, $first); | |
106 | } | |
107 | } | |
0dbefed3 | 108 | return TRUE; |
6a488035 TO |
109 | } |
110 | ||
6c786a9b | 111 | /** |
7a6073fd EM |
112 | * @param array $input |
113 | * @param array $ids | |
0dbefed3 | 114 | * @param array $objects |
6c786a9b | 115 | * @param $first |
7a6073fd EM |
116 | * |
117 | * @return bool | |
6c786a9b | 118 | */ |
00be9182 | 119 | public function recur(&$input, &$ids, &$objects, $first) { |
937cf542 | 120 | $this->_isRecurring = TRUE; |
6a488035 | 121 | $recur = &$objects['contributionRecur']; |
d6944518 | 122 | $paymentProcessorObject = $objects['contribution']->_relatedObjects['paymentProcessor']['object']; |
6a488035 TO |
123 | |
124 | // do a subscription check | |
125 | if ($recur->processor_id != $input['subscription_id']) { | |
126 | CRM_Core_Error::debug_log_message("Unrecognized subscription."); | |
127 | echo "Failure: Unrecognized subscription<p>"; | |
128 | return FALSE; | |
129 | } | |
130 | ||
6a488035 TO |
131 | $contributionStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name'); |
132 | ||
133 | $transaction = new CRM_Core_Transaction(); | |
134 | ||
135 | $now = date('YmdHis'); | |
136 | ||
137 | // fix dates that already exist | |
be2fb01f | 138 | $dates = ['create_date', 'start_date', 'end_date', 'cancel_date', 'modified_date']; |
6a488035 TO |
139 | foreach ($dates as $name) { |
140 | if ($recur->$name) { | |
141 | $recur->$name = CRM_Utils_Date::isoToMysql($recur->$name); | |
142 | } | |
143 | } | |
144 | ||
145 | //load new contribution object if required. | |
146 | if (!$first) { | |
147 | // create a contribution and then get it processed | |
148 | $contribution = new CRM_Contribute_BAO_Contribution(); | |
149 | $contribution->contact_id = $ids['contact']; | |
353ffa53 | 150 | $contribution->financial_type_id = $objects['contributionType']->id; |
6a488035 TO |
151 | $contribution->contribution_page_id = $ids['contributionPage']; |
152 | $contribution->contribution_recur_id = $ids['contributionRecur']; | |
4a1ba425 | 153 | $contribution->receive_date = $input['receive_date']; |
6a488035 TO |
154 | $contribution->currency = $objects['contribution']->currency; |
155 | $contribution->payment_instrument_id = $objects['contribution']->payment_instrument_id; | |
156 | $contribution->amount_level = $objects['contribution']->amount_level; | |
157 | $contribution->address_id = $objects['contribution']->address_id; | |
94d1bc8d | 158 | $contribution->campaign_id = $objects['contribution']->campaign_id; |
9bee639f | 159 | $contribution->_relatedObjects = $objects['contribution']->_relatedObjects; |
94d1bc8d | 160 | |
6a488035 TO |
161 | $objects['contribution'] = &$contribution; |
162 | } | |
163 | $objects['contribution']->invoice_id = md5(uniqid(rand(), TRUE)); | |
164 | $objects['contribution']->total_amount = $input['amount']; | |
165 | $objects['contribution']->trxn_id = $input['trxn_id']; | |
166 | ||
4086637a | 167 | $isFirstOrLastRecurringPayment = FALSE; |
6a488035 TO |
168 | if ($input['response_code'] == 1) { |
169 | // Approved | |
170 | if ($first) { | |
171 | $recur->start_date = $now; | |
172 | $recur->trxn_id = $recur->processor_id; | |
4086637a | 173 | $isFirstOrLastRecurringPayment = CRM_Core_Payment::RECURRING_PAYMENT_START; |
6a488035 TO |
174 | } |
175 | $statusName = 'In Progress'; | |
176 | if (($recur->installments > 0) && | |
177 | ($input['subscription_paynum'] >= $recur->installments) | |
178 | ) { | |
179 | // this is the last payment | |
180 | $statusName = 'Completed'; | |
181 | $recur->end_date = $now; | |
4086637a | 182 | $isFirstOrLastRecurringPayment = CRM_Core_Payment::RECURRING_PAYMENT_END; |
6a488035 TO |
183 | } |
184 | $recur->modified_date = $now; | |
185 | $recur->contribution_status_id = array_search($statusName, $contributionStatus); | |
186 | $recur->save(); | |
187 | } | |
188 | else { | |
189 | // Declined | |
190 | // failed status | |
191 | $recur->contribution_status_id = array_search('Failed', $contributionStatus); | |
192 | $recur->cancel_date = $now; | |
193 | $recur->save(); | |
194 | ||
be2fb01f | 195 | $message = ts("Subscription payment failed - %1", [1 => htmlspecialchars($input['response_reason_text'])]); |
267353f4 | 196 | CRM_Core_Error::debug_log_message($message); |
6a488035 TO |
197 | |
198 | // the recurring contribution has declined a payment or has failed | |
199 | // so we just fix the recurring contribution and not change any of | |
7a6073fd | 200 | // the existing contributions |
6a488035 TO |
201 | // CRM-9036 |
202 | return TRUE; | |
203 | } | |
204 | ||
205 | // check if contribution is already completed, if so we ignore this ipn | |
206 | if ($objects['contribution']->contribution_status_id == 1) { | |
207 | $transaction->commit(); | |
267353f4 | 208 | CRM_Core_Error::debug_log_message("Returning since contribution has already been handled."); |
6a488035 TO |
209 | echo "Success: Contribution has already been handled<p>"; |
210 | return TRUE; | |
211 | } | |
212 | ||
213 | $this->completeTransaction($input, $ids, $objects, $transaction, $recur); | |
4086637a | 214 | |
215 | // Only Authorize.net does this so it is on the a.net class. If there is a need for other processors | |
216 | // to do this we should make it available via the api, e.g as a parameter, changing the nuance | |
217 | // from isSentReceipt to an array of which receipts to send. | |
218 | // Note that there is site-by-site opinions on which notifications are good to send. | |
219 | if ($isFirstOrLastRecurringPayment) { | |
220 | CRM_Contribute_BAO_ContributionRecur::sendRecurringStartOrEndNotification($ids, $recur, | |
221 | $isFirstOrLastRecurringPayment); | |
222 | } | |
223 | ||
6a488035 TO |
224 | } |
225 | ||
6c786a9b | 226 | /** |
dbb0d30b | 227 | * Get the input from passed in fields. |
228 | * | |
229 | * @param array $input | |
230 | * @param array $ids | |
7a9ab499 EM |
231 | * |
232 | * @return bool | |
23cfc7a6 | 233 | * @throws \CRM_Core_Exception |
6c786a9b | 234 | */ |
00be9182 | 235 | public function getInput(&$input, &$ids) { |
0dbefed3 EM |
236 | $input['amount'] = $this->retrieve('x_amount', 'String'); |
237 | $input['subscription_id'] = $this->retrieve('x_subscription_id', 'Integer'); | |
238 | $input['response_code'] = $this->retrieve('x_response_code', 'Integer'); | |
239 | $input['MD5_Hash'] = $this->retrieve('x_MD5_Hash', 'String', FALSE, ''); | |
240 | $input['response_reason_code'] = $this->retrieve('x_response_reason_code', 'String', FALSE); | |
241 | $input['response_reason_text'] = $this->retrieve('x_response_reason_text', 'String', FALSE); | |
242 | $input['subscription_paynum'] = $this->retrieve('x_subscription_paynum', 'Integer', FALSE, 0); | |
243 | $input['trxn_id'] = $this->retrieve('x_trans_id', 'String', FALSE); | |
4a1ba425 | 244 | $input['trxn_id'] = $this->retrieve('x_trans_id', 'String', FALSE); |
23cfc7a6 | 245 | $input['receive_date'] = $this->retrieve('receive_date', 'String', FALSE, date('YmdHis', strtotime('now'))); |
0dbefed3 | 246 | |
6a488035 TO |
247 | if ($input['trxn_id']) { |
248 | $input['is_test'] = 0; | |
249 | } | |
5c6c7e76 | 250 | // Only assume trxn_id 'should' have been returned for success. |
251 | // Per CRM-17611 it would also not be passed back for a decline. | |
252 | elseif ($input['response_code'] == 1) { | |
6a488035 TO |
253 | $input['is_test'] = 1; |
254 | $input['trxn_id'] = md5(uniqid(rand(), TRUE)); | |
255 | } | |
256 | ||
257 | if (!$this->getBillingID($ids)) { | |
258 | return FALSE; | |
259 | } | |
260 | $billingID = $ids['billing']; | |
be2fb01f | 261 | $params = [ |
6a488035 TO |
262 | 'first_name' => 'x_first_name', |
263 | 'last_name' => 'x_last_name', | |
264 | "street_address-{$billingID}" => 'x_address', | |
265 | "city-{$billingID}" => 'x_city', | |
266 | "state-{$billingID}" => 'x_state', | |
267 | "postal_code-{$billingID}" => 'x_zip', | |
268 | "country-{$billingID}" => 'x_country', | |
269 | "email-{$billingID}" => 'x_email', | |
be2fb01f | 270 | ]; |
6a488035 | 271 | foreach ($params as $civiName => $resName) { |
0dbefed3 | 272 | $input[$civiName] = $this->retrieve($resName, 'String', FALSE); |
6a488035 TO |
273 | } |
274 | } | |
275 | ||
6c786a9b | 276 | /** |
dbb0d30b | 277 | * Get ids from input. |
278 | * | |
279 | * @param array $ids | |
280 | * @param array $input | |
281 | * | |
282 | * @throws \CRM_Core_Exception | |
6c786a9b | 283 | */ |
00be9182 | 284 | public function getIDs(&$ids, &$input) { |
0dbefed3 EM |
285 | $ids['contact'] = $this->retrieve('x_cust_id', 'Integer', FALSE, 0); |
286 | $ids['contribution'] = $this->retrieve('x_invoice_num', 'Integer'); | |
6a488035 TO |
287 | |
288 | // joining with contribution table for extra checks | |
289 | $sql = " | |
290 | SELECT cr.id, cr.contact_id | |
291 | FROM civicrm_contribution_recur cr | |
292 | INNER JOIN civicrm_contribution co ON co.contribution_recur_id = cr.id | |
293 | WHERE cr.processor_id = '{$input['subscription_id']}' AND | |
294 | (cr.contact_id = {$ids['contact']} OR co.id = {$ids['contribution']}) | |
295 | LIMIT 1"; | |
296 | $contRecur = CRM_Core_DAO::executeQuery($sql); | |
297 | $contRecur->fetch(); | |
298 | $ids['contributionRecur'] = $contRecur->id; | |
9b873358 | 299 | if ($ids['contact'] != $contRecur->contact_id) { |
be2fb01f | 300 | $message = ts("Recurring contribution appears to have been re-assigned from id %1 to %2, continuing with %2.", [1 => $ids['contact'], 2 => $contRecur->contact_id]); |
267353f4 | 301 | CRM_Core_Error::debug_log_message($message); |
8753de39 | 302 | $ids['contact'] = $contRecur->contact_id; |
6a488035 TO |
303 | } |
304 | if (!$ids['contributionRecur']) { | |
4346da4b | 305 | $message = ts("Could not find contributionRecur id"); |
306 | $log = new CRM_Utils_SystemLogger(); | |
be2fb01f | 307 | $log->error('payment_notification', ['message' => $message, 'ids' => $ids, 'input' => $input]); |
4346da4b | 308 | throw new CRM_Core_Exception($message); |
6a488035 TO |
309 | } |
310 | ||
311 | // get page id based on contribution id | |
312 | $ids['contributionPage'] = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', | |
313 | $ids['contribution'], | |
314 | 'contribution_page_id' | |
315 | ); | |
316 | ||
317 | if ($input['component'] == 'event') { | |
318 | // FIXME: figure out fields for event | |
319 | } | |
320 | else { | |
6a488035 TO |
321 | // Get membershipId. Join with membership payment table for additional checks |
322 | $sql = " | |
323 | SELECT m.id | |
324 | FROM civicrm_membership m | |
325 | INNER JOIN civicrm_membership_payment mp ON m.id = mp.membership_id AND mp.contribution_id = {$ids['contribution']} | |
326 | WHERE m.contribution_recur_id = {$ids['contributionRecur']} | |
327 | LIMIT 1"; | |
328 | if ($membershipId = CRM_Core_DAO::singleValueQuery($sql)) { | |
329 | $ids['membership'] = $membershipId; | |
330 | } | |
331 | ||
332 | // FIXME: todo related_contact and onBehalfDupeAlert. Check paypalIPN. | |
333 | } | |
334 | } | |
335 | ||
6c786a9b | 336 | /** |
6a0b768e TO |
337 | * @param string $name |
338 | * Parameter name. | |
339 | * @param string $type | |
340 | * Parameter type. | |
341 | * @param bool $abort | |
342 | * Abort if not present. | |
343 | * @param null $default | |
344 | * Default value. | |
6c786a9b | 345 | * |
0dbefed3 | 346 | * @throws CRM_Core_Exception |
6c786a9b EM |
347 | * @return mixed |
348 | */ | |
00be9182 | 349 | public function retrieve($name, $type, $abort = TRUE, $default = NULL) { |
0dbefed3 EM |
350 | $value = CRM_Utils_Type::validate( |
351 | empty($this->_inputParameters[$name]) ? $default : $this->_inputParameters[$name], | |
352 | $type, | |
353 | FALSE | |
6a488035 TO |
354 | ); |
355 | if ($abort && $value === NULL) { | |
0dbefed3 | 356 | throw new CRM_Core_Exception("Could not find an entry for $name"); |
6a488035 TO |
357 | } |
358 | return $value; | |
2aa397bc | 359 | } |
6a488035 | 360 | |
6a488035 | 361 | } |