mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 21:26:08 +03:00
278 lines
8.0 KiB
PHP
278 lines
8.0 KiB
PHP
<?php
|
|
|
|
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
|
|
|
/**
|
|
* Class ControllerModule
|
|
*
|
|
* @category RetailCrm
|
|
* @package RetailCrm
|
|
* @author RetailCrm <integration@retailcrm.ru>
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
|
* @link http://www.retailcrm.ru/docs/Developers/ApiVersion3
|
|
*/
|
|
class ControllerModuleRetailcrm extends Controller
|
|
{
|
|
private $_error = array();
|
|
protected $log, $statuses, $payments, $deliveryTypes, $retailcrm;
|
|
public $children, $template;
|
|
|
|
/**
|
|
* Install method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function install()
|
|
{
|
|
$this->load->model('setting/setting');
|
|
$this->model_setting_setting
|
|
->editSetting('retailcrm', array('retailcrm_status' => 1));
|
|
}
|
|
|
|
/**
|
|
* Uninstall method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function uninstall()
|
|
{
|
|
$this->load->model('setting/setting');
|
|
$this->model_setting_setting
|
|
->editSetting('retailcrm', array('retailcrm_status' => 0));
|
|
}
|
|
|
|
/**
|
|
* Setup page
|
|
*
|
|
* @return void
|
|
*/
|
|
public function index()
|
|
{
|
|
|
|
$this->load->model('setting/setting');
|
|
$this->load->model('retailcrm/references');
|
|
$this->load->language('module/retailcrm');
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
$this->document->addStyle('/admin/view/stylesheet/retailcrm.css');
|
|
|
|
if ($this->request->server['REQUEST_METHOD'] == 'POST' && $this->validate()) {
|
|
$this->model_setting_setting->editSetting(
|
|
'retailcrm',
|
|
$this->request->post
|
|
);
|
|
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
|
$redirect = $this->url->link(
|
|
'module/retailcrm', 'token=' . $this->session->data['token'],
|
|
'SSL'
|
|
);
|
|
|
|
$this->redirect($redirect);
|
|
}
|
|
|
|
$text_strings = array(
|
|
'heading_title',
|
|
'text_enabled',
|
|
'text_disabled',
|
|
'button_save',
|
|
'button_cancel',
|
|
'text_notice',
|
|
'retailcrm_title',
|
|
'retailcrm_url',
|
|
'retailcrm_apikey',
|
|
'retailcrm_base_settings',
|
|
'retailcrm_dict_settings',
|
|
'retailcrm_dict_delivery',
|
|
'retailcrm_dict_status',
|
|
'retailcrm_dict_payment',
|
|
);
|
|
|
|
|
|
$_data = &$this->data;
|
|
$this->load->model('setting/extension');
|
|
|
|
foreach ($text_strings as $text) {
|
|
$_data[$text] = $this->language->get($text);
|
|
}
|
|
|
|
$_data['retailcrm_errors'] = array();
|
|
$_data['saved_settings'] = $this->model_setting_setting
|
|
->getSetting('retailcrm');
|
|
|
|
$url = isset($_data['saved_settings']['retailcrm_url'])
|
|
? $_data['saved_settings']['retailcrm_url']
|
|
: null;
|
|
$key = isset($_data['saved_settings']['retailcrm_apikey'])
|
|
? $_data['saved_settings']['retailcrm_apikey']
|
|
: null;
|
|
|
|
if (!empty($url) && !empty($key)) {
|
|
|
|
$this->retailcrm = new RetailcrmProxy(
|
|
$url,
|
|
$key,
|
|
DIR_SYSTEM . 'logs/retailcrm.log'
|
|
);
|
|
|
|
$_data['delivery'] = $this->model_retailcrm_references
|
|
->getDeliveryTypes();
|
|
$_data['statuses'] = $this->model_retailcrm_references
|
|
->getOrderStatuses();
|
|
$_data['payments'] = $this->model_retailcrm_references
|
|
->getPaymentTypes();
|
|
|
|
}
|
|
|
|
$config_data = array(
|
|
'retailcrm_status'
|
|
);
|
|
|
|
foreach ($config_data as $conf) {
|
|
if (isset($this->request->post[$conf])) {
|
|
$_data[$conf] = $this->request->post[$conf];
|
|
} else {
|
|
$_data[$conf] = $this->config->get($conf);
|
|
}
|
|
}
|
|
|
|
if (isset($this->error['warning'])) {
|
|
$_data['error_warning'] = $this->error['warning'];
|
|
} else {
|
|
$_data['error_warning'] = '';
|
|
}
|
|
|
|
$_data['breadcrumbs'] = array();
|
|
|
|
$_data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('text_home'),
|
|
'href' => $this->url->link(
|
|
'common/home',
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
),
|
|
'separator' => false
|
|
);
|
|
|
|
$_data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('text_module'),
|
|
'href' => $this->url->link(
|
|
'extension/module',
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
),
|
|
'separator' => ' :: '
|
|
);
|
|
|
|
$_data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('retailcrm_title'),
|
|
'href' => $this->url->link(
|
|
'module/retailcrm',
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
),
|
|
'separator' => ' :: '
|
|
);
|
|
|
|
$_data['action'] = $this->url->link(
|
|
'module/retailcrm',
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
);
|
|
|
|
$_data['cancel'] = $this->url->link(
|
|
'extension/module',
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
);
|
|
|
|
$_data['modules'] = array();
|
|
|
|
if (isset($this->request->post['retailcrm_module'])) {
|
|
$_data['modules'] = $this->request->post['retailcrm_module'];
|
|
} elseif ($this->config->get('retailcrm_module')) {
|
|
$_data['modules'] = $this->config->get('retailcrm_module');
|
|
}
|
|
|
|
$this->load->model('design/layout');
|
|
$_data['layouts'] = $this->model_design_layout->getLayouts();
|
|
|
|
$this->template = 'module/retailcrm.1.x.tpl';
|
|
$this->children = array(
|
|
'common/header',
|
|
'common/footer',
|
|
);
|
|
|
|
$this->response->setOutput($this->render());
|
|
}
|
|
|
|
/**
|
|
* History method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function history()
|
|
{
|
|
if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/history.php')) {
|
|
$this->load->model('retailcrm/custom/history');
|
|
$this->model_retailcrm_custom_history->request();
|
|
} else {
|
|
$this->load->model('retailcrm/history');
|
|
$this->model_retailcrm_history->request();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* ICML generation
|
|
*
|
|
* @return void
|
|
*/
|
|
public function icml()
|
|
{
|
|
if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/icml.php')) {
|
|
$this->load->model('retailcrm/custom/icml');
|
|
$this->model_retailcrm_custom_icml->generateICML();
|
|
} else {
|
|
$this->load->model('retailcrm/icml');
|
|
$this->model_retailcrm_icml->generateICML();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create order on event
|
|
*
|
|
* @param int $order_id order identificator
|
|
*
|
|
* @return void
|
|
*/
|
|
public function order_create($order_id)
|
|
{
|
|
$this->load->model('checkout/order');
|
|
$this->load->model('account/order');
|
|
|
|
$data = $this->model_checkout_order->getOrder($order_id);
|
|
$data['products'] = $this->model_account_order->getOrderProducts($order_id);
|
|
|
|
if (!isset($data['fromApi'])) {
|
|
$this->load->model('setting/setting');
|
|
$status = $this->model_setting_setting->getSetting('retailcrm');
|
|
$data['order_status'] = $status['retailcrm_status'][$data['order_status_id']];
|
|
|
|
$this->load->model('retailcrm/order');
|
|
$this->model_retailcrm_order->sendToCrm($data, $data['order_id']);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Validate
|
|
*
|
|
* @return bool
|
|
*/
|
|
private function validate()
|
|
{
|
|
if (!$this->user->hasPermission('modify', 'module/retailcrm')) {
|
|
$this->_error['warning'] = $this->language->get('error_permission');
|
|
}
|
|
|
|
if (!$this->_error) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|