added a block of code to help debug fraud details
[trustcommerce.git] / CRM / Core / Payment / TrustCommerce.php
CommitLineData
e751ae55
AE
1<?php
2/*
3 * This file is part of CiviCRM.
4 *
5 * CiviCRM is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * CiviCRM is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with CiviCRM. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * Copyright (C) 2012
19 * Licensed to CiviCRM under the GPL v3 or higher
20 *
21 * Written and contributed by Ward Vandewege <ward@fsf.org> (http://www.fsf.org)
22 * Modified by Lisa Marie Maginnis <lisa@fsf.org> (http://www.fsf.org)
23 * Copyright © 2015 David Thompson <davet@gnu.org>
24 *
25 */
26
27/**
28 * CiviCRM payment processor module for TrustCommerece.
29 *
30 * This module uses the TrustCommerece API via the tc_link module (GPLv3)
31 * distributed by TrustCommerece.com. For full documentation on the
32 * TrustCommerece API, please see the TCDevGuide for more information:
33 * https://vault.trustcommerce.com/downloads/TCDevGuide.htm
34 *
35 * This module supports the following features: Single credit/debit card
36 * transactions, AVS checking, recurring (create, update, and cancel
37 * subscription) optional blacklist with fail2ban,
38 *
39 * @copyright Ward Vandewege <ward@fsf.org> (http://www.fsf.org)
40 * @copyright Lisa Marie Maginnis <lisa@fsf.org> (http://www.fsf.org)
41 * @copyright David Thompson <davet@gnu.org>
42 * @version 0.4
43 * @package org.fsf.payment.trustcommerce
44 */
45
46/**
47 * Define logging level (0 = off, 4 = log everything)
48 */
49define('TRUSTCOMMERCE_LOGGING_LEVEL', 4);
50
51/**
52 * Load the CiviCRM core payment class so we can extend it.
53 */
54require_once 'CRM/Core/Payment.php';
55
56/**
57 * The payment processor object, it extends CRM_Core_Payment.
58 */
59//class org_fsf_payment_trustcommerce extends CRM_Core_Payment {
60class CRM_Core_Payment_TrustCommerce extends CRM_Core_Payment {
61
62 /**#@+
63 * Constants
64 */
65 /**
66 * This is our default charset, currently unused.
67 */
68 CONST CHARSET = 'iso-8859-1';
69 /**
70 * The API response value for transaction approved.
71 */
72 CONST AUTH_APPROVED = 'approve';
73 /**
74 * The API response value for transaction declined.
75 */
76 CONST AUTH_DECLINED = 'decline';
77 /**
78 * The API response value for baddata passed to the TC API.
79 */
80 CONST AUTH_BADDATA = 'baddata';
81 /**
82 * The API response value for an error in the TC API call.
83 */
84 CONST AUTH_ERROR = 'error';
85 /**
86 * The API response value for blacklisted in our local blacklist
87 */
88 CONST AUTH_BLACKLIST = 'blacklisted';
89 /**
90 * The API response value for approved status per the TCDevGuide.
91 */
92 CONST AUTH_ACCEPTED = 'accepted';
93
94 /**
95 * The current mode of the payment processor, valid values are: live, demo.
96 * @static
97 * @var string
98 */
66407e07 99 protected $_mode = NULL;
e751ae55
AE
100 /**
101 * The array of params cooked and passed to the TC API via tc_link().
102 * @static
103 * @var array
104 */
66407e07 105 protected $_params = array();
e751ae55
AE
106
107 /**
108 * We only need one instance of this object. So we use the singleton
109 * pattern and cache the instance in this variable
110 * @static
111 * @var object
112 */
113 static private $_singleton = NULL;
114
115 /**
116 * Sets our basic TC API paramaters (username, password). Also sets up:
117 * logging level, processor name, the mode (live/demo), and creates/copies
118 * our singleton.
119 *
120 * @param string $mode the mode of operation: live or test
121 * @param CRM_Core_Payment The payment processor object.
122 *
123 * @return void
124 */
125 function __construct($mode, &$paymentProcessor) {
66407e07 126 $this->_mode = $mode;
e751ae55
AE
127
128 $this->_paymentProcessor = $paymentProcessor;
129
130 $this->_processorName = ts('TrustCommerce');
131
132 $config = CRM_Core_Config::singleton();
133 $this->_setParam('user_name', $paymentProcessor['user_name']);
134 $this->_setParam('password', $paymentProcessor['password']);
135
136 $this->_setParam('timestamp', time());
137 srand(time());
138 $this->_setParam('sequence', rand(1, 1000));
139 $this->logging_level = TRUSTCOMMERCE_LOGGING_LEVEL;
140
141 }
142
143 /**
144 * The singleton function used to manage this object
145 *
146 * @param string $mode the mode of operation: live or test
147 * @param CRM_Core_Payment The payment processor object.
148 *
149 * @return object
150 * @static
151 */
152 static function &singleton($mode, &$paymentProcessor) {
153 $processorName = $paymentProcessor['name'];
154 if (self::$_singleton[$processorName] === NULL) {
155 self::$_singleton[$processorName] = new CRM_Core_Payment_TrustCommerce($mode, $paymentProcessor);
156 }
157 return self::$_singleton[$processorName];
158 }
159
160 /**
161 * Submit a payment using the TC API
162 *
163 * @param array $params The params we will be sending to tclink_send()
164 * @return mixed An array of our results, or an error object if the transaction fails.
165 * @public
166 */
167 function doDirectPayment(&$params) {
168 if (!extension_loaded("tclink")) {
169 return self::error(9001, 'TrustCommerce requires that the tclink module is loaded');
170 }
171
172 /* Copy our paramaters to ourself */
173 foreach ($params as $field => $value) {
174 $this->_setParam($field, $value);
175 }
176
177 /* Get our fields to pass to tclink_send() */
178 $tc_params = $this->_getTrustCommerceFields();
179
180 /* Are we recurring? If so add the extra API fields. */
181 if (CRM_Utils_Array::value('is_recur', $params) == 1) {
182 $tc_params = $this->_getRecurPaymentFields($tc_params);
183 $recur=1;
184 }
185
186 /* Pass our cooked params to the alter hook, per Core/Payment/Dummy.php */
187 CRM_Utils_Hook::alterPaymentProcessorParams($this, $params, $tc_params);
188
189 // TrustCommerce will not refuse duplicates, so we should check if the user already submitted this transaction
190 if ($this->_checkDupe($tc_params['ticket'])) {
191 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.');
192 }
193
194 /* This implements a local blacklist, and passes us though as a normal failure
195 * if the luser is on the blacklist. */
196 if(!$this->_isBlacklisted($tc_params)) {
197 /* Call the TC API, and grab the reply */
198 $reply = $this->_sendTCRequest($tc_params);
199 } else {
200 $this->_logger($tc_params);
201 $reply['status'] = self::AUTH_BLACKLIST;
202 usleep(rand(1000000,10000000));
203 }
204
205 /* Parse our reply */
206 $result = $this->_getTCReply($reply);
207
208 if(!is_object($result)) {
209 if($result == 0) {
210 /* We were successful, congrats. Lets wrap it up:
211 * Convert back to dollars
212 * Save the transaction ID
213 */
214
215 if (array_key_exists('billingid', $reply)) {
216 $params['recurr_profile_id'] = $reply['billingid'];
217 CRM_Core_DAO::setFieldValue(
218 'CRM_Contribute_DAO_ContributionRecur',
219 $this->_getParam('contributionRecurID'),
220 'processor_id', $reply['billingid']
221 );
222 }
223 $params['trxn_id'] = $reply['transid'];
224
225 $params['gross_amount'] = $tc_params['amount'] / 100;
226
227 return $params;
228 }
229 } else {
230 /* Otherwise we return the error object */
231 return $result;
232 }
233 }
234
235 /**
236 * Hook to update CC info for a recurring contribution
237 *
238 * @param string $message The message to dispaly on update success/failure
239 * @param array $params The paramters to pass to the payment processor
240 *
241 * @return bool True if successful, false on failure
242 */
243 function updateSubscriptionBillingInfo(&$message = '', $params = array()) {
244 $expYear = $params['credit_card_exp_date']['Y'];
245 $expMonth = $params['credit_card_exp_date']['M'];
246
247 // TODO: This should be our build in params set function, not by hand!
248 $tc_params = array(
249 'custid' => $this->_paymentProcessor['user_name'],
250 'password' => $this->_paymentProcessor['password'],
251 'action' => 'store',
252 'billingid' => $params['subscriptionId'],
253 'avs' => 'y', // Enable address verification
254 'address1' => $params['street_address'],
255 'zip' => $params['postal_code'],
256 'name' => $this->_formatBillingName($params['first_name'],
257 $params['last_name']),
258 'cc' => $params['credit_card_number'],
259 'cvv' => $params['cvv2'],
260 'exp' => $this->_formatExpirationDate($expYear, $expMonth),
261 'amount' => $this->_formatAmount($params['amount']),
262 );
263
264 CRM_Utils_Hook::alterPaymentProcessorParams($this, $params, $tc_params);
265
266 $reply = $this->_sendTCRequest($tc_params);
267 $result = $this->_getTCReply($reply);
268
269 if($result === 0) {
270 // TODO: Respect vaules for $messages passed in from our caller
271 $message = 'Successfully updated TC billing id ' . $tc_params['billingid'];
272
273 return TRUE;
274 } else {
275 return FALSE;
276 }
277 }
278
279 // TODO: Use the formatting functions throughout the entire class to
280 // dedupe the conversions done elsewhere in a less reusable way.
281
282 /**
283 * Internal routine to convert from CiviCRM amounts to TC amounts.
284 *
285 * Multiplies the amount by 100.
286 *
287 * @param float $amount The currency value to convert.
288 *
289 * @return int The TC amount
290 */
291 private function _formatAmount($amount) {
292 return $amount * 100;
293 }
294
295 /**
296 * Internal routine to format the billing name for TC
297 *
298 * @param string $firstName The first name to submit to TC
299 * @param string $lastName The last name to submit to TC
300 *
301 * @return string The TC name format, "$firstName $lastName"
302 */
303 private function _formatBillingName($firstName, $lastName) {
304 return "$firstName $lastName";
305 }
306
307 /**
308 * Formats the expiration date for TC
309 *
310 * @param int $year The credit card expiration year
311 * @param int $month The credit card expiration year
312 *
313 * @return The TC CC expiration date format, "$month$year"
314 */
315 private function _formatExpirationDate($year, $month) {
316 $exp_month = str_pad($month, 2, '0', STR_PAD_LEFT);
317 $exp_year = substr($year, -2);
318
319 return "$exp_month$exp_year";
320 }
321
322 private function _isParamsBlacklisted($tc_params) {
7de98bbd
AE
323
324 ///// debug help
325 //
326 //if ($_SERVER['REMOTE_ADDR'] === '74.94.156.211') {
327 // $test-tc-log = fopen("/tmp/test-tc-log", "a");
328 //
329 // fwrite($test-tc-log, $_SERVER['REMOTE_ADDR']."\n");
330 // fwrite($test-tc-log, print_r($this->_params[contributionPageID], true)."\n");
331 // //fwrite($test-tc-log, print_r($tc_params, true)."\n");
332 // //fwrite($test-tc-log, print_r($this, true)."\n");
333 //
334 // fclose("$test-tc-log");
335 //}
336
df9e7901
RR
337 // quidam 18/Jun/2020
338 // block brazil small donations
339 if(($tc_params['country'] == 'BR') && ($tc_params['amount'] < 2000)) {
fda7dc37 340 error_log("TrustCommerce: _isParamsBlacklisted() triggered by BR country");
df9e7901
RR
341 return TRUE;
342 }
cafbec2a 343 if($tc_params['address1'] == '230 Motley Dr') {
fda7dc37 344 error_log("TrustCommerce: _isParamsBlacklisted() triggered by 230 Motley Dr address");
e751ae55 345 return TRUE;
e751ae55 346 }
a19a95f2
AE
347 if($tc_params['amount'] == '500' && $this->_params[contributionPageID] == 14) { // main donation page
348 error_log("TrustCommerce: _isParamsBlacklisted() triggered by $5 donation amount on main donation page");
349 return TRUE;
350 }
cafbec2a 351 return FALSE;
e751ae55
AE
352 }
353
354 /**
355 * Checks to see if the source IP/USERAGENT are blacklisted.
356 *
357 * @return bool TRUE if on the blacklist, FALSE if not.
358 */
359 private function _isBlacklisted($tc_params) {
360 if($this->_isIPBlacklisted()) {
361 return TRUE;
362 } else if($this->_isAgentBlacklisted()) {
363 return TRUE;
364 } else if($this->_isParamsBlacklisted($tc_params)) {
365 return TRUE;
366 }
367 return FALSE;
368
369 }
370
371 /**
372 * Checks to see if the source USERAGENT is blacklisted
373 *
374 * @return bool TRUE if on the blacklist, FALSE if not.
375 */
376 private function _isAgentBlacklisted() {
377 // TODO: fix DB calls to be more the CiviCRM way
378 $ip = $_SERVER['REMOTE_ADDR'];
379 $agent = $_SERVER['HTTP_USER_AGENT'];
380 $dao = CRM_Core_DAO::executeQuery('SELECT * FROM `trustcommerce_useragent_blacklist`');
381 while($dao->fetch()) {
382 if(preg_match('/'.$dao->name.'/', $agent) === 1) {
383 error_log(' [client '.$ip.'] [agent '.$agent.'] - Blacklisted by USER_AGENT rule #'.$dao->id);
384 return TRUE;
385 }
386 }
387 return FALSE;
388 }
389
390 /**
391 * Checks to see if the source IP is blacklisted
392 *
393 * @return bool TRUE if on the blacklist, FALSE if not.
394 */
395 private function _isIPBlacklisted() {
396 // TODO: fix DB calls to be more the CiviCRM way
397 $ip = $_SERVER['REMOTE_ADDR'];
398 $agent = $_SERVER['HTTP_USER_AGENT'];
e751ae55
AE
399 $blacklist = array();
400 $dao = CRM_Core_DAO::executeQuery('SELECT * FROM `trustcommerce_blacklist`');
401 while($dao->fetch()) {
7e9cce83
RR
402 if($ip == $dao->ip) {
403 error_log('[client '.$ip.'] [agent '.$agent.'] Blacklisted by IP rule #'.$dao->id);
e751ae55
AE
404 return TRUE;
405 }
406 }
407 return FALSE;
408 }
409
410 /**
411 * Sends the API call to TC for processing
412 *
413 * @param array $request The array of paramaters to pass the TC API
414 *
415 * @return array The response from the TC API
416 */
417 function _sendTCRequest($request) {
418 $this->_logger($request);
419 return tclink_send($request);
420 }
421
422 /**
423 * Logs paramaters from TC along with the remote address of the client
424 *
425 * Will log paramaters via the error_log() routine. For security reasons
426 * the following values are not logged (skipped): custid, password, cc
427 * exp, and cvv.
428 *
429 * @param array $params The paramaters to log
430 */
431 function _logger($params) {
432 $msg = '';
433 foreach ($params as $key => $data) {
434 /* Delete any data we should not be writing to disk. This includes:
435 * custid, password, cc, exp, and cvv
436 */
437 switch($key) {
438 case 'custid':
439 case 'password':
440 case 'cc':
441 case 'exp':
442 case 'cvv':
443 break;
444 default:
445 $msg .= ' '.$key.' => '.$data;
446 }
447 }
448 error_log('[client '.$_SERVER['REMOTE_ADDR'].'] TrustCommerce:'.$msg);
449 }
450
451 /**
452 * Gets the recurring billing fields for the TC API
453 *
454 * @param array $fields The fields to modify.
455 * @return array The fields for tclink_send(), modified for recurring billing.
456 * @public
457 */
458 function _getRecurPaymentFields($fields) {
459 $payments = $this->_getParam('frequency_interval');
460 $cycle = $this->_getParam('frequency_unit');
461
462 /* Translate billing cycle from CiviCRM -> TC */
463 switch($cycle) {
464 case 'day':
465 $cycle = 'd';
466 break;
467 case 'week':
468 $cycle = 'w';
469 break;
470 case 'month':
471 $cycle = 'm';
472 break;
473 case 'year':
474 $cycle = 'y';
475 break;
476 }
477
478 /* Translate frequency interval from CiviCRM -> TC
479 * Payments are the same, HOWEVER a payment of 1 (forever) should be 0 in TC */
480 if($payments == 1) {
481 $payments = 0;
482 }
483
484 $fields['cycle'] = '1'.$cycle; /* The billing cycle in years, months, weeks, or days. */
485 $fields['payments'] = $payments;
486 $fields['action'] = 'store'; /* Change our mode to `store' mode. */
487
488 return $fields;
489 }
490
491 /** Parses a response from TC via the tclink_send() command.
492 *
493 * @param array $reply The result of a call to tclink_send().
494 *
495 * @return mixed|CRM_Core_Error CRM_Core_Error object if transaction failed, otherwise
496 * returns 0.
497 */
498 function _getTCReply($reply) {
499
500 /* DUPLIATE CODE, please refactor. ~lisa */
501 if (!$reply) {
502 return self::error(9002, 'Could not initiate connection to payment gateway.');
503 }
504
505 $this->_logger($reply);
506
507 switch($reply['status']) {
508 case self::AUTH_BLACKLIST:
7e9cce83 509 return self::error(9009, "Your transaction was declined. Please check the correctness of your credit card information, including CC number, expiration date and CVV code. ");
e751ae55
AE
510 break;
511 case self::AUTH_APPROVED:
512 break;
513 case self::AUTH_ACCEPTED:
514 // It's all good
515 break;
516 case self::AUTH_DECLINED:
517 // TODO FIXME be more or less specific?
518 // declinetype can be: decline, avs, cvv, call, expiredcard, carderror, authexpired, fraud, blacklist, velocity
519 // See TC documentation for more info
520 switch($reply['declinetype']) {
521 case 'avs':
522 return self::error(9009, "Your transaction was declined for address verification reasons. If your address was correct please contact us at donate@fsf.org before attempting to retry your transaction.");
523 break;
524 }
525 return self::error(9009, "Your transaction was declined. Please check the correctness of your credit card information, including CC number, expiration date and CVV code.");
526 break;
527 case self::AUTH_BADDATA:
528 // TODO FIXME do something with $reply['error'] and $reply['offender']
529 return self::error(9011, "Invalid credit card information. The following fields were invalid: {$reply['offenders']}.");
530 break;
531 case self::AUTH_ERROR:
532 return self::error(9002, 'Could not initiate connection to payment gateway');
533 break;
534 }
535 return 0;
536 }
537
538 /**
539 * Generate the basic paramaters to send the TC API
540 *
541 * @return array The array of paramaters to pass _sendTCRequest()
542 */
543 function _getTrustCommerceFields() {
544 // Total amount is from the form contribution field
545 $amount = $this->_getParam('total_amount');
546 // CRM-9894 would this ever be the case??
547 if (empty($amount)) {
548 $amount = $this->_getParam('amount');
549 }
550 $fields = array();
66407e07
RR
551
552 $fields['custid'] = $this->_paymentProcessor['user_name'];
553 $fields['password'] = $this->_paymentProcessor['password'];
554
e751ae55
AE
555 $fields['action'] = 'sale';
556
557 // Enable address verification
558 $fields['avs'] = 'y';
559
560 $fields['address1'] = $this->_getParam('street_address');
561 $fields['zip'] = $this->_getParam('postal_code');
76223b76 562 $fields['country'] = $this->_getParam('country');
e751ae55 563
d30429aa
RR
564 /**
565 * Fix AVS problem when a non-US country, has address1 and zip both starting
566 * with a letter.
567 */
568 if( ($fields['country'] !== '840' && $fields['country'] !== 840)
569 && (preg_match("/^\D/", $fields['zip']) === 1)
570 && (preg_match("/^\D/", $fields['address1']) === 1) ) {
571 // Add a number to the beginning of the address.
572 $fields['address1'] = preg_replace("/^/", "1 ", $fields['address1']);
573 }
574
e751ae55
AE
575 $fields['name'] = $this->_getParam('billing_first_name') . ' ' . $this->_getParam('billing_last_name');
576
577 // This assumes currencies where the . is used as the decimal point, like USD
578 $amount = preg_replace("/([^0-9\\.])/i", "", $amount);
579
580 // We need to pass the amount to TrustCommerce in dollar cents
581 $fields['amount'] = $amount * 100;
582
583 // Unique identifier
584 $fields['ticket'] = substr($this->_getParam('invoiceID'), 0, 20);
585
586 // cc info
587 $fields['cc'] = $this->_getParam('credit_card_number');
588 $fields['cvv'] = $this->_getParam('cvv2');
589 $exp_month = str_pad($this->_getParam('month'), 2, '0', STR_PAD_LEFT);
590 $exp_year = substr($this->_getParam('year'),-2);
591 $fields['exp'] = "$exp_month$exp_year";
592
66407e07 593 if ($this->_mode != 'live') {
e751ae55
AE
594 $fields['demo'] = 'y';
595 }
596 return $fields;
597 }
598
599 /**
600 * Checks to see if invoice_id already exists in db
601 *
602 * @param int $invoiceId The ID to check
603 *
604 * @return bool True if ID exists, else false
605 */
606 function _checkDupe($invoiceId) {
607 require_once 'CRM/Contribute/DAO/Contribution.php';
608 $contribution = new CRM_Contribute_DAO_Contribution();
609 $contribution->invoice_id = $invoiceId;
610 return $contribution->find();
611 }
612
613 /**
614 * Get the value of a field if set
615 *
616 * @param string $field the field
617 *
618 * @return mixed value of the field, or empty string if the field is
619 * not set
620 */
621 function _getParam($field) {
66407e07
RR
622 $value = CRM_Utils_Array::value($field, $this->_params, '');
623 if ($xmlSafe) {
624 $value = str_replace(array('&', '"', "'", '<', '>'), '', $value);
625 }
626 return $value;
e751ae55
AE
627 }
628
629 /**
630 * Sets our error message/logging information for CiviCRM
631 *
632 * @param int $errorCode The numerical code of the error, defaults to 9001
633 * @param string $errorMessage The error message to display/log
634 *
635 * @return CRM_Core_Error The error object with message and code.
636 */
637 function &error($errorCode = NULL, $errorMessage = NULL) {
638 $e = CRM_Core_Error::singleton();
639 if ($errorCode) {
640 $e->push($errorCode, 0, NULL, $errorMessage);
641 }
642 else {
643 $e->push(9001, 0, NULL, 'Unknown System Error.');
644 }
645 return $e;
646 }
647
648 /**
649 * Set a field to the specified value. Value must be a scalar (int,
650 * float, string, or boolean)
651 *
652 * @param string $field
653 * @param mixed $value
654 *
655 * @return bool false if value is not a scalar, true if successful
656 */
657 function _setParam($field, $value) {
658 if (!is_scalar($value)) {
659 return FALSE;
660 }
661 else {
66407e07 662 $this->_params[$field] = $value;
e751ae55
AE
663 }
664 }
665
666 /**
667 * Checks to see if we have the manditory config values set.
668 *
669 * @return string the error message if any
670 * @public
671 */
672 function checkConfig() {
673 $error = array();
674 if (empty($this->_paymentProcessor['user_name'])) {
675 $error[] = ts('Customer ID is not set for this payment processor');
676 }
677
678 if (empty($this->_paymentProcessor['password'])) {
679 $error[] = ts('Password is not set for this payment processor');
680 }
681
682 if (!empty($error)) {
683 return implode('<p>', $error);
684 } else {
685 return NULL;
686 }
687 }
688
689 /**
690 * Hook to cancel a recurring contribution
691 *
692 * @param string $message The message to dispaly on update success/failure
693 * @param array $params The paramters to pass to the payment processor
694 *
695 * @return bool True if successful, false on failure
696 */
697 function cancelSubscription(&$message = '', $params = array()) {
698 $tc_params['custid'] = $this->_getParam('user_name');
699 $tc_params['password'] = $this->_getParam('password');
700 $tc_params['action'] = 'unstore';
701 $tc_params['billingid'] = CRM_Utils_Array::value('subscriptionId', $params);
702
703 $result = $this->_sendTCRequest($tc_params);
704
705 /* Test if call failed */
706 if(!$result) {
707 return self::error(9002, 'Could not initiate connection to payment gateway');
708 }
709 /* We are done, pass success */
710 return TRUE;
711 }
712
713 /**
714 * Hook to update amount billed for a recurring contribution
715 *
716 * @param string $message The message to dispaly on update success/failure
717 * @param array $params The paramters to pass to the payment processor
718 *
719 * @return bool True if successful, false on failure
720 */
721 function changeSubscriptionAmount(&$message = '', $params = array()) {
722 $tc_params['custid'] = $this->_paymentProcessor['user_name'];
723 $tc_params['password'] = $this->_paymentProcessor['password'];
724 $tc_params['action'] = 'store';
725
726 $tc_params['billingid'] = CRM_Utils_Array::value('subscriptionId', $params);
727 $tc_params['payments'] = CRM_Utils_Array::value('installments', $params);
728 $tc_params['amount'] = CRM_Utils_Array::value('amount', $params) * 100;
729
730 if($tc_params['payments'] == 1) {
731 $tc_params['payments'] = 0;
732 }
733 $reply = $this->_sendTCRequest($tc_params);
734 $result = $this->_getTCReply($reply);
735
736 /* We are done, pass success */
737 return TRUE;
738
739 }
740
741 /**
742 * Installs the trustcommerce module (currently a dummy)
743 */
744 public function install() {
745 return TRUE;
746 }
747
748 /**
749 * Uninstalls the trustcommerce module (currently a dummy)
750 */
751 public function uninstall() {
752 return TRUE;
753 }
754
755}
756