Removed extra debugging. (per comment)
[trustcommerce.git] / trustcommerce.php
CommitLineData
71a6ba5c
LMM
1<?php
2/*
3 * Copyright (C) 2012
4 * Licensed to CiviCRM under the GPL v3 or higher
5 *
6 * Written and contributed by Ward Vandewege <ward@fsf.org> (http://www.fsf.org)
7 *
8 */
9
10// Define logging level (0 = off, 4 = log everything)
11define('TRUSTCOMMERCE_LOGGING_LEVEL', 4);
12
13require_once 'CRM/Core/Payment.php';
14class org_fsf_payment_trustcommerce extends CRM_Core_Payment {
15 CONST CHARSET = 'iso-8859-1';
16 CONST AUTH_APPROVED = 'approve';
17 CONST AUTH_DECLINED = 'decline';
18 CONST AUTH_BADDATA = 'baddata';
19 CONST AUTH_ERROR = 'error';
20
21 static protected $_mode = NULL;
22
23 static protected $_params = array();
24
25 /**
26 * We only need one instance of this object. So we use the singleton
27 * pattern and cache the instance in this variable
28 *
29 * @var object
30 * @static
31 */
32 static private $_singleton = NULL;
33
34 /**
35 * Constructor
36 *
37 * @param string $mode the mode of operation: live or test
38 *
39 * @return void
40 */ function __construct($mode, &$paymentProcessor) {
41 $this->_mode = $mode;
42
43 $this->_paymentProcessor = $paymentProcessor;
44
45 $this->_processorName = ts('TrustCommerce');
46
47 $config = CRM_Core_Config::singleton();
48 $this->_setParam('user_name', $paymentProcessor['user_name']);
49 $this->_setParam('password', $paymentProcessor['password']);
50
51 $this->_setParam('timestamp', time());
52 srand(time());
53 $this->_setParam('sequence', rand(1, 1000));
54 $this->logging_level = TRUSTCOMMERCE_LOGGING_LEVEL;
55 }
56
57 /**
58 * singleton function used to manage this object
59 *
60 * @param string $mode the mode of operation: live or test
61 *
62 * @return object
63 * @static
64 *
65 */
66 static
67 function &singleton($mode, &$paymentProcessor) {
68 $processorName = $paymentProcessor['name'];
69 if (self::$_singleton[$processorName] === NULL) {
70 self::$_singleton[$processorName] = new org_fsf_payment_trustcommerce($mode, $paymentProcessor);
71 }
72 return self::$_singleton[$processorName];
73 }
74
75 /**
76 * Submit a payment using Advanced Integration Method
77 *
78 * @param array $params assoc array of input parameters for this transaction
79 *
80 * @return array the result in a nice formatted array (or an error object)
81 * @public
82 */
83 function doDirectPayment(&$params) {
84 if (!extension_loaded("tclink")) {
85 return self::error(9001, 'TrustCommerce requires that the tclink module is loaded');
86 }
87
88 /*
89 * recurpayment function does not compile an array & then proces it -
90 * - the tpl does the transformation so adding call to hook here
91 * & giving it a change to act on the params array
92 */
93
94 $newParams = $params;
95 if (CRM_Utils_Array::value('is_recur', $params) &&
96 $params['contributionRecurID']
97 ) {
98 CRM_Utils_Hook::alterPaymentProcessorParams($this,
99 $params,
100 $newParams
101 );
102 }
103 foreach ($newParams as $field => $value) {
104 $this->_setParam($field, $value);
105 }
106
107 if (CRM_Utils_Array::value('is_recur', $params) &&
108 $params['contributionRecurID']
109 ) {
110 return $this->doRecurPayment($params);
111 }
112
113 $postFields = array();
114 $tclink = $this->_getTrustCommerceFields();
115
116 // Set up our call for hook_civicrm_paymentProcessor,
117 // since we now have our parameters as assigned for the AIM back end.
118 CRM_Utils_Hook::alterPaymentProcessorParams($this,
119 $params,
120 $tclink
121 );
122
123 // TrustCommerce will not refuse duplicates, so we should check if the user already submitted this transaction
124 if ($this->_checkDupe($tclink['ticket'])) {
125 return self::error(9004, 'It appears that this transaction is a duplicate. Have you already submitted the form once? If so there may have been a connection problem. You can try your transaction again. If you continue to have problems please contact the site administrator.');
126 }
127
128 $result = tclink_send($tclink);
129
130 if (!$result) {
131 return self::error(9002, 'Could not initiate connection to payment gateway');
132 }
133
134 foreach ($result as $field => $value) {
135 error_log("result: $field => $value");
136 }
137
138 switch($result['status']) {
139 case self::AUTH_APPROVED:
140 // It's all good
141 break;
142 case self::AUTH_DECLINED:
143 // TODO FIXME be more or less specific?
144 // declinetype can be: decline, avs, cvv, call, expiredcard, carderror, authexpired, fraud, blacklist, velocity
145 // See TC documentation for more info
146 return self::error(9009, "Your transaction was declined: {$result['declinetype']}");
147 break;
148 case self::AUTH_BADDATA:
149 // TODO FIXME do something with $result['error'] and $result['offender']
150 return self::error(9011, "Invalid credit card information. Please re-enter.");
151 break;
152 case self::AUTH_ERROR:
153 return self::error(9002, 'Could not initiate connection to payment gateway');
154 break;
155 }
156
157 // Success
158
159 $params['trxn_id'] = $result['transid'];
160 $params['gross_amount'] = $tclink['amount'] / 100;
161
162 return $params;
163 }
164
165 /**
166 * Submit an Automated Recurring Billing subscription
167 *
168 * @param array $params assoc array of input parameters for this transaction
169 *
170 * @return array the result in a nice formatted array (or an error object)
171 * @public
172 */
173 function doRecurPayment(&$params) {
285eaf25
LMM
174 $payments = $this->_getParam('frequency_interval');
175 $cycle = $this->_getParam('frequency_unit');
71a6ba5c 176
285eaf25
LMM
177 /* Sort out our billing scheme */
178 switch($cycle) {
179 case 'day':
180 $cycle = 'd';
181 break;
182 case 'week':
183 $cycle = 'w';
184 break;
185 case 'month':
186 $cycle = 'm';
187 break;
188 case 'year':
189 $cycle = 'y';
190 break;
191 default:
192 return self::error(9001, 'Payment interval not set! Unable to process payment.');
193 break;
71a6ba5c
LMM
194 }
195
71a6ba5c 196
285eaf25
LMM
197 $params['authnow'] = 'y'; /* Process this payment `now' */
198 $params['cycle'] = $cycle; /* The billing cycle in years, months, weeks, or days. */
199 $params['payments'] = $payments;
71a6ba5c 200
71a6ba5c 201
285eaf25 202 $tclink = $this->_getTrustCommerceFields();
71a6ba5c 203
285eaf25
LMM
204 // Set up our call for hook_civicrm_paymentProcessor,
205 // since we now have our parameters as assigned for the AIM back end.
206 CRM_Utils_Hook::alterPaymentProcessorParams($this,
207 $params,
208 $tclink
209 );
71a6ba5c 210
285eaf25
LMM
211 // TrustCommerce will not refuse duplicates, so we should check if the user already submitted this transaction
212 if ($this->_checkDupe($tclink['ticket'])) {
213 return self::error(9004, 'It appears that this transaction is a duplicate. Have you already submitted the form once? If so there may have been a connection problem. You can try your transaction again. If you continue to have problems please contact the site administrator.');
71a6ba5c 214 }
71a6ba5c 215
285eaf25 216 $result = tclink_send($tclink);
71a6ba5c 217
71a6ba5c 218
285eaf25
LMM
219 /* DUPLIATE CODE, please refactor. ~lisa */
220 if (!$result) {
221 return self::error(9002, 'Could not initiate connection to payment gateway');
71a6ba5c
LMM
222 }
223
285eaf25
LMM
224
225 switch($result['status']) {
226 case self::AUTH_APPROVED:
227 // It's all good
228 break;
229 case self::AUTH_DECLINED:
230 // TODO FIXME be more or less specific?
231 // declinetype can be: decline, avs, cvv, call, expiredcard, carderror, authexpired, fraud, blacklist, velocity
232 // See TC documentation for more info
233 return self::error(9009, "Your transaction was declined: {$result['declinetype']}");
234 break;
235 case self::AUTH_BADDATA:
236 // TODO FIXME do something with $result['error'] and $result['offender']
237 return self::error(9011, "Invalid credit card information. Please re-enter.");
238 break;
239 case self::AUTH_ERROR:
240 return self::error(9002, 'Could not initiate connection to payment gateway');
241 break;
71a6ba5c 242 }
285eaf25
LMM
243
244 // Success
245
246 $params['trxn_id'] = $result['transid'];
247 $params['gross_amount'] = $tclink['amount'] / 100;
248
71a6ba5c 249 return $params;
285eaf25 250
71a6ba5c
LMM
251 }
252
253 function _getTrustCommerceFields() {
254 // Total amount is from the form contribution field
255 $amount = $this->_getParam('total_amount');
256 // CRM-9894 would this ever be the case??
257 if (empty($amount)) {
258 $amount = $this->_getParam('amount');
259 }
260 $fields = array();
261 $fields['custid'] = $this->_getParam('user_name');
262 $fields['password'] = $this->_getParam('password');
263 $fields['action'] = 'sale';
264
265 // Enable address verification
266 $fields['avs'] = 'y';
267
268 $fields['address1'] = $this->_getParam('street_address');
269 $fields['zip'] = $this->_getParam('postal_code');
270
271 $fields['name'] = $this->_getParam('billing_first_name') . ' ' . $this->_getParam('billing_last_name');
272
273 // This assumes currencies where the . is used as the decimal point, like USD
274 $amount = preg_replace("/([^0-9\\.])/i", "", $amount);
275
276 // We need to pass the amount to TrustCommerce in dollar cents
277 $fields['amount'] = $amount * 100;
278
279 // Unique identifier
280 $fields['ticket'] = substr($this->_getParam('invoiceID'), 0, 20);
281
282 // cc info
283 $fields['cc'] = $this->_getParam('credit_card_number');
284 $fields['cvv'] = $this->_getParam('cvv2');
285 $exp_month = str_pad($this->_getParam('month'), 2, '0', STR_PAD_LEFT);
286 $exp_year = substr($this->_getParam('year'),-2);
287 $fields['exp'] = "$exp_month$exp_year";
288
289 if ($this->_mode != 'live') {
290 $fields['demo'] = 'y';
291 }
71a6ba5c
LMM
292 return $fields;
293 }
294
295 /**
296 * Checks to see if invoice_id already exists in db
297 *
298 * @param int $invoiceId The ID to check
299 *
300 * @return bool True if ID exists, else false
301 */
302 function _checkDupe($invoiceId) {
303 require_once 'CRM/Contribute/DAO/Contribution.php';
304 $contribution = new CRM_Contribute_DAO_Contribution();
305 $contribution->invoice_id = $invoiceId;
306 return $contribution->find();
307 }
308
309 /**
310 * Get the value of a field if set
311 *
312 * @param string $field the field
313 *
314 * @return mixed value of the field, or empty string if the field is
315 * not set
316 */
317 function _getParam($field) {
318 return CRM_Utils_Array::value($field, $this->_params, '');
319 }
320
321 function &error($errorCode = NULL, $errorMessage = NULL) {
322 $e = CRM_Core_Error::singleton();
323 if ($errorCode) {
324 $e->push($errorCode, 0, NULL, $errorMessage);
325 }
326 else {
327 $e->push(9001, 0, NULL, 'Unknown System Error.');
328 }
329 return $e;
330 }
331
332 /**
333 * Set a field to the specified value. Value must be a scalar (int,
334 * float, string, or boolean)
335 *
336 * @param string $field
337 * @param mixed $value
338 *
339 * @return bool false if value is not a scalar, true if successful
340 */
341 function _setParam($field, $value) {
342 if (!is_scalar($value)) {
343 return FALSE;
344 }
345 else {
346 $this->_params[$field] = $value;
347 }
348 }
349
350 /**
351 * This function checks to see if we have the right config values
352 *
353 * @return string the error message if any
354 * @public
355 */
356 function checkConfig() {
357 $error = array();
358 if (empty($this->_paymentProcessor['user_name'])) {
359 $error[] = ts('Customer ID is not set for this payment processor');
360 }
361
362 if (empty($this->_paymentProcessor['password'])) {
363 $error[] = ts('Password is not set for this payment processor');
364 }
365
366 if (!empty($error)) {
367 return implode('<p>', $error);
368 } else {
369 return NULL;
370 }
371 }
372
373 function cancelSubscriptionURL($entityID = NULL, $entity = NULL) {
374 if ($entityID && $entity == 'membership') {
375 require_once 'CRM/Contact/BAO/Contact/Utils.php';
376 $contactID = CRM_Core_DAO::getFieldValue("CRM_Member_DAO_Membership", $entityID, "contact_id");
377 $checksumValue = CRM_Contact_BAO_Contact_Utils::generateChecksum($contactID, NULL, 'inf');
378
379 return CRM_Utils_System::url('civicrm/contribute/unsubscribe',
380 "reset=1&mid={$entityID}&cs={$checksumValue}", TRUE, NULL, FALSE, FALSE
381 );
382 }
383
384 return ($this->_mode == 'test') ? 'https://test.authorize.net' : 'https://authorize.net';
385 }
386
387 function cancelSubscription() {
388 $template = CRM_Core_Smarty::singleton();
389
390 $template->assign('subscriptionType', 'cancel');
391
392 $template->assign('apiLogin', $this->_getParam('apiLogin'));
393 $template->assign('paymentKey', $this->_getParam('paymentKey'));
394 $template->assign('subscriptionId', $this->_getParam('subscriptionId'));
395
396 $arbXML = $template->fetch('CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl');
397
398 // submit to authorize.net
399 $submit = curl_init($this->_paymentProcessor['url_recur']);
400 if (!$submit) {
401 return self::error(9002, 'Could not initiate connection to payment gateway');
402 }
403
404 curl_setopt($submit, CURLOPT_RETURNTRANSFER, 1);
405 curl_setopt($submit, CURLOPT_HTTPHEADER, array("Content-Type: text/xml"));
406 curl_setopt($submit, CURLOPT_HEADER, 1);
407 curl_setopt($submit, CURLOPT_POSTFIELDS, $arbXML);
408 curl_setopt($submit, CURLOPT_POST, 1);
409 curl_setopt($submit, CURLOPT_SSL_VERIFYPEER, 0);
410
411 $response = curl_exec($submit);
412
413 if (!$response) {
414 return self::error(curl_errno($submit), curl_error($submit));
415 }
416
417 curl_close($submit);
418
419 $responseFields = $this->_ParseArbReturn($response);
420
421 if ($responseFields['resultCode'] == 'Error') {
422 return self::error($responseFields['code'], $responseFields['text']);
423 }
424
425 // carry on cancelation procedure
426 return TRUE;
427 }
428
429 public function install() {
430 return TRUE;
431 }
432
433 public function uninstall() {
434 return TRUE;
435 }
436
437}