mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 21:26:08 +03:00
84 lines
2.7 KiB
PHP
84 lines
2.7 KiB
PHP
<?php
|
|
|
|
class ModelExtensionRetailcrmCustomer extends Model {
|
|
|
|
public function uploadToCrm($customers) {
|
|
$this->load->model('setting/setting');
|
|
$settings = $this->model_setting_setting->getSetting('retailcrm');
|
|
|
|
if(empty($customers))
|
|
return false;
|
|
if(empty($settings['retailcrm_url']) || empty($settings['retailcrm_apikey']))
|
|
return false;
|
|
|
|
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
|
|
|
$this->retailcrmApi = new RetailcrmProxy(
|
|
$settings['retailcrm_url'],
|
|
$settings['retailcrm_apikey'],
|
|
DIR_SYSTEM . 'storage/logs/retailcrm.log'
|
|
);
|
|
|
|
$customersToCrm = array();
|
|
|
|
foreach($customers as $customer) {
|
|
$customersToCrm[] = $this->process($customer);
|
|
}
|
|
|
|
$chunkedCustomers = array_chunk($customersToCrm, 50);
|
|
|
|
foreach($chunkedCustomers as $customersPart) {
|
|
$this->retailcrmApi->customersUpload($customersPart);
|
|
}
|
|
}
|
|
|
|
public function changeInCrm($customer) {
|
|
$this->load->model('setting/setting');
|
|
$settings = $this->model_setting_setting->getSetting('retailcrm');
|
|
|
|
if(empty($customer))
|
|
return false;
|
|
if(empty($settings['retailcrm_url']) || empty($settings['retailcrm_apikey']))
|
|
return false;
|
|
|
|
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
|
|
|
$this->retailcrmApi = new RetailcrmProxy(
|
|
$settings['retailcrm_url'],
|
|
$settings['retailcrm_apikey'],
|
|
DIR_SYSTEM . 'storage/logs/retailcrm.log'
|
|
);
|
|
|
|
$customerToCrm = $this->process($customer);
|
|
|
|
$this->retailcrmApi->customersEdit($customerToCrm);
|
|
}
|
|
|
|
private function process($customer) {
|
|
$customerToCrm = array(
|
|
'externalId' => $customer['customer_id'],
|
|
'firstName' => $customer['firstname'],
|
|
'lastName' => $customer['lastname'],
|
|
'email' => $customer['email'],
|
|
'phones' => array(
|
|
array(
|
|
'number' => $customer['telephone']
|
|
)
|
|
),
|
|
'createdAt' => $customer['date_added']
|
|
);
|
|
|
|
if (isset($customer['address'])) {
|
|
$customerToCrm['address'] = array(
|
|
'index' => $customer['address']['postcode'],
|
|
'countryIso' => $customer['address']['iso_code_2'],
|
|
'region' => $customer['address']['zone'],
|
|
'city' => $customer['address']['city'],
|
|
'text' => $customer['address']['address_1'] . ' ' . $customer['address']['address_2']
|
|
);
|
|
}
|
|
|
|
return $customerToCrm;
|
|
}
|
|
}
|