opencart-module/admin/model/extension/retailcrm/references.php

141 lines
4.2 KiB
PHP
Raw Normal View History

2017-03-22 11:52:11 +03:00
<?php
class ModelExtensionRetailcrmReferences extends Model {
protected $settings;
protected $moduleTitle;
protected $retailcrmApiClient;
private $opencartApiClient;
public function __construct($registry)
{
parent::__construct($registry);
$this->load->model('setting/setting');
$this->load->library('retailcrm/retailcrm');
$this->moduleTitle = $this->retailcrm->getModuleTitle();
$this->settings = $this->model_setting_setting->getSetting($this->moduleTitle);
$this->retailcrmApiClient = $this->retailcrm->getApiClient();
}
public function getOpercartDeliveryTypes()
{
$this->opencartApiClient = $this->retailcrm->getOcApiClient($this->registry);
return $this->opencartApiClient->request('retailcrm/getDeliveryTypes', array(), array());
}
2017-03-22 11:52:11 +03:00
public function getDeliveryTypes()
{
$this->load->model('setting/store');
2017-03-22 11:52:11 +03:00
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()
);
}
2017-09-15 15:47:38 +03:00
public function getCustomFields()
{
return array(
'opencart' => $this->getOpencartCustomFields(),
'retailcrm' => $this->getApiCustomFields()
2017-09-15 15:47:38 +03:00
);
}
2017-03-22 11:52:11 +03:00
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';
}
2017-03-22 11:52:11 +03:00
if ($this->config->get($configStatus)) {
2017-03-22 11:52:11 +03:00
$paymentTypes[$extension] = strip_tags(
$this->language->get('heading_title')
);
}
}
}
return $paymentTypes;
}
2017-09-15 15:47:38 +03:00
public function getOpencartCustomFields()
{
$this->load->model('customer/custom_field');
return $this->model_customer_custom_field->getCustomFields();
}
2017-03-22 11:52:11 +03:00
public function getApiDeliveryTypes()
{
$response = $this->retailcrmApiClient->deliveryTypesList();
2017-03-22 11:52:11 +03:00
2017-08-29 17:18:04 +03:00
return (!$response->isSuccessful()) ? array() : $response->deliveryTypes;
2017-03-22 11:52:11 +03:00
}
public function getApiOrderStatuses()
{
$response = $this->retailcrmApiClient->statusesList();
2017-03-22 11:52:11 +03:00
2017-08-29 17:18:04 +03:00
return (!$response->isSuccessful()) ? array() : $response->statuses;
2017-03-22 11:52:11 +03:00
}
public function getApiPaymentTypes()
{
$response = $this->retailcrmApiClient->paymentTypesList();
2017-08-29 17:18:04 +03:00
return (!$response->isSuccessful()) ? array() : $response->paymentTypes;
}
2017-09-15 15:47:38 +03:00
public function getApiCustomFields()
2017-09-15 15:47:38 +03:00
{
$customers = $this->retailcrmApiClient->customFieldsList(array('entity' => 'customer'));
$orders = $this->retailcrmApiClient->customFieldsList(array('entity' => 'order'));
$customFieldsCustomers = (!$customers->isSuccessful()) ? array() : $customers->customFields;
$customFieldsOrders = (!$orders->isSuccessful()) ? array() : $orders->customFields;
if (!$customFieldsCustomers && !$customFieldsOrders) {
return array();
}
2017-09-15 15:47:38 +03:00
return array('customers' => $customFieldsCustomers, 'orders' => $customFieldsOrders);
2017-09-15 15:47:38 +03:00
}
2017-03-22 11:52:11 +03:00
}