forked from PrestaShopCorp/authorizeaim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validation.php
157 lines (135 loc) · 5.93 KB
/
validation.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
/*
* 2007-2013 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <[email protected]>
* @copyright 2007-2013 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
include(dirname(__FILE__). '/../../config/config.inc.php');
include(dirname(__FILE__). '/../../init.php');
/* will include backward file */
include(dirname(__FILE__). '/authorizeaim.php');
$authorizeaim = new AuthorizeAIM();
/* Does the cart exist and is valid? */
$cart = Context::getContext()->cart;
if (!isset($_POST['x_invoice_num']))
{
Logger::addLog('Missing x_invoice_num', 4);
die('An unrecoverable error occured: Missing parameter');
}
if (!Validate::isLoadedObject($cart))
{
Logger::addLog('Cart loading failed for cart '.(int)$_POST['x_invoice_num'], 4);
die('An unrecoverable error occured with the cart '.(int)$_POST['x_invoice_num']);
}
if ($cart->id != $_POST['x_invoice_num'])
{
Logger::addLog('Conflict between cart id order and customer cart id');
die('An unrecoverable conflict error occured with the cart '.(int)$_POST['x_invoice_num']);
}
$customer = new Customer((int)$cart->id_customer);
$invoiceAddress = new Address((int)$cart->id_address_invoice);
$currency = new Currency((int)$cart->id_currency);
if (!Validate::isLoadedObject($customer) || !Validate::isLoadedObject($invoiceAddress) && !Validate::isLoadedObject($currency))
{
Logger::addLog('Issue loading customer, address and/or currency data');
die('An unrecoverable error occured while retrieving you data');
}
$params = array(
'x_test_request' => (bool)Configuration::get('AUTHORIZE_AIM_TEST_MODE'),
'x_invoice_num' => (int)$_POST['x_invoice_num'],
'x_amount' => number_format((float)$cart->getOrderTotal(true, 3), 2, '.', ''),
'x_exp_date' => Tools::safeOutput($_POST['x_exp_date_m'].$_POST['x_exp_date_y']),
'x_address' => Tools::safeOutput($invoiceAddress->address1.' '.$invoiceAddress->address2),
'x_zip' => Tools::safeOutput($invoiceAddress->postcode),
'x_first_name' => Tools::safeOutput($customer->firstname),
'x_last_name' => Tools::safeOutput($customer->lastname),
'x_version' => '3.1',
'x_delim_data' => true,
'x_delim_char' => '|',
'x_relay_response' => false,
'x_type' => 'AUTH_CAPTURE',
'x_currency_code' => $currency->iso_code,
'x_method' => 'CC',
'x_solution_id' => 'A1000006',
'x_login' => Tools::safeOutput(Configuration::get('AUTHORIZE_AIM_LOGIN_ID_'.$currency->iso_code)),
'x_tran_key' => Tools::safeOutput(Configuration::get('AUTHORIZE_AIM_KEY_'.$currency->iso_code)),
'x_card_num' => Tools::safeOutput($_POST['x_card_num']),
'x_card_code' => Tools::safeOutput($_POST['x_card_code']),
);
$postString = '';
foreach ($params as $key => $value)
$postString .= $key.'='.urlencode($value).'&';
$postString = trim($postString, '&');
$url = 'https://'.(Configuration::get('AUTHORIZE_AIM_SANDBOX') ? 'test' : 'secure').'.authorize.net/gateway/transact.dll';
/* Do the CURL request ro Authorize.net */
$request = curl_init($url);
curl_setopt($request, CURLOPT_HEADER, 0);
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($request, CURLOPT_POSTFIELDS, $postString);
curl_setopt($request, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($request, CURLOPT_SSL_VERIFYHOST, false);
$postResponse = curl_exec($request);
curl_close($request);
$response = explode('|', $postResponse);
if (!isset($response[7]) || !isset($response[3]) || !isset($response[9]))
{
$msg = 'Authorize.net returned a malformed response for cart';
if (isset($response[7]))
$msg .= ' '.(int)$response[7];
Logger::addLog($msg, 4);
die('Authorize.net returned a malformed response, aborted.');
}
$message = $response[3];
$payment_method = 'Authorize.net AIM (Advanced Integration Method)';
switch ($response[0]) // Response code
{
case 1: // Payment accepted
$authorizeaim->setTransactionDetail($response);
$authorizeaim->validateOrder((int)$cart->id,
Configuration::get('PS_OS_PAYMENT'), (float)$response[9],
$payment_method, $message, NULL, NULL, false, $customer->secure_key);
break ;
case 4: // Hold for review
$authorizeaim->validateOrder((int)$cart->id,
Configuration::get('AUTHORIZE_AIM_HOLD_REVIEW_OS'), (float)$response[9],
$authorizeaim->displayName, $response[3], NULL, NULL, false, $customer->secure_key);
break ;
default:
$error_message = (isset($response[3]) && !empty($response[3])) ? urlencode(Tools::safeOutput($response[3])) : '';
$checkout_type = Configuration::get('PS_ORDER_PROCESS_TYPE') ?
'order-opc' : 'order';
$url = _PS_VERSION_ >= '1.5' ?
'index.php?controller='.$checkout_type.'&' : $checkout_type.'.php?';
$url .= 'step=3&cgv=1&aimerror=1&message='.$error_message;
if (!isset($_SERVER['HTTP_REFERER']) || strstr($_SERVER['HTTP_REFERER'], 'order'))
Tools::redirect($url);
else if (strstr($_SERVER['HTTP_REFERER'], '?'))
Tools::redirect($_SERVER['HTTP_REFERER'].'&aimerror=1&message='.$error_message, '');
else
Tools::redirect($_SERVER['HTTP_REFERER'].'?aimerror=1&message='.$error_message, '');
exit;
}
$url = 'index.php?controller=order-confirmation&';
if (_PS_VERSION_ < '1.5')
$url = 'order-confirmation.php?';
$auth_order = new Order($authorizeaim->currentOrder);
Tools::redirect($url.'id_module='.(int)$authorizeaim->id.'&id_cart='.(int)$cart->id.'&key='.$auth_order->secure_key);