Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class ControllerPaymentAuthorizeNetAim extends Controller {
- protected function index() {
- $this->language->load('payment/authorizenet_aim');
- $this->data['text_credit_card'] = $this->language->get('text_credit_card');
- $this->data['text_wait'] = $this->language->get('text_wait');
- $this->data['entry_cc_owner'] = $this->language->get('entry_cc_owner');
- $this->data['entry_cc_number'] = $this->language->get('entry_cc_number');
- $this->data['entry_cc_expire_date'] = $this->language->get('entry_cc_expire_date');
- $this->data['entry_cc_cvv2'] = $this->language->get('entry_cc_cvv2');
- $this->data['button_confirm'] = $this->language->get('button_confirm');
- $this->data['button_back'] = $this->language->get('button_back');
- $this->data['months'] = array();
- for ($i = 1; $i <= 12; $i++) {
- $this->data['months'][] = array(
- 'text' => strftime('%B', mktime(0, 0, 0, $i, 1, 2000)),
- 'value' => sprintf('%02d', $i)
- );
- }
- $today = getdate();
- $this->data['year_expire'] = array();
- for ($i = $today['year']; $i < $today['year'] + 11; $i++) {
- $this->data['year_expire'][] = array(
- 'text' => strftime('%Y', mktime(0, 0, 0, 1, 1, $i)),
- 'value' => strftime('%Y', mktime(0, 0, 0, 1, 1, $i))
- );
- }
- if ($this->request->get['route'] != 'checkout/guest_step_3') {
- $this->data['back'] = HTTPS_SERVER . 'index.php?route=checkout/payment';
- } else {
- $this->data['back'] = HTTPS_SERVER . 'index.php?route=checkout/guest_step_2';
- }
- $this->id = 'payment';
- if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/payment/authorizenet_aim.tpl')) {
- $this->template = $this->config->get('config_template') . '/template/payment/authorizenet_aim.tpl';
- } else {
- $this->template = 'default/template/payment/authorizenet_aim.tpl';
- }
- $this->render();
- }
- public function send() {
- if ($this->config->get('authorizenet_aim_server') == 'live') {
- $url = 'https://secure.authorize.net/gateway/transact.dll';
- } elseif ($this->config->get('authorizenet_aim_server') == 'test') {
- $url = 'https://test.authorize.net/gateway/transact.dll';
- }
- $this->load->model('checkout/order');
- $order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']);
- $data = array();
- $data['x_login'] = $this->config->get('authorizenet_aim_login');
- $data['x_tran_key'] = $this->config->get('authorizenet_aim_key');
- $data['x_version'] = '3.1';
- $data['x_delim_data'] = 'TRUE';
- $data['x_delim_char'] = ',';
- $data['x_encap_char'] = '"';
- $data['x_relay_response'] = 'FALSE';
- $data['x_first_name'] = html_entity_decode($order_info['payment_firstname'], ENT_QUOTES, 'UTF-8');
- $data['x_last_name'] = html_entity_decode($order_info['payment_lastname'], ENT_QUOTES, 'UTF-8');
- $data['x_company'] = html_entity_decode($order_info['payment_company'], ENT_QUOTES, 'UTF-8');
- $data['x_address'] = html_entity_decode($order_info['payment_address_1'], ENT_QUOTES, 'UTF-8');
- $data['x_city'] = html_entity_decode($order_info['payment_city'], ENT_QUOTES, 'UTF-8');
- $data['x_state'] = html_entity_decode($order_info['payment_zone'], ENT_QUOTES, 'UTF-8');
- $data['x_zip'] = html_entity_decode($order_info['payment_postcode'], ENT_QUOTES, 'UTF-8');
- $data['x_country'] = html_entity_decode($order_info['payment_country'], ENT_QUOTES, 'UTF-8');
- $data['x_phone'] = $order_info['telephone'];
- $data['x_customer_ip'] = $this->request->server['REMOTE_ADDR'];
- $data['x_email'] = $order_info['email'];
- $data['x_description'] = html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8');
- $data['x_amount'] = $this->currency->format($order_info['total'], $order_info['currency'], 1.00000, FALSE);
- $data['x_currency_code'] = $this->currency->getCode();
- $data['x_method'] = 'CC';
- $data['x_type'] = ($this->config->get('authorizenet_aim_method') == 'capture') ? 'AUTH_CAPTURE' : 'AUTH_ONLY';
- $data['x_card_num'] = str_replace(' ', '', $this->request->post['cc_number']);
- $data['x_exp_date'] = $this->request->post['cc_expire_date_month'] . $this->request->post['cc_expire_date_year'];
- $data['x_card_code'] = $this->request->post['cc_cvv2'];
- $data['x_invoice_num'] = $this->session->data['order_id'];
- if ($this->config->get('authorizenet_aim_mode') == 'test') {
- $data['x_test_request'] = 'TRUE';
- }
- $curl = curl_init($url);
- curl_setopt($curl, CURLOPT_PORT, 443);
- curl_setopt($curl, CURLOPT_HEADER, 0);
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curl, CURLOPT_FORBID_REUSE, 1);
- curl_setopt($curl, CURLOPT_FRESH_CONNECT, 1);
- curl_setopt($curl, CURLOPT_POST, 1);
- curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
- $response = curl_exec($curl);
- curl_close($curl);
- $i = 1;
- $response_data = array();
- $results = explode(',', $response);
- foreach ($results as $result) {
- $response_data[$i] = trim($result, '"');
- $i++;
- }
- $json = array();
- if ($response_data[1] == '1') {
- if ($this->config->get('authorizenet_aim_hash')) {
- $checksum = strtoupper(md5($this->config->get('authorizenet_aim_hash') . $this->config->get('authorizenet_aim_login') . $response_data[6] . $this->currency->format($order_info['total'], $order_info['currency'], 1.00000, FALSE)));
- } else {
- $checksum = strtoupper(md5($this->config->get('authorizenet_aim_login') . $response_data[6] . $this->currency->format($order_info['total'], $order_info['currency'], 1.00000, FALSE)));
- }
- if (strtoupper($response_data[38]) != $checksum) {
- $this->model_checkout_order->confirm($this->session->data['order_id'], $this->config->get('config_order_status_id'));
- $message = '';
- if (isset($response_data['5'])) {
- $message .= 'Authorization Code: ' . $response_data['5'] . "\n";
- }
- if (isset($response_data['6'])) {
- $message .= 'AVS Response: ' . $response_data['6'] . "\n";
- }
- if (isset($response_data['7'])) {
- $message .= 'Transaction ID: ' . $response_data['7'] . "\n";
- }
- if (isset($response_data['39'])) {
- $message .= 'Card Code Response: ' . $response_data['39'] . "\n";
- }
- if (isset($response_data['40'])) {
- $message .= 'Cardholder Authentication Verification Response: ' . $response_data['40'] . "\n";
- }
- $this->model_checkout_order->update($this->session->data['order_id'], $this->config->get('authorizenet_aim_order_status_id'), $message, FALSE);
- }
- $json['success'] = HTTPS_SERVER . 'index.php?route=checkout/success';
- } else {
- $json['error'] = $response_data[4];
- }
- $this->load->library('json');
- $this->response->setOutput(Json::encode($json));
- }
- }
- ?>
Add Comment
Please, Sign In to add comment