Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Submit to Processor in background.


kkampen

Recommended Posts

Posted

To anyone;

 

I have everything working except my processor. Right now it submits and i get the correct reply from my processor, but it comes in a tab-delimited text page.

 

How do i make my payment module parse the response instead of displaying it?

 

Below is my payment module code.

 

Thank you in advance.

 

<?php
/*
?$Id: fnsvanuatu.php,v 1.19 2003/01/29 19:57:15 hpdl Exp $

?osCommerce, Open Source E-Commerce Solutions
?http://www.oscommerce.com

?Copyright (c) 2003 osCommerce

?Released under the GNU General Public License
*/

?class fnsvanuatu {
? ?var $code, $title, $description, $enabled;

// class constructor
? ?function fnsvanuatu() {
? ? ?global $order;
? ? ?global $_SERVER;

? ? ?$this->code = 'fnsvanuatu';
? ? ?$this->title = MODULE_PAYMENT_FNSVANUATU_TEXT_TITLE;
? ? ?$this->description = MODULE_PAYMENT_FNSVANUATU_TEXT_DESCRIPTION;
? ? ?$this->sort_order = MODULE_PAYMENT_FNSVANUATU_SORT_ORDER;
? ? ?$this->enabled = ((MODULE_PAYMENT_FNSVANUATU_STATUS == 'True') ? True : false);

? ? ?if ((int)MODULE_PAYMENT_FNSVANUATU_ORDER_STATUS_ID > 0) {
? ? ? ?$this->order_status = MODULE_PAYMENT_FNSVANUATU_ORDER_STATUS_ID;
? ? ?}

? ? ?if (is_object($order)) $this->update_status();

? ? ?$this->form_action_url = 'https://secure.foobar.com/enbin/sslcapture.exe';
? ?}

// class methods
? ?function update_status() {
? ? ?global $order;

? ? ?if ( ($this->enabled == true) && ((int)MODULE_PAYMENT_FNSVANUATU_ZONE > 0) ) {
? ? ? ?$check_flag = false;
? ? ? ?$check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_FNSVANUATU_ZONE . "' and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id");
? ? ? ?while ($check = tep_db_fetch_array($check_query)) {
? ? ? ? ?if ($check['zone_id'] < 1) {
? ? ? ? ? ?$check_flag = true;
? ? ? ? ? ?break;
? ? ? ? ?} elseif ($check['zone_id'] == $order->billing['zone_id']) {
? ? ? ? ? ?$check_flag = true;
? ? ? ? ? ?break;
? ? ? ? ?}
? ? ? ?}

? ? ? ?if ($check_flag == false) {
? ? ? ? ?$this->enabled = false;
? ? ? ?}
? ? ?}
? ?}

? ?function javascript_validation() {
? ? ?$js = ' ?if (payment_value == "' . $this->code . '") {' . "\n" .
? ? ? ? ? ?' ? ?var cc_number = document.checkout_payment.vanuatu_fns_cc_number.value;' . "\n" .
? ? ? ? ? ?' ? ?if (cc_number == "" || cc_number.length < ' . CC_NUMBER_MIN_LENGTH . ') {' . "\n" .
? ? ? ? ? ?' ? ? ?error_message = error_message + "' . MODULE_PAYMENT_FNSVANUATU_TEXT_JS_CC_NUMBER . '";' . "\n" .
? ? ? ? ? ?' ? ? ?error = 1;' . "\n" .
? ? ? ? ? ?' ? ?}' . "\n" .
? ? ? ? ? ?' ?}' . "\n";

? ? ?return $js;
? ?}

