File: /home/retile.ru/public_html/admin/controller/catalog/category.php
<?php
class ControllerCatalogCategory extends Controller {
private $error = array();
public function index() {
$this->load->language('catalog/category');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/category');
$this->getList();
}
public function add() {
$this->load->language('catalog/category');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/category');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
$this->model_catalog_category->addCategory($this->request->post);
$this->session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['sort'])) {
$url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) {
$url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$this->response->redirect($this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . $url, true));
}
$this->getForm();
}
public function edit() {
$this->load->language('catalog/category');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/category');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
$this->model_catalog_category->editCategory($this->request->get['category_id'], $this->request->post);
$this->session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['sort'])) {
$url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) {
$url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$this->response->redirect($this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . $url, true));
}
$this->getForm();
}
public function delete() {
$this->load->language('catalog/category');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/category');
if (isset($this->request->post['selected']) && $this->validateDelete()) {
foreach ($this->request->post['selected'] as $category_id) {
$this->model_catalog_category->deleteCategory($category_id);
}
$this->session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['sort'])) {
$url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) {
$url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$this->response->redirect($this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . $url, true));
}
$this->getList();
}
public function repair() {
$this->load->language('catalog/category');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/category');
if ($this->validateRepair()) {
$this->model_catalog_category->repairCategories();
$this->session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['sort'])) {
$url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) {
$url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$this->response->redirect($this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . $url, true));
}
$this->getList();
}
protected function getList() {
if (isset($this->request->get['sort'])) {
$sort = $this->request->get['sort'];
} else {
$sort = 'name';
}
if (isset($this->request->get['order'])) {
$order = $this->request->get['order'];
} else {
$order = 'ASC';
}
if (isset($this->request->get['page'])) {
$page = $this->request->get['page'];
} else {
$page = 1;
}
$url = '';
if (isset($this->request->get['sort'])) {
$url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) {
$url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'], true)
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('heading_title'),
'href' => $this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . $url, true)
);
$data['add'] = $this->url->link('catalog/category/add', 'user_token=' . $this->session->data['user_token'] . $url, true);
$data['delete'] = $this->url->link('catalog/category/delete', 'user_token=' . $this->session->data['user_token'] . $url, true);
$data['repair'] = $this->url->link('catalog/category/repair', 'user_token=' . $this->session->data['user_token'] . $url, true);
$data['categories'] = array();
$filter_data = array(
'sort' => $sort,
'order' => $order,
'start' => ($page - 1) * $this->config->get('config_limit_admin'),
'limit' => $this->config->get('config_limit_admin')
);
$category_total = $this->model_catalog_category->getTotalCategories();
$results = $this->model_catalog_category->getCategories($filter_data);
foreach ($results as $result) {
$data['categories'][] = array(
'category_id' => $result['category_id'],
'name' => $result['name'],
'sort_order' => $result['sort_order'],
'edit' => $this->url->link('catalog/category/edit', 'user_token=' . $this->session->data['user_token'] . '&category_id=' . $result['category_id'] . $url, true),
'delete' => $this->url->link('catalog/category/delete', 'user_token=' . $this->session->data['user_token'] . '&category_id=' . $result['category_id'] . $url, true)
);
}
if (isset($this->error['warning'])) {
$data['error_warning'] = $this->error['warning'];
} else {
$data['error_warning'] = '';
}
if (isset($this->session->data['success'])) {
$data['success'] = $this->session->data['success'];
unset($this->session->data['success']);
} else {
$data['success'] = '';
}
if (isset($this->request->post['selected'])) {
$data['selected'] = (array)$this->request->post['selected'];
} else {
$data['selected'] = array();
}
$url = '';
if ($order == 'ASC') {
$url .= '&order=DESC';
} else {
$url .= '&order=ASC';
}
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$data['sort_name'] = $this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . '&sort=name' . $url, true);
$data['sort_sort_order'] = $this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . '&sort=sort_order' . $url, true);
$url = '';
if (isset($this->request->get['sort'])) {
$url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) {
$url .= '&order=' . $this->request->get['order'];
}
$pagination = new Pagination();
$pagination->total = $category_total;
$pagination->page = $page;
$pagination->limit = $this->config->get('config_limit_admin');
$pagination->url = $this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}', true);
$data['pagination'] = $pagination->render();
$data['results'] = sprintf($this->language->get('text_pagination'), ($category_total) ? (($page - 1) * $this->config->get('config_limit_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_limit_admin')) > ($category_total - $this->config->get('config_limit_admin'))) ? $category_total : ((($page - 1) * $this->config->get('config_limit_admin')) + $this->config->get('config_limit_admin')), $category_total, ceil($category_total / $this->config->get('config_limit_admin')));
$data['sort'] = $sort;
$data['order'] = $order;
$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('catalog/category_list', $data));
}
protected function getForm() {
$data['text_form'] = !isset($this->request->get['category_id']) ? $this->language->get('text_add') : $this->language->get('text_edit');
if (isset($this->error['warning'])) {
$data['error_warning'] = $this->error['warning'];
} else {
$data['error_warning'] = '';
}
if (isset($this->error['name'])) {
$data['error_name'] = $this->error['name'];
} else {
$data['error_name'] = array();
}
if (isset($this->error['meta_title'])) {
$data['error_meta_title'] = $this->error['meta_title'];
} else {
$data['error_meta_title'] = array();
}
if (isset($this->error['keyword'])) {
$data['error_keyword'] = $this->error['keyword'];
} else {
$data['error_keyword'] = '';
}
if (isset($this->error['parent'])) {
$data['error_parent'] = $this->error['parent'];
} else {
$data['error_parent'] = '';
}
$url = '';
if (isset($this->request->get['sort'])) {
$url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) {
$url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'], true)
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('heading_title'),
'href' => $this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . $url, true)
);
if (!isset($this->request->get['category_id'])) {
$data['action'] = $this->url->link('catalog/category/add', 'user_token=' . $this->session->data['user_token'] . $url, true);
} else {
$data['action'] = $this->url->link('catalog/category/edit', 'user_token=' . $this->session->data['user_token'] . '&category_id=' . $this->request->get['category_id'] . $url, true);
}
$data['cancel'] = $this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token'] . $url, true);
if (isset($this->request->get['category_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) {
$category_info = $this->model_catalog_category->getCategory($this->request->get['category_id']);
}
$data['user_token'] = $this->session->data['user_token'];
$this->load->model('localisation/language');
$data['languages'] = $this->model_localisation_language->getLanguages();
if (isset($this->request->post['category_description'])) {
$data['category_description'] = $this->request->post['category_description'];
} elseif (isset($this->request->get['category_id'])) {
$data['category_description'] = $this->model_catalog_category->getCategoryDescriptions($this->request->get['category_id']);
} else {
$data['category_description'] = array();
}
// descr 2
if (isset($this->request->post['category_description2'])) {
$data['category_description2'] = $this->request->post['category_description2'];
} elseif (isset($this->request->get['category_id'])) {
$data['category_description2'] = $this->model_catalog_category->getCategoryDescriptions($this->request->get['category_id']);
} else {
$data['category_description2'] = array();
}
if (isset($this->request->post['path'])) {
$data['path'] = $this->request->post['path'];
} elseif (!empty($category_info)) {
$data['path'] = $category_info['path'];
} else {
$data['path'] = '';
}
if (isset($this->request->post['parent_id'])) {
$data['parent_id'] = $this->request->post['parent_id'];
} elseif (!empty($category_info)) {
$data['parent_id'] = $category_info['parent_id'];
} else {
$data['parent_id'] = 0;
}
$this->load->model('catalog/filter');
if (isset($this->request->post['category_filter'])) {
$filters = $this->request->post['category_filter'];
} elseif (isset($this->request->get['category_id'])) {
$filters = $this->model_catalog_category->getCategoryFilters($this->request->get['category_id']);
} else {
$filters = array();
}
$data['category_filters'] = array();
foreach ($filters as $filter_id) {
$filter_info = $this->model_catalog_filter->getFilter($filter_id);
if ($filter_info) {
$data['category_filters'][] = array(
'filter_id' => $filter_info['filter_id'],
'name' => $filter_info['group'] . ' > ' . $filter_info['name']
);
}
}
$this->load->model('setting/store');
$data['stores'] = array();
$data['stores'][] = array(
'store_id' => 0,
'name' => $this->language->get('text_default')
);
$stores = $this->model_setting_store->getStores();
foreach ($stores as $store) {
$data['stores'][] = array(
'store_id' => $store['store_id'],
'name' => $store['name']
);
}
if (isset($this->request->post['category_store'])) {
$data['category_store'] = $this->request->post['category_store'];
} elseif (isset($this->request->get['category_id'])) {
$data['category_store'] = $this->model_catalog_category->getCategoryStores($this->request->get['category_id']);
} else {
$data['category_store'] = array(0);
}
if (isset($this->request->post['image'])) {
$data['image'] = $this->request->post['image'];
} elseif (!empty($category_info)) {
$data['image'] = $category_info['image'];
} else {
$data['image'] = '';
}
$this->load->model('tool/image');
if (isset($this->request->post['image']) && is_file(DIR_IMAGE . $this->request->post['image'])) {
$data['thumb'] = $this->model_tool_image->resize($this->request->post['image'], 100, 100);
} elseif (!empty($category_info) && is_file(DIR_IMAGE . $category_info['image'])) {
$data['thumb'] = $this->model_tool_image->resize($category_info['image'], 100, 100);
} else {
$data['thumb'] = $this->model_tool_image->resize('no_image.png', 100, 100);
}
$data['placeholder'] = $this->model_tool_image->resize('no_image.png', 100, 100);
if (isset($this->request->post['top'])) {
$data['top'] = $this->request->post['top'];
} elseif (!empty($category_info)) {
$data['top'] = $category_info['top'];
} else {
$data['top'] = 0;
}
if (isset($this->request->post['column'])) {
$data['column'] = $this->request->post['column'];
} elseif (!empty($category_info)) {
$data['column'] = $category_info['column'];
} else {
$data['column'] = 1;
}
if (isset($this->request->post['sort_order'])) {
$data['sort_order'] = $this->request->post['sort_order'];
} elseif (!empty($category_info)) {
$data['sort_order'] = $category_info['sort_order'];
} else {
$data['sort_order'] = 0;
}
if (isset($this->request->post['status'])) {
$data['status'] = $this->request->post['status'];
} elseif (!empty($category_info)) {
$data['status'] = $category_info['status'];
} else {
$data['status'] = true;
}
if (isset($this->request->post['result_faq'])) {
$data['result_faq'] = $this->request->post['result_faq'];
} elseif (!empty($category_info)) {
$data['result_faq'] = $category_info['result_faq'];
} else {
$data['result_faq'] = true;
}
// sert
if (isset($this->request->post['certificates'])) {
$data['certificates'] = $this->request->post['certificates'];
} elseif (!empty($category_info) && isset($category_info['certificates'])) {
$data['certificates'] = $category_info['certificates'];
} else {
$data['certificates'] = '[]';
}
// sert
// promotion
if (isset($this->request->get['category_id'])) {
$data['category_id'] = $this->request->get['category_id'];
} else {
$data['category_id'] = 0;
}
if (isset($this->request->post['promotion_discount_percent'])) {
$data['promotion_discount_percent'] = $this->request->post['promotion_discount_percent'];
} elseif (isset($this->request->get['category_id'])) {
$promotion_data = $this->model_catalog_category->getCategoryPromotion($this->request->get['category_id']);
$data['promotion_discount_percent'] = isset($promotion_data['discount_percent']) ? $promotion_data['discount_percent'] : '';
} else {
$data['promotion_discount_percent'] = '';
}
if (isset($this->request->post['promotion_end_date'])) {
$data['promotion_end_date'] = $this->request->post['promotion_end_date'];
} elseif (isset($this->request->get['category_id'])) {
$promotion_data = $this->model_catalog_category->getCategoryPromotion($this->request->get['category_id']);
$data['promotion_end_date'] = isset($promotion_data['end_date']) ? $promotion_data['end_date'] : '';
} else {
$data['promotion_end_date'] = '';
}
if (isset($this->request->post['promotion_info'])) {
$data['promotion_info'] = $this->request->post['promotion_info'];
} elseif (isset($this->request->get['category_id'])) {
$data['promotion_info'] = $this->model_catalog_category->getCategoryPromotionInfo($this->request->get['category_id']);
} else {
$data['promotion_info'] = array();
}
if (isset($this->request->post['promotion_no_recalculate_wholesale'])) {
$data['promotion_no_recalculate_wholesale'] = $this->request->post['promotion_no_recalculate_wholesale'];
} elseif (isset($this->request->get['category_id'])) {
$promotion_data = $this->model_catalog_category->getCategoryPromotion($this->request->get['category_id']);
$data['promotion_no_recalculate_wholesale'] = isset($promotion_data['no_recalculate_wholesale']) ? $promotion_data['no_recalculate_wholesale'] : 0;
} else {
$data['promotion_no_recalculate_wholesale'] = 0;
}
if (isset($this->request->post['promotion_no_recalculate_child_categories'])) {
$data['promotion_no_recalculate_child_categories'] = $this->request->post['promotion_no_recalculate_child_categories'];
} elseif (isset($this->request->get['category_id'])) {
$promotion_data = $this->model_catalog_category->getCategoryPromotion($this->request->get['category_id']);
$data['promotion_no_recalculate_child_categories'] = isset($promotion_data['no_recalculate_child_categories']) ? $promotion_data['no_recalculate_child_categories'] : 0;
} else {
$data['promotion_no_recalculate_child_categories'] = 0;
}
if (isset($this->request->get['category_id'])) {
$promotion_data = $this->model_catalog_category->getCategoryPromotion($this->request->get['category_id']);
$data['promotion_active'] = isset($promotion_data['active']) && $promotion_data['active'] == 1;
} else {
$data['promotion_active'] = false;
}
$data['datepicker'] = $this->language->get('datepicker');
// promotion
if (isset($this->request->post['category_seo_url'])) {
$data['category_seo_url'] = $this->request->post['category_seo_url'];
} elseif (isset($this->request->get['category_id'])) {
$data['category_seo_url'] = $this->model_catalog_category->getCategorySeoUrls($this->request->get['category_id']);
} else {
$data['category_seo_url'] = array();
}
if (isset($this->request->post['category_layout'])) {
$data['category_layout'] = $this->request->post['category_layout'];
} elseif (isset($this->request->get['category_id'])) {
$data['category_layout'] = $this->model_catalog_category->getCategoryLayouts($this->request->get['category_id']);
} else {
$data['category_layout'] = array();
}
$this->load->model('design/layout');
$data['layouts'] = $this->model_design_layout->getLayouts();
$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('catalog/category_form', $data));
}
protected function validateForm() {
if (!$this->user->hasPermission('modify', 'catalog/category')) {
$this->error['warning'] = $this->language->get('error_permission');
}
foreach ($this->request->post['category_description'] as $language_id => $value) {
if ((utf8_strlen($value['name']) < 1) || (utf8_strlen($value['name']) > 255)) {
$this->error['name'][$language_id] = $this->language->get('error_name');
}
if ((utf8_strlen($value['meta_title']) < 1) || (utf8_strlen($value['meta_title']) > 255)) {
$this->error['meta_title'][$language_id] = $this->language->get('error_meta_title');
}
}
if (isset($this->request->get['category_id']) && $this->request->post['parent_id']) {
$results = $this->model_catalog_category->getCategoryPath($this->request->post['parent_id']);
foreach ($results as $result) {
if ($result['path_id'] == $this->request->get['category_id']) {
$this->error['parent'] = $this->language->get('error_parent');
break;
}
}
}
if ($this->request->post['category_seo_url']) {
$this->load->model('design/seo_url');
foreach ($this->request->post['category_seo_url'] as $store_id => $language) {
foreach ($language as $language_id => $keyword) {
if (!empty($keyword)) {
if (count(array_keys($language, $keyword)) > 1) {
$this->error['keyword'][$store_id][$language_id] = $this->language->get('error_unique');
}
$seo_urls = $this->model_design_seo_url->getSeoUrlsByKeyword($keyword);
foreach ($seo_urls as $seo_url) {
if (($seo_url['store_id'] == $store_id) && (!isset($this->request->get['category_id']) || ($seo_url['query'] != 'category_id=' . $this->request->get['category_id']))) {
$this->error['keyword'][$store_id][$language_id] = $this->language->get('error_keyword');
break;
}
}
}
}
}
}
if ($this->error && !isset($this->error['warning'])) {
$this->error['warning'] = $this->language->get('error_warning');
}
return !$this->error;
}
protected function validateDelete() {
if (!$this->user->hasPermission('modify', 'catalog/category')) {
$this->error['warning'] = $this->language->get('error_permission');
}
return !$this->error;
}
protected function validateRepair() {
if (!$this->user->hasPermission('modify', 'catalog/category')) {
$this->error['warning'] = $this->language->get('error_permission');
}
return !$this->error;
}
public function autocomplete() {
$json = array();
if (isset($this->request->get['filter_name'])) {
$this->load->model('catalog/category');
$filter_data = array(
'filter_name' => $this->request->get['filter_name'],
'sort' => 'name',
'order' => 'ASC',
'start' => 0,
'limit' => 5
);
$results = $this->model_catalog_category->getCategories($filter_data);
foreach ($results as $result) {
$json[] = array(
'category_id' => $result['category_id'],
'name' => strip_tags(html_entity_decode($result['name'], ENT_QUOTES, 'UTF-8'))
);
}
}
$sort_order = array();
foreach ($json as $key => $value) {
$sort_order[$key] = $value['name'];
}
array_multisort($sort_order, SORT_ASC, $json);
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
}
public function recalculatePrices() {
$this->load->language('catalog/category');
$json = array();
// Проверка прав доступа
if (!$this->user->hasPermission('modify', 'catalog/category')) {
$json['error'] = $this->language->get('error_permission');
} else {
$this->load->model('catalog/category');
if (!isset($this->request->post['category_id']) || !isset($this->request->post['discount_percent'])) {
$json['error'] = 'Отсутствуют обязательные параметры';
} else {
$category_id = (int)$this->request->post['category_id'];
$discount_percent = (float)$this->request->post['discount_percent'];
$no_recalculate_wholesale = isset($this->request->post['no_recalculate_wholesale']) ? (int)$this->request->post['no_recalculate_wholesale'] : 0;
$no_recalculate_child = isset($this->request->post['no_recalculate_child']) ? (int)$this->request->post['no_recalculate_child'] : 0;
if ($discount_percent <= 0 || $discount_percent > 100) {
$json['error'] = 'Некорректный процент скидки';
} else {
// Сохраняем данные акции в oc_category_promotion перед пересчётом
$promotion_data = array(
'promotion_discount_percent' => $discount_percent,
'promotion_end_date' => isset($this->request->post['promotion_end_date']) ? $this->request->post['promotion_end_date'] : '',
'promotion_no_recalculate_wholesale' => $no_recalculate_wholesale,
'promotion_no_recalculate_child_categories' => $no_recalculate_child,
'promotion_info' => isset($this->request->post['promotion_info']) && is_array($this->request->post['promotion_info']) ? $this->request->post['promotion_info'] : array()
);
$this->model_catalog_category->saveCategoryPromotion($category_id, $promotion_data);
$result = $this->model_catalog_category->recalculatePrices($category_id, $discount_percent, $no_recalculate_wholesale, $no_recalculate_child);
if (isset($result['error'])) {
$json['error'] = $result['error'];
} else {
$json['success'] = 'Цены успешно пересчитаны. Обновлено товаров: ' . $result['updated_count'];
}
}
}
}
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
}
public function stopPromotion() {
$this->load->language('catalog/category');
$json = array();
// Проверка прав доступа
if (!$this->user->hasPermission('modify', 'catalog/category')) {
$json['error'] = $this->language->get('error_permission');
} else {
$this->load->model('catalog/category');
if (!isset($this->request->post['category_id'])) {
$json['error'] = 'Отсутствует ID категории';
} else {
$category_id = (int)$this->request->post['category_id'];
$result = $this->model_catalog_category->stopPromotion($category_id);
if (isset($result['error'])) {
$json['error'] = $result['error'];
} else {
$json['success'] = 'Акция остановлена. Цены возвращены к начальным значениям. Обновлено товаров: ' . $result['updated_count'];
}
}
}
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
}
}