118 lines
4.5 KiB
PHP
118 lines
4.5 KiB
PHP
<?php
|
|
namespace Opencart\Catalog\Controller\Account;
|
|
/**
|
|
* Class Tracking
|
|
*
|
|
* @package Opencart\Catalog\Controller\Account
|
|
*/
|
|
class Tracking extends \Opencart\System\Engine\Controller {
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function index(): void {
|
|
if (!$this->customer->isLogged() || (!isset($this->request->get['customer_token']) || !isset($this->session->data['customer_token']) || ($this->request->get['customer_token'] != $this->session->data['customer_token']))) {
|
|
$this->session->data['redirect'] = $this->url->link('account/tracking', 'language=' . $this->config->get('config_language'));
|
|
|
|
$this->response->redirect($this->url->link('account/login', 'language=' . $this->config->get('config_language')));
|
|
}
|
|
|
|
if (!$this->config->get('config_affiliate_status')) {
|
|
$this->response->redirect($this->url->link('account/account', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token']));
|
|
}
|
|
|
|
$this->load->model('account/affiliate');
|
|
|
|
$affiliate_info = $this->model_account_affiliate->getAffiliate($this->customer->getId());
|
|
|
|
if (!$affiliate_info) {
|
|
$this->response->redirect($this->url->link('account/account', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token']));
|
|
}
|
|
|
|
$this->load->language('account/tracking');
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
|
|
$data['breadcrumbs'] = [];
|
|
|
|
$data['breadcrumbs'][] = [
|
|
'text' => $this->language->get('text_home'),
|
|
'href' => $this->url->link('common/home', 'language=' . $this->config->get('config_language'))
|
|
];
|
|
|
|
$data['breadcrumbs'][] = [
|
|
'text' => $this->language->get('text_account'),
|
|
'href' => $this->url->link('account/account', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token'])
|
|
];
|
|
|
|
$data['breadcrumbs'][] = [
|
|
'text' => $this->language->get('heading_title'),
|
|
'href' => $this->url->link('account/tracking', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token'])
|
|
];
|
|
|
|
$data['text_description'] = sprintf($this->language->get('text_description'), $this->config->get('config_name'));
|
|
|
|
$data['code'] = $affiliate_info['tracking'];
|
|
|
|
$data['continue'] = $this->url->link('account/account', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token']);
|
|
|
|
$data['language'] = $this->config->get('config_language');
|
|
|
|
$data['customer_token'] = $this->session->data['customer_token'];
|
|
|
|
$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('account/tracking', $data));
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function autocomplete(): void {
|
|
$json = [];
|
|
|
|
if (isset($this->request->get['search'])) {
|
|
$search = $this->request->get['search'];
|
|
} else {
|
|
$search = '';
|
|
}
|
|
|
|
if (isset($this->request->get['tracking'])) {
|
|
$tracking = $this->request->get['tracking'];
|
|
} else {
|
|
$tracking = '';
|
|
}
|
|
|
|
if (!$this->customer->isLogged() || (!isset($this->request->get['customer_token']) || !isset($this->session->data['customer_token']) || ($this->request->get['customer_token'] != $this->session->data['customer_token']))) {
|
|
$this->session->data['redirect'] = $this->url->link('account/password', 'language=' . $this->config->get('config_language'));
|
|
|
|
$json['redirect'] = $this->url->link('account/login', 'language=' . $this->config->get('config_language'), true);
|
|
}
|
|
|
|
if (!$json) {
|
|
$filter_data = [
|
|
'filter_search' => $search,
|
|
'start' => 0,
|
|
'limit' => 5
|
|
];
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
$results = $this->model_catalog_product->getProducts($filter_data);
|
|
|
|
foreach ($results as $result) {
|
|
$json[] = [
|
|
'name' => strip_tags(html_entity_decode($result['name'], ENT_QUOTES, 'UTF-8')),
|
|
'link' => str_replace('&', '&', $this->url->link('product/product', 'language=' . $this->config->get('config_language') . '&product_id=' . $result['product_id'] . '&tracking=' . $tracking))
|
|
];
|
|
}
|
|
}
|
|
|
|
$this->response->addHeader('Content-Type: application/json');
|
|
$this->response->setOutput(json_encode($json));
|
|
}
|
|
} |