? ?function selection() {
? ? ?global $order;

? ? ?for ($i=1; $i < 13; $i++) {
? ? ? ?$expires_month[] = array('id' => sprintf('%02d', $i), 'text' => strftime('%B',mktime(0,0,0,$i,1,2000)));
? ? ?}

? ? ?$today = getdate(); 
? ? ?for ($i=$today['year']; $i < $today['year']+10; $i++) {
? ? ? ?$expires_year[] = array('id' => strftime('%y',mktime(0,0,0,1,1,$i)), 'text' => strftime('%Y',mktime(0,0,0,1,1,$i)));
? ? ?}

? ? ?$selection = array('id' => $this->code,
? ? ? ? ? ? ? ? ? ? ? ? 'module' => $this->title,
? ? ? ? ? ? ? ? ? ? ? ? 'fields' => array(array('title' => MODULE_PAYMENT_FNSVANUATU_TEXT_CREDIT_CARD_OWNER_FIRST_NAME,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'field' => tep_draw_input_field('vanuatu_fns_cc_owner_firstname', $order->billing['firstname'])),
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? array('title' => MODULE_PAYMENT_FNSVANUATU_TEXT_CREDIT_CARD_OWNER_LAST_NAME,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'field' => tep_draw_input_field('vanuatu_fns_cc_owner_lastname', $order->billing['lastname'])),
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? array('title' => MODULE_PAYMENT_FNSVANUATU_TEXT_CREDIT_CARD_NUMBER,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'field' => tep_draw_input_field('vanuatu_fns_cc_number')),
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? array('title' => MODULE_PAYMENT_FNSVANUATU_TEXT_CREDIT_CARD_EXPIRES,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'field' => tep_draw_pull_down_menu('vanuatu_fns_cc_expires_month', $expires_month) . ' ' . tep_draw_pull_down_menu('vanuatu_fns_cc_expires_year', $expires_year)),
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? array('title' => MODULE_PAYMENT_FNSVANUATU_TEXT_CREDIT_CARD_CHECKNUMBER,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'field' => tep_draw_input_field('vanuatu_fns_cc_cvv', '', 'size="4" maxlength="3"') . ' <small>' . MODULE_PAYMENT_FNSVANUATU_TEXT_CREDIT_CARD_CHECKNUMBER_LOCATION . '</small>')));

? ? ?return $selection;
? ?}

? ?function pre_confirmation_check() {
? ? ?global $HTTP_POST_VARS;

? ? ?include(DIR_WS_CLASSES . 'cc_validation.php');

? ? ?$cc_validation = new cc_validation();
? ? ?$result = $cc_validation->validate($HTTP_POST_VARS['vanuatu_fns_cc_number'], $HTTP_POST_VARS['vanuatu_fns_cc_expires_month'], $HTTP_POST_VARS['vanuatu_fns_cc_expires_year']);

? ? ?$error = '';
? ? ?switch ($result) {
? ? ? ?case -1:
? ? ? ? ?$error = sprintf(TEXT_CCVAL_ERROR_UNKNOWN_CARD, substr($cc_validation->cc_number, 0, 4));
? ? ? ? ?break;
? ? ? ?case -2:
? ? ? ?case -3:
? ? ? ?case -4:
? ? ? ? ?$error = TEXT_CCVAL_ERROR_INVALID_DATE;
? ? ? ? ?break;
? ? ? ?case false:
? ? ? ? ?$error = TEXT_CCVAL_ERROR_INVALID_NUMBER;
? ? ? ? ?break;
? ? ?}

? ? ?if ( ($result == false) || ($result < 1) ) {
? ? ? ?$payment_error_return = 'payment_error=' . $this->code . '&error=' . urlencode($error) . '&vanuatu_fns_cc_owner_firstname=' . urlencode($HTTP_POST_VARS['vanuatu_fns_cc_owner_firstname']) . '&vanuatu_fns_cc_owner_lastname=' . urlencode($HTTP_POST_VARS['vanuatu_fns_cc_owner_lastname']) . '&vanuatu_fns_cc_expires_month=' . $HTTP_POST_VARS['vanuatu_fns_cc_expires_month'] . '&vanuatu_fns_cc_expires_year=' . $HTTP_POST_VARS['vanuatu_fns_cc_expires_year'];

? ? ? ?tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, $payment_error_return, 'SSL', true, false));
? ? ?}

? ? ?$this->cc_card_type = $cc_validation->cc_type;
? ? ?$this->cc_card_number = $cc_validation->cc_number;
? ? ?$this->cc_expiry_month = $cc_validation->cc_expiry_month;
? ? ?$this->cc_expiry_year = $cc_validation->cc_expiry_year;
? ?}

