mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 13:16:07 +03:00
commit
bca86cc51c
@ -1,3 +1,6 @@
|
|||||||
|
## v.3.1.3
|
||||||
|
* Добавлена активация модуля в маркетплейсе retailCRM
|
||||||
|
|
||||||
## v.3.1.2
|
## v.3.1.2
|
||||||
* Добавлен перевод на испанский язык
|
* Добавлен перевод на испанский язык
|
||||||
* Переделан перевод на английский язык
|
* Переделан перевод на английский язык
|
||||||
|
@ -50,13 +50,32 @@ class ControllerExtensionModuleRetailcrm extends Controller
|
|||||||
*/
|
*/
|
||||||
public function uninstall()
|
public function uninstall()
|
||||||
{
|
{
|
||||||
$this->uninstall_collector();
|
|
||||||
$this->load->model('setting/setting');
|
$this->load->model('setting/setting');
|
||||||
|
$settings = $this->model_setting_setting->getSetting('retailcrm_setting');
|
||||||
|
|
||||||
|
if (!empty($settings)) {
|
||||||
|
$clientId = $settings['retailcrm_setting_client_id'];
|
||||||
|
|
||||||
|
$this->integrationModule(
|
||||||
|
$this->retailcrm->getApiClient(
|
||||||
|
$settings['retailcrm_setting_url'],
|
||||||
|
$settings['retailcrm_setting_key'],
|
||||||
|
$settings['retailcrm_setting_version']
|
||||||
|
),
|
||||||
|
$clientId,
|
||||||
|
$settings['retailcrm_setting_version'],
|
||||||
|
false
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->uninstall_collector();
|
||||||
$this->model_setting_setting->editSetting(
|
$this->model_setting_setting->editSetting(
|
||||||
$this->moduleTitle,
|
$this->moduleTitle,
|
||||||
array($this->moduleTitle . '_status' => 0)
|
array($this->moduleTitle . '_status' => 0)
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
$this->model_setting_setting->deleteSetting('retailcrm_history');
|
$this->model_setting_setting->deleteSetting('retailcrm_history');
|
||||||
|
$this->model_setting_setting->deleteSetting('retailcrm_setting');
|
||||||
$this->deleteEvents();
|
$this->deleteEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -184,6 +203,36 @@ class ControllerExtensionModuleRetailcrm extends Controller
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$retailcrm_setting = $this->model_setting_setting->getSetting('retailcrm_setting');
|
||||||
|
|
||||||
|
if (!$retailcrm_setting) {
|
||||||
|
$clientId = uniqid();
|
||||||
|
$api = $this->retailcrm->getApiClient(
|
||||||
|
$this->request->post[$this->moduleTitle . '_url'],
|
||||||
|
$this->request->post[$this->moduleTitle . '_apikey'],
|
||||||
|
$this->request->post[$this->moduleTitle . '_apiversion']
|
||||||
|
);
|
||||||
|
|
||||||
|
$result = $this->integrationModule(
|
||||||
|
$api,
|
||||||
|
$clientId,
|
||||||
|
$this->request->post[$this->moduleTitle . '_apiversion']
|
||||||
|
);
|
||||||
|
|
||||||
|
if ($result === true) {
|
||||||
|
$this->model_setting_setting->editSetting(
|
||||||
|
'retailcrm_setting',
|
||||||
|
array(
|
||||||
|
'retailcrm_setting_active_in_crm' => true,
|
||||||
|
'retailcrm_setting_client_id' => $clientId,
|
||||||
|
'retailcrm_setting_url' => $this->request->post[$this->moduleTitle . '_url'],
|
||||||
|
'retailcrm_setting_key' => $this->request->post[$this->moduleTitle . '_apikey'],
|
||||||
|
'retailcrm_setting_version' => $this->request->post[$this->moduleTitle . '_apiversion']
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$this->session->data['success'] = $this->language->get('text_success');
|
$this->session->data['success'] = $this->language->get('text_success');
|
||||||
$redirect = $this->url->link(
|
$redirect = $this->url->link(
|
||||||
'extension/module/retailcrm', $this->tokenTitle . '=' . $this->session->data[$this->tokenTitle],
|
'extension/module/retailcrm', $this->tokenTitle . '=' . $this->session->data[$this->tokenTitle],
|
||||||
@ -839,4 +888,57 @@ class ControllerExtensionModuleRetailcrm extends Controller
|
|||||||
$this->{'model_' . $this->modelEvent}->deleteEventByCode($this->moduleTitle);
|
$this->{'model_' . $this->modelEvent}->deleteEventByCode($this->moduleTitle);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Activate/deactivate module in marketplace retailCRM
|
||||||
|
*
|
||||||
|
* @param \RetailcrmProxy $apiClient
|
||||||
|
* @param string $clientId
|
||||||
|
* @param string $api_version
|
||||||
|
* @param boolean $active
|
||||||
|
*
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
private function integrationModule($apiClient, $clientId, $api_version, $active = true)
|
||||||
|
{
|
||||||
|
$scheme = isset($this->request->server['HTTPS']) ? 'https://' : 'http://';
|
||||||
|
$logo = 'https://s3.eu-central-1.amazonaws.com/retailcrm-billing/images/5af48736c6a0c-opencart-seeklogo.com.svg';
|
||||||
|
$integrationCode = 'opencart';
|
||||||
|
$name = 'Opencart';
|
||||||
|
$accountUrl = $scheme . $this->request->server['HTTP_HOST'] . '/admin';
|
||||||
|
|
||||||
|
if ($api_version == 'v4') {
|
||||||
|
$configuration = array(
|
||||||
|
'name' => $name,
|
||||||
|
'code' => $integrationCode . '-' . $clientId,
|
||||||
|
'logo' => $logo,
|
||||||
|
'configurationUrl' => $accountUrl,
|
||||||
|
'active' => $active
|
||||||
|
);
|
||||||
|
|
||||||
|
$response = $apiClient->marketplaceSettingsEdit($configuration);
|
||||||
|
} else {
|
||||||
|
$configuration = array(
|
||||||
|
'clientId' => $clientId,
|
||||||
|
'code' => $integrationCode . '-' . $clientId,
|
||||||
|
'integrationCode' => $integrationCode,
|
||||||
|
'active' => $active,
|
||||||
|
'name' => $name,
|
||||||
|
'logo' => $logo,
|
||||||
|
'accountUrl' => $accountUrl
|
||||||
|
);
|
||||||
|
|
||||||
|
$response = $apiClient->integrationModulesEdit($configuration);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$response) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($response->isSuccessful()) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1699,6 +1699,34 @@ class RetailcrmApiClient4
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Edit marketplace configuration
|
||||||
|
*
|
||||||
|
* @param array $configuration
|
||||||
|
*
|
||||||
|
* @throws \RetailCrm\Exception\InvalidJsonException
|
||||||
|
* @throws \RetailCrm\Exception\CurlException
|
||||||
|
* @throws \InvalidArgumentException
|
||||||
|
*
|
||||||
|
* @return ApiResponse
|
||||||
|
*/
|
||||||
|
public function marketplaceSettingsEdit(array $configuration)
|
||||||
|
{
|
||||||
|
if (!count($configuration) || empty($configuration['code'])) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
'Parameter `configuration` must contains a data & configuration `code` must be set'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$code = $configuration['code'];
|
||||||
|
|
||||||
|
return $this->client->makeRequest(
|
||||||
|
"/marketplace/external/setting/$code/edit",
|
||||||
|
RetailcrmHttpClient::METHOD_POST,
|
||||||
|
array('configuration' => json_encode($configuration))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return current site
|
* Return current site
|
||||||
*
|
*
|
||||||
|
@ -2324,6 +2324,34 @@ class RetailcrmApiClient5
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Edit module configuration
|
||||||
|
*
|
||||||
|
* @param array $configuration
|
||||||
|
*
|
||||||
|
* @throws \RetailCrm\Exception\InvalidJsonException
|
||||||
|
* @throws \RetailCrm\Exception\CurlException
|
||||||
|
* @throws \InvalidArgumentException
|
||||||
|
*
|
||||||
|
* @return ApiResponse
|
||||||
|
*/
|
||||||
|
public function integrationModulesEdit(array $configuration)
|
||||||
|
{
|
||||||
|
if (!count($configuration) || empty($configuration['code'])) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
'Parameter `configuration` must contains a data & configuration `code` must be set'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$code = $configuration['code'];
|
||||||
|
|
||||||
|
return $this->client->makeRequest(
|
||||||
|
"/integration-modules/$code/edit",
|
||||||
|
RetailcrmHttpClient::METHOD_POST,
|
||||||
|
array('integrationModule' => json_encode($configuration))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update CRM basic statistic
|
* Update CRM basic statistic
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user