Файл: upload/admin/controller/payment/securetrading_ws.php
Строк: 1011
<?php
class ControllerPaymentSecureTradingWs extends Controller {
private $error = array();
public function index() {
$this->load->model('setting/setting');
$this->load->model('localisation/geo_zone');
$this->load->model('localisation/order_status');
$this->load->model('localisation/currency');
$this->load->language('payment/securetrading_ws');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) {
$this->request->post['securetrading_ws_site_reference'] = trim($this->request->post['securetrading_ws_site_reference']);
$this->request->post['securetrading_ws_username'] = trim($this->request->post['securetrading_ws_username']);
$this->model_setting_setting->editSetting('securetrading_ws', $this->request->post);
$this->session->data['success'] = $this->language->get('text_success');
$this->response->redirect($this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL'));
}
if (isset($this->request->post['securetrading_ws_site_reference'])) {
$data['securetrading_ws_site_reference'] = $this->request->post['securetrading_ws_site_reference'];
} else {
$data['securetrading_ws_site_reference'] = $this->config->get('securetrading_ws_site_reference');
}
if (isset($this->request->post['securetrading_ws_username'])) {
$data['securetrading_ws_username'] = $this->request->post['securetrading_ws_username'];
} else {
$data['securetrading_ws_username'] = $this->config->get('securetrading_ws_username');
}
if (isset($this->request->post['securetrading_ws_password'])) {
$data['securetrading_ws_password'] = $this->request->post['securetrading_ws_password'];
} else {
$data['securetrading_ws_password'] = $this->config->get('securetrading_ws_password');
}
if (isset($this->request->post['securetrading_ws_csv_username'])) {
$data['securetrading_ws_csv_username'] = $this->request->post['securetrading_ws_csv_username'];
} else {
$data['securetrading_ws_csv_username'] = $this->config->get('securetrading_ws_csv_username');
}
if (isset($this->request->post['securetrading_ws_csv_password'])) {
$data['securetrading_ws_csv_password'] = $this->request->post['securetrading_ws_csv_password'];
} else {
$data['securetrading_ws_csv_password'] = $this->config->get('securetrading_ws_csv_password');
}
$this->config->set('securetrading_ws_3d_secure', 1);
if (isset($this->request->post['securetrading_ws_3d_secure'])) {
$data['securetrading_ws_3d_secure'] = $this->request->post['securetrading_ws_3d_secure'];
} else {
$data['securetrading_ws_3d_secure'] = $this->config->get('securetrading_ws_3d_secure');
}
if (isset($this->request->post['securetrading_ws_cards_accepted'])) {
$data['securetrading_ws_cards_accepted'] = $this->request->post['securetrading_ws_cards_accepted'];
} else {
$data['securetrading_ws_cards_accepted'] = $this->config->get('securetrading_ws_cards_accepted');
if ($data['securetrading_ws_cards_accepted'] == null) {
$data['securetrading_ws_cards_accepted'] = array();
}
}
if (isset($this->request->post['securetrading_ws_order_status_id'])) {
$data['securetrading_ws_order_status_id'] = $this->request->post['securetrading_ws_order_status_id'];
} elseif ($this->config->get('securetrading_ws_order_status_id') != '') {
$data['securetrading_ws_order_status_id'] = $this->config->get('securetrading_ws_order_status_id');
} else {
$data['securetrading_ws_order_status_id'] = 1;
}
if (isset($this->request->post['securetrading_ws_failed_order_status_id'])) {
$data['securetrading_ws_failed_order_status_id'] = $this->request->post['securetrading_ws_failed_order_status_id'];
} elseif ($this->config->get('securetrading_ws_failed_order_status_id') != '') {
$data['securetrading_ws_failed_order_status_id'] = $this->config->get('securetrading_ws_failed_order_status_id');
} else {
$data['securetrading_ws_failed_order_status_id'] = 10;
}
if (isset($this->request->post['securetrading_ws_declined_order_status_id'])) {
$data['securetrading_ws_declined_order_status_id'] = $this->request->post['securetrading_ws_declined_order_status_id'];
} elseif ($this->config->get('securetrading_ws_declined_order_status_id') != '') {
$data['securetrading_ws_declined_order_status_id'] = $this->config->get('securetrading_ws_declined_order_status_id');
} else {
$data['securetrading_ws_declined_order_status_id'] = 8;
}
if (isset($this->request->post['securetrading_ws_refunded_order_status_id'])) {
$data['securetrading_ws_refunded_order_status_id'] = $this->request->post['securetrading_ws_refunded_order_status_id'];
} elseif ($this->config->get('securetrading_ws_refunded_order_status_id') != '') {
$data['securetrading_ws_refunded_order_status_id'] = $this->config->get('securetrading_ws_refunded_order_status_id');
} else {
$data['securetrading_ws_refunded_order_status_id'] = 11;
}
if (isset($this->request->post['securetrading_ws_authorisation_reversed_order_status_id'])) {
$data['securetrading_ws_authorisation_reversed_order_status_id'] = $this->request->post['securetrading_ws_authorisation_reversed_order_status_id'];
} elseif ($this->config->get('securetrading_ws_authorisation_reversed_order_status_id') != '') {
$data['securetrading_ws_authorisation_reversed_order_status_id'] = $this->config->get('securetrading_ws_authorisation_reversed_order_status_id');
} else {
$data['securetrading_ws_authorisation_reversed_order_status_id'] = 12;
}
if (isset($this->request->post['securetrading_ws_settle_status'])) {
$data['securetrading_ws_settle_status'] = $this->request->post['securetrading_ws_settle_status'];
} else {
$data['securetrading_ws_settle_status'] = $this->config->get('securetrading_ws_settle_status');
}
if (isset($this->request->post['securetrading_ws_settle_due_date'])) {
$data['securetrading_ws_settle_due_date'] = $this->request->post['securetrading_ws_settle_due_date'];
} else {
$data['securetrading_ws_settle_due_date'] = $this->config->get('securetrading_ws_settle_due_date');
}
if (isset($this->request->post['securetrading_ws_geo_zone'])) {
$data['securetrading_ws_geo_zone_id'] = $this->request->post['securetrading_ws_geo_zone_id'];
} else {
$data['securetrading_ws_geo_zone_id'] = $this->config->get('securetrading_ws_geo_zone_id');
}
if (isset($this->request->post['securetrading_ws_status'])) {
$data['securetrading_ws_status'] = $this->request->post['securetrading_ws_status'];
} else {
$data['securetrading_ws_status'] = $this->config->get('securetrading_ws_status');
}
if (isset($this->request->post['securetrading_ws_sort_order'])) {
$data['securetrading_ws_sort_order'] = $this->request->post['securetrading_ws_sort_order'];
} else {
$data['securetrading_ws_sort_order'] = $this->config->get('securetrading_ws_sort_order');
}
if (isset($this->request->post['securetrading_ws_total'])) {
$data['securetrading_ws_total'] = $this->request->post['securetrading_ws_total'];
} else {
$data['securetrading_ws_total'] = $this->config->get('securetrading_ws_total');
}
$this->document->setTitle($this->language->get('heading_title'));
$data['heading_title'] = $this->language->get('heading_title');
$data['tab_settings'] = $this->language->get('tab_settings');
$data['tab_order_status'] = $this->language->get('tab_order_status');
$data['tab_myst'] = $this->language->get('tab_myst');
$data['entry_site_reference'] = $this->language->get('entry_site_reference');
$data['entry_username'] = $this->language->get('entry_username');
$data['entry_password'] = $this->language->get('entry_password');
$data['entry_csv_username'] = $this->language->get('entry_csv_username');
$data['entry_csv_password'] = $this->language->get('entry_csv_password');
$data['entry_3d_secure'] = $this->language->get('entry_3d_secure');
$data['entry_cards_accepted'] = $this->language->get('entry_cards_accepted');
$data['entry_order_status'] = $this->language->get('entry_order_status');
$data['entry_failed_order_status'] = $this->language->get('entry_failed_order_status');
$data['entry_declined_order_status'] = $this->language->get('entry_declined_order_status');
$data['entry_refunded_order_status'] = $this->language->get('entry_refunded_order_status');
$data['entry_authorisation_reversed_order_status'] = $this->language->get('entry_authorisation_reversed_order_status');
$data['entry_settle_status'] = $this->language->get('entry_settle_status');
$data['entry_settle_due_date'] = $this->language->get('entry_settle_due_date');
$data['entry_geo_zone'] = $this->language->get('entry_geo_zone');
$data['entry_sort_order'] = $this->language->get('entry_sort_order');
$data['entry_status'] = $this->language->get('entry_status');
$data['entry_total'] = $this->language->get('entry_total');
$data['entry_date_from'] = $this->language->get('entry_date_from');
$data['entry_date_to'] = $this->language->get('entry_date_to');
$data['entry_hour'] = $this->language->get('entry_hour');
$data['entry_minute'] = $this->language->get('entry_minute');
$data['entry_request'] = $this->language->get('entry_request');
$data['entry_currency'] = $this->language->get('entry_currency');
$data['entry_payment_type'] = $this->language->get('entry_payment_type');
$data['entry_settle_status'] = $this->language->get('entry_settle_status');
$data['entry_status_code'] = $this->language->get('entry_status_code');
$data['text_enabled'] = $this->language->get('text_enabled');
$data['text_disabled'] = $this->language->get('text_disabled');
$data['text_yes'] = $this->language->get('text_yes');
$data['text_no'] = $this->language->get('text_no');
$data['text_all_geo_zones'] = $this->language->get('text_all_geo_zones');
$data['text_process_immediately'] = $this->language->get('text_process_immediately');
$data['text_wait_x_days'] = $this->language->get('text_wait_x_days');
$data['text_pending_settlement'] = $this->language->get('text_pending_settlement');
$data['text_manual_settlement'] = $this->language->get('text_manual_settlement');
$data['text_suspended'] = $this->language->get('text_suspended');
$data['text_cancelled'] = $this->language->get('text_cancelled');
$data['text_settling'] = $this->language->get('text_settling');
$data['text_settled'] = $this->language->get('text_settled');
$data['help_csv_username'] = $this->language->get('help_csv_username');
$data['help_csv_password'] = $this->language->get('help_csv_password');
$data['help_total'] = $this->language->get('help_total');
$data['button_save'] = $this->language->get('button_save');
$data['button_cancel'] = $this->language->get('button_cancel');
$data['button_show'] = $this->language->get('button_show');
$data['button_download'] = $this->language->get('button_download');
if (isset($this->error['warning'])) {
$data['error_warning'] = $this->error['warning'];
} else {
$data['error_warning'] = '';
}
if (isset($this->error['site_reference'])) {
$data['error_site_reference'] = $this->error['site_reference'];
} else {
$data['error_site_reference'] = '';
}
if (isset($this->error['username'])) {
$data['error_username'] = $this->error['username'];
} else {
$data['error_username'] = '';
}
if (isset($this->error['password'])) {
$data['error_password'] = $this->error['password'];
} else {
$data['error_password'] = '';
}
if (isset($this->error['cards_accepted'])) {
$data['error_cards_accepted'] = $this->error['cards_accepted'];
} else {
$data['error_cards_accepted'] = '';
}
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], 'SSL')
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_payment'),
'href' => $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL')
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('heading_title'),
'href' => $this->url->link('payment/securetrading_ws', 'token=' . $this->session->data['token'], 'SSL')
);
$data['geo_zones'] = $this->model_localisation_geo_zone->getGeoZones();
$data['order_statuses'] = $this->model_localisation_order_status->getOrderStatuses();
$data['cards'] = array(
'AMEX' => 'American Express',
'VISA' => 'Visa',
'DELTA' => 'Visa Debit',
'ELECTRON' => 'Visa Electron',
'PURCHASING' => 'Visa Purchasing',
'VPAY' => 'V Pay',
'MASTERCARD' => 'MasterCard',
'MASTERCARDDEBIT' => 'MasterCard Debit',
'MAESTRO' => 'Maestro',
'PAYPAL' => 'PayPal',
);
$data['settlement_statuses'] = array(
'0' => $this->language->get('text_pending_settlement'),
'1' => $this->language->get('text_pending_settlement_manually_overriden'),
'2' => $this->language->get('text_pending_suspended'),
'100' => $this->language->get('text_pending_settled'),
);
$data['action'] = $this->url->link('payment/securetrading_ws', 'token=' . $this->session->data['token'], 'SSL');
$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL');
$data['myst_status'] = !empty($data['securetrading_ws_csv_username']) && !empty($data['securetrading_ws_csv_password']);
$data['hours'] = array();
for ($i = 0; $i < 24; $i++) {
$data['hours'][] = str_pad($i, 2, '0', STR_PAD_LEFT);
}
$data['minutes'] = array();
for ($i = 0; $i < 60; $i++) {
$data['minutes'][] = str_pad($i, 2, '0', STR_PAD_LEFT);
}
$data['currencies'] = $this->model_localisation_currency->getCurrencies();
$data['token'] = $this->session->data['token'];
$data['header'] = $this->load->controller('common/header');
$data['column_left'] = $this->load->controller('common/column_left');
$data['footer'] = $this->load->controller('common/footer');
$this->response->setOutput($this->load->view('payment/securetrading_ws.tpl', $data));
}
public function install() {
$this->load->model('payment/securetrading_ws');
$this->model_payment_securetrading_ws->install();
}
public function uninstall() {
$this->load->model('payment/securetrading_ws');
$this->model_payment_securetrading_ws->uninstall();
}
public function downloadTransactions() {
$this->load->model('payment/securetrading_ws');
$this->load->language('payment/securetrading_ws');
$csv_data = $this->request->post;
$csv_data['detail'] = true;
$response = $this->model_payment_securetrading_ws->getCsv($csv_data);
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $this->language->get('text_transactions') . '.csv"');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . strlen($response));
if (ob_get_level()) {
ob_end_clean();
}
echo $response;
exit();
}
public function showTransactions() {
$this->load->model('payment/securetrading_ws');
$this->load->language('payment/securetrading_ws');
$data['column_order_id'] = $this->language->get('column_order_id');
$data['column_transaction_reference'] = $this->language->get('column_transaction_reference');
$data['column_customer'] = $this->language->get('column_customer');
$data['column_currency'] = $this->language->get('column_currency');
$data['column_total'] = $this->language->get('column_total');
$data['column_currency'] = $this->language->get('column_currency');
$data['column_status'] = $this->language->get('column_status');
$data['column_type'] = $this->language->get('column_type');
$data['column_payment_type'] = $this->language->get('column_payment_type');
$data['column_settle_status'] = $this->language->get('column_settle_status');
$data['text_no_transactions'] = $this->language->get('text_no_transactions');
$csv_data = $this->request->post;
$csv_data['detail'] = false;
$response = $this->model_payment_securetrading_ws->getCsv($csv_data);
$data['transactions'] = array();
$status_mapping = array(
'0' => $this->language->get('text_ok'),
'70000' => $this->language->get('text_denied'),
);
$settle_status_mapping = array(
'0' => $this->language->get('text_pending_settlement'),
'1' => $this->language->get('text_manual_settlement'),
'2' => $this->language->get('text_suspended'),
'3' => $this->language->get('text_cancelled'),
'10' => $this->language->get('text_settling'),
'100' => $this->language->get('text_settled'),
);
if ($response) {
$lines = array_filter(explode("n", $response));
$csv = array();
$keys = str_getcsv($lines[0]);
for ($i = 1; $i < count($lines); $i++) {
$csv[] = array_combine($keys, str_getcsv($lines[$i]));
}
foreach ($csv as $row) {
$data['transactions'][] = array(
'order_id' => $row['orderreference'],
'order_href' => $this->url->link('sale/order/info', 'token=' . $this->session->data['token'] . '&order_id=' . $row['orderreference'], 'SSL'),
'transaction_reference' => $row['transactionreference'],
'customer' => $row['billingfirstname'] . ' ' . $row['billinglastname'],
'total' => $row['mainamount'],
'currency' => $row['currencyiso3a'],
'settle_status' => $settle_status_mapping[$row['settlestatus']],
'status' => $status_mapping[$row['errorcode']],
'type' => $row['requesttypedescription'],
'payment_type' => $row['paymenttypedescription'],
);
}
}
$this->template = 'payment/securetrading_ws_transactions.tpl';
$this->response->setOutput($this->render());
}
public function order() {
if ($this->config->get('securetrading_ws_status')) {
$this->load->model('payment/securetrading_ws');
$securetrading_ws_order = $this->model_payment_securetrading_ws->getOrder($this->request->get['order_id']);
if (!empty($securetrading_ws_order)) {
$this->load->language('payment/securetrading_ws');
$securetrading_ws_order['total_released'] = $this->model_payment_securetrading_ws->getTotalReleased($securetrading_ws_order['securetrading_ws_order_id']);
$securetrading_ws_order['total_formatted'] = $this->currency->format($securetrading_ws_order['total'], $securetrading_ws_order['currency_code'], false, false);
$securetrading_ws_order['total_released_formatted'] = $this->currency->format($securetrading_ws_order['total_released'], $securetrading_ws_order['currency_code'], false, false);
$data['securetrading_ws_order'] = $securetrading_ws_order;
$data['auto_settle'] = $securetrading_ws_order['settle_type'];
$data['text_payment_info'] = $this->language->get('text_payment_info');
$data['text_order_ref'] = $this->language->get('text_order_ref');
$data['text_order_total'] = $this->language->get('text_order_total');
$data['text_total_released'] = $this->language->get('text_total_released');
$data['text_release_status'] = $this->language->get('text_release_status');
$data['text_void_status'] = $this->language->get('text_void_status');
$data['text_rebate_status'] = $this->language->get('text_rebate_status');
$data['text_transactions'] = $this->language->get('text_transactions');
$data['text_yes'] = $this->language->get('text_yes');
$data['text_no'] = $this->language->get('text_no');
$data['text_column_amount'] = $this->language->get('text_column_amount');
$data['text_column_type'] = $this->language->get('text_column_type');
$data['text_column_created'] = $this->language->get('text_column_created');
$data['button_release'] = $this->language->get('button_release');
$data['button_rebate'] = $this->language->get('button_rebate');
$data['button_void'] = $this->language->get('button_void');
$data['text_confirm_void'] = $this->language->get('text_confirm_void');
$data['text_confirm_release'] = $this->language->get('text_confirm_release');
$data['text_confirm_rebate'] = $this->language->get('text_confirm_rebate');
$data['order_id'] = $this->request->get['order_id'];
$data['token'] = $this->request->get['token'];
$this->template = 'payment/securetrading_ws_order.tpl';
$this->response->setOutput($this->render());
}
}
}
public function void() {
$this->load->language('payment/securetrading_ws');
$json = array();
if (isset($this->request->post['order_id']) && $this->request->post['order_id'] != '') {
$this->load->model('payment/securetrading_ws');
$securetrading_ws_order = $this->model_payment_securetrading_ws->getOrder($this->request->post['order_id']);
$void_response = $this->model_payment_securetrading_ws->void($this->request->post['order_id']);
$this->model_payment_securetrading_ws->logger('Void result:rn' . print_r($void_response, 1));
if ($void_response !== false) {
$response_xml = simplexml_load_string($void_response);
if ($response_xml->response['type'] == 'ERROR' || (string)$response_xml->response->error->code != '0') {
$json['msg'] = (string)$response_xml->response->error->message;
$json['error'] = true;
} else {
$this->model_payment_securetrading_ws->addTransaction($securetrading_ws_order['securetrading_ws_order_id'], 'reversed', 0.00);
$this->model_payment_securetrading_ws->updateVoidStatus($securetrading_ws_order['securetrading_ws_order_id'], 1);
$this->data = array(
'order_status_id' => $this->config->get('securetrading_ws_authorisation_reversed_order_status_id'),
'notify' => false,
'comment' => '',
);
$this->load->model('sale/order');
$this->model_sale_order->addOrderHistory($this->request->post['order_id'], $this->data);
$json['msg'] = $this->language->get('text_authorisation_reversed');
$json['data']['created'] = date("Y-m-d H:i:s");
$json['error'] = false;
}
} else {
$json['msg'] = $this->language->get('error_connection');
$json['error'] = true;
}
} else {
$json['error'] = true;
$json['msg'] = 'Missing data';
}
$this->response->setOutput(json_encode($json));
}
public function release() {
$this->load->language('payment/securetrading_ws');
$json = array();
$amount = number_format($this->request->post['amount'], 2);
if (isset($this->request->post['order_id']) && $this->request->post['order_id'] != '' && isset($amount) && $amount > 0) {
$this->load->model('payment/securetrading_ws');
$securetrading_ws_order = $this->model_payment_securetrading_ws->getOrder($this->request->post['order_id']);
$release_response = $this->model_payment_securetrading_ws->release($this->request->post['order_id'], $amount);
$this->model_payment_securetrading_ws->logger('Release result:rn' . print_r($release_response, 1));
if ($release_response !== false) {
$response_xml = simplexml_load_string($release_response);
if ($response_xml->response['type'] == 'ERROR' || (string)$response_xml->response->error->code != '0') {
$json['error'] = true;
$json['msg'] = (string)$response_xml->response->error->message;
} else {
$this->model_payment_securetrading_ws->addTransaction($securetrading_ws_order['securetrading_ws_order_id'], 'payment', $amount);
$total_released = $this->model_payment_securetrading_ws->getTotalReleased($securetrading_ws_order['securetrading_ws_order_id']);
if ($total_released >= $securetrading_ws_order['total'] || $securetrading_ws_order['settle_type'] == 100) {
$this->model_payment_securetrading_ws->updateReleaseStatus($securetrading_ws_order['securetrading_ws_order_id'], 1);
$release_status = 1;
$json['msg'] = $this->language->get('text_release_ok_order');
$this->load->model('sale/order');
$history = array();
$history['order_status_id'] = $this->config->get('securetrading_ws_order_status_success_settled_id');
$history['comment'] = '';
$history['notify'] = '';
$this->model_sale_order->addOrderHistory($this->request->post['order_id'], $history);
} else {
$release_status = 0;
$json['msg'] = $this->language->get('text_release_ok');
}
$json['data'] = array();
$json['data']['created'] = date("Y-m-d H:i:s");
$json['data']['amount'] = $amount;
$json['data']['release_status'] = $release_status;
$json['data']['total'] = (double)$total_released;
$json['error'] = false;
}
} else {
$json['error'] = true;
$json['msg'] = $this->language->get('error_connection');
}
} else {
$json['error'] = true;
$json['msg'] = $this->language->get('error_data_missing');
}
$this->response->setOutput(json_encode($json));
}
public function rebate() {
$this->load->language('payment/securetrading_ws');
$json = array();
if (isset($this->request->post['order_id']) && !empty($this->request->post['order_id'])) {
$this->load->model('payment/securetrading_ws');
$securetrading_ws_order = $this->model_payment_securetrading_ws->getOrder($this->request->post['order_id']);
$amount = number_format($this->request->post['amount'], 2);
$rebate_response = $this->model_payment_securetrading_ws->rebate($this->request->post['order_id'], $amount);
$this->model_payment_securetrading_ws->logger('Rebate result:rn' . print_r($rebate_response, 1));
if ($rebate_response !== false) {
$response_xml = simplexml_load_string($rebate_response);
$error_code = (string)$response_xml->response->error->code;
if ($error_code == '0') {
$this->model_payment_securetrading_ws->addTransaction($securetrading_ws_order['securetrading_ws_order_id'], 'rebate', $amount * -1);
$total_rebated = $this->model_payment_securetrading_ws->getTotalRebated($securetrading_ws_order['securetrading_ws_order_id']);
$total_released = $this->model_payment_securetrading_ws->getTotalReleased($securetrading_ws_order['securetrading_ws_order_id']);
if ($total_released <= 0 && $securetrading_ws_order['release_status'] == 1) {
$json['status'] = 1;
$json['message'] = $this->language->get('text_refund_issued');
$this->model_payment_securetrading_ws->updateRebateStatus($securetrading_ws_order['securetrading_ws_order_id'], 1);
$rebate_status = 1;
$json['msg'] = $this->language->get('text_rebate_ok_order');
$this->load->model('sale/order');
$history = array();
$history['order_status_id'] = $this->config->get('securetrading_ws_refunded_order_status_id');
$history['comment'] = '';
$history['notify'] = '';
$this->model_sale_order->addOrderHistory($this->request->post['order_id'], $history);
} else {
$rebate_status = 0;
$json['msg'] = $this->language->get('text_rebate_ok');
}
$json['data'] = array();
$json['data']['created'] = date("Y-m-d H:i:s");
$json['data']['amount'] = $amount * -1;
$json['data']['total_released'] = (double)$total_released;
$json['data']['total_rebated'] = (double)$total_rebated;
$json['data']['rebate_status'] = $rebate_status;
$json['error'] = false;
} else {
$json['error'] = true;
$json['msg'] = (string)$response_xml->response->error->message;
}
} else {
$json['status'] = 0;
$json['message'] = $this->language->get('error_connection');
}
} else {
$json['error'] = true;
$json['msg'] = 'Missing data';
}
$this->response->setOutput(json_encode($json));
}
protected function validate() {
if (!$this->user->hasPermission('modify', 'payment/securetrading_pp')) {
$this->error['warning'] = $this->language->get('error_permission');
}
if (!$this->request->post['securetrading_ws_site_reference']) {
$this->error['site_reference'] = $this->language->get('error_site_reference');
}
if (!$this->request->post['securetrading_ws_username']) {
$this->error['username'] = $this->language->get('error_username');
}
if (!$this->request->post['securetrading_ws_password']) {
$this->error['password'] = $this->language->get('error_password');
}
if (empty($this->request->post['securetrading_ws_cards_accepted'])) {
$this->error['cards_accepted'] = $this->language->get('error_cards_accepted');
}
return !$this->error;
}
}