? ?function confirmation() {
? ? ?global $HTTP_POST_VARS;

? ? ?$confirmation = array('title' => $this->title . ': ' . $this->cc_card_type,
? ? ? ? ? ? ? ? ? ? ? ? ? ?'fields' => array(array('title' => MODULE_PAYMENT_FNSVANUATU_TEXT_CREDIT_CARD_OWNER,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?'field' => $HTTP_POST_VARS['vanuatu_fns_cc_owner_firstname'] . ' ' . $HTTP_POST_VARS['vanuatu_fns_cc_owner_lastname']),
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?array('title' => MODULE_PAYMENT_FNSVANUATU_TEXT_CREDIT_CARD_NUMBER,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?'field' => substr($this->cc_card_number, 0, 4) . str_repeat('X', (strlen($this->cc_card_number) - 8)) . substr($this->cc_card_number, -4)),
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?array('title' => MODULE_PAYMENT_FNSVANUATU_TEXT_CREDIT_CARD_EXPIRES,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?'field' => strftime('%B, %Y', mktime(0,0,0,$HTTP_POST_VARS['vanuatu_fns_cc_expires_month'], 1, '20' . $HTTP_POST_VARS['vanuatu_fns_cc_expires_year'])))));

? ? ?return $confirmation;
? ?}

? ?function process_button() {
? ? ?global $HTTP_POST_VARS, $order;


? ? ?//determine card type

? ? ?$number = ereg_replace('[^0-9]', '', $this->cc_card_number); 

? ? ? if (ereg('^4[0-9]{12}([0-9]{3})?$', $number)) { 
? ? ? $cc_type = 'VISA Card'; 
? ? ? } 
? ? ? elseif (ereg('^5[1-5][0-9]{14}$', $number)) { 
? ? ? $cc_type = 'MasterCard'; 
? ? ? } 
? ? ?
?require('includes/ISO_Countries.php');
? ? ?


? ? ?$process_button_string = tep_draw_hidden_field('mid', 'myaccountID') .
? ? ?tep_draw_hidden_field('pin', 'myAccountPWD') .
? ? ?tep_draw_hidden_field('curr', 'USD $') .
? ? ?tep_draw_hidden_field('ctype', '7') .
? ? ?tep_draw_hidden_field('sfee', 'No') .
? ? ?tep_draw_hidden_field('fee', '0.00') .
? ? ?tep_draw_hidden_field('ip', $_SERVER[REMOTE_ADDR]) .
? ? ?tep_draw_hidden_field('card', $cc_type) .
? ? ?tep_draw_hidden_field('vcode', $HTTP_POST_VARS['vanuatu_fns_cc_cvv']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('ccamt', number_format($order->info['total'], 2)) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_invoice_num', date('YmdHis')) .
? ? ? ? ? ? ?// ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_test_request', ((MODULE_PAYMENT_FNSVANUATU_TESTMODE == 'Test') ? 'N' : 'N')) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('cnumb', $this->cc_card_number) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('cvv', $HTTP_POST_VARS['vanuatu_fns_cc_cvv']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('exyr', substr($this->cc_expiry_year, -2)) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('exmth', $this->cc_expiry_month) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('cname', $HTTP_POST_VARS['vanuatu_fns_cc_owner_firstname'].' '.$HTTP_POST_VARS['vanuatu_fns_cc_owner_lastname']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_last_name', $HTTP_POST_VARS['vanuatu_fns_cc_owner_lastname']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('add1', $order->customer['street_address']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('town', $order->customer['city']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('state', $order->customer['state']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('Zip', $order->customer['postcode']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('country', $CCcountry) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('cemail', $order->customer['email_address']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_phone', $order->customer['telephone']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('cfname', $order->delivery['firstname']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('clname', $order->delivery['lastname']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_ship_to_address', $order->delivery['street_address']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_ship_to_city', $order->delivery['city']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_ship_to_state', $order->delivery['state']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_ship_to_zip', $order->delivery['postcode']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_ship_to_country', $order->delivery['country']['title']) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_receipt_link_url', tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL')) .
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_draw_hidden_field('x_email_merchant', ((MODULE_PAYMENT_FNSVANUATU_EMAIL_MERCHANT == 'True') ? 'TRUE' : 'FALSE'));

? ? ?return $process_button_string;
? ?}

? ?function before_process() {
? ? ?global $HTTP_POST_VARS;

? ? ?if ($HTTP_POST_VARS['x_response_code'] != '0') {
? ? ? ?tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(MODULE_PAYMENT_FNSVANUATU_TEXT_ERROR_MESSAGE), 'SSL', true, false));
? ? ?}
? ?}

