-
Notifications
You must be signed in to change notification settings - Fork 3
/
pp_authnet.php
69 lines (51 loc) · 1.94 KB
/
pp_authnet.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
#################################################################
## MyPHPAuction v6.04 ##
##-------------------------------------------------------------##
## Copyright ©2009 MyPHPAuction. All rights reserved. ##
##-------------------------------------------------------------##
#################################################################
session_start();
define ('IN_SITE', 1);
include_once ('includes/global.php');
include_once ('includes/class_fees.php');
(string) $active_pg = 'Authorize.net';
(string) $error_output = null;
$pg_enabled = $db->get_sql_field("SELECT checked FROM " . DB_PREFIX . "payment_gateways WHERE
name='" . $active_pg . "' LIMIT 0,1", "checked");
if (!$pg_enabled) { die(GMSG_NOT_AUTHORIZED); }
function setsrc($a)
{
$d = explode('/', $_SERVER["PHP_SELF"]);
$e = '/';
for ($i = 0; isset($d[$i+1]); $i++)
{
$e .= $d[$i] . '/';
}
$a = str_replace("src=\"", "src=\"http://" . $_SERVER["HTTP_HOST"] . $e, $a);
$a = str_replace("background=\"", "background=\"http://" . $_SERVER["HTTP_HOST"] . $e, $a);
$a = str_replace("href=\"t", "href=\"http://" . $_SERVER["HTTP_HOST"] . $e . "t", $a);
return str_replace("href=\"i", "href=\"http://" . $_SERVER["HTTP_HOST"] . $e . "i", $a);
}
ob_start(setsrc);
ob_end_flush();
$txnid = $_REQUEST['x_trans_id'];
$payment_gross = $_REQUEST['x_amount'];
$currentTime=time();
$payment_gross = $_POST['x_amount'];
$payment_currency = 'USD';
$txn_id = $_POST['x_trans_id'];
list($custom, $fee_table) = explode('TBL',$_POST['myphpauction_id']);
if ($_REQUEST['x_response_code'] == 1)
{
$process_fee = new fees();
$process_fee->setts = &$setts;
$process_fee->callback_process($custom, $fee_table, $active_pg, $payment_gross, $txn_id, $payment_currency);
$redirect_url = SITE_PATH . 'payment_completed.php';
}
else
{
$redirect_url = SITE_PATH . 'payment_failed.php';
}
header_redirect($redirect_url);
?>