* @package AgileBill * @version 1.4.93 */ include_once(PATH_MODULES.'checkout/base_checkout_plugin.class.php'); class plg_chout_INTERNETSECURE extends base_checkout_plugin { # Get the config values for this checkout plugin: function plg_chout_INTERNETSECURE($checkout_id=false) { $this->name = 'INTERNETSECURE'; $this->type = 'gateway'; // redirect, gateway, or other $this->recurr_only = false; $this->checkout_id = $checkout_id; $this->support_cur = Array ('USD'); $this->host = 'secure.internetsecure.com'; $this->url = '/process.cgi'; $this->getDetails($checkout_id); } # Validate the user submitted billing details at checkout: function validate($VAR) { return true; } # Perform the checkout transaction (new purchase): function bill_checkout( $amount, $invoice, $currency_iso, $acct_fields, $total_recurring=false, $recurr_bill_arr=false) { # Validate currency if(!$this->validate_currency($currency_iso)) return false; $ret=false; if(!$this->validate_card_details($ret)) return false; # Get the country $country = $this->getCountry('name', $this->account["country_id"]); # Set the post vars: $vars = Array ( Array ('x_ADC_URL', "FALSE"), Array ('x_ADC_Delim_Data', "TRUE"), Array ('x_Version', "3.0"), Array ('x_Currency_Code', $currency_iso), Array ('x_Method', "CC"), Array ('x_Transaction_Type', $this->cfg['x_Transaction_Type']), Array ('x_Login', $this->cfg['x_Login']), Array ('x_Invoice_Num', $invoice), Array ('xxxRequestMode', "A"), Array ('template', "0"), Array ('MerchantNumber', $this->cfg['x_Login']), Array ('Products', "$amount::1::P001::Payment%20for%20Invoice%20No.%$invoice::"), Array ('CVV2', $this->billing["ccv"]), Array ('xxxCard_Number', $this->billing["cc_no"]), Array ('xxxCCMonth', $this->billing["exp_month"]), Array ('xxxCCYear', $this->billing["exp_year"]), Array ('xxxCustomerID', $acct_fields["id"]), Array ('xxxName', $this->account["first_name"].' '.$this->account["last_name"]), Array ('xxxCard_Name', $this->account["first_name"].' '.$this->account["last_name"]), Array ('xxxCompany', $this->account["company"]), Array ('xxxAddress', $this->account["address1"] . ' ' . $this->account["address2"]), Array ('xxxCity', $this->account["city"]), Array ('xxxProvince', $this->account["state"]), Array ('xxxPostal', $this->account["zip"]), Array ('xxxEmail', $acct_fields["email"]), Array ('xxxCountry', $country), Array ('xxxShippingName', $this->account["first_name"] . ' ' .$this->account["last_name"]), Array ('xxxShippingCompany', $this->account["company"]), Array ('xxxShippingAddress', $this->account["address1"] . ' ' . $this->account["address2"]), Array ('xxxShippingCity', $this->account["city"]), Array ('xxxShippingProvince', $this->account["state"]), Array ('xxxShippingPostal', $this->account["zip"]), Array ('xxxShippingCountry', $country), Array ('xxxCustomerIP', USER_IP) ); # Create the SSL connection & get response from the gateway: include_once (PATH_CORE . 'ssl.inc.php'); $n = new CORE_ssl; echo $response = $n->connect($this->host, $this->url, $vars, true, 1); # Get return response if(!$response) { echo ''; return false; } else { $response = explode(',', $response); } # Transaction Status: if ($response[0] == '1') $ret['status'] = 1; else $ret['status'] = 0; # Transaction ID: @$ret['avs'] = @$response[4]; # Message: @$ret['msg'] = @$response[3]; # AVS Details: if ( @$response[5] == 'A' ) $ret['avs'] = 'avs_address_only'; elseif ( @$response[5] == 'E' ) $ret['avs'] = 'avs_error'; elseif ( @$response[5] == 'N' ) $ret['avs'] = 'avs_no_match'; elseif ( @$response[5] == 'P' ) $ret['avs'] = 'avs_na'; elseif ( @$response[5] == 'R' ) $ret['avs'] = 'avs_retry'; elseif ( @$response[5] == 'S' ) $ret['avs'] = 'avs_not_supported'; elseif ( @$response[5] == 'U' ) $ret['avs'] = 'avs_address_unavail'; elseif ( @$response[5] == 'W' ) $ret['avs'] = 'avs_fullzip_only'; elseif ( @$response[5] == 'X' ) $ret['avs'] = 'avs_exact'; elseif ( @$response[5] == 'Y' ) $ret['avs'] = 'avs_address_zip'; elseif ( @$response[5] == 'Z' ) $ret['avs'] = 'avs_partzip_only'; else $ret['avs'] = 'avs_na'; if($ret['status'] == 1) { return $ret; } else { global $VAR; @$VAR['msg']=$ret["msg"]; return false; } } # Stores new billing details, & return account_billing_id (gateway only) function store_billing($VAR, $account=SESS_ACCOUNT) { return $this->saveCreditCardDetails($VAR); } # Perform a transaction for an (new invoice): function bill_invoice($VAR) { return true; } # Issue a refund for a paid invoice (captured charges w/gateway) function refund($VAR) { return true; } # Void a authorized charge (gateways only) function void($VAR) { return true; } } ?>