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
|
<?php
class ControllerExtensionPaymentPaymate extends Controller {
public function index() {
if (!$this->config->get('payment_paymate_test')) {
$data['action'] = 'https://www.paymate.com/PayMate/ExpressPayment';
} else {
$data['action'] = 'https://www.paymate.com.au/PayMate/TestExpressPayment';
}
$this->load->model('checkout/order');
$order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']);
$data['mid'] = $this->config->get('payment_paymate_username');
$data['amt'] = $this->currency->format($order_info['total'], $order_info['currency_code'], $order_info['currency_value'], false);
$data['currency'] = $order_info['currency_code'];
$data['ref'] = $order_info['order_id'];
$data['pmt_sender_email'] = $order_info['email'];
$data['pmt_contact_firstname'] = $order_info['payment_firstname'];
$data['pmt_contact_surname'] = $order_info['payment_lastname'];
$data['pmt_contact_phone'] = $order_info['telephone'];
$data['pmt_country'] = $order_info['payment_iso_code_2'];
$data['regindi_address1'] = $order_info['payment_address_1'];
$data['regindi_address2'] = $order_info['payment_address_2'];
$data['regindi_sub'] = $order_info['payment_city'];
$data['regindi_state'] = $order_info['payment_zone'];
$data['regindi_pcode'] = $order_info['payment_postcode'];
$data['return'] = $this->url->link('extension/payment/paymate/callback', 'hash=' . md5($order_info['order_id'] . $this->currency->format($order_info['total'], $order_info['currency_code'], $order_info['currency_value'], false) . $order_info['currency_code'] . $this->config->get('payment_paymate_password')));
return $this->load->view('extension/payment/paymate', $data);
}
public function callback() {
$this->load->language('extension/payment/paymate');
if (isset($this->request->post['ref'])) {
$order_id = $this->request->post['ref'];
} else {
$order_id = 0;
}
$this->load->model('checkout/order');
$order_info = $this->model_checkout_order->getOrder($order_id);
if ($order_info) {
$error = '';
if (!isset($this->request->post['responseCode']) || !isset($this->request->get['hash'])) {
$error = $this->language->get('text_unable');
} elseif ($this->request->get['hash'] != md5($order_info['order_id'] . $this->currency->format($this->request->post['paymentAmount'], $this->request->post['currency'], 1.0000000, false) . $this->request->post['currency'] . $this->config->get('payment_paymate_password'))) {
$error = $this->language->get('text_unable');
} elseif ($this->request->post['responseCode'] != 'PA' && $this->request->post['responseCode'] != 'PP') {
$error = $this->language->get('text_declined');
}
} else {
$error = $this->language->get('text_unable');
}
if ($error) {
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/home')
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_basket'),
'href' => $this->url->link('checkout/cart')
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_checkout'),
'href' => $this->url->link('checkout/checkout', '', true)
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_failed'),
'href' => $this->url->link('checkout/success')
);
$data['text_message'] = sprintf($this->language->get('text_failed_message'), $error, $this->url->link('information/contact'));
$data['continue'] = $this->url->link('common/home');
$data['column_left'] = $this->load->controller('common/column_left');
$data['column_right'] = $this->load->controller('common/column_right');
$data['content_top'] = $this->load->controller('common/content_top');
$data['content_bottom'] = $this->load->controller('common/content_bottom');
$data['footer'] = $this->load->controller('common/footer');
$data['header'] = $this->load->controller('common/header');
$this->response->setOutput($this->load->view('common/success', $data));
} else {
$this->model_checkout_order->addOrderHistory($order_id, $this->config->get('payment_paymate_order_status_id'));
$this->response->redirect($this->url->link('checkout/success'));
}
}
}
|