mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 21:26:08 +03:00
134 lines
3.6 KiB
PHP
134 lines
3.6 KiB
PHP
<?php
|
|
|
|
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
|
|
|
class ModelExtensionRetailcrmReferences extends Model
|
|
{
|
|
protected $retailcrm;
|
|
private $opencartApiClient;
|
|
|
|
public function getOpercartDeliveryTypes()
|
|
{
|
|
$this->load->model('user/api');
|
|
$this->opencartApiClient = new OpencartApiClient($this->registry);
|
|
|
|
return $this->opencartApiClient->request('retailcrm/getDeliveryTypes', array(), array());
|
|
}
|
|
|
|
public function getDeliveryTypes()
|
|
{
|
|
$this->load->model('setting/store');
|
|
|
|
return array(
|
|
'opencart' => $this->getOpercartDeliveryTypes(),
|
|
'retailcrm' => $this->getApiDeliveryTypes()
|
|
);
|
|
}
|
|
|
|
public function getOrderStatuses()
|
|
{
|
|
return array(
|
|
'opencart' => $this->getOpercartOrderStatuses(),
|
|
'retailcrm' => $this->getApiOrderStatuses()
|
|
);
|
|
}
|
|
|
|
public function getPaymentTypes()
|
|
{
|
|
return array(
|
|
'opencart' => $this->getOpercartPaymentTypes(),
|
|
'retailcrm' => $this->getApiPaymentTypes()
|
|
);
|
|
}
|
|
|
|
public function getOpercartOrderStatuses()
|
|
{
|
|
$this->load->model('localisation/order_status');
|
|
|
|
return $this->model_localisation_order_status
|
|
->getOrderStatuses(array());
|
|
}
|
|
|
|
public function getOpercartPaymentTypes()
|
|
{
|
|
$paymentTypes = array();
|
|
$files = glob(DIR_APPLICATION . 'controller/extension/payment/*.php');
|
|
|
|
if ($files) {
|
|
foreach ($files as $file) {
|
|
$extension = basename($file, '.php');
|
|
|
|
$this->load->language('extension/payment/' . $extension);
|
|
|
|
if (version_compare(VERSION, '3.0', '<')) {
|
|
$configStatus = $extension . '_status';
|
|
} else {
|
|
$configStatus = 'payment_' . $extension . '_status';
|
|
}
|
|
|
|
if ($this->config->get($configStatus)) {
|
|
$paymentTypes[$extension] = strip_tags(
|
|
$this->language->get('heading_title')
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $paymentTypes;
|
|
}
|
|
|
|
public function getApiDeliveryTypes()
|
|
{
|
|
$this->initApi();
|
|
|
|
$response = $this->retailcrm->deliveryTypesList();
|
|
|
|
return ($response === false) ? array() : $response->deliveryTypes;
|
|
}
|
|
|
|
public function getApiOrderStatuses()
|
|
{
|
|
$this->initApi();
|
|
|
|
$response = $this->retailcrm->statusesList();
|
|
|
|
return ($response === false) ? array() : $response->statuses;
|
|
}
|
|
|
|
public function getApiPaymentTypes()
|
|
{
|
|
$this->initApi();
|
|
|
|
$response = $this->retailcrm->paymentTypesList();
|
|
|
|
return ($response === false) ? array() : $response->paymentTypes;
|
|
}
|
|
|
|
protected function initApi()
|
|
{
|
|
$moduleTitle = $this->getModuleTitle();
|
|
$this->load->model('setting/setting');
|
|
$settings = $this->model_setting_setting->getSetting($moduleTitle);
|
|
|
|
if(!empty($settings[$moduleTitle . '_url']) && !empty($settings[$moduleTitle . '_apikey'])) {
|
|
$this->retailcrm = new RetailcrmProxy(
|
|
$settings[$moduleTitle . '_url'],
|
|
$settings[$moduleTitle . '_apikey'],
|
|
DIR_SYSTEM . 'storage/logs/retailcrm.log',
|
|
$settings[$moduleTitle . '_apiversion']
|
|
);
|
|
}
|
|
}
|
|
|
|
private function getModuleTitle()
|
|
{
|
|
if (version_compare(VERSION, '3.0', '<')) {
|
|
$title = 'retailcrm';
|
|
} else {
|
|
$title = 'module_retailcrm';
|
|
}
|
|
|
|
return $title;
|
|
}
|
|
}
|