? ?function after_process() {
? ? ?return false;
? ?}

? ?function get_error() {
? ? ?global $HTTP_GET_VARS;

? ? ?$error = array('title' => MODULE_PAYMENT_FNSVANUATU_TEXT_ERROR,
? ? ? ? ? ? ? ? ? ? 'error' => stripslashes(urldecode($HTTP_GET_VARS['error'])));

? ? ?return $error;
? ?}

? ?function check() {
? ? ?if (!isset($this->_check)) {
? ? ? ?$check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_FNSVANUATU_STATUS'");
? ? ? ?$this->_check = tep_db_num_rows($check_query);
? ? ?}
? ? ?return $this->_check;
? ?}

? ?function install() {
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable FNS Vanuatu Module', 'MODULE_PAYMENT_FNSVANUATU_STATUS', 'True', 'Do you want to accept FNS Vanuatu payments?', '6', '0', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())");
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Merchant ID', 'MODULE_PAYMENT_FNSVANUATU_MID', 'Your Merchant ID', 'The Merchant ID used for the FNS Vanuatu service', '6', '0', now())");
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Password', 'MODULE_PAYMENT_FNSVANUATU_PIN', 'Your Password Key', 'The Password used for the FNS Vanuatu service', '6', '0', now())");
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Transaction Category', 'MODULE_PAYMENT_FNSVANUATU_CTYPE', '7', 'Transaction category used for processing orders. <br>1=Stnd<br>2=Gaming<br>3=Chance <$20<br>4=Chance >$20<br>5=Adult <$3<br>6=Adult >$3<br>7=Pharma<br>8=Software<br>9=Travel/Lodge<br>10=Online Reg.<br>11=Order Proc.<br>12=Bill Proc.<br>13=Betting Exch', '6', '0', now())");
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Transaction Type', 'MODULE_PAYMENT_FNSVANUATU_TTYPE', '0', 'Transaction type used for processing orders. <br>0=Capture<br>2=Authorize<br>3=Pre-Authorize', '6', '0', now())");
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Customer Notifications', 'MODULE_PAYMENT_FNSVANUATU_EMAIL_CUSTOMER', 'False', 'Should FNS Vanuatu e-mail a receipt to the customer?', '6', '0', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())");
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Merchant Notifications', 'MODULE_PAYMENT_FNSVANUATU_EMAIL_MERCHANT', 'True', 'Should FNS Vanuatu e-mail a receipt to the store owner?', '6', '0', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())");
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort order of display.', 'MODULE_PAYMENT_FNSVANUATU_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0' , now())");
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Payment Zone', 'MODULE_PAYMENT_FNSVANUATU_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', '6', '2', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(', now())");
? ? ?tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, use_function, date_added) values ('Set Order Status', 'MODULE_PAYMENT_FNSVANUATU_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', '6', '0', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now())");
? ?}

? ?function remove() {
? ? ?tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')");
? ?}

? ?function keys() {
? ? ?return array('MODULE_PAYMENT_FNSVANUATU_STATUS','MODULE_PAYMENT_FNSVANUATU_MID','MODULE_PAYMENT_FNSVANUATU_PIN','MODULE_PAYMENT_FNSVANUATU_CTYPE','MODULE_PAYMENT_FNSVANUATU_TTYPE','MODULE_PAYMENT_FNSVANUATU_EMAIL_CUSTOMER','MODULE_PAYMENT_FNSVANUATU_EMAIL_MERCHANT','MODULE_PAYMENT_FNSVANUATU_ZONE','MODULE_PAYMENT_FNSVANUATU_ORDER_STATUS_ID','MODULE_PAYMENT_FNSVANUATU_SORT_ORDER');
? ?}
?